/home/runner/work/amr-wind/amr-wind/amr-wind/wind_energy/actuator/wing/FixedWing.H Source File

AMR-Wind API: /home/runner/work/amr-wind/amr-wind/amr-wind/wind_energy/actuator/wing/FixedWing.H Source File
AMR-Wind API v0.1.0
CFD solver for wind plant simulations
Loading...
Searching...
No Matches
FixedWing.H
Go to the documentation of this file.
1#ifndef FIXEDWING_H
2#define FIXEDWING_H
3
6
7namespace amr_wind::actuator {
8
10{
13 std::string airfoil_file;
14 std::string airfoil_type{"openfast"};
15
16 std::unique_ptr<AirfoilTable> aflookup;
17};
18
19struct FixedWing : public WingType
20{
25
26 static std::string identifier() { return "FixedWing"; }
27};
28
29} // namespace amr_wind::actuator
30
31#endif /* FIXEDWING_H */
Definition actuator_types.H:184
Definition ActParser.H:6
amrex::Vector< amrex::Real > RealList
Definition actuator_types.H:60
Definition actuator_types.H:74
Definition actuator_types.H:144
Definition FixedWing.H:10
RealList span_locs
Definition FixedWing.H:11
RealList chord_inp
Definition FixedWing.H:12
std::string airfoil_type
Definition FixedWing.H:14
std::string airfoil_file
Definition FixedWing.H:13
std::unique_ptr< AirfoilTable > aflookup
Definition FixedWing.H:16
Definition FixedWing.H:20
static std::string identifier()
Definition FixedWing.H:26
Definition ActuatorWing.H:18
Definition ActuatorWing.H:103