From 27f1e5641ff4c7dc7cb0bb4c8c6d06526e57254c Mon Sep 17 00:00:00 2001 From: michael Date: Mon, 30 Nov 2020 14:10:04 +0100 Subject: [PATCH] Changed splitting policy. Test working --- ...tionaryDiffusionEquation_3DEF_StructuredTetrahedra.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CoreFlows/examples/C/StationaryDiffusionEquation_3DEF_StructuredTetrahedra.cxx b/CoreFlows/examples/C/StationaryDiffusionEquation_3DEF_StructuredTetrahedra.cxx index eca58cb..55b04eb 100755 --- a/CoreFlows/examples/C/StationaryDiffusionEquation_3DEF_StructuredTetrahedra.cxx +++ b/CoreFlows/examples/C/StationaryDiffusionEquation_3DEF_StructuredTetrahedra.cxx @@ -17,12 +17,12 @@ int main(int argc, char** argv) double ysup=1.0; double zinf=0.0; double zsup=1.0; - int nx=2; - int ny=2; - int nz=2; + int nx=10; + int ny=10; + int nz=10; /* Mesh construction : splitting polity to 0 yield all nodes considered boundary nodes */ - Mesh M(xinf,xsup,nx,yinf,ysup,ny,zinf,zsup,nz,0); //Regular tetrahadral mesh + Mesh M(xinf,xsup,nx,yinf,ysup,ny,zinf,zsup,nz,1); //Regular tetrahadral mesh /* set the limit field for each boundary */ double eps=1e-6; -- 2.39.2