REMORA
Regional Modeling of Oceans Refined Adaptively
Loading...
Searching...
No Matches
REMORA_funwave_isohelper.F90
Go to the documentation of this file.
1
3 use iso_c_binding
5 implicit none
6
7 contains
8
9 subroutine funwave_advance_c(salt,ims,ime,jms,jme,kms,kme) bind(C, name="funwave_advance_c")
10 INTEGER(C_INT), VALUE, intent(in) :: ims,ime,kms,kme,jms,jme
11 REAL(C_DOUBLE), intent(inout), dimension(ims:ime, jms:jme, kms:kme) :: salt
12 call funwave_advance_2d(salt,ims,ime,jms,jme,kms,kme)
13 end subroutine funwave_advance_c
14
void funwave_advance_c(double *salt, int ims, int ime, int jms, int jme, int kms, int kme)
subroutine funwave_advance_2d(salt, ims, ime, jms, jme, kms, kme)