Skip to content

Commit

Permalink
Initialize dir2D and dir2D_ctrl to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
loganoz committed Oct 27, 2023
1 parent 4100161 commit 528b186
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Solver/src/libs/mesh/HexMesh.f90
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ MODULE HexMeshClass
class(Zone_t), dimension(:), allocatable :: zones
logical :: child = .FALSE. ! Is this a (multigrid) child mesh? default .FALSE.
logical :: meshIs2D = .FALSE. ! Is this a 2D mesh? default .FALSE.
integer :: dir2D ! If it is in fact a 2D mesh, dir 2D stores the global direction IX, IY or IZ
integer :: dir2D_ctrl ! dir2D as in the control file
integer :: dir2D = 0 ! If it is in fact a 2D mesh, dir 2D stores the global direction IX, IY or IZ
integer :: dir2D_ctrl = 0 ! dir2D as in the control file
logical :: anisotropic = .FALSE. ! Is the mesh composed by elements with anisotropic polynomial orders? default false
logical :: ignoreBCnonConformities = .FALSE.
contains
Expand Down

0 comments on commit 528b186

Please sign in to comment.