Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
SWIFTsim
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
68
Issues
68
List
Boards
Labels
Milestones
Merge Requests
11
Merge Requests
11
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
SWIFT
SWIFTsim
Commits
7c98e1c7
Commit
7c98e1c7
authored
Sep 25, 2020
by
Matthieu Schaller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doxygen fixes
parent
9ffbf0a0
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
301 additions
and
128 deletions
+301
-128
doc/Doxyfile.in
doc/Doxyfile.in
+286
-123
logger/logger_reader.c
logger/logger_reader.c
+5
-4
src/cell.c
src/cell.c
+1
-1
src/chemistry/EAGLE/chemistry_io.h
src/chemistry/EAGLE/chemistry_io.h
+1
-0
src/chemistry/GEAR/chemistry_io.h
src/chemistry/GEAR/chemistry_io.h
+1
-0
src/chemistry/QLA/chemistry_io.h
src/chemistry/QLA/chemistry_io.h
+1
-0
src/chemistry/none/chemistry_io.h
src/chemistry/none/chemistry_io.h
+1
-0
src/cooling/EAGLE/cooling.c
src/cooling/EAGLE/cooling.c
+2
-0
src/serial_io.c
src/serial_io.c
+2
-0
src/sink/Default/sink.h
src/sink/Default/sink.h
+1
-0
No files found.
doc/Doxyfile.in
View file @
7c98e1c7
This diff is collapsed.
Click to expand it.
logger/logger_reader.c
View file @
7c98e1c7
...
...
@@ -221,11 +221,12 @@ const uint64_t *logger_reader_get_number_particles(struct logger_reader *reader,
* @param offset_last_full_record The offset of this particle last record
containing all the fields.
* @param field The fields wanted in local index.
* @param first
_deriv_wanted The field that corresponds to the first derivative
of fields (-1
if none)
* @param second
_deriv_wanted The field that corresponds to the secon
d
derivative of field
(-1 if none)
* @param first
The field that corresponds to the first derivative of fields (-1
if none)
* @param second
The field that corresponds to the second derivative of fiel
d
(-1 if none)
* @param output Pointers to the output array
* @param type The #part_type.
*/
void
logger_reader_read_field
(
struct
logger_reader
*
reader
,
double
time
,
size_t
offset_time
,
...
...
src/cell.c
View file @
7c98e1c7
...
...
@@ -5802,7 +5802,7 @@ void cell_drift_bpart(struct cell *c, const struct engine *e, int force) {
}
/**
* @brief Recursively drifts the #sinks in a cell hierarchy.
* @brief Recursively drifts the #sink
'
s in a cell hierarchy.
*
* @param c The #cell.
* @param e The #engine (to get ti_current).
...
...
src/chemistry/EAGLE/chemistry_io.h
View file @
7c98e1c7
...
...
@@ -52,6 +52,7 @@ INLINE static int chemistry_read_particles(struct part* parts,
* @param parts The particle array.
* @param xparts The extra particle array.
* @param list The list of i/o properties to write.
* @param with_cosmology Are we running with cosmology?
*
* @return Returns the number of fields to write.
*/
...
...
src/chemistry/GEAR/chemistry_io.h
View file @
7c98e1c7
...
...
@@ -63,6 +63,7 @@ INLINE static void convert_gas_metals(const struct engine* e,
* @param parts The particle array.
* @param xparts The extra particle array.
* @param list The list of i/o properties to write.
* @param with_cosmology Are we running with cosmology?
*
* @return Returns the number of fields to write.
*/
...
...
src/chemistry/QLA/chemistry_io.h
View file @
7c98e1c7
...
...
@@ -44,6 +44,7 @@ INLINE static int chemistry_read_particles(struct part* parts,
* @param parts The particle array.
* @param xparts The extra particle array.
* @param list The list of i/o properties to write.
* @param with_cosmology Are we running with cosmology?
*
* @return Returns the number of fields to write.
*/
...
...
src/chemistry/none/chemistry_io.h
View file @
7c98e1c7
...
...
@@ -44,6 +44,7 @@ INLINE static int chemistry_read_particles(struct part* parts,
* @param parts The particle array.
* @param xparts The extra particle array.
* @param list The list of i/o properties to write.
* @param with_cosmology Are we running with cosmology?
*
* @return Returns the number of fields to write.
*/
...
...
src/cooling/EAGLE/cooling.c
View file @
7c98e1c7
...
...
@@ -582,6 +582,8 @@ __attribute__((always_inline)) INLINE void cooling_first_init_part(
* metallicity.
* @param XH The Hydrogen abundance of the gas.
* @param u_phys Internal energy of the gas in internal physical units.
* @param HII_region Is this patch of gas an HII region? (Not implemented in
* EAGLE)
*/
float
cooling_get_temperature_from_gas
(
const
struct
phys_const
*
phys_const
,
const
struct
cosmology
*
cosmo
,
...
...
src/serial_io.c
View file @
7c98e1c7
...
...
@@ -380,6 +380,7 @@ void prepare_array_serial(
* @param N The number of particles to write.
* @param N_total The total number of particles on all ranks.
* @param offset The offset position where this rank starts writing.
* @param lossy_compression Lossy compression filter to apply.
* @param mpi_rank The MPI rank of this node
* @param internal_units The #unit_system used internally
* @param snapshot_units The #unit_system used in the snapshots
...
...
@@ -503,6 +504,7 @@ void write_array_serial(const struct engine* e, hid_t grp, char* fileName,
* @param info The MPI information object
* @param n_threads The number of threads to use for local operations.
* @param dry_run If 1, don't read the particle. Only allocates the arrays.
* @param remap_ids Are we ignoring the ICs' IDs and remapping them to [1, N[ ?
*
* Opens the HDF5 file fileName and reads the particles contained
* in the parts array. N is the returned number of particles found
...
...
src/sink/Default/sink.h
View file @
7c98e1c7
...
...
@@ -44,6 +44,7 @@ __attribute__((always_inline)) INLINE static float sink_compute_timestep(
* read in to do some conversions.
*
* @param sp The particle to act upon
* @param sink_props The properties of the sink particles scheme.
*/
__attribute__
((
always_inline
))
INLINE
static
void
sink_first_init_sink
(
struct
sink
*
sp
,
const
struct
sink_props
*
sink_props
)
{
...
...
Write
Preview
Markdown
is supported
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