mirror of
https://github.com/OPM/opm-simulators.git
synced 2026-08-06 21:34:50 -05:00
rename GridSize -> DomainSize, Grid\.?Cells -> Cells
this hopefully reduces confusion about what which parameter means. the Domain* parameters specify the physical size of the simulated domain, the Cells* specify how many cells the grid has into the direction of each axis.
This commit is contained in:
committed by
Andreas Lauser
parent
a8c039bb8b
commit
2416905f45
@@ -102,13 +102,13 @@ SET_SCALAR_PROP(TutorialProblemDecoupled, CFLFactor, 0.95); /*@\label{tutorial-d
|
||||
SET_BOOL_PROP(TutorialProblemDecoupled, EnableGravity, false); /*@\label{tutorial-decoupled:gravity}@*/
|
||||
|
||||
// define the properties required by the cube grid creator
|
||||
SET_SCALAR_PROP(TutorialProblemDecoupled, GridSizeX, 300.0);
|
||||
SET_SCALAR_PROP(TutorialProblemDecoupled, GridSizeY, 60.0);
|
||||
SET_SCALAR_PROP(TutorialProblemDecoupled, GridSizeZ, 0.0);
|
||||
SET_SCALAR_PROP(TutorialProblemDecoupled, DomainSizeX, 300.0);
|
||||
SET_SCALAR_PROP(TutorialProblemDecoupled, DomainSizeY, 60.0);
|
||||
SET_SCALAR_PROP(TutorialProblemDecoupled, DomainSizeZ, 0.0);
|
||||
|
||||
SET_INT_PROP(TutorialProblemDecoupled, GridCellsX, 100);
|
||||
SET_INT_PROP(TutorialProblemDecoupled, GridCellsY, 1);
|
||||
SET_INT_PROP(TutorialProblemDecoupled, GridCellsZ, 0);
|
||||
SET_INT_PROP(TutorialProblemDecoupled, CellsX, 100);
|
||||
SET_INT_PROP(TutorialProblemDecoupled, CellsY, 1);
|
||||
SET_INT_PROP(TutorialProblemDecoupled, CellsZ, 0);
|
||||
} /*@\label{tutorial-decoupled:propertysystem-end}@*/
|
||||
|
||||
/*! \ingroup DecoupledProblems
|
||||
|
||||
Reference in New Issue
Block a user