Skip to content

Commit

Permalink
Do not prepare mesh by default for p-elements before splitting.
Browse files Browse the repository at this point in the history
  • Loading branch information
raback committed Jan 30, 2025
1 parent 2d62e2d commit fc663ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fem/src/ModelDescription.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2984,7 +2984,9 @@ FUNCTION LoadModel( ModelName,BoundariesOnly,numprocs,mype,MeshIndex) RESULT( Mo

IF( MeshLevels > 1 ) THEN
! This has been commented out, but is needed. There may be some issues in parallel still...
CALL PrepareMesh( Model, NewMesh, ParEnv % PEs > 1 )
IF(ListGetLogical(Model % Simulation,'Prepare Mesh Before Split',GotIt) ) THEN
CALL PrepareMesh( Model, NewMesh, ParEnv % PEs > 1 )
END IF
END IF


Expand Down

0 comments on commit fc663ee

Please sign in to comment.