Skip to content

Commit

Permalink
Merge pull request #1763 from eyalshimony/devel
Browse files Browse the repository at this point in the history
Fixed incorrect dimensionality in data variables in combine_vol_data
  • Loading branch information
danielpeter authored Nov 20, 2024
2 parents 7d6d0cd + 02dee28 commit 6318450
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/auxiliaries/combine_vol_data.F90
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ subroutine cvd_write_corners(NSPEC_AB,NGLOB_AB,ibool,xstore,ystore,zstore,data,n
integer,intent(in) :: NSPEC_AB,NGLOB_AB
integer,dimension(NGLLX,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: ibool
real(kind=CUSTOM_REAL),dimension(NGLOB_AB),intent(in) :: xstore, ystore, zstore
real(kind=CUSTOM_REAL),dimension(NGLLY,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: data
real(kind=CUSTOM_REAL),dimension(NGLLX,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: data

integer, intent(inout) :: numpoin,np

Expand Down Expand Up @@ -860,7 +860,7 @@ subroutine cvd_write_GLL_points(NSPEC_AB,NGLOB_AB,ibool,xstore,ystore,zstore,dat
integer,intent(in) :: NSPEC_AB,NGLOB_AB
integer,dimension(NGLLX,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: ibool
real(kind=CUSTOM_REAL),dimension(NGLOB_AB),intent(in) :: xstore, ystore, zstore
real(kind=CUSTOM_REAL),dimension(NGLLY,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: data
real(kind=CUSTOM_REAL),dimension(NGLLX,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: data

integer,intent(inout) :: numpoin,np

Expand Down

0 comments on commit 6318450

Please sign in to comment.