-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rename Aircraft.Wing.MOUNTING_TYPE to Aircraft.Wing.MOUNT_LOCATION #643
base: main
Are you sure you want to change the base?
Conversation
…cause it is wing location on fuselage between 0 and 1.
meta_data=_MetaData, | ||
historical_name={"GASP": 'INGASP.HWING', "FLOPS": None, "LEAPS1": None}, | ||
units='unitless', | ||
desc='wing location on fuselage (0 = low wing, 1 = high wing)', | ||
desc='wing mount location on fuselage (0 = low wing, 1 = high wing)', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a continuous variable. in the description we should add:
"Values between 0 and 1 are acceptable".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update description definition slightly to include that values between 0 and 1 are acceptable.
@@ -5775,11 +5775,12 @@ | |||
) | |||
|
|||
add_meta_data( | |||
Aircraft.Wing.MOUNTING_TYPE, | |||
Aircraft.Wing.MOUNT_LOCATION, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VERTICAL_MOUNT_LOCATION
meta_data=_MetaData, | ||
historical_name={"GASP": 'INGASP.HWING', "FLOPS": None, "LEAPS1": None}, | ||
units='unitless', | ||
desc='wing location on fuselage (0 = low wing, 1 = high wing)', | ||
desc='wing mount location on fuselage (0 = low wing, 1 = high wing)', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'vertical wing mount location....'
Mention that it is a continuous variable
Summary
This is a very simple PR. The variable
Aircraft.Wing.MOUNTING_TYPE
is the wing location on fuselage between 0 and 1. Rename it toAircraft.Wing.MOUNT_LOCATION
Related Issues
Backwards incompatibilities
None
New Dependencies
None