378 character(len=LENMEMPATH) :: input_mempath
379 type(CharacterStringType),
dimension(:),
contiguous, &
381 type(CharacterStringType),
dimension(:),
contiguous, &
383 type(CharacterStringType),
dimension(:),
contiguous, &
385 type(CharacterStringType),
dimension(:),
contiguous, &
387 type(CharacterStringType),
dimension(:),
contiguous, &
389 character(len=LINELENGTH) :: exgtype
390 integer(I4B) :: exg_id
391 integer(I4B) :: m1_id, m2_id
392 character(len=LINELENGTH) :: fname, name1, name2
393 character(len=LENEXCHANGENAME) :: exg_name
394 character(len=LENMEMPATH) :: exg_mempath
396 character(len=LINELENGTH) :: errmsg
397 logical(LGP) :: terminate = .true.
398 logical(LGP) :: both_remote, both_local
400 character(len=*),
parameter :: fmtmerr =
"('Error in simulation control ', &
401 &'file. Could not find model: ', a)"
407 call mem_setptr(etypes,
'EXGTYPE', input_mempath)
408 call mem_setptr(efiles,
'EXGFILE', input_mempath)
409 call mem_setptr(emnames_a,
'EXGMNAMEA', input_mempath)
410 call mem_setptr(emnames_b,
'EXGMNAMEB', input_mempath)
411 call mem_setptr(emempaths,
'EXGMEMPATHS', input_mempath)
414 write (iout,
'(/1x,a)')
'READING SIMULATION EXCHANGES'
420 do n = 1,
size(etypes)
427 exg_mempath = emempaths(n)
432 m1_id = ifind(model_names, name1)
434 write (errmsg, fmtmerr) trim(name1)
435 call store_error(errmsg, terminate)
437 m2_id = ifind(model_names, name2)
439 write (errmsg, fmtmerr) trim(name2)
440 call store_error(errmsg, terminate)
444 both_remote = (model_loc_idx(m1_id) == -1 .and. &
445 model_loc_idx(m2_id) == -1)
446 both_local = (model_loc_idx(m1_id) > 0 .and. &
447 model_loc_idx(m2_id) > 0)
448 if (.not. both_remote)
then
449 write (iout,
'(4x,a,a,i0,a,i0,a,i0)') trim(exgtype),
' exchange ', &
450 exg_id,
' will be created to connect model ', m1_id, &
451 ' with model ', m2_id
454 select case (exgtype)
456 write (exg_name,
'(a,i0)')
'CHF-GWF_', exg_id
458 call chfgwf_cr(fname, exg_name, exg_id, m1_id, m2_id, exg_mempath)
461 write (exg_name,
'(a,i0)')
'GWF-GWF_', exg_id
462 if (.not. both_remote)
then
469 call gwfgwt_cr(fname, exg_id, m1_id, m2_id)
473 call gwfgwe_cr(fname, exg_id, m1_id, m2_id)
476 call gwfprt_cr(fname, exg_id, m1_id, m2_id)
478 write (exg_name,
'(a,i0)')
'GWT-GWT_', exg_id
479 if (.not. both_remote)
then
486 write (exg_name,
'(a,i0)')
'GWE-GWE_', exg_id
487 if (.not. both_remote)
then
494 write (exg_name,
'(a,i0)')
'OLF-GWF_', exg_id
496 call olfgwf_cr(fname, exg_name, exg_id, m1_id, m2_id, exg_mempath)
499 write (errmsg,
'(a,a)') &
500 'Unknown simulation exchange type: ', trim(exgtype)
501 call store_error(errmsg, terminate)
506 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_gwf_exchange(name, exchange_id, model1_id, model2_id)
Add a virtual GWF-GWF exchange to the simulation.
subroutine, public add_virtual_tsp_exchange(name, exchange_id, m1_id, m2_id, qtype)
Add a virtual GWT-GWT or GWE-GWE exchange to the simulation.