WIP in creating the julia three component system.

This commit is contained in:
Kai Bao 2021-12-01 16:14:36 +01:00 committed by Trine Mykkeltvedt
parent e685864c1f
commit 61e2f5817d

View File

@ -0,0 +1,18 @@
#ifndef OPM_JULIATHREECOMPONENTFLUIDSYSTEM_HH
#define OPM_JULIATHREECOMPONENTFLUIDSYSTEM_HH
#include <opm/material/fluidsystems/BaseFluidSystem.hpp>
namespace Opm {
/*!
* \ingroup FluidSystem
*
* \brief A two phase three component fluid system from the Julia test
*/
template <class Scalar>
class JuliaThreeComponentFluidSystem
: public Opm::BaseFluidSystem<Scalar, JuliaThreeComponentFluidSystem<Scalar> > {
}
#endif //OPM_JULIATHREECOMPONENTFLUIDSYSTEM_HH