mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
replace typedefs with type aliases
This commit is contained in:
parent
b99b606575
commit
de1e2480f8
@ -118,13 +118,13 @@ template<class Scalar> class WellContributions;
|
|||||||
|
|
||||||
// TODO: where we should put these types, WellInterface or Well Model?
|
// TODO: where we should put these types, WellInterface or Well Model?
|
||||||
// or there is some other strategy, like TypeTag
|
// or there is some other strategy, like TypeTag
|
||||||
typedef Dune::FieldVector<Scalar, numEq > VectorBlockType;
|
using VectorBlockType = Dune::FieldVector<Scalar, numEq>;
|
||||||
typedef Dune::BlockVector<VectorBlockType> BVector;
|
using BVector = Dune::BlockVector<VectorBlockType>;
|
||||||
|
|
||||||
typedef BlackOilPolymerModule<TypeTag> PolymerModule;
|
using PolymerModule = BlackOilPolymerModule<TypeTag>;
|
||||||
typedef BlackOilMICPModule<TypeTag> MICPModule;
|
using MICPModule = BlackOilMICPModule<TypeTag>;
|
||||||
|
|
||||||
// For the conversion between the surface volume rate and resrevoir voidage rate
|
// For the conversion between the surface volume rate and reservoir voidage rate
|
||||||
using RateConverterType = RateConverter::
|
using RateConverterType = RateConverter::
|
||||||
SurfaceToReservoirVoidage<FluidSystem, std::vector<int> >;
|
SurfaceToReservoirVoidage<FluidSystem, std::vector<int> >;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user