mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
non-recursive automake: add shortcut targets
instead of typing 'make test/common/propertysystem/test_propertysystem' in the toplevel build directory, one can now just type 'make test_propertysystem'
This commit is contained in:
parent
896f0ed23d
commit
a299e29f02
@ -29,7 +29,7 @@
|
||||
#include <ewoms/boxmodels/immiscible/immisciblemodel.hh>
|
||||
|
||||
// The chemical species that are used
|
||||
#include <ewoms/material/components/h2o.hh>
|
||||
#include <ewoms/material/components/simpleh2o.hh>
|
||||
#include <ewoms/material/components/lnapl.hh>
|
||||
|
||||
// The material laws
|
||||
@ -65,7 +65,7 @@ SET_TYPE_PROP(TutorialProblemCoupled, GridCreator, Ewoms::CubeGridCreator<TypeTa
|
||||
// Set the wetting phase /*@\label{tutorial-coupled:2p-system-start}@*/
|
||||
SET_TYPE_PROP(TutorialProblemCoupled, WettingPhase, /*@\label{tutorial-coupled:wettingPhase}@*/
|
||||
Ewoms::LiquidPhase<typename GET_PROP_TYPE(TypeTag, Scalar),
|
||||
Ewoms::H2O<typename GET_PROP_TYPE(TypeTag, Scalar)> >);
|
||||
Ewoms::SimpleH2O<typename GET_PROP_TYPE(TypeTag, Scalar)> >);
|
||||
|
||||
// Set the non-wetting phase
|
||||
SET_TYPE_PROP(TutorialProblemCoupled, NonwettingPhase, /*@\label{tutorial-coupled:nonwettingPhase}@*/
|
||||
|
@ -39,7 +39,7 @@
|
||||
#include<ewoms/decoupled/2p/transport/fv/evalcflfluxcoats.hh>
|
||||
|
||||
// the components that are used
|
||||
#include <ewoms/material/components/h2o.hh>
|
||||
#include <ewoms/material/components/simpleh2o.hh>
|
||||
#include <ewoms/material/components/lnapl.hh>
|
||||
|
||||
// the grid includes
|
||||
@ -78,7 +78,7 @@ SET_PROP(TutorialProblemDecoupled, WettingPhase) /*@\label{tutorial-decoupled:2p
|
||||
private:
|
||||
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
|
||||
public:
|
||||
typedef Ewoms::LiquidPhase<Scalar, Ewoms::H2O<Scalar> > type; /*@\label{tutorial-decoupled:wettingPhase}@*/
|
||||
typedef Ewoms::LiquidPhase<Scalar, Ewoms::SimpleH2O<Scalar> > type; /*@\label{tutorial-decoupled:wettingPhase}@*/
|
||||
};
|
||||
|
||||
// Set the non-wetting phase
|
||||
|
Loading…
Reference in New Issue
Block a user