Skip to content

Commit

Permalink
improve documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
tjhei committed Jun 1, 2014
1 parent d6e745c commit 8720036
Show file tree
Hide file tree
Showing 14 changed files with 38 additions and 20 deletions.
6 changes: 3 additions & 3 deletions include/aspect/adiabatic_conditions/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ namespace aspect
virtual ~Interface();

/**
* Initialization function. Because this function is called after
* initializing the SimulatorAccess, all of the necessary information
* is available to calculate the adiabatic profile.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual
void
Expand Down
2 changes: 1 addition & 1 deletion include/aspect/boundary_composition/box.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ namespace aspect
parse_parameters (ParameterHandler &prm);

/**
* It performs some basic
* This function performs some basic
* sanity checks on the parameter values previously read from the
* input file.
*/
Expand Down
4 changes: 3 additions & 1 deletion include/aspect/boundary_composition/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ namespace aspect
virtual ~Interface();

/**
* Initialize function.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual void initialize ();

Expand Down
4 changes: 3 additions & 1 deletion include/aspect/boundary_temperature/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ namespace aspect
virtual ~Interface();

/**
* Initialize function.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual void initialize ();

Expand Down
4 changes: 3 additions & 1 deletion include/aspect/compositional_initial_conditions/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ namespace aspect
virtual ~Interface();

/**
* Initialization function.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual
void
Expand Down
4 changes: 3 additions & 1 deletion include/aspect/geometry_model/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ namespace aspect
virtual ~Interface();

/**
* Initialize function.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual void initialize ();

Expand Down
4 changes: 3 additions & 1 deletion include/aspect/gravity_model/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ namespace aspect
virtual ~Interface();

/**
* Initialize function.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual void initialize ();

Expand Down
4 changes: 3 additions & 1 deletion include/aspect/heating_model/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ namespace aspect
virtual ~Interface();

/**
* Initialization function.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual
void
Expand Down
7 changes: 3 additions & 4 deletions include/aspect/initial_conditions/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@ namespace aspect
virtual ~Interface();

/**
* Initialization function. Take references to the geometry model, the
* object that describes the temperature boundary values, and the
* adiabatic conditions and store them so that derived classes can
* access them.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual
void
Expand Down
4 changes: 3 additions & 1 deletion include/aspect/material_model/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,9 @@ namespace aspect
virtual ~Interface();

/**
* Initialization function.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual
void
Expand Down
4 changes: 3 additions & 1 deletion include/aspect/mesh_refinement/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ namespace aspect
~Interface ();

/**
* Initialize function.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual void initialize ();

Expand Down
4 changes: 3 additions & 1 deletion include/aspect/termination_criteria/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ namespace aspect
~Interface ();

/**
* Initialize function.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual void initialize ();

Expand Down
3 changes: 1 addition & 2 deletions include/aspect/velocity_boundary_conditions/gplates.h
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,7 @@ namespace aspect

/**
* Initialization function. This function is called once at the
* beginning of the program. Parses the user input and checks for
* valid geometry model.
* beginning of the program. Checks preconditions.
*/
virtual
void
Expand Down
4 changes: 3 additions & 1 deletion include/aspect/velocity_boundary_conditions/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ namespace aspect
virtual ~Interface();

/**
* Initialization function.
* Initialization function. This function is called once at the
* beginning of the program after parse_parameters is run and after the
* SimulatorAccess (if applicable) is initialized.
*/
virtual
void
Expand Down

0 comments on commit 8720036

Please sign in to comment.