Skip to content

Commit 8720036

Browse files
committed
improve documentation
1 parent d6e745c commit 8720036

File tree

14 files changed

+38
-20
lines changed

14 files changed

+38
-20
lines changed

include/aspect/adiabatic_conditions/interface.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ namespace aspect
6161
virtual ~Interface();
6262

6363
/**
64-
* Initialization function. Because this function is called after
65-
* initializing the SimulatorAccess, all of the necessary information
66-
* is available to calculate the adiabatic profile.
64+
* Initialization function. This function is called once at the
65+
* beginning of the program after parse_parameters is run and after the
66+
* SimulatorAccess (if applicable) is initialized.
6767
*/
6868
virtual
6969
void

include/aspect/boundary_composition/box.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ namespace aspect
7777
parse_parameters (ParameterHandler &prm);
7878

7979
/**
80-
* It performs some basic
80+
* This function performs some basic
8181
* sanity checks on the parameter values previously read from the
8282
* input file.
8383
*/

include/aspect/boundary_composition/interface.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ namespace aspect
5757
virtual ~Interface();
5858

5959
/**
60-
* Initialize function.
60+
* Initialization function. This function is called once at the
61+
* beginning of the program after parse_parameters is run and after the
62+
* SimulatorAccess (if applicable) is initialized.
6163
*/
6264
virtual void initialize ();
6365

include/aspect/boundary_temperature/interface.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ namespace aspect
5757
virtual ~Interface();
5858

5959
/**
60-
* Initialize function.
60+
* Initialization function. This function is called once at the
61+
* beginning of the program after parse_parameters is run and after the
62+
* SimulatorAccess (if applicable) is initialized.
6163
*/
6264
virtual void initialize ();
6365

include/aspect/compositional_initial_conditions/interface.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ namespace aspect
5656
virtual ~Interface();
5757

5858
/**
59-
* Initialization function.
59+
* Initialization function. This function is called once at the
60+
* beginning of the program after parse_parameters is run and after the
61+
* SimulatorAccess (if applicable) is initialized.
6062
*/
6163
virtual
6264
void

include/aspect/geometry_model/interface.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ namespace aspect
6363
virtual ~Interface();
6464

6565
/**
66-
* Initialize function.
66+
* Initialization function. This function is called once at the
67+
* beginning of the program after parse_parameters is run and after the
68+
* SimulatorAccess (if applicable) is initialized.
6769
*/
6870
virtual void initialize ();
6971

include/aspect/gravity_model/interface.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ namespace aspect
5454
virtual ~Interface();
5555

5656
/**
57-
* Initialize function.
57+
* Initialization function. This function is called once at the
58+
* beginning of the program after parse_parameters is run and after the
59+
* SimulatorAccess (if applicable) is initialized.
5860
*/
5961
virtual void initialize ();
6062

include/aspect/heating_model/interface.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ namespace aspect
5555
virtual ~Interface();
5656

5757
/**
58-
* Initialization function.
58+
* Initialization function. This function is called once at the
59+
* beginning of the program after parse_parameters is run and after the
60+
* SimulatorAccess (if applicable) is initialized.
5961
*/
6062
virtual
6163
void

include/aspect/initial_conditions/interface.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,9 @@ namespace aspect
5555
virtual ~Interface();
5656

5757
/**
58-
* Initialization function. Take references to the geometry model, the
59-
* object that describes the temperature boundary values, and the
60-
* adiabatic conditions and store them so that derived classes can
61-
* access them.
58+
* Initialization function. This function is called once at the
59+
* beginning of the program after parse_parameters is run and after the
60+
* SimulatorAccess (if applicable) is initialized.
6261
*/
6362
virtual
6463
void

include/aspect/material_model/interface.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,9 @@ namespace aspect
141141
virtual ~Interface();
142142

143143
/**
144-
* Initialization function.
144+
* Initialization function. This function is called once at the
145+
* beginning of the program after parse_parameters is run and after the
146+
* SimulatorAccess (if applicable) is initialized.
145147
*/
146148
virtual
147149
void

0 commit comments

Comments
 (0)