/home/runner/work/kynema-sgf/kynema-sgf/src/wind_energy/actuator/wing/FixedWing.H Source File

Kynema-SGF API: /home/runner/work/kynema-sgf/kynema-sgf/src/wind_energy/actuator/wing/FixedWing.H Source File
Kynema-SGF 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 kynema_sgf::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 kynema_sgf::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
std::string airfoil_type
Definition FixedWing.H:17
RealList chord_inp
Definition FixedWing.H:15
std::unique_ptr< AirfoilTable > aflookup
Definition FixedWing.H:19
RealList span_locs
Definition FixedWing.H:14
std::string airfoil_file
Definition FixedWing.H:16
Definition FixedWing.H:23
ActGrid GridType
Definition FixedWing.H:25
ActDataHolder< FixedWing > DataType
Definition FixedWing.H:27
ActInfo InfoType
Definition FixedWing.H:24
FixedWingData MetaType
Definition FixedWing.H:26
static std::string identifier()
Definition FixedWing.H:29
Definition ActuatorWing.H:21
Definition ActuatorWing.H:106