File indexing completed on 2025-08-03 08:20:02
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef CLVISC_WRAPPER_H
0017 #define CLVISC_WRAPPER_H
0018
0019 #include "FluidDynamics.h"
0020 #include "clvisc.h"
0021
0022 using namespace Jetscape;
0023
0024
0025 class CLVisc : public FluidDynamics {
0026 private:
0027 std::unique_ptr<clvisc::CLVisc> hydro_;
0028 int doCooperFrye;
0029
0030
0031 double initial_condition_scale_factor;
0032
0033
0034 static RegisterJetScapeModule<CLVisc> reg;
0035
0036 public:
0037 CLVisc();
0038 ~CLVisc();
0039
0040 void InitializeHydro(Parameter parameter_list);
0041 void EvolveHydro();
0042 void GetHydroInfo(Jetscape::real t, Jetscape::real x, Jetscape::real y,
0043 Jetscape::real z,
0044 std::unique_ptr<FluidCellInfo> &fluid_cell_info_ptr);
0045 void GetHyperSurface(Jetscape::real T_cut,
0046 SurfaceCellInfo *surface_list_ptr){};
0047 };
0048
0049 #endif