Skip to content

Commit 2a4225c

Browse files
committed
edits to code comments
1 parent 1d98662 commit 2a4225c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/aero_rep_solver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ void aero_rep_get_interface_layer_surface_area__m2(ModelData *model_data, int ae
263263
// Get the aerosol representation type
264264
int aero_rep_type = *(aero_rep_int_data++);
265265

266-
// Get the particle radius and set of partial derivatives
266+
// Get the interfacial layer surface area and set of partial derivatives
267267
switch (aero_rep_type) {
268268
case AERO_REP_SINGLE_PARTICLE:
269269
aero_rep_single_particle_get_interface_layer_surface_area__m2(

src/aero_reps/aero_rep_single_particle.F90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
!! ]}
2121
!! \endcode
2222
!! The key-value pair \b type is required and must be \b
23-
!! AERO_REP_SINGLE_PARTICLE. This representation assumes that every \ref
24-
!! input_format_aero_phase "aerosol phase" available will be present
25-
!! once in each particle.
23+
!! AERO_REP_SINGLE_PARTICLE. In this representation, particles are divided
24+
!! into layers. Phases in each layer are specified by the user. Phase configuration
25+
!! within each layer follows "fractional volume overlap".
2626
!!
2727
!! The number concentration for each particle must be
2828
!! set from an external model using

src/aero_reps/aero_rep_single_particle.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ void aero_rep_single_particle_get_effective_radius__m(
191191
*
192192
* Solve for the surface area of the interfacial layer that exists between the
193193
* two phases considered in aerosol phase mass tranfer between layers. When more
194-
* than one phase exists in a layer, a random overlap configuration is applied (see
195-
* CAMP Github Documentation for details.
194+
* than one phase exists in a layer, a "fractional volume overlap" configuration
195+
* is applied (see CAMP Github Documentation for details).
196196
*
197197
* \param model_data Pointer to the model data, including the state array
198198
* \param aero_phase_idx_first Index of the first aerosol phase within the representation

0 commit comments

Comments
 (0)