Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
c2c61436
Commit
c2c61436
authored
Apr 27, 2017
by
Matthieu Schaller
Browse files
Also add the new x_diff_sort array to the other SPH particle types.
parent
eb7d9dc2
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/hydro/Default/hydro_part.h
View file @
c2c61436
...
...
@@ -27,6 +27,9 @@ struct xpart {
/* Offset between current position and position at last tree rebuild. */
float
x_diff
[
3
];
/*! Offset between the current position and position at the last sort. */
float
x_diff_sort
[
3
];
/* Velocity at the last full step. */
float
v_full
[
3
];
...
...
src/hydro/Gizmo/hydro_part.h
View file @
c2c61436
...
...
@@ -27,6 +27,9 @@ struct xpart {
/* Offset between current position and position at last tree rebuild. */
float
x_diff
[
3
];
/* Offset between the current position and position at the last sort. */
float
x_diff_sort
[
3
];
/* Velocity at the last full step. */
float
v_full
[
3
];
...
...
src/hydro/Minimal/hydro_part.h
View file @
c2c61436
...
...
@@ -46,6 +46,9 @@ struct xpart {
/*! Offset between current position and position at last tree rebuild. */
float
x_diff
[
3
];
/*! Offset between the current position and position at the last sort. */
float
x_diff_sort
[
3
];
/*! Velocity at the last full step. */
float
v_full
[
3
];
...
...
src/hydro/PressureEntropy/hydro_part.h
View file @
c2c61436
...
...
@@ -38,6 +38,9 @@ struct xpart {
/*! Offset between current position and position at last tree rebuild. */
float
x_diff
[
3
];
/*! Offset between the current position and position at the last sort. */
float
x_diff_sort
[
3
];
/*! Velocity at the last full step. */
float
v_full
[
3
];
...
...
src/hydro/Shadowswift/hydro_part.h
View file @
c2c61436
...
...
@@ -28,6 +28,9 @@ struct xpart {
/* Offset between current position and position at last tree rebuild. */
float
x_diff
[
3
];
/*! Offset between the current position and position at the last sort. */
float
x_diff_sort
[
3
];
/* Velocity at the last full step. */
float
v_full
[
3
];
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment