From e94c87f8869d3b10b875cbda0dd4924b80482c74 Mon Sep 17 00:00:00 2001 From: kdayday Date: Mon, 5 Aug 2024 13:37:02 -0600 Subject: [PATCH] Update asset directory for picture links --- docs/src/api/valuecurve_options.md | 10 +++++----- docs/src/explanation/example_dynamic_data.md | 4 ++-- docs/src/explanation/system.md | 2 +- docs/src/explanation/type_structure.md | 2 +- docs/src/tutorials/working_with_time_series.md | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/src/api/valuecurve_options.md b/docs/src/api/valuecurve_options.md index 1a3539bc6a..d66dc31606 100644 --- a/docs/src/api/valuecurve_options.md +++ b/docs/src/api/valuecurve_options.md @@ -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 - + ``` ## [`QuadraticCurve`](@ref) Specify the quadratic ($Q$), proportional ($M$), and constant ($C$) terms of a function that defines the input-output curve: ```@raw html - + ``` ## [`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 - + ``` ## [`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 - + ``` ## [`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 - + ``` diff --git a/docs/src/explanation/example_dynamic_data.md b/docs/src/explanation/example_dynamic_data.md index 1db37b1f70..b64f61a3dd 100644 --- a/docs/src/explanation/example_dynamic_data.md +++ b/docs/src/explanation/example_dynamic_data.md @@ -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 - + ``` Each inverter is a data structure that is defined by the following components: @@ -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 - + ``` ⠀ diff --git a/docs/src/explanation/system.md b/docs/src/explanation/system.md index 6bc7e5d420..4e46c4bea0 100644 --- a/docs/src/explanation/system.md +++ b/docs/src/explanation/system.md @@ -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 - + ``` ## Accessing components stored in the system diff --git a/docs/src/explanation/type_structure.md b/docs/src/explanation/type_structure.md index b2d062a5aa..7a554d7811 100644 --- a/docs/src/explanation/type_structure.md +++ b/docs/src/explanation/type_structure.md @@ -55,5 +55,5 @@ types and create generic code to support modeling technologies that are not yet implemented in the package. ```@raw html - + ``` ⠀ diff --git a/docs/src/tutorials/working_with_time_series.md b/docs/src/tutorials/working_with_time_series.md index 91c084621f..003bed3a34 100644 --- a/docs/src/tutorials/working_with_time_series.md +++ b/docs/src/tutorials/working_with_time_series.md @@ -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 - + ``` 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)