Skip to content

Commit

Permalink
calcSurfDispIncr
Browse files Browse the repository at this point in the history
  • Loading branch information
Angelyr committed Jul 9, 2024
1 parent 73eaac7 commit 75063fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/calculateDisplacement.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
subroutine calculateSurfaceDisplacement(mpMesh, latVertex, lonVertex, nEdgesOnCell, verticesOnCell, nVertices, sphereRadius)
subroutine calcSurfDispIncr(mpMesh, latVertex, lonVertex, nEdgesOnCell, verticesOnCell, nVertices, sphereRadius)
use :: polympo
use :: readMPAS
use :: iso_c_binding
Expand Down
4 changes: 2 additions & 2 deletions test/testFortranMPAdvection.f90
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ program main

numPush = 5
do i = 1, numPush
call calculateSurfaceDisplacement(mpMesh, latVertex, lonVertex, nEdgesOnCell, verticesOnCell, nVertices, sphereRadius)
call calcSurfDispIncr(mpMesh, latVertex, lonVertex, nEdgesOnCell, verticesOnCell, nVertices, sphereRadius)
call polympo_push(mpMesh)
! TODO: add timer
end do

call polympo_deleteMPMesh(mpMesh)
call polympo_finalize()

Expand Down
2 changes: 1 addition & 1 deletion test/testFortranMPReconstruction.f90
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ program main

! Test elm push reconstruction

call calculateSurfaceDisplacement(mpMesh, latVertex, lonVertex, nEdgesOnCell, verticesOnCell, nVertices, sphereRadius)
call calcSurfDispIncr(mpMesh, latVertex, lonVertex, nEdgesOnCell, verticesOnCell, nVertices, sphereRadius)
call polympo_setReconstructionOfMass(mpMesh,0,polympo_getMeshFElmType())
call polympo_push(mpMesh)
call polympo_getMeshElmMass(mpMesh,nCells,c_loc(meshElmMass))
Expand Down

0 comments on commit 75063fa

Please sign in to comment.