From: michael Date: Thu, 13 Jan 2022 17:31:08 +0000 (+0100) Subject: Updated test with new enum X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=76382228e2899d90f7f3fb2f97e900eaf131da79;p=tools%2Fsolverlab.git Updated test with new enum --- diff --git a/CoreFlows/examples/C/TransportEquation_1DHeatedChannel.cxx b/CoreFlows/examples/C/TransportEquation_1DHeatedChannel.cxx index 45d706b..c7e865a 100755 --- a/CoreFlows/examples/C/TransportEquation_1DHeatedChannel.cxx +++ b/CoreFlows/examples/C/TransportEquation_1DHeatedChannel.cxx @@ -31,7 +31,7 @@ int main(int argc, char** argv) //Set the fluid transport velocity vector transportVelocity(1,5);//fluid velocity vector - TransportEquation myProblem(LiquidPhase,around155bars600KTransport,transportVelocity); + TransportEquation myProblem(Water,around155bars600K,transportVelocity); //Set initial field Vector VV_Constant(1);//initial enthalpy diff --git a/CoreFlows/examples/C/TransportEquation_1DHeatedChannel_MPI.cxx b/CoreFlows/examples/C/TransportEquation_1DHeatedChannel_MPI.cxx index d97b858..d89f756 100755 --- a/CoreFlows/examples/C/TransportEquation_1DHeatedChannel_MPI.cxx +++ b/CoreFlows/examples/C/TransportEquation_1DHeatedChannel_MPI.cxx @@ -31,7 +31,7 @@ int main(int argc, char** argv) //Set the fluid transport velocity vector transportVelocity(1,5);//fluid velocity vector - TransportEquation myProblem(LiquidPhase,around155bars600KTransport,transportVelocity); + TransportEquation myProblem(Water,around155bars600K,transportVelocity); Field VV("Enthalpy", CELLS, M, 1);