From 7d74dd25ac94ded8ce8c8dc2fa8f3bc37b05c610 Mon Sep 17 00:00:00 2001 From: Jonathan Lambrechts <jonathan.lambrechts@uclouvain.be> Date: Fri, 19 Mar 2010 13:46:55 +0000 Subject: [PATCH] update cylindereddies.lua --- Solver/TESTCASES/CylinderEddies.lua | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Solver/TESTCASES/CylinderEddies.lua b/Solver/TESTCASES/CylinderEddies.lua index 57347cdd5a..bd15cbcc7a 100644 --- a/Solver/TESTCASES/CylinderEddies.lua +++ b/Solver/TESTCASES/CylinderEddies.lua @@ -25,10 +25,6 @@ xyz = functionCoordinates.get() FS = functionLua(4, 'free_stream', {xyz}) -- diffusivity -mu=fullMatrix(1,1); -mu:set(0,0,0.025) -kappa=fullMatrix(1,1); -kappa:set(0,0,0.01) print'*** Loading the mesh and the model ***' myModel = GModel () @@ -40,7 +36,7 @@ DG = dgSystemOfEquations (myModel) DG:setOrder(order) law=dgPerfectGasLaw2d() -law:setViscosityAndThermalConductivity(functionConstant(mu):getName(),functionConstant(kappa):getName()); +law:setViscosityAndThermalConductivity(functionConstant({0.025}),functionConstant({0.01})); DG:setConservationLaw(law) law:addBoundaryCondition('Cylinder',law:newNonSlipWallBoundary()) -- GitLab