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

index eca58cb9289cfb469e399c2a36fb725f9fac9b2e..55b04eb6558cda619a7c8ed2ed4f1bfbc4dce6e8 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=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;