Module doc_helper¶
check_simulation(simulation)
¶
Checks whether a simulation is configured to a state where it is executable
Checks whether a simulation is configured to a state where it is executable
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
Source code in swift2/simulation.py
configure_daily_gr4j(simulation)
¶
Configure a simulation with GR4J models for daily time step modelling
Configure a simulation with GR4J models for daily time step modelling
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
Source code in swift2/doc_helper.py
configure_hourly_gr4j(simulation)
¶
Configure a simulation with GR4J models for hourly time step modelling
Configure a simulation with GR4J models for hourly time step modelling
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
Source code in swift2/doc_helper.py
create_catchment(node_ids, node_names, link_ids, link_names, link_from_node, link_to_node, runoff_model_name='GR4J', areas_km2=None)
¶
Create a SWIFT catchment with a specified hydrologic model
Create a SWIFT catchment with a specified hydrologic model. This function is intended mostly for testing, not for usual modelling code.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
node_ids
|
Any
|
character, node unique identifiers |
required |
node_names
|
Any
|
character, node display names |
required |
link_ids
|
Any
|
character, links unique identifiers |
required |
link_names
|
Any
|
character, links display names |
required |
link_from_node
|
Any
|
character, identifier of the links' upstream node |
required |
link_to_node
|
Any
|
character, identifier of the links' downstream node |
required |
runoff_model_name
|
Any
|
A valid, known SWIFT model name (e.g. 'GR5H') |
'GR4J'
|
areas_km2
|
Any
|
The areas in square kilometres |
None
|
Returns:
Type | Description |
---|---|
A SWIFT simulation object (i.e. a model runner) |
Examples:
TODO
Source code in swift2/simulation.py
create_ensemble_forecast_simulation(simulation, data_library, start, end, input_map, lead_time, ensemble_size, n_time_steps_between_forecasts)
¶
Create an ensemble forecast simulation
Create an ensemble forecast simulation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
data_library
|
Any
|
external pointer type ENSEMBLE_DATA_SET_PTR, or a Python class wrapper around it |
required |
start
|
Any
|
the start date of the simulation. The time zone will be forced to UTC. |
required |
end
|
Any
|
the end date of the simulation. The time zone will be forced to UTC. |
required |
input_map
|
Any
|
a named list were names are the data library data identifiers, and values are character vectors with model state identifiers. |
required |
lead_time
|
Any
|
integer, the length in time steps of the forecasts. |
required |
ensemble_size
|
Any
|
ensemble size |
required |
n_time_steps_between_forecasts
|
Any
|
nTimeStepsBetweenForecasts |
required |
Returns:
Type | Description |
---|---|
An external pointer |
Source code in swift2/simulation.py
create_gr4jh_parameters(hourly=True)
¶
Get a parameter set that configures GR4J for hourly or daily operations
Derived from the initial Fortran implementation in SWIFTv1 * UHExponent = 2.5 is the default value for daily time step. Set to 1.25 for hourly time step * PercFactor = 9.0 / 4.0 for daily, 4.0 for hourly time step.
Returns:
Name | Type | Description |
---|---|---|
HyperCubeParameteriser |
a parameter set that can be applied to SWIFT systems with GR4J |
Source code in swift2/doc_helper.py
create_subarea(model_name, area_km2)
¶
Create a SWIFT subarea with a specified hydrologic model
Create a SWIFT subarea with a specified hydrologic model
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_name
|
Any
|
A valid, known SWIFT model name (e.g. 'GR5H') |
required |
area_km2
|
Any
|
The area in square kilometres |
required |
Returns:
Type | Description |
---|---|
A SWIFT simulation object (i.e. a model runner) |
Source code in swift2/simulation.py
create_subarea_simulation(data_id='MMH', simul_start='1990-01-01', simul_end='2005-12-31', model_id='GR4J', tstep='daily', varname_rain='P', varname_pet='E', data_rain_id='rain', data_evap_id='evap')
¶
Creates a one sub-catchment simulation
Creates a one sub-catchment simulation. This function is intended for creating sample simulations, not for use in production.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_id
|
str
|
data identifier in swift_sample_data |
'MMH'
|
simul_start
|
str
|
ISO string for the simulation start date time |
'1990-01-01'
|
simul_end
|
str
|
ISO string for the simulation end date time |
'2005-12-31'
|
model_id
|
str
|
model identifier |
'GR4J'
|
tstep
|
str
|
character, 'daily' or 'hourly' |
'daily'
|
varname_rain
|
str
|
variable name to assign rainfall to |
'P'
|
varname_pet
|
str
|
variable name to assign PET to |
'E'
|
data_rain_id
|
str
|
key to use to retrieve the rainfall series from the sample data |
'rain'
|
data_evap_id
|
str
|
key to use to retrieve the evaporation series from the sample data |
'evap'
|
Returns:
Type | Description |
---|---|
A SWIFT simulation object, clone of the simulation but with a new model type in use. |
Source code in swift2/simulation.py
define_gr4j_scaled_parameter(ref_area=250, time_span=3600, pspec_gr4j=None)
¶
define a scaled and transformed parameterizer for GR4J
define a scaled and transformed parameterizer for GR4J
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ref_area
|
float
|
the reference area in square kilometres |
250
|
time_span
|
int
|
the time span of the simulation intented for this model, in seconds |
3600
|
pspec_gr4j
|
DataFrame
|
optional - data frame specifying the feasible parameter space for parameters x1 to x2 of GR4J |
None
|
Returns:
Name | Type | Description |
---|---|---|
TransformParameteriser |
a parameterizer for GR4J, combining time and area scaling and superimposed with log10 transforms for x1, x3, x4 and arc-sinh for x2 |
Source code in swift2/doc_helper.py
exec_simulation(simulation, reset_initial_states=True)
¶
Execute a simulation
Execute a simulation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
reset_initial_states
|
Any
|
logical, should the states of the model be reinitialized before the first time step. |
True
|
Source code in swift2/simulation.py
get_catchment_dot_graph(simulation)
¶
Gets a catchment representation in Graphviz DOT format
Gets a catchment representation in Graphviz DOT format
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
Returns:
Type | Description |
---|---|
a string in a notation usable by the DiagrammeR package. |
Examples:
TODO
Source code in swift2/doc_helper.py
get_free_params(model_id)
¶
Get a default parameter set for models
Get a default parameter set for models, as a data frame
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_id
|
Any
|
an identifier for the model, e.g. 'GR5H' |
required |
Returns:
Type | Description |
---|---|
a data frame with Min, Max, Value, Name |
Source code in swift2/doc_helper.py
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 |
|
get_link_ids(simulation)
¶
Gets all the identifiers of the links in the catchment
Gets all the identifiers of the links in the catchment
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
Returns:
Type | Description |
---|---|
The identifiers of the links in the catchment |
Source code in swift2/simulation.py
get_link_names(simulation)
¶
Gets all the names of the links in the catchment
Gets all the names of the links in the catchment
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
Returns:
Type | Description |
---|---|
The names of the links in the catchment |
Source code in swift2/simulation.py
get_node_ids(simulation)
¶
Gets all the identifiers of the nodes in the catchment
Gets all the identifiers of the nodes in the catchment
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
Returns:
Type | Description |
---|---|
The identifiers of the nodes in the catchment |
Source code in swift2/simulation.py
get_node_names(simulation)
¶
Gets all the names of the nodes in the catchment
Gets all the names of the nodes in the catchment
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
Returns:
Type | Description |
---|---|
The names of the nodes in the catchment |
Source code in swift2/simulation.py
get_state_value(simulation, var_id)
¶
Gets the value(s) of a model state(s)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
var_id
|
VecStr
|
string or sequence of str, model variable state identifier(s) |
required |
Returns:
Type | Description |
---|---|
numeric vector, value(s) of the requested model states |
Source code in swift2/simulation.py
get_subarea_ids(simulation)
¶
Gets all the identifiers of the sub-areas in the catchment
Gets all the identifiers of the sub-areas in the catchment
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
Returns:
Type | Description |
---|---|
The identifiers of the sub-areas in the catchment |
Source code in swift2/simulation.py
get_subarea_names(simulation)
¶
Gets all the names of the sub-areas in the catchment
Gets all the names of the sub-areas in the catchment
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
Returns:
Type | Description |
---|---|
The names of the sub-areas in the catchment |
Source code in swift2/simulation.py
get_variable_ids(simulation, element_id=None, full_id=True)
¶
Gets all the names of the variables of an element within a catchment
Gets all the names of the variables of an element (link, node, subarea) within a catchment
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
element_id
|
Any
|
a character, identifier of the element within the catchment |
None
|
full_id
|
Any
|
boolean, if TRUE return the full hierarchical identifier |
True
|
Returns:
Type | Description |
---|---|
character vector, names (identifiers) of model states in the element |
Source code in swift2/simulation.py
gr4j_scaled_parameteriser(reference_area=240, t_step_seconds=3600)
¶
Get a time step and area scaled parameterizer for the GR4 model structure
Get a time step and area scaled parameterizer for the GR4 model structure
Parameters:
Name | Type | Description | Default |
---|---|---|---|
reference_area
|
Any
|
The reference area in km^2 for the parameter x4 |
240
|
t_step_seconds
|
Any
|
The simulation time step in seconds. |
3600
|
Returns:
Type | Description |
---|---|
A SWIFT catchment parameterizer for GR4 model structures |
Source code in swift2/doc_helper.py
inspect(simulation, element='link', id='1', full_names=False)
¶
Inspect an element of a catchment model
Inspect the current state values of an element of a catchment model
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
element
|
Any
|
type of top level element, within c('link','node','subarea') |
'link'
|
id
|
Any
|
SWIFT simulation |
'1'
|
full_names
|
Any
|
if TRUE returns the full names of state variable ids (e.g. link.link_1.OutlfowRate) |
False
|
Returns:
Type | Description |
---|---|
named numeric vector, the current state values of the catchment model element |
Examples:
TODO
Source code in swift2/doc_helper.py
is_common_iterable(obj)
¶
True if an object is iterable but not a string (str)
Source code in swift2/utils.py
is_variable_id(simulation, var_id)
¶
Is a variable identifier valid for a simulation
Is a variable identifier valid for a simulation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
var_id
|
Any
|
a character, identifier(s) of the variable(s) |
required |
Returns:
Type | Description |
---|---|
logical vector |
Source code in swift2/simulation.py
paste0(*lists, collapse=None)
¶
play_subarea_input(simulation, input, subarea_name, input_name)
¶
Sets time series as input to a simulation
Sets time series as input to a simulation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
input
|
Any
|
an xts time series. |
required |
subarea_name
|
Any
|
a valid name of the subarea |
required |
input_name
|
Any
|
the name of the input variable to the model (i.e. 'P' for the precip of GR5H) |
required |
Source code in swift2/play_record.py
reset_model_states(simulation)
¶
Reset the model states of a simulation, and apply one or more state initialers if the simulation is configured with any.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
simulation |
required |
Source code in swift2/simulation.py
sample_catchment_model(site_id='South_Esk', config_id='catchment')
¶
Deserialize a basic catchment structure from the package sample data
Deserialize a basic catchment structure from the package sample data. This function is mostly for documentation purposes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
site_id
|
Any
|
a site identifier |
'South_Esk'
|
config_id
|
Any
|
a variable identifier for a model structure valid for the given site_id |
'catchment'
|
Returns:
Type | Description |
---|---|
a model simulation |
Source code in swift2/doc_helper.py
sample_series(site_id='MMH', var_name='rain')
¶
Deserialize information to a UTC time series
Deserialize information to a UTC time series. This function is overcoming some behaviors in saving/loading xts series to/from binary RData format. Usage is not intended for most users.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
site_id
|
Any
|
a site identifier |
'MMH'
|
var_name
|
Any
|
a variable identifier valid for the given site_id |
'rain'
|
Returns:
Type | Description |
---|---|
an xts time series with UTC time indexing |
Source code in swift2/doc_helper.py
sce_parameter(nparams, nshuffle=40)
¶
Create SCE parameters suited for a given number of parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nparams
|
int
|
number of free model parameters |
required |
nshuffle
|
int
|
maximum number of shuffles to do, if no other termination criterion. Defaults to 40. |
40
|
Returns:
Type | Description |
---|---|
Dict[str, float]
|
Dict[str,float]: SCE hyperparameters |
Source code in swift2/doc_helper.py
set_error_correction_model(simulation, model_id, element_id, length=1, seed=0)
¶
Add an error correction model to an element in a catchment
Add an error correction model to an element in a catchment
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
model_id
|
str
|
the identifier of the new model to use, e.g. 'ERRIS' |
required |
element_id
|
str
|
the identifier of the catchment element (node, link, subcatchment) whose outflow rate is corrected. |
required |
length
|
int
|
other parameters to pass to the creation of the error correction model. Currently length of the AR model only supported. |
1
|
seed
|
int
|
other parameters to pass to the creation of the error correction model. Currently length of the AR model only supported. |
0
|
Source code in swift2/simulation.py
set_loglik_param_keys(a='a', b='b', m='m', s='s', maxobs='maxobs', ct='ct', censopt='CensOpt')
¶
Specify the global parameter names to use in the log-likelihood calculation
Specify the global parameter names to use in the log-likelihood calculation. Consequence of prehistoric legacy.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
a
|
str
|
the name of the a parameter |
'a'
|
b
|
str
|
the name of the b parameter |
'b'
|
m
|
str
|
the name of the m parameter |
'm'
|
s
|
str
|
the name of the s parameter |
's'
|
maxobs
|
str
|
the name of the maxobs parameter |
'maxobs'
|
ct
|
str
|
the name of the ct parameter |
'ct'
|
censopt
|
str
|
the name of the censopt parameter |
'CensOpt'
|
Examples:
TODO
Source code in swift2/doc_helper.py
set_sample_data(model_sim, site_id='MMH', rain_data_var='rain', evap_data_var='evap', rain_model_var='P', evap_model_var='E', t_step='daily')
¶
Sets sample input data into a model simulation
Sets input data from the included sample data into a model simulation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_sim
|
Any
|
an S4 object 'ExternalObjRef' [package "cinterop"] with external pointer type "MODEL_SIMULATION_PTR" |
required |
site_id
|
Any
|
sample data site identifier |
'MMH'
|
rain_data_var
|
Any
|
time series ID for the rainfall in the sample data |
'rain'
|
evap_data_var
|
Any
|
time series ID for the evaporation in the sample data |
'evap'
|
rain_model_var
|
Any
|
sub-area runoff model state identifier for the rainfall, e.g. 'P' |
'P'
|
evap_model_var
|
Any
|
sub-area runoff model state identifier for the evaporation, e.g. 'E' |
'E'
|
t_step
|
Any
|
identifier for the time step to set the simulation to. |
'daily'
|
Source code in swift2/doc_helper.py
set_simulation_span(simulation, start, end)
¶
Sets simulation span
Sets the simulation span
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
start
|
Any
|
the start date of the simulation. The time zone will be forced to UTC. |
required |
end
|
Any
|
the end date of the simulation. The time zone will be forced to UTC. |
required |
Source code in swift2/simulation.py
set_simulation_time_step(simulation, name)
¶
Sets the time step of a SWIFT simulation
Sets the time step of a SWIFT simulation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
name
|
Any
|
a time step identifier, The identifier is made lower case in the function. Supported time steps include "hourly", "daily", "monthly_qpp", "monthly", and time deltas such as "24:00:00", "01:00:00", "03:00:00". An exception is raised if the string could not be parsed. |
required |
Source code in swift2/simulation.py
set_state_value(simulation, var_id, value)
¶
Sets the value of a model state
Sets the value of a model state
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
var_id
|
(str, Sequence[str])
|
character, model variable state identifier(s) |
required |
value
|
(float, int, bool, Sequence)
|
numeric value(s) |
required |
Source code in swift2/simulation.py
set_states(simulation, states)
¶
Apply memory states to a simulation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
simulation |
required |
states
|
MemoryStates
|
memory states |
required |
short_var_id(var_ids)
¶
Shorten long model variable identifiers to the short model variable name
Shorten long model variable identifiers to the short model variable name. This is useful for instance to prepare time series names for multi-plot displays.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
var_ids
|
Any
|
character vector |
required |
Returns:
Type | Description |
---|---|
VecStr
|
the short model variable identifiers |
Examples:
Source code in swift2/doc_helper.py
snapshot_state(simulation)
¶
Take a snapshot of the memory states of a simulation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
model simulation |
required |
Returns:
Name | Type | Description |
---|---|---|
MemoryStates |
MemoryStates
|
memory states, that can be stored and reapplied |
Source code in swift2/simulation.py
sort_by_execution_order(simulation, split_element_ids, sorting_option='')
¶
Sort the specified element ids according to the execution order of the simulation
Sort the specified element ids according to the execution order of the simulation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
split_element_ids
|
Any
|
a character vector with element identifiers such as 'node.n1', 'link.linkId_2' |
required |
sorting_option
|
Any
|
a character - for future options. Ignored for now. |
''
|
Returns:
Type | Description |
---|---|
values in split_element_ids sorted by simulation execution order |
Source code in swift2/simulation.py
swap_model(simulation, model_id, what='runoff')
¶
Clone and change a simulation, using another runoff model
Clone and change a simulation, using another runoff model
Parameters:
Name | Type | Description | Default |
---|---|---|---|
simulation
|
Simulation
|
A swift simulation object |
required |
model_id
|
Any
|
the identifier of the new model to use, e.g. 'GR4J' |
required |
what
|
Any
|
character identifying the type of structure: 'runoff', 'channel_routing' |
'runoff'
|
Returns:
Type | Description |
---|---|
A SWIFT simulation object, clone of the simulation but with a new model type in use. |