e2e_plot_edrivers {StrathE2E2}R Documentation

Plot climatological year of environmental driving data.

Description

Multi-panel time series plots of climatological annual cycles of driving data as provided in the input csv files.

Usage

e2e_plot_edrivers(model)

Arguments

model

R-list object defining the model configuration compiled by the e2e_read() function.

Details

The function plots a multi-panel page of time series plots of monthly values of the environmental driving data for the model.

Units for the plotted variables are as follows:

Value

Graphical display in a new graphics window. Does not return any data object since the data plotted are all available as input csv files.

See Also

e2e_read, e2e_run, e2e_plot_fdrivers

Examples

# Load the 2003-2013 version of the North Sea model supplied with the package:
    model <- e2e_read("North_Sea", "2003-2013")
# Plot the annual cyles of driving data
    e2e_plot_edrivers(model)

# Direct the graphics output to a pdf file ... 
# or jpeg("plot.jpg"), png("plot.png")
    pdf(file.path(tempdir(), "plot.pdf"),width=8,height=6)
    e2e_plot_edrivers(model)
    dev.off()


[Package StrathE2E2 version 3.3.0 Index]