2025-09-05 09:42:21 +02:00

122 lines
3.3 KiB
Fortran
Executable File

! gfortran -cpp -O3 -flto ex_1.f90 -o ex_1
! ./ex_1
! A very simple starting point: remap a quadratic profile
! between two unequal (but uniform) grids. The PPM + PQM
! methods should be exact here!
!
# include "../src/ppr_1d.f90"
program ex
use ppr_1d
implicit none
integer, parameter :: npos = 31 ! no. edge (old grid)
integer, parameter :: ntmp = 23 ! no. edge (new grid)
integer, parameter :: nvar = 1 ! no. variables to remap
integer, parameter :: ndof = 1 ! no. FV DoF per cell
integer :: ipos
!------------------------------ position of cell edges !
real*8 :: xpos(npos),xtmp(ntmp)
real*8 :: xmid
!-------------------------------- finite-volume arrays !
! Arrays represent a "block" of finite-volume tracers
! to remap. The 1st dim. is the no. of DoF per cell,
! NDOF=1 is a standard finite-volume scheme where the
! data is specified as cell means. NDOF>1 is reserved
! for future use with DG-style schemes. NVAR is the
! number of tracers to remap. Processing tracers in a
! batch is typically more efficient than one-by-one.
! The last dim. is the no. cells (layers) in the grid.
real*8 :: init(ndof,nvar,npos-1)
real*8 :: ftmp(ndof,nvar,ntmp-1)
real*8 :: fdat(ndof,nvar,npos-1)
!------------------------------ method data-structures !
type(rmap_work) :: work
type(rmap_opts) :: opts
type(rcon_ends) :: bc_l(nvar)
type(rcon_ends) :: bc_r(nvar)
!------------------------------ define a simple domain !
call linspace(0.d0,1.d0,npos,xpos)
call linspace(0.d0,1.d0,ntmp,xtmp)
!------------------------------ setup some simple data !
do ipos = +1, npos-1
xmid = xpos(ipos+0) * 0.5d+0 &
& + xpos(ipos+1) * 0.5d+0
init(1,1,ipos) = xmid ** 2
end do
!------------------------------ specify method options !
opts%edge_meth = p3e_method ! 3rd-order edge interp.
opts%cell_meth = ppm_method ! PPM method in cells
opts%cell_lims = null_limit ! no slope limiter
!------------------------------ set BC.'s at endpoints !
bc_l%bcopt = bcon_loose ! "loose" = extrapolate
bc_r%bcopt = bcon_loose
!------------------------------ init. method workspace !
call work%init(npos,nvar,opts)
!------------------------------ re-map back-and-forth: !
fdat = init
do ipos = +1, +1000
!------------------------------ re-map from dat-to-tmp !
call rmap1d(npos,ntmp,nvar,ndof, &
& xpos,xtmp,fdat,ftmp, &
& bc_l,bc_r,work,opts)
!------------------------------ re-map from tmp-to-dat !
call rmap1d(ntmp,npos,nvar,ndof, &
& xtmp,xpos,ftmp,fdat, &
& bc_l,bc_r,work,opts)
end do
!------------------------------ clear method workspace !
call work%free()
!------------------------------ dump results to stdout !
print*,"Cell data: [INIT] [RMAP] "
do ipos = +1, npos-1
print *, init(1,1,ipos) &
& , fdat(1,1,ipos)
end do
print*,"Conservation defect := " &
& , sum(init) - sum(fdat)
end program