Skip to content

Commit

Permalink
add remove in example
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-lara committed Jul 9, 2024
1 parent c6b2502 commit fe877ff
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/src/tutorials/pcm_simulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Now, we can build and execute a simulation using the `SimulationSequence` and `S
that we've defined.

```@example pcm
mkdir(joinpath(".", "rts-store")) #hide
path = mkdir(joinpath(".", "rts-store")) #hide
sim = Simulation(
name = "rts-test",
steps = 2,
Expand Down Expand Up @@ -251,16 +251,19 @@ read_parameter(
)
```

* note that this returns the results of each execution step in a separate dataframe *
!!! info
note that this returns the results of each execution step in a separate dataframe
If you want the realized results (without lookahead periods), you can call `read_realized_*`:

```@example pcm
read_realized_variables(
uc_results,
["ActivePowerVariable__ThermalStandard", "ActivePowerVariable__RenewableDispatch"],
)
rm(path, force =true, recursive = true) # hide
```


## Plotting

Take a look at the plotting capabilities in [PowerGraphics.jl](https://github.com/nrel-siip/powergraphics.jl)

0 comments on commit fe877ff

Please sign in to comment.