Skip to content

Commit

Permalink
Change methods from private to public
Browse files Browse the repository at this point in the history
  • Loading branch information
VidarStiernstrom committed Dec 9, 2024
1 parent 62de8e9 commit 1caf325
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,6 @@ class QuasiDynamicEQRK32 : public PhysicsSolverBase
*/
void stepRateStateODEAndComputeError( real64 const dt, DomainPartition & domain ) const;

private:

virtual void postInputInitialization() override;

real64 updateStresses( real64 const & time_n,
real64 const & dt,
const int cycleNumber,
Expand All @@ -113,6 +109,10 @@ class QuasiDynamicEQRK32 : public PhysicsSolverBase
*/
void saveState( DomainPartition & domain ) const;

private:

virtual void postInputInitialization() override;


/// pointer to stress solver
PhysicsSolverBase * m_stressSolver;
Expand Down
31 changes: 30 additions & 1 deletion src/coreComponents/schema/schema.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -2113,6 +2113,11 @@ the relative residual norm satisfies:
<xsd:complexType name="BlueprintType">
<!--childDirectory => Child directory path-->
<xsd:attribute name="childDirectory" type="string" default="" />
<!--logLevel => Sets the level of information to write in the standard output (the console typically).
Level 0 outputs no specific information for this solver. Higher levels require more outputs.
1
- Output timing information-->
<xsd:attribute name="logLevel" type="integer" default="0" />
<!--outputFullQuadratureData => If true writes out data associated with every quadrature point.-->
<xsd:attribute name="outputFullQuadratureData" type="integer" default="0" />
<!--parallelThreads => Number of plot files.-->
Expand All @@ -2129,6 +2134,11 @@ the relative residual norm satisfies:
<xsd:attribute name="childDirectory" type="string" default="" />
<!--inputPath => Path at which the chombo to geos file will be written.-->
<xsd:attribute name="inputPath" type="string" default="/INVALID_INPUT_PATH" />
<!--logLevel => Sets the level of information to write in the standard output (the console typically).
Level 0 outputs no specific information for this solver. Higher levels require more outputs.
1
- Output timing information-->
<xsd:attribute name="logLevel" type="integer" default="0" />
<!--outputPath => Path at which the geos to chombo file will be written.-->
<xsd:attribute name="outputPath" type="string" use="required" />
<!--parallelThreads => Number of plot files.-->
Expand All @@ -2143,6 +2153,11 @@ the relative residual norm satisfies:
<xsd:complexType name="PythonType">
<!--childDirectory => Child directory path-->
<xsd:attribute name="childDirectory" type="string" default="" />
<!--logLevel => Sets the level of information to write in the standard output (the console typically).
Level 0 outputs no specific information for this solver. Higher levels require more outputs.
1
- Output timing information-->
<xsd:attribute name="logLevel" type="integer" default="0" />
<!--parallelThreads => Number of plot files.-->
<xsd:attribute name="parallelThreads" type="integer" default="1" />
<!--name => A name is required for any non-unique nodes-->
Expand All @@ -2151,6 +2166,11 @@ the relative residual norm satisfies:
<xsd:complexType name="RestartType">
<!--childDirectory => Child directory path-->
<xsd:attribute name="childDirectory" type="string" default="" />
<!--logLevel => Sets the level of information to write in the standard output (the console typically).
Level 0 outputs no specific information for this solver. Higher levels require more outputs.
1
- Output timing information-->
<xsd:attribute name="logLevel" type="integer" default="0" />
<!--parallelThreads => Number of plot files.-->
<xsd:attribute name="parallelThreads" type="integer" default="1" />
<!--name => A name is required for any non-unique nodes-->
Expand All @@ -2161,6 +2181,11 @@ the relative residual norm satisfies:
<xsd:attribute name="childDirectory" type="string" default="" />
<!--fieldNames => Names of the fields to output. If this attribute is specified, GEOSX outputs all (and only) the fields specified by the user, regardless of their plotLevel-->
<xsd:attribute name="fieldNames" type="groupNameRef_array" default="{}" />
<!--logLevel => Sets the level of information to write in the standard output (the console typically).
Level 0 outputs no specific information for this solver. Higher levels require more outputs.
1
- Output timing information-->
<xsd:attribute name="logLevel" type="integer" default="0" />
<!--onlyPlotSpecifiedFieldNames => If this flag is equal to 1, then we only plot the fields listed in `fieldNames`. Otherwise, we plot all the fields with the required `plotLevel`, plus the fields listed in `fieldNames`-->
<xsd:attribute name="onlyPlotSpecifiedFieldNames" type="integer" default="0" />
<!--parallelThreads => Number of plot files.-->
Expand Down Expand Up @@ -2199,7 +2224,7 @@ the relative residual norm satisfies:
<xsd:complexType name="VTKType">
<!--childDirectory => Child directory path-->
<xsd:attribute name="childDirectory" type="string" default="" />
<!--fieldNames => Names of the fields to output. If this attribute is specified, GEOSX outputs all the fields specified by the user, regardless of their `plotLevel`-->
<!--fieldNames => Names of the fields to output. If this attribute is specified, GEOS outputs all the fields specified by the user, regardless of their `plotLevel`-->
<xsd:attribute name="fieldNames" type="groupNameRef_array" default="{}" />
<!--format => Output data format. Valid options: ``binary``, ``ascii``-->
<xsd:attribute name="format" type="geos_vtk_VTKOutputMode" default="binary" />
Expand Down Expand Up @@ -2652,6 +2677,8 @@ Level 0 outputs no specific information for this solver. Higher levels require m
<xsd:attribute name="useDBC" type="integer" default="0" />
<!--useMass => Use mass formulation instead of molar. Warning : Affects SourceFlux rates units.-->
<xsd:attribute name="useMass" type="integer" default="0" />
<!--useNewGravity => Flag indicating whether new gravity treatment is used-->
<xsd:attribute name="useNewGravity" type="integer" default="0" />
<!--useSimpleAccumulation => Flag indicating whether simple accumulation form is used-->
<xsd:attribute name="useSimpleAccumulation" type="integer" default="1" />
<!--useTotalMassEquation => Flag indicating whether total mass equation is used-->
Expand Down Expand Up @@ -2739,6 +2766,8 @@ Level 0 outputs no specific information for this solver. Higher levels require m
<xsd:attribute name="temperature" type="real64" use="required" />
<!--useMass => Use mass formulation instead of molar. Warning : Affects SourceFlux rates units.-->
<xsd:attribute name="useMass" type="integer" default="0" />
<!--useNewGravity => Flag indicating whether new gravity treatment is used-->
<xsd:attribute name="useNewGravity" type="integer" default="0" />
<!--useSimpleAccumulation => Flag indicating whether simple accumulation form is used-->
<xsd:attribute name="useSimpleAccumulation" type="integer" default="1" />
<!--useTotalMassEquation => Flag indicating whether total mass equation is used-->
Expand Down

0 comments on commit 1caf325

Please sign in to comment.