Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update asset directory for picture links #1170

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/src/api/valuecurve_options.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,33 +21,33 @@ This summary table shows each way to construct a `ValueCurve` with the user-frie
Specify the marginal cost of production $M$ and optionally the no-load cost $C$, which defaults to zero. Here is a graphical representation:

```@raw html
<img src="../assets/cost_plot_drawings/LinearCurve.png" width="75%"/>
<img src="../../assets/cost_plot_drawings/LinearCurve.png" width="75%"/>
```

## [`QuadraticCurve`](@ref)
Specify the quadratic ($Q$), proportional ($M$), and constant ($C$) terms of a function that defines the input-output curve:

```@raw html
<img src="../assets/cost_plot_drawings/QuadraticCurve.png" width="75%"/>
<img src="../../assets/cost_plot_drawings/QuadraticCurve.png" width="75%"/>
```

## [`PiecewisePointCurve`](@ref)
Specify a vector of $K$ (production, cost) pairs (i.e., $(P_k, C_k)$ for $k = 1, \dots, K$) to define the input-output curve:

```@raw html
<img src="../assets/cost_plot_drawings/PiecewisePointCurve.png" width="75%"/>
<img src="../../assets/cost_plot_drawings/PiecewisePointCurve.png" width="75%"/>
```

## [`PiecewiseIncrementalCurve`](@ref)
Specify the cost $C_1$ at the least production point given (NOT the cost at zero production), a vector of $K$ production points $P_1, \dots, P_k$, and a vector of $K-1$ marginal rates $M_1, \dots, M_{k-1}$, that represent the slopes of the curve segments between the points. $C_1$ may be `nothing`, which results in a not-fully-defined curve. The no-load cost $C_0$ can optionally be specified as a first argument; it is not part of the representation of the curve, just another piece of data that may be stored:

```@raw html
<img src="../assets/cost_plot_drawings/PiecewiseIncrementalCurve.png" width="75%"/>
<img src="../../assets/cost_plot_drawings/PiecewiseIncrementalCurve.png" width="75%"/>
```

## [`PiecewiseAverageCurve`](@ref)
Specify the cost $C_1$ at the least production point given (NOT the cost at zero production), a vector of $K$ production points $P_1, \dots, P_k$, and a vector of $K-1$ average rates $R_1, \dots, R_{k-1}$ at the $K-1$ latter production points:

```@raw html
<img src="../assets/cost_plot_drawings/PiecewiseAverageCurve.png" width="75%"/>
<img src="../../assets/cost_plot_drawings/PiecewiseAverageCurve.png" width="75%"/>
```
4 changes: 2 additions & 2 deletions docs/src/explanation/example_dynamic_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Each generator is a data structure that is defined by the following components:
- [Prime Mover and Turbine Governor](@ref TurbineGov): Thermo-mechanical dynamics and associated controllers.

```@raw html
<img src="../assets/gen_metamodel.png" width="75%"/>
<img src="../../assets/gen_metamodel.png" width="75%"/>
```

Each inverter is a data structure that is defined by the following components:
Expand All @@ -42,5 +42,5 @@ Each inverter is a data structure that is defined by the following components:
- [Filter](@ref Filter): Used to connect the converter output to the grid.

```@raw html
<img src="../assets/inv_metamodel.png" width="75%"/>
<img src="../../assets/inv_metamodel.png" width="75%"/>
``` ⠀
2 changes: 1 addition & 1 deletion docs/src/explanation/system.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ in an HDF5 file. This design loads into memory the portions of the data that are
at time of the query, and so avoids overwhelming the memory resources.

```@raw html
<img src="../assets/System.png" width="50%"/>
<img src="../../assets/System.png" width="50%"/>
```

## Accessing components stored in the system
Expand Down
2 changes: 1 addition & 1 deletion docs/src/explanation/type_structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ types and create generic code to support modeling technologies that are not yet
implemented in the package.

```@raw html
<img src="../assets/AbstractTree.png" width="75%"/>
<img src="../../assets/AbstractTree.png" width="75%"/>
``` ⠀
2 changes: 1 addition & 1 deletion docs/src/tutorials/working_with_time_series.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ add the time series needed to model, for example, the impacts of wind forecast u

Here is the available data:
```@raw html
<img src="../assets/time_series_tutorial.png" width="100%"/>
<img src="../../assets/time_series_tutorial.png" width="100%"/>
```
For the wind generator, we have the historical point (deterministic) forecasts of power
output. The forecasts were generated every 30 minutes with a 5-minute [resolution](@ref R)
Expand Down
Loading