/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#include "AMReX_REAL.H"
7
8using namespace amrex::literals;
9
10namespace amr_wind::actuator {
11
13{
14 RealList span_locs{0.0_rt, 1.0_rt};
15 RealList chord_inp{1.0_rt, 1.0_rt};
16 std::string airfoil_file;
17 std::string airfoil_type{"openfast"};
18
19 std::unique_ptr<AirfoilTable> aflookup;
20};
21
22struct FixedWing : public WingType
23{
28
29 static std::string identifier() { return "FixedWing"; }
30};
31
32} // namespace amr_wind::actuator
33
34#endif /* FIXEDWING_H */
Definition actuator_types.H:187
Definition ActParser.H:6
amrex::Vector< amrex::Real > RealList
Definition actuator_types.H:63
Definition actuator_types.H:77
Definition actuator_types.H:147
Definition FixedWing.H:13
RealList span_locs
Definition FixedWing.H:14
RealList chord_inp
Definition FixedWing.H:15
std::string airfoil_type
Definition FixedWing.H:17
std::string airfoil_file
Definition FixedWing.H:16
std::unique_ptr< AirfoilTable > aflookup
Definition FixedWing.H:19
Definition FixedWing.H:23
static std::string identifier()
Definition FixedWing.H:29
ActInfo InfoType
Definition FixedWing.H:24
ActDataHolder< FixedWing > DataType
Definition FixedWing.H:27
ActGrid GridType
Definition FixedWing.H:25
FixedWingData MetaType
Definition FixedWing.H:26
Definition ActuatorWing.H:21
Definition ActuatorWing.H:106