I'm trying to set up a point source for modelling the inflow of a hydrothermal vent.
Starting from the Riverplume example, I have some questions about the variables to set in ana_psource.h.
1)If
Code: Select all
Nsrc(ng)=Nsrc(ng)+10 ! Add rainfall location
DO is=2,6
SOURCES(ng)%Dsrc(is)=2.0_r8 ! vertical influx, LwSrc=T
SOURCES(ng)%Isrc(is)=6 ! i = 6
SOURCES(ng)%Jsrc(is)=is+25 ! j = 27 to 31
2)How is it possible to set the depth of the point source, to have influx only from the bottom? The rainfall example has no specified vertical coordinate.
Would it be similar to the other coordinates:
Code: Select all
SOURCES(ng)%Ksrc(is)=SOMEVALUE
Code: Select all
#if defined RIVERPLUME1
4)Are the variables in ana_psource.h still used if a netcdf input is specified in roms.in or is this file than irrelevant? Because the Riverplume1 example seems to use both.
5)Are analytical point sources still problematic because of parallel bugs as stated here: https://www.myroms.org/wiki/River_Runof ... _psource.h
So would you recommend using a netcdf file or the analytical input for an application with one point source with upward inflow?
Thanks in advance for your help!