Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Aircraft Design
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
UNICADO
Aircraft Design
Commits
d1f27f15
Commit
d1f27f15
authored
1 week ago
by
Lukas Neuerburg
Browse files
Options
Downloads
Patches
Plain Diff
applied sugestions regarding bwb config
parent
d1845206
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
aerodynamic_analysis/src/bwb/bwbCalculatePolarConfig.cpp
+3
-4
3 additions, 4 deletions
aerodynamic_analysis/src/bwb/bwbCalculatePolarConfig.cpp
aerodynamic_analysis/src/bwb/bwbCalculatePolarConfig.h
+1
-1
1 addition, 1 deletion
aerodynamic_analysis/src/bwb/bwbCalculatePolarConfig.h
with
4 additions
and
5 deletions
aerodynamic_analysis/src/bwb/bwbCalculatePolarConfig.cpp
+
3
−
4
View file @
d1f27f15
...
...
@@ -46,7 +46,7 @@ bwbCalculatePolarConfig::bwbCalculatePolarConfig(const node& config)
pathToLiftingLine
(
EndnodeReadOnly
<
std
::
string
>
(
"program_settings/LiftingLine/FolderPath"
)),
stepWidthCL
(
EndnodeReadOnly
<
double
>
(
"LiftingLineForTAW/stepWidthCL"
)),
// other settings
setFlightConditionsMode
(
EndnodeReadOnly
<
std
::
string
>
(
"program_settings/FlightConditions/AdaptMachNumbersToCruiseReq"
)),
setFlightConditionsMode
(
EndnodeReadOnly
<
bool
>
(
"program_settings/FlightConditions/AdaptMachNumbersToCruiseReq"
)
.
read
(
config
).
value
()
),
// lifting line for TAW pitching moment corrections
delta_CM0
(
EndnodeReadOnly
<
double
>
(
"LiftingLineForTAW/PitchingMoment/delta_CM0"
)),
delta_dCMdCL
(
EndnodeReadOnly
<
double
>
(
"LiftingLineForTAW/PitchingMoment/delta_dCMdCL"
)),
...
...
@@ -80,7 +80,6 @@ bwbCalculatePolarConfig::bwbCalculatePolarConfig(const node& config)
factorDragHL
(
EndnodeReadOnly
<
double
>
(
"program_settings/SemiEmpiricalHighLiftAdaptions/factorDrag"
))
{
CLModeAirfoilSelection
.
read
(
config
);
stepWidthCL
.
read
(
config
);
setFlightConditionsMode
.
read
(
config
);
pathToLiftingLine
.
read
(
config
);
manualTransition
.
read
(
config
);
manualTransitionWing
.
read
(
config
);
...
...
@@ -110,13 +109,13 @@ bwbCalculatePolarConfig::bwbCalculatePolarConfig(const node& config)
deltaTotalDragHL
.
read
(
config
);
factorDragHL
.
read
(
config
);
myRuntimeInfo
->
out
<<
"config: "
<<
liftingLineFolderPath
<<
endl
;
if
(
setFlightConditionsMode
.
value
()
==
"mode_0"
)
{
if
(
setFlightConditionsMode
==
false
)
{
myRuntimeInfo
->
info
<<
"set flight conditions from config xml"
<<
endl
;
size_t
numberFlightConditions
(
config
.
getVector
((
"program_settings/FlightConditions/FlightCondition"
),
2
).
size
());
for
(
size_t
i
(
0
);
i
<
numberFlightConditions
;
i
++
)
{
readFlightConditions
(
config
,
i
);
}
}
else
if
(
setFlightConditionsMode
.
value
()
==
"mode_1"
)
{
}
else
if
(
setFlightConditionsMode
==
true
)
{
myRuntimeInfo
->
info
<<
"Hab vergessen was hier rein sollte"
<<
endl
;
}
CGPositions
=
{
"design"
,
"forward"
,
"aft"
};
...
...
This diff is collapsed.
Click to expand it.
aerodynamic_analysis/src/bwb/bwbCalculatePolarConfig.h
+
1
−
1
View file @
d1f27f15
...
...
@@ -43,7 +43,7 @@ class bwbCalculatePolarConfig{
EndnodeReadOnly
<
std
::
string
>
CLModeAirfoilSelection
;
/**< Switch which sets if lift coefficient at ICA, at TOC or at average cruise is chosen for airfoil selection */
EndnodeReadOnly
<
double
>
stepWidthCL
;
// fligt condition parameters
EndnodeReadOnly
<
std
::
string
>
setFlightConditionsMode
;
bool
setFlightConditionsMode
;
// lifting line pitching moment parameters
EndnodeReadOnly
<
double
>
delta_CM0
;
EndnodeReadOnly
<
double
>
delta_dCMdCL
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment