pywfm.IWFMModel.get_subsidence_hydrograph_ids#

IWFMModel.get_subsidence_hydrograph_ids()#

Return the ids for the subsidence hydrographs specified in an IWFM model

Returns:

integer array of ids for subsidence hydrographs

Return type:

np.ndarray

See also

IWFMModel.get_n_hydrograph_types

Return the number of different hydrograph types being printed by the IWFM model

IWFMModel.get_hydrograph_type_list

Return a list of different hydrograph types being printed by the IWFM model

IWFMModel.get_n_groundwater_hydrographs

Return the number of groundwater hydrographs specified in an IWFM model

IWFMModel.get_n_subsidence_hydrographs

Return the number of subsidence hydrographs specified in an IWFM model

IWFMModel.get_n_stream_hydrographs

Return the number of stream flow hydrographs specified in an IWFM model

IWFMModel.get_n_tile_drain_hydrographs

Return the number of tile drain hydrographs specified in an IWFM model

IWFMModel.get_groundwater_hydrograph_ids

Return the IDs for the groundwater hydrographs specified in an IWFM model

IWFMModel.get_stream_hydrograph_ids

Return the IDs for the stream hydrographs specified in an IWFM model

IWFMModel.get_tile_drain_hydrograph_ids

Return the IDs for the tile drain hydrographs specified in an IWFM model

IWFMModel.get_groundwater_hydrograph_coordinates

Return the x,y-coordinates for the groundwater hydrographs specified in an IWFM model

IWFMModel.get_subsidence_hydrograph_coordinates

Return the x,y-coordinates for the subsidence hydrograph locations specified in an IWFM model

IWFMModel.get_stream_hydrograph_coordinates

Return the x,y-coordinates for the stream flow observation locations specified in an IWFM model

IWFMModel.get_tile_drain_hydrograph_coordinates

Return the x,y-coordinates for the tile drain observations specified in an IWFM model

IWFMModel.get_groundwater_hydrograph

Return the simulated groundwater hydrograph for the provided groundwater hydrograph id

IWFMModel.get_groundwater_hydrograph_at_node_and_layer

Return a simulated groundwater hydrograph for a node and layer

IWFMModel.get_subsidence_hydrograph

Return the simulated subsidence hydrograph for the provided subsidence hydrograph id

IWFMModel.get_stream_hydrograph

Return the simulated stream hydrograph for the provided stream hydrograph id

IWFMModel.get_tile_drain_hydrograph

Return the simulated tile drain hydrograph for the provided tile drain hydrograph id

Example

>>> from pywfm import IWFMModel
>>> pp_file = '../Preprocessor/PreProcessor_MAIN.IN'
>>> sim_file = 'Simulation_MAIN.IN'
>>> model = IWFMModel(pp_file, sim_file)
>>> model.get_subsidence_hydrograph_ids()
array([1, 2, 3, 4, 5])
>>> model.kill()
>>> model.close_log_file()