Indicate whether a file exists, perhaps with domain decomposition.
Definition at line 68 of file MOM_io.F90.
|
logical function | fms_file_exists (filename, domain, no_domain) |
| Returns true if the named file or its domain-decomposed variant exists. More...
|
|
logical function | mom_file_exists (filename, MOM_Domain) |
| Returns true if the named file or its domain-decomposed variant exists. More...
|
|
◆ fms_file_exists()
logical function mom_io::file_exists::fms_file_exists |
( |
character(len=*), intent(in) |
filename, |
|
|
type(domain2d), intent(in), optional |
domain, |
|
|
logical, intent(in), optional |
no_domain |
|
) |
| |
|
private |
Returns true if the named file or its domain-decomposed variant exists.
- Parameters
-
[in] | filename | The name of the file being inquired about |
[in] | domain | The mpp domain2d that describes the decomposition |
[in] | no_domain | This file does not use domain decomposition |
Definition at line 835 of file MOM_io.F90.
835 character(len=*),
intent(in) :: filename
836 type(domain2d),
optional,
intent(in) :: domain
837 logical,
optional,
intent(in) :: no_domain
841 logical :: FMS_file_exists
843 fms_file_exists = file_exist(filename, domain, no_domain)
◆ mom_file_exists()
logical function mom_io::file_exists::mom_file_exists |
( |
character(len=*), intent(in) |
filename, |
|
|
type(mom_domain_type), intent(in) |
MOM_Domain |
|
) |
| |
|
private |
Returns true if the named file or its domain-decomposed variant exists.
- Parameters
-
[in] | filename | The name of the file being inquired about |
[in] | mom_domain | The MOM_Domain that describes the decomposition |
Definition at line 821 of file MOM_io.F90.
821 character(len=*),
intent(in) :: filename
822 type(MOM_domain_type),
intent(in) :: MOM_Domain
827 logical :: MOM_file_exists
829 mom_file_exists = file_exist(filename, mom_domain%mpp_domain)
The documentation for this interface was generated from the following file:
- /glade/work/altuntas/cesm.sandboxes/cesm2_2_alpha_X_mom/components/mom/MOM6/src/framework/MOM_io.F90