mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Fixed derived type for StructuredMesh (had int4s instead of real8s for origin and width).
This commit is contained in:
parent
0bbf63e0a8
commit
03f00a2259
1 changed files with 2 additions and 2 deletions
|
|
@ -12,8 +12,8 @@ module mesh_header
|
|||
integer :: type
|
||||
integer :: n_dimension
|
||||
integer, allocatable :: dimension(:)
|
||||
integer, allocatable :: origin(:)
|
||||
integer, allocatable :: width(:)
|
||||
real(8), allocatable :: origin(:)
|
||||
real(8), allocatable :: width(:)
|
||||
end type StructuredMesh
|
||||
|
||||
end module mesh_header
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue