Skip to content

Commit

Permalink
Added exposure
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicDirkx committed Oct 18, 2024
1 parent ec532ea commit 67bb9b8
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,21 @@ inline std::shared_ptr< AerodynamicCoefficientSettings > constantAerodynamicCoef
coefficientsFrame );
}

//! @get_docstring(constantAerodynamicCoefficientSettings)
inline std::shared_ptr< AerodynamicCoefficientSettings > constantAerodynamicForceAndMomentCoefficientSettings(
const double referenceLength,
const double referenceArea,
const Eigen::Vector3d& momentReferencePoint,
const Eigen::Vector3d& constantForceCoefficient,
const Eigen::Vector3d& constantMomentCoefficient = Eigen::Vector3d::Zero( ),
const aerodynamics::AerodynamicCoefficientFrames forceCoefficientsFrame = aerodynamics::negative_aerodynamic_frame_coefficients,
const aerodynamics::AerodynamicCoefficientFrames momentCoefficientsFrame = aerodynamics::body_fixed_frame_coefficients )
{
return std::make_shared< ConstantAerodynamicCoefficientSettings >(
referenceLength, referenceArea, momentReferencePoint, constantForceCoefficient, constantMomentCoefficient,
forceCoefficientsFrame, momentCoefficientsFrame );
}

//! @get_docstring(scaledAerodynamicCoefficientSettings)
inline std::shared_ptr< AerodynamicCoefficientSettings > scaledAerodynamicCoefficientSettings(
const std::shared_ptr< AerodynamicCoefficientSettings > baseSettings,
Expand Down

0 comments on commit 67bb9b8

Please sign in to comment.