]> SALOME platform Git repositories - tools/solverlab.git/commitdiff
Salome HOME
Changed splitting policy. Test now working
authormichael <michael@localhost.localdomain>
Mon, 30 Nov 2020 13:10:21 +0000 (14:10 +0100)
committermichael <michael@localhost.localdomain>
Mon, 30 Nov 2020 13:10:21 +0000 (14:10 +0100)
CoreFlows/examples/C/StationaryDiffusionEquation_3DFV_StructuredTetrahedra.cxx

index 398c4f23f680b5352f2fc258cf47e3510d87e0a7..41ea3a02555fdea5e1af1d54c7081e5fbe968645 100755 (executable)
@@ -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=20;
+       int ny=20;
+       int nz=20;
 
-    /* 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 construction  : splitting policy to 0 yield all nodes considered boundary nodes */
+       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;