379 character(len=LENMEMPATH) :: input_mempath
380 type(CharacterStringType),
dimension(:),
contiguous, &
382 type(CharacterStringType),
dimension(:),
contiguous, &
384 type(CharacterStringType),
dimension(:),
contiguous, &
386 type(CharacterStringType),
dimension(:),
contiguous, &
388 type(CharacterStringType),
dimension(:),
contiguous, &
390 character(len=LINELENGTH) :: exgtype
391 integer(I4B) :: exg_id
392 integer(I4B) :: m1_id, m2_id
393 character(len=LINELENGTH) :: fname, name1, name2
394 character(len=LENEXCHANGENAME) :: exg_name
395 character(len=LENMEMPATH) :: exg_mempath
397 character(len=LINELENGTH) :: errmsg
398 logical(LGP) :: terminate = .true.
399 logical(LGP) :: both_remote, both_local
401 character(len=*),
parameter :: fmtmerr =
"('Error in simulation control ', &
402 &'file. Could not find model: ', a)"
408 call mem_setptr(etypes,
'EXGTYPE', input_mempath)
409 call mem_setptr(efiles,
'EXGFILE', input_mempath)
410 call mem_setptr(emnames_a,
'EXGMNAMEA', input_mempath)
411 call mem_setptr(emnames_b,
'EXGMNAMEB', input_mempath)
412 call mem_setptr(emempaths,
'EXGMEMPATHS', input_mempath)
415 write (iout,
'(/1x,a)')
'READING SIMULATION EXCHANGES'
421 do n = 1,
size(etypes)
428 exg_mempath = emempaths(n)
433 m1_id = ifind(model_names, name1)
435 write (errmsg, fmtmerr) trim(name1)
436 call store_error(errmsg, terminate)
438 m2_id = ifind(model_names, name2)
440 write (errmsg, fmtmerr) trim(name2)
441 call store_error(errmsg, terminate)
445 both_remote = (model_loc_idx(m1_id) == -1 .and. &
446 model_loc_idx(m2_id) == -1)
447 both_local = (model_loc_idx(m1_id) > 0 .and. &
448 model_loc_idx(m2_id) > 0)
449 if (.not. both_remote)
then
450 write (iout,
'(4x,a,a,i0,a,i0,a,i0)') trim(exgtype),
' exchange ', &
451 exg_id,
' will be created to connect model ', m1_id, &
452 ' with model ', m2_id
455 select case (exgtype)
457 write (exg_name,
'(a,i0)')
'CHF-GWF_', exg_id
459 call chfgwf_cr(fname, exg_name, exg_id, m1_id, m2_id, exg_mempath)
462 write (exg_name,
'(a,i0)')
'GWF-GWF_', exg_id
463 if (.not. both_remote)
then
470 call gwfgwt_cr(fname, exg_id, m1_id, m2_id)
474 call gwfgwe_cr(fname, exg_id, m1_id, m2_id)
477 call gwfprt_cr(fname, exg_id, m1_id, m2_id)
479 write (exg_name,
'(a,i0)')
'GWT-GWT_', exg_id
480 if (.not. both_remote)
then
486 write (exg_name,
'(a,i0)')
'GWE-GWE_', exg_id
487 if (.not. both_remote)
then
493 write (exg_name,
'(a,i0)')
'OLF-GWF_', exg_id
495 call olfgwf_cr(fname, exg_name, exg_id, m1_id, m2_id, exg_mempath)
498 write (errmsg,
'(a,a)') &
499 'Unknown simulation exchange type: ', trim(exgtype)
500 call store_error(errmsg, terminate)
505 write (iout,
'(1x,a)')
'END OF SIMULATION EXCHANGES'
This module contains the ChfGwfExchangeModule Module.
subroutine, public chfgwf_cr(filename, name, id, m1_id, m2_id, input_mempath)
@ brief Create CHF GWF exchange
This module contains the GweGweExchangeModule Module.
subroutine, public gweexchange_create(filename, name, id, m1_id, m2_id, input_mempath)
@ brief Create GWT GWT exchange
subroutine, public gwfgwe_cr(filename, id, m1_id, m2_id)
Create a new GWF to GWE exchange object.
This module contains the GwfGwfExchangeModule Module.
subroutine, public gwfexchange_create(filename, name, id, m1_id, m2_id, input_mempath)
@ brief Create GWF GWF exchange
subroutine, public gwfgwt_cr(filename, id, m1_id, m2_id)
Create a new GWF to GWT exchange object.
subroutine, public gwfprt_cr(filename, id, m1id, m2id)
Create a new GWF to PRT exchange object.
This module contains the GwtGwtExchangeModule Module.
subroutine, public gwtexchange_create(filename, name, id, m1_id, m2_id, input_mempath)
@ brief Create GWT GWT exchange
character(len=lenmempath) function create_mem_path(component, subcomponent, context)
returns the path to the memory object
This module contains the OlfGwfExchangeModule Module.
subroutine, public olfgwf_cr(filename, name, id, m1_id, m2_id, input_mempath)
@ brief Create OLF GWF exchange
This module contains simulation variables.
character(len=linelength) idm_context
subroutine, public add_virtual_gwe_exchange(name, exchange_id, model1_id, model2_id)
Add a virtual GWE-GWE exchange to the simulation.
subroutine, public add_virtual_gwf_exchange(name, exchange_id, model1_id, model2_id)
Add a virtual GWF-GWF exchange to the simulation.
subroutine, public add_virtual_gwt_exchange(name, exchange_id, model1_id, model2_id)
Add a virtual GWT-GWT exchange to the simulation.