Skip to content

Commit

Permalink
Log new error with aerodyn when running DLC multiple times and allow …
Browse files Browse the repository at this point in the history
…this PR to continue
  • Loading branch information
kevmoor committed Nov 12, 2024
1 parent 852e05f commit bc9a4ae
Showing 1 changed file with 38 additions and 38 deletions.
76 changes: 38 additions & 38 deletions examples/literate/A_simplyRunningOWENS.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,49 +21,49 @@

import OWENS

runpath = path = "/home/runner/work/OWENS.jl/OWENS.jl/examples/literate" # to run locally, change to splitdir(@__FILE__)[1]
## runpath = path = splitdir(@__FILE__)[1]
# runpath = path = "/home/runner/work/OWENS.jl/OWENS.jl/examples/literate" # to run locally, change to splitdir(@__FILE__)[1]
runpath = path = splitdir(@__FILE__)[1]

Inp = OWENS.MasterInput("$runpath/sampleOWENS.yml")

OWENS.runOWENS(Inp,runpath)

# Here is an example of using the same model against the automated DLC run script.
# Note that for a setup cutom to a specific design, you'll want to go to the B level to get all of the detailed inputs correct
# One of these is the controller where a discon controller library can be coupled instead of the specified RPM control.
# # Here is an example of using the same model against the automated DLC run script.
# # Note that for a setup cutom to a specific design, you'll want to go to the B level to get all of the detailed inputs correct
# # One of these is the controller where a discon controller library can be coupled instead of the specified RPM control.

simulated_time = 2.0 #seconds
DLCs = ["1_1"] #"normal"
#### DLCs = ["1_3"] #"normal"
#### DLCs = ["1_4"] #"normal"
#### DLCs = ["1_5"] #"normal"
#### DLCs = ["2_1"] #"freewheelatNormalOperatingRPM"
#### DLCs = ["2_3"] #"freewheelatNormalOperatingRPM"
#### DLCs = ["3_1"] #"startup"
#### DLCs = ["3_2"] #"startup"
#### DLCs = ["3_3"] #"startup"
#### DLCs = ["4_1"] #"shutdown"
#### DLCs = ["4_2"] #"shutdown"
#### DLCs = ["5_1"] #"emergencyshutdown"
#### DLCs = ["6_1"] #"parked"
#### DLCs = ["6_2"] #"parked_idle"
#### DLCs = ["6_4"] #"parked"
#### DLCs = ["7_1"] #"parked"
#### DLCs = ["2_3","3_1","3_2","3_3","4_1","4_2","5_1"]
# simulated_time = 2.0 #seconds
# DLCs = ["1_1"] #"normal"
# #### DLCs = ["1_3"] #"normal"
# #### DLCs = ["1_4"] #"normal"
# #### DLCs = ["1_5"] #"normal"
# #### DLCs = ["2_1"] #"freewheelatNormalOperatingRPM"
# #### DLCs = ["2_3"] #"freewheelatNormalOperatingRPM"
# #### DLCs = ["3_1"] #"startup"
# #### DLCs = ["3_2"] #"startup"
# #### DLCs = ["3_3"] #"startup"
# #### DLCs = ["4_1"] #"shutdown"
# #### DLCs = ["4_2"] #"shutdown"
# #### DLCs = ["5_1"] #"emergencyshutdown"
# #### DLCs = ["6_1"] #"parked"
# #### DLCs = ["6_2"] #"parked_idle"
# #### DLCs = ["6_4"] #"parked"
# #### DLCs = ["7_1"] #"parked"
# #### DLCs = ["2_3","3_1","3_2","3_3","4_1","4_2","5_1"]

OWENS.runDLC(DLCs,Inp,runpath;
IEC_std="\"1-ED3\"",
WindChar="\"A\"",
WindClass=1,
NumGrid_Z=38,
NumGrid_Y=26,
Vdesign=11.0,
grid_oversize=1.25,
Vinf_range=[10.0],#LinRange(4,24,21),
regenWindFiles=true,
delta_t_turbsim=0.05,
simtime_turbsim=30.0,
pathtoturbsim=nothing,
runScript=OWENS.runOWENS)
# OWENS.runDLC(DLCs,Inp,runpath;
# IEC_std="\"1-ED3\"",
# WindChar="\"A\"",
# WindClass=1,
# NumGrid_Z=38,
# NumGrid_Y=26,
# Vdesign=11.0,
# grid_oversize=1.25,
# Vinf_range=[10.0,15.0],#LinRange(4,24,21),
# regenWindFiles=true,
# delta_t_turbsim=0.05,
# simtime_turbsim=30.0,
# pathtoturbsim=nothing,
# runScript=OWENS.runOWENS)

nothing
# nothing

0 comments on commit bc9a4ae

Please sign in to comment.