|
std::string | timestamp (int argc, char *argv[]) |
| Generate one line entry for the history global attribute.
|
|
template<class T > |
bool | check_real_time (int ncid, const char *name, int *dimID, int *tvarID) |
| DEPRECATED Check if an unlimited dimension exists as if define_real_time was called.
|
|
template<class T > |
int | define_real_time (int ncid, const char *name, int *dimID, int *tvarID, bool full_check=false) |
| DEPRECATED Define an unlimited time dimension and coordinate variable.
|
|
int | define_time (int ncid, const char *name, int *dimID, int *tvarID) |
| DEPRECATED An alias for define_real_time<double>
|
|
int | define_limited_time (int ncid, const char *name, int size, int *dimID, int *tvarID) |
| DEPRECATED Define a limited time dimension and coordinate variable.
|
|
template<class T > |
bool | check_dimension (int ncid, int *dimID, const dg::RealGrid1d< T > &g, std::string name_dim="x", std::string axis="X") |
| DEPRECATED Check if a dimension exists as if define_dimension was called.
|
|
template<class T > |
int | define_dimension (int ncid, int *dimID, const dg::RealGrid1d< T > &g, std::string name_dim="x", std::string axis="X", bool full_check=false) |
| DEPRECATED Define a 1d dimension and associated coordinate variable.
|
|
template<class Topology , std::enable_if_t< dg::is_vector_v< typename Topology::host_vector, dg::SharedVectorTag >, bool > = true> |
int | define_dimensions (int ncid, int *dimsIDs, const Topology &g, std::vector< std::string > name_dims={}, bool full_check=false) |
| DEPRECATED Define dimensions and associated coordiante variables.
|
|
template<class Topology , std::enable_if_t< dg::is_vector_v< typename Topology::host_vector, dg::SharedVectorTag >, bool > = true> |
int | define_dimensions (int ncid, int *dimsIDs, int *tvarID, const Topology &g, std::vector< std::string > name_dims={}, bool full_check=false) |
| DEPRECATED Define an unlimited time and grid dimensions together with their coordinate variables.
|
|
template<class Topology , std::enable_if_t< dg::is_vector_v< typename Topology::host_vector, dg::SharedVectorTag >, bool > = true> |
bool | check_dimensions (int ncid, int *dimsIDs, const Topology &g, std::vector< std::string > name_dims={}) |
| DEPRECATED Check if dimensions exist as if define_dimensions was called.
|
|
template<class Topology , std::enable_if_t< dg::is_vector_v< typename Topology::host_vector, dg::SharedVectorTag >, bool > = true> |
bool | check_dimensions (int ncid, int *dimsIDs, int *tvarID, const Topology &g, std::vector< std::string > name_dims={}) |
| DEPRECATED Check if dimensions exist as if define_dimensions was called.
|
|
template<class T > |
int | define_limtime_xy (int ncid, int *dimsIDs, int size, int *tvarID, const dg::aRealTopology2d< T > &g, std::vector< std::string > name_dims={"time", "y", "x"}) |
| DEPRECATED Define a limited time and 2 dimensions and associated coordinate variables.
|
|
template<class MPITopology , std::enable_if_t< dg::is_vector_v< typename MPITopology::host_vector, dg::MPIVectorTag >, bool > = true> |
int | define_dimensions (int ncid, int *dimsIDs, const MPITopology &g, std::vector< std::string > name_dims={}, bool full_check=false) |
| DEPRECATED All processes may call this but only master process has to and will execute!! Convenience function that just calls the corresponding serial version with the global grid.
|
|
template<class MPITopology , std::enable_if_t< dg::is_vector_v< typename MPITopology::host_vector, dg::MPIVectorTag >, bool > = true> |
int | define_dimensions (int ncid, int *dimsIDs, int *tvarID, const MPITopology &g, std::vector< std::string > name_dims={}, bool full_check=false) |
| DEPRECATED All processes may call this but only master process has to and will execute!! Convenience function that just calls the corresponding serial version with the global grid.
|
|
template<class MPITopology , std::enable_if_t< dg::is_vector_v< typename MPITopology::host_vector, dg::MPIVectorTag >, bool > = true> |
bool | check_dimensions (int ncid, int *dimsIDs, const MPITopology &g, std::vector< std::string > name_dims={}) |
| DEPRECATED All processes may call this and all will execute!! Convenience function that just calls the corresponding serial version with the global grid.
|
|
template<class MPITopology , std::enable_if_t< dg::is_vector_v< typename MPITopology::host_vector, dg::MPIVectorTag >, bool > = true> |
bool | check_dimensions (int ncid, int *dimsIDs, int *tvarID, const MPITopology &g, std::vector< std::string > name_dims={}) |
| DEPRECATED All processes may call this and all will execute!! Convenience function that just calls the corresponding serial version with the global grid.
|
|
template<class host_vector , class Topology > |
void | get_var (int ncid, int varid, const Topology &grid, host_vector &data, bool parallel=true) |
| DEPRECATED Convenience wrapper around nc_get_var .
|
|
template<class host_vector , class Topology > |
void | get_vara (int ncid, int varid, unsigned slice, const Topology &grid, host_vector &data, bool parallel=true) |
| DEPRECATED Convenience wrapper around nc_get_vara()
|
|
template<class T , class real_type > |
void | get_var (int ncid, int varid, const RealGrid0d< real_type > &grid, T &data, bool parallel=true) |
| DEPRECATED Read a scalar from the netcdf file.
|
|
template<class T , class real_type > |
void | get_vara (int ncid, int varid, unsigned slice, const RealGrid0d< real_type > &grid, T &data, bool parallel=true) |
| DEPRECATED Read a scalar to the netcdf file.
|
|
template<class host_vector , class Topology > |
void | put_var (int ncid, int varid, const Topology &grid, const host_vector &data, bool parallel=false) |
| DEPRECATED Write an array to NetCDF file.
|
|
template<class host_vector , class Topology > |
void | put_vara (int ncid, int varid, unsigned slice, const Topology &grid, const host_vector &data, bool parallel=false) |
| DEPRECATED Write an array to NetCDF file.
|
|
template<class T , class real_type > |
void | put_var (int ncid, int varid, const RealGrid0d< real_type > &grid, T data, bool parallel=false) |
| DEPRECATED Write a scalar to the NetCDF file.
|
|
template<class T , class real_type > |
void | put_vara (int ncid, int varid, unsigned slice, const RealGrid0d< real_type > &grid, T data, bool parallel=false) |
| DEPRECATED Write a scalar to the NetCDF file.
|
|
ProbesParams | parse_probes (const dg::file::WrappedJsonValue &js, enum error probes_err=file::error::is_silent) |
| Parse probe field in json file for use with Probes class.
|
|
JsonType | file2Json (std::string filename, enum comments comm=file::comments::are_discarded, enum error err=file::error::is_throw) |
| Convenience wrapper to open a file and parse it into a JsonType.
|
|
void | file2Json (std::string filename, JsonType &js, enum comments comm=file::comments::are_discarded, enum error err=file::error::is_throw) |
| Same as js = dg::file::file2Json( filename, comm, err)
|
|
JsonType | string2Json (std::string input, enum comments comm=file::comments::are_discarded, enum error err=file::error::is_throw) |
| Convenience wrapper to parse a string into a JsonType.
|
|
void | string2Json (std::string input, JsonType &js, enum comments comm=file::comments::are_discarded, enum error err=file::error::is_throw) |
| Same as js = string2Json( input, comm, err)
|
|
template<class ContainerType > |
dg::file::JsonType | vec2json (const ContainerType &shared) |
| convert a vector to a json arrray
|
|
template<class T > |
dg::file::JsonType | vec2json (std::initializer_list< T > shared) |
| Specialization for intitializer list.
|
|