diff --git a/.gitignore b/.gitignore deleted file mode 100644 index caf441a3a29176e1998c3f0610c699106c636f87..0000000000000000000000000000000000000000 --- a/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -.idea -**/.idea/workspace.xml -**/.idea/tasks.xml -*.pyc diff --git a/pyKADMOS/sample/IO_file_generation.py b/pyKADMOS/sample/IO_file_generation.py index 888a9e4343e6c808e556a0abab443cc8419229c4..333e819a579c71185c3cbf594fade307939be6c5 100644 --- a/pyKADMOS/sample/IO_file_generation.py +++ b/pyKADMOS/sample/IO_file_generation.py @@ -53,7 +53,7 @@ def generate_IO_tree(mapping_dict, base_tree, schema_tree, execution_mode, tools removeUnmappedElems.add(elem) # remove all elements that were added to remove-list - remove_elements_from_tree(*removeUnmappedElems) + MU.remove_elements_from_tree(*removeUnmappedElems) """[STEP 2]: Apply Toolspecific UID-items""" @@ -111,7 +111,7 @@ def generate_IO_tree(mapping_dict, base_tree, schema_tree, execution_mode, tools removeElements.remove(elem) # remove the remaining elements in removeElements from tree - remove_elements_from_tree(*removeElements) + MU.remove_elements_from_tree(*removeElements) """[STEP 4]: Check dependencies""" @@ -140,7 +140,7 @@ def generate_IO_tree(mapping_dict, base_tree, schema_tree, execution_mode, tools for elem in keepElements: if elem in removeElements: removeElements.remove(elem) - remove_elements_from_tree(*removeElements) + MU.remove_elements_from_tree(*removeElements) return IO_tree @@ -153,7 +153,7 @@ def generate_IO_tree(mapping_dict, base_tree, schema_tree, execution_mode, tools -def remove_element_ancestry(element): +def remove_element_ancestry(element): # TODO: NOT SURE IF THIS WORKS! """ This function returns the element and its ancestors from the tree that are to be removed. The ancestors are checked recursively whether they have other nodes child elements whose descendants do not end up in the element to be @@ -451,17 +451,4 @@ def element_is_UID_item(element): return elemTag.upper().endswith('UID') -def remove_elements_from_tree(*removeElements): - """ - This function removes elements from their XML-tree. Tree does not have to be specifically - indicated, as per lxml package. - - :param removeElements: Iterable of elements to remove from their tree - :return: - """ - for elem in removeElements: - try: - elem.getparent().remove(elem) - except: - AttributeError diff --git a/pyKADMOS/sample/XMLutilities.py b/pyKADMOS/sample/XMLutilities.py index 64ff0452c6138975cadc29a5031e862f10e3402e..c8024a57b2a6b4e0a9ae3b8f9eece367446d0b01 100644 --- a/pyKADMOS/sample/XMLutilities.py +++ b/pyKADMOS/sample/XMLutilities.py @@ -119,65 +119,3 @@ def merge(a, b): return a - -def copy_XML_elements_to_tree(target_tree, source_tree, element_path, **kwargs): - pass - - # check arguments - assert isinstance(element_path, basestring), 'Argument must be of type string.' - - replace_if_exist = False - if 'replace_if_exist' in kwargs: - replace_if_exist = kwargs['replace_if_exist'] - assert isinstance(replace_if_exist, bool), 'Argument must be boolean.' - - # get root elements of element path and source tree - elemPathSplit = element_path.split('/') - elemPathRoot = [0] - sourceRoot = source_tree.getroot() - - # make sure element path has at least one element, or that single element is not root - assert len(elemPathSplit) > 0, 'At least one element must be indicated in element path.' - if len(elemPathSplit) == 1: - assert elemPathRoot != sourceRoot.tag, "Root element can not be used." - - # make sure that element path does not start with root-element (tree.find will not work otherwise) - if elemPathRoot == sourceRoot.tag: - element_path = '/'.join(elemPathSplit[1:]) - - # perform element search in source tree - foundElems = source_tree.find(".//{}".format(element_path)) - - # check if elements found; let user select if multiple found - copyElems = [] - if foundElems is not None: - if len(foundElems) > 1: - - # if multiple found, prompt user to select - printElemPaths = [source_tree.getpath(elem) for elem in foundElems] - print_indexed_list(*printElemPaths, - message="Multiple element were found in source tree using element path.") - yesno_msg = "Would you like to copy all to target tree?" - yesno = user_prompt_yes_no(message=yesno_msg) - if yesno: - copyElems = foundElems - else: - selmsg = "Please select the elements to copy to target tree:" - usrsel = user_prompt_select_options(*printElemPaths, message=selmsg, allow_empty=False) - copyElems = usrsel - else: - copyElems += foundElems - - else: # if none found - print "WARNING: No elements to copy were found in source tree using the provided element path." - return - - # loop elements and copy to target tree - for elem in copyElems: - - # get element copy - elemCopy = copy.deepcopy(elem) - # TODO: CONTINUE HERE >> - - - return target_tree \ No newline at end of file diff --git a/pyKADMOS/sample/exec_utilities.py b/pyKADMOS/sample/exec_utilities.py index cff9c153be316b4a1c793f809f8850359f503125..baa0ad3ae64275a1e657e9f442231c1c9408f8ff 100644 --- a/pyKADMOS/sample/exec_utilities.py +++ b/pyKADMOS/sample/exec_utilities.py @@ -50,8 +50,8 @@ def execute_FPG_combination(FPG, tool_order, schema_files_dir_path, spec_files_d if infoData['general_info']['name'] == tool: inFile = os.path.join(schema_files_dir_path, infoData['general_info']['schema_input']) outFile = os.path.join(schema_files_dir_path, infoData['general_info']['schema_output']) - schemaTreeDict[(tool, mode)]['input'] = etree.parse(inFile) - schemaTreeDict[(tool, mode)]['output'] = etree.parse(outFile) + schemaTreeDict[(tool, mode)]['input'] = MU.filter_tree_by_modes(etree.parse(inFile), [mode]) + schemaTreeDict[(tool, mode)]['output'] = MU.filter_tree_by_modes(etree.parse(outFile), [mode]) break assert schemaTreeDict[(tool, mode)], "Something went wrong! Could not find schema XMLs in info-file!" @@ -94,7 +94,10 @@ def execute_FPG_combination(FPG, tool_order, schema_files_dir_path, spec_files_d """[STEP 4]""" # copy toolspecific nodes from schema tree to basefile inputSchemaTree = schemaTreeDict[(tool, mode)]['input'] - baseTree = MU.copy_toolspecific_elements_to_tree(baseTree, inputSchemaTree, toolspec_elem, overwrite_if_exist=True) + + # filter tree by modes + baseTree = MU.copy_toolspecific_elements_to_tree(baseTree, inputSchemaTree, toolspec_elem, overwrite_if_exist=True) # + # TODO: change the way that toolspec nodes are copied MU.write_xml_tree_to_file(baseTree, basefile_path) @@ -134,7 +137,7 @@ def execute_FPG_combination(FPG, tool_order, schema_files_dir_path, spec_files_d # add nodes missing nodes to tree execTree = MU.add_nodes_to_tree(execTree, missingSchemaNodes, spec_files_dir_path, refUIDs) - # MU.write_xml_tree_to_file(execTree, basefile_path) # TODO: DEMO! REMOVE! + MU.write_xml_tree_to_file(execTree, basefile_path) # TODO: DEMO! REMOVE! """[STEP 5b]""" # perform depndency check on all schema paths in Basefile @@ -196,13 +199,13 @@ def execute_FPG_combination(FPG, tool_order, schema_files_dir_path, spec_files_d # perform file generation for input and output - IO_tree = IO.generate_IO_tree(MAPPING_DICT, baseTree ) + # IO_tree = IO.generate_IO_tree(MAPPING_DICT, baseTree ) # combine trees for each tool # write output tree to corresponding file path - print "Generated {}-file for {}.".format() + # print "Generated {}-file for {}.".format() # copy info-file to target dir @@ -212,9 +215,6 @@ def execute_FPG_combination(FPG, tool_order, schema_files_dir_path, spec_files_d return - - - def execute_tool(tool_name, execution_mode, exec_element_tree): """ This function calls the appropriate execution function according to the execution environment (PYTHON, MATLAB, etc). @@ -254,8 +254,8 @@ def execute_tool_in_matlab(tool, execution_mode, exec_element_tree, connect_to_e """ # define tool working_dir on machine - TOOL_WORKING_DIR = {'Q3D': r'C:\Users\aMakus\Programming\KADMOS\MATLAB\RCE_Q3D_tool', - 'EMWET': r'C:\Users\aMakus\Programming\KADMOS\MATLAB\RCE_EMWET_tool'} + TOOL_WORKING_DIR = {'Q3D': r'C:\Users\aMakus\Programming\Repositories\agile_tools\agile-programs\RCE_Q3D_tool', + 'EMWET': r'C:\Users\aMakus\Programming\Repositories\agile_tools\agile-programs\RCE_EMWET_tool'} EXEC_FILE = {'Q3D':'WF_Q3D_RCE.m', 'EMWET':'WF_EMWET_RCE.m'} INPUT_FILE = {'EMWET': 'tool_in.xml', "Q3D": "tool_in.xml"} OUTPUT_FILE = {'EMWET': 'tool_out.xml', 'Q3D': 'tool_out.xml'} @@ -365,7 +365,7 @@ def execute_tool_in_python(tool, mode, exec_element_tree): """ # define/store tool working dict, execution file - TOOL_WORKING_DIR = {'HANGAR': r'C:\Users\aMakus\Programming\KADMOS\PYTHON\RCE_HANGAR_tool', + TOOL_WORKING_DIR = {'HANGAR': r'C:\Users\aMakus\Programming\Repositories\agile_tools\agile-programs\RCE_HANGAR_tool', 'OBJ': ''} EXEC_FILE = {'HANGAR': 'HANGAR.py'} INPUT_FILE = {'HANGAR': 'tool_in.xml'} @@ -385,6 +385,7 @@ def execute_tool_in_python(tool, mode, exec_element_tree): # execute tool exec_comm = 'python {} {}'.format(path_to_exec, input_file_path) + print "Running {} in {} mode...".format(tool, mode) os.system(exec_comm) return os.path.join(TOOL_WORKING_DIR[tool], OUTPUT_FILE[tool]) diff --git a/pyKADMOS/sample/graph.py b/pyKADMOS/sample/graph.py index ced86db93831985d9fab4929d51843974254132f..f65ec8bb6e123ab1913fede35effff7a55584400 100644 --- a/pyKADMOS/sample/graph.py +++ b/pyKADMOS/sample/graph.py @@ -590,8 +590,11 @@ class KadmosGraph(nx.DiGraph): if node in self: nameCheck = self.node[node]['name'] == 'Objective' outDegCheck = self.out_degree(node) == 1 - outNode = self.out_edges(node)[0][1] - outNodeCheck = self.out_degree(outNode) == 0 + try: + outNode = self.out_edges(node)[0][1] + outNodeCheck = self.out_degree(outNode) == 0 + except IndexError: + outNodeCheck = False if nameCheck and outDegCheck and outNodeCheck: return True diff --git a/pyKADMOS/sample/initiation.py b/pyKADMOS/sample/initiation.py index 401517ff38dd614a9d5ce7d6d0d012895a2025ba..8239b02671c50ad2d9d1b3d0aad72a6d8faec4e5 100644 --- a/pyKADMOS/sample/initiation.py +++ b/pyKADMOS/sample/initiation.py @@ -11,6 +11,7 @@ import re from lxml import etree from pyKADMOS.sample.graph import KadmosGraph, MaximalConnectivityGraph +from pyKADMOS.sample import mapping_utilities as MU from pyKADMOS.sample.prompt_utilities import user_prompt_yes_no, user_prompt_select_options from pyKADMOS.sample.print_utilities import print_indexed_list @@ -123,7 +124,7 @@ class KnowledgeBaseInitiator(object): mssg = "The provided directory name '{}' already exists in '{}'. Would you like to overwrite its contents?".format(self.specific_files_dir, self.spec_base_path) # usr_sel = user_prompt_yes_no(message=mssg) - usr_sel = 1 #TODO:DEMO + usr_sel = 0 #TODO:DEMO # either create a unique directory or delete directory contents if usr_sel: @@ -412,12 +413,12 @@ class KnowledgeBaseInitiator(object): completeNodeList = [] for el in tree.iter(): elemData = {} - elemPath = tree.getpath(el) + elemPath = MU.xpath_to_uid_xpath(tree.getpath(el), el) # check whether indices in path --> uniqueness indexPattern = ('\[[0-9]+\]') if re.search(indexPattern, elemPath): - raise ValueError, "Element {} in {} has index and is not unique!".format(elemPath, file) + raise ValueError, "Element {} in {} has index and is not unique!".format(elemPath, mapFile) # append path to list of all nodes completeNodeList.append(elemPath) diff --git a/pyKADMOS/sample/mapping_utilities.py b/pyKADMOS/sample/mapping_utilities.py index 605ca1b61bc6358414474690c0fbaff9b3e64e57..bac703bed18dbe983f11163111c1becbf72d8316 100644 --- a/pyKADMOS/sample/mapping_utilities.py +++ b/pyKADMOS/sample/mapping_utilities.py @@ -47,7 +47,7 @@ def check_node_dependencies(mapping_dict, schemaPaths, tree, path): tree = ensure_UID_element_validity(mapping_dict, tree, anc) else: # if no elements found - print "\nWARNING: No elements found in tree with xpath {} for dependency check.".format(path) + print "\nWARNING: No elements found in tree with xpath {} for dependency check.".format(path) # TODO: continue here return tree @@ -480,6 +480,7 @@ def copy_toolspecific_elements_to_tree(target_tree, source_tree, element, overwr :return: target_tree: Tree to copy elements to :rtype etree._ElementTree """ + # define toolspecific search path TOOLSPEC = "toolspecific" @@ -524,7 +525,7 @@ def copy_toolspecific_elements_to_tree(target_tree, source_tree, element, overwr return target_tree -def get_xpaths_in_element_tree(tree, apply_modes=None, ignore_indeces=True, leaf_nodes=False): +def get_xpaths_in_element_tree(tree, apply_modes=None, ignore_uids=True, leaf_nodes=False): """ This function collects all node xpaths of an XML tree in a set. Filter options enable to only apply the relevant execution modes or to ignore indeces in the path. @@ -533,7 +534,7 @@ def get_xpaths_in_element_tree(tree, apply_modes=None, ignore_indeces=True, leaf :type etree._ElementTree :param apply_modes: container of modes that are applied to nodes :type None or iterable (not string) - :param ignore_indeces: If True, xpath indeces are ignored + :param ignore_uids: If True, xpath indeces are ignored :type bool :return: nodeSet :rtype set @@ -541,7 +542,7 @@ def get_xpaths_in_element_tree(tree, apply_modes=None, ignore_indeces=True, leaf # assert inputs assert isinstance(tree, etree._ElementTree), "Argument must be element tree." - assert isinstance(ignore_indeces, bool), "Argument must be boolean." + assert isinstance(ignore_uids, bool), "Argument must be boolean." if apply_modes is not None: assert hasattr(apply_modes, "__iter__"), "Argument must be iterable." assert isinstance(leaf_nodes, bool), "'leaf_nodes'-argument must be boolean." @@ -571,10 +572,10 @@ def get_xpaths_in_element_tree(tree, apply_modes=None, ignore_indeces=True, leaf raise Continue # remove all indeces and add path to set - if ignore_indeces: + if ignore_uids: elemPath = xpath_to_clean_xpath(tree.getpath(elem)) else: - elemPath = xpath_to_uid_xpath(tree.getpath(elem)) + elemPath = xpath_to_uid_xpath(tree.getpath(elem), elem) nodeSet.add(elemPath) except Continue: # continue looping nodes @@ -583,6 +584,46 @@ def get_xpaths_in_element_tree(tree, apply_modes=None, ignore_indeces=True, leaf return nodeSet +def filter_tree_by_modes(tree, modes): + """ + This function removes all nodes that are not applied to the provided execution modes, returns tree. + + :param tree: + :param modes: + :return: + """ + + # copy tree + ctree = copy.deepcopy(tree) + + # get all relevant path in tree (filtered by modes) + treePaths = get_xpaths_in_element_tree(ctree, modes, ignore_uids=False) + + # loop tree and check whether path in set of tree paths + removeElements = set([]) + for elem in ctree.iter(): + if xpath_to_uid_xpath(ctree.getpath(elem), elem) not in treePaths: + removeElements.add(elem) + + # remove elements form tree + remove_elements_from_tree(*removeElements) + + return ctree + + +def make_clean_xml_tree(root_node): + """ + This function creates a clean element tree using the provided root node string. + + :param root_node: root node of tree + :type basestring + :return: element tree + """ + + return etree.ElementTree(etree.Element(str(root_node))) + + + def add_nodes_to_tree(tree, node_paths, use_case_dir_path, refUIDs = {}): """ In this function, the user is asked to either add nodes manually or automatically. Manual addition of nodes requires @@ -609,7 +650,7 @@ def add_nodes_to_tree(tree, node_paths, use_case_dir_path, refUIDs = {}): # repeat until missing nodes filled in missing_nodes = node_paths - templ_tree_list = [] + templ_tree = make_clean_xml_tree("cpacs") while True: # ask user whether to provide nodes manually or not @@ -620,9 +661,9 @@ def add_nodes_to_tree(tree, node_paths, use_case_dir_path, refUIDs = {}): option = next(iter(sel)) if option == "Manual": # execute function to manually select nodes - templ_tree = get_nodes_by_xpaths_manual(missing_nodes, use_case_dir_path, refUIDs) + out_tree = get_nodes_by_xpaths_manual(missing_nodes, use_case_dir_path, refUIDs) elif option == "Full-Auto": - templ_tree = get_nodes_by_xpaths_full_auto(missing_nodes, use_case_dir_path, refUIDs) + out_tree = get_nodes_by_xpaths_full_auto(missing_nodes, use_case_dir_path, refUIDs) elif option == "Semi-Auto": print "NOT YET IMPLEMENTED, PICK A DIFFERENT METHOD" continue @@ -630,33 +671,34 @@ def add_nodes_to_tree(tree, node_paths, use_case_dir_path, refUIDs = {}): print "NOT YET IMPLEMENTED, PICK A DIFFERENT METHOD" continue - # ask user if continue with added nodes - msg = "Continue with the added nodes?" - usr_sel = PRO.user_prompt_yes_no(message=msg) - if not usr_sel: - continue - - # append tree to list; check whether nodes missing - templ_tree_list.append(templ_tree) - missing = [path for path in missing_nodes if templ_tree.find(xpath_to_searchpath(path)) is None] + # check whether nodes missing + missing = [path for path in missing_nodes if out_tree.find(xpath_to_searchpath(path)) is None] # if missing nodes, ask user whether to keep current elems or restart if missing: - print "\nWARNING: The following nodes are still missing:\n---{}\n---".format("\n".join(missing)) - sel_msg = "Would you like to keep the added elements (or restart node addition)?" + print "\nWARNING: The following nodes are still missing:\n---\n{}\n---".format("\n".join(missing)) + sel_msg = "Would you like to keep the added elements?" sel = PRO.user_prompt_yes_no(message=sel_msg) if sel: missing_nodes = missing + templ_tree = merge_XML_trees(templ_tree, out_tree) continue else: missing_nodes = node_paths - templ_tree_list = [] + templ_tree = make_clean_xml_tree("cpacs") continue else: + # ask user if continue with added nodes + msg = "Continue with the added nodes?" + usr_sel = PRO.user_prompt_yes_no(message=msg) + if not usr_sel: + missing_nodes = node_paths + templ_tree = make_clean_xml_tree("cpacs") + continue break # merge completed template tree into execution tree - compl_tree = merge_XML_trees(tree, *templ_tree_list) + compl_tree = merge_XML_trees(tree, templ_tree) return compl_tree @@ -782,6 +824,9 @@ def get_nodes_by_xpaths_manual(xpaths, use_case_dir_path, refUIDs = {}): # define template dir TEMPLATE_DIR = "TEMPLATES" + # define fill in text + FILL_IN = "fill_in_here" + # add new template directory if it does not yet exist in KB dir templ_dir = os.path.join(use_case_dir_path, TEMPLATE_DIR) if not os.path.exists(templ_dir): @@ -904,7 +949,7 @@ def get_nodes_by_xpaths_manual(xpaths, use_case_dir_path, refUIDs = {}): # add "fill in" to leaf nodes for elem in templ_tree.iter(): if not elem.getchildren(): - elem.text = "fill_in_here" + elem.text = FILL_IN # write tree to template dir; make sure path unique templ_file_path = get_unique_file_path(os.path.join(templ_dir, "template.xml")) @@ -922,13 +967,13 @@ def get_nodes_by_xpaths_manual(xpaths, use_case_dir_path, refUIDs = {}): # parse filled out template to tree templ_compl = etree.parse(templ_file_path) - templ_compl = etree.parse(r"C:\Users\aMakus\Desktop\emwet-templ.xml") # TODO: DEMO : REMOVE!!!! + # templ_compl = etree.parse(r"C:\Users\aMakus\Desktop\emwet-templ.xml") # TODO: DEMO # make sure that the filled out tree has values elemsValued = True for elem in templ_compl.iter(): if not elem.getchildren(): - if elem.text == "fill in": + if elem.text == FILL_IN: elemsValued = False if elemsValued: break @@ -939,6 +984,16 @@ def get_nodes_by_xpaths_manual(xpaths, use_case_dir_path, refUIDs = {}): print "WARNING: Template completion has been cancelled." return etree.ElementTree() # return empty tree + # print added nodes + printAdded = [] + for elem in templ_compl.iter(): + if not elem.getchildren(): + elemPath = xpath_to_uid_xpath(templ_compl.getpath(elem), elem) + printAdded.append((elemPath, elem.text)) + + print "\nThe following nodes were added to the Basefile:" + PRI.print_in_table(printAdded, headers=["Xpath", "Value"], print_indeces=True) + return templ_compl @@ -1033,7 +1088,7 @@ def combine_tool_mode_trees(one, other): return one -def append_template_nodes_to_tree(main_tree, templ_tree): +def append_template_nodes_to_tree(main_tree, templ_tree): # TODO: NOT SURE WHETHER THIS IS NEEDED """ This function iterates through the nodes in the templ_tree and tries to append them to existing nodes in the main_tree. For this purpose, each ancestor of the leaf nodes in the templ_tree is iterated to find a matching node @@ -1136,4 +1191,20 @@ def write_xml_tree_to_file(tree, path_to_file): f.truncate() tree.write(f, xml_declaration=True, encoding='utf-8', pretty_print=True) - return \ No newline at end of file + return + + +def remove_elements_from_tree(*removeElements): + """ + This function removes elements from their XML-tree. Tree does not have to be specifically + indicated, as per lxml package. + + :param removeElements: Iterable of elements to remove from their tree + :return: + """ + + for elem in removeElements: + try: + elem.getparent().remove(elem) + except: + AttributeError \ No newline at end of file diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/EMWET-info.json b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/EMWET-info.json new file mode 100644 index 0000000000000000000000000000000000000000..e67a95c6ae84f37793151a775b47bd437da5ee89 --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/EMWET-info.json @@ -0,0 +1,22 @@ +{ + "general_info": { + "name": "EMWET", + "version": 1.0, + "creator": "Ali Elham", + "description": "provide description here.", + "schema_input": "EMWET-input-map.xml", + "schema_output": "EMWET-output-map.xml" + }, + "execution_info": + [ + { + "mode": "Main", + "description": "something something", + "prog_env": "MATLAB", + "toolspecific": "eMWET", + "runtime": 20, + "fidelity": "L1", + "precision": 0.05 + } + ] +} diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/EMWET-input-map.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/EMWET-input-map.xml new file mode 100644 index 0000000000000000000000000000000000000000..ea936917a483beac0e631ae9b8361a1e06f5895f --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/EMWET-input-map.xml @@ -0,0 +1,233 @@ +<cpacs> + <header> + <cpacsVersion></cpacsVersion> + </header> + <vehicles> + <aircraft> + <model> + <wings> + <wing> + <sections> + <section> + <elements> + <element> + <name></name> + <airfoilUID></airfoilUID> + <transformation> + <scaling> + <x></x> + <y></y> + <z></z> + </scaling> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning> + <name></name> + <length></length> + <sweepAngle></sweepAngle> + <dihedralAngle></dihedralAngle> + <fromSectionUID></fromSectionUID> + <toSectionUID></toSectionUID> + </positioning> + </positionings> + <segments> + <segment> + <fromElementUID></fromElementUID> + <toElementUID></toElementUID> + </segment> + </segments> + <componentSegments> + <componentSegment> + <name></name> + <description></description> + <structure> + <upperShell> + <skin> + <material> + <materialUID></materialUID> + </material> + </skin> + </upperShell> + <lowerShell> + <skin> + <material> + <materialUID></materialUID> + </material> + </skin> + </lowerShell> + <ribsDefinitions> + <ribsDefinition> + <ribsPositioning> + <numberOfRibs></numberOfRibs> + </ribsPositioning> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition> + <eta></eta> + <xsi></xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment> + <sparPositionUIDs> + <sparPositionUID></sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <web1> + <material> + <materialUID></materialUID> + </material> + </web1> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + </componentSegment> + </componentSegments> + </wing> + </wings> + <engines> + <engine> + <engineUID></engineUID> + <transformation> + <translation> + <y></y> + </translation> + </transformation> + </engine> + </engines> + <analyses> + <loadAnalysis> + <loadCases> + <aeroDataSetsForLoads> + <aeroDataSetForLoads> + <wings> + <wing> + <wingUID></wingUID> + <segments> + <segment> + <strip> + <cfz></cfz> + <cmy></cmy> + <reference> + <length></length> + <flightShapePoint> + <y></y> + </flightShapePoint> + </reference> + </strip> + <segmentUID></segmentUID> + </segment> + </segments> + </wing> + </wings> + </aeroDataSetForLoads> + </aeroDataSetsForLoads> + <flightLoadCase> + <state> + <atmosphericConditions> + <density></density> + </atmosphericConditions> + <attitudeAndMotion> + <translation> + <velocity> + <u></u> + </velocity> + <acceleration> + <wDot></wDot> + </acceleration> + </translation> + </attitudeAndMotion> + </state> + <aeroDataSetUID></aeroDataSetUID> + </flightLoadCase> + </loadCases> + </loadAnalysis> + <massBreakdown> + <mOEM> + <mEM> + <mStructure> + <mWingsStructure> + <mWingStructure> + <massDescription> + <mass></mass> + <parentUID></parentUID> + </massDescription> + </mWingStructure> + </mWingsStructure> + </mStructure> + </mEM> + </mOEM> + <designMasses> + <mTOM> + <mass></mass> + </mTOM> + <mZFM> + <mass></mass> + </mZFM> + </designMasses> + </massBreakdown> + </analyses> + </model> + </aircraft> + <profiles> + <wingAirfoils> + <wingAirfoil> + <pointList> + <x></x> + <y></y> + <z></z> + </pointList> + </wingAirfoil> + </wingAirfoils> + </profiles> + <engines> + <engine> + <analysis> + <mass> + <mass></mass> + </mass> + </analysis> + </engine> + </engines> + <materials> + <material> + <rho></rho> + <k11></k11> + <sig11></sig11> + </material> + </materials> + </vehicles> + <toolspecific> + <eMWET> + <wingUID>MainWing_wingID</wingUID> + <loadcaseUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m</loadcaseUID> + <preferences> + <preference_description>"model" to obtain from model, "given" to take given value</preference_description> + <spar_pref>model</spar_pref> + <fueltank_pref>given</fueltank_pref> + <rib_pref>model</rib_pref> + </preferences> + <spars> + <given_spar_start_x>0.2</given_spar_start_x> + <given_spar_end_x>0.8</given_spar_end_x> + <model_front_spar_uid>wing_Spar_FS</model_front_spar_uid> + <model_rear_spar_uid>wing_Spar_RS</model_rear_spar_uid> + </spars> + <fueltank> + <fueltank_start_y>0.1</fueltank_start_y> + <fueltank_end_y>0.7</fueltank_end_y> + </fueltank> + <stringer_efficiency>0.96</stringer_efficiency> + <ribpitch>0.5</ribpitch> + <display>0</display> + </eMWET> + </toolspecific> +</cpacs> \ No newline at end of file diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/EMWET-output-map.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/EMWET-output-map.xml new file mode 100644 index 0000000000000000000000000000000000000000..22a53cd8bbc6104c8a2c15d8e02e6ad789cd7f49 --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/EMWET-output-map.xml @@ -0,0 +1,27 @@ +<?xml version='1.0' encoding='UTF-8'?> +<cpacs> + <vehicles> + <aircraft> + <model> + <analyses> + <massBreakdown> + <mOEM> + <mEM> + <mStructure> + <mWingsStructure> + <mWingStructure> + <massDescription> + <mass></mass> + <parentUID></parentUID> + </massDescription> + </mWingStructure> + </mWingsStructure> + </mStructure> + </mEM> + </mOEM> + </massBreakdown> + </analyses> + </model> + </aircraft> + </vehicles> +</cpacs> \ No newline at end of file diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/HANGAR-info.json b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/HANGAR-info.json new file mode 100644 index 0000000000000000000000000000000000000000..5c0c3dc93aa6f2725e05d075b8443885e35a38d4 --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/HANGAR-info.json @@ -0,0 +1,21 @@ +{ + "general_info": { + "name": "HANGAR", + "version": 1.0, + "creator": "Imco Van Gent", + "description": "provide description here.", + "schema_input": "HANGAR-input-map.xml", + "schema_output": "HANGAR-output-map.xml" + }, + "execution_info": + [{ + "mode": "Main", + "description": "some text here", + "prog_env": "PYTHON", + "toolspecific": "hANGAR", + "runtime": 20, + "fidelity": "L1", + "precision": 0.05 + } + ] +} diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/HANGAR-input-map.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/HANGAR-input-map.xml new file mode 100644 index 0000000000000000000000000000000000000000..a10cff9a86f32865fea50f36fdcf69d0ed042825 --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/HANGAR-input-map.xml @@ -0,0 +1,9 @@ +<?xml version='1.0' encoding='UTF-8'?> +<cpacs> + <toolspecific> + <hANGAR> + <loadCpacsFile>AGILE_DC1_L0_MDA.xml</loadCpacsFile> + <mode>AGILE_DC1_L0_MDA</mode> + </hANGAR> + </toolspecific> +</cpacs> diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/HANGAR-output-map.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/HANGAR-output-map.xml new file mode 100644 index 0000000000000000000000000000000000000000..2c8741fce96f5ce46fc773be20f9399c86bdb120 --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/HANGAR-output-map.xml @@ -0,0 +1,933 @@ +<?xml version='1.0' encoding='UTF-8'?> +<cpacs> + <header> + <name></name> + <version></version> + <cpacsVersion></cpacsVersion> + <creator></creator> + <description></description> + <timestamp></timestamp> + <updates> + <update> + <modification></modification> + <creator></creator> + </update> + </updates> + </header> + <vehicles> + <aircraft> + <model> + <name></name> + <description></description> + <reference> + <point> + <y></y> + <z></z> + <x></x> + </point> + <length></length> + <area></area> + </reference> + <fuselages> + <fuselage> + <name></name> + <transformation> + <scaling> + <x></x> + <y></y> + <z></z> + </scaling> + <rotation> + <x></x> + <y></y> + <z></z> + </rotation> + <translation> + <x></x> + <y></y> + <z></z> + </translation> + </transformation> + <sections> + <section> + <name></name> + <transformation> + <scaling> + <x></x> + <y></y> + <z></z> + </scaling> + <rotation> + <x></x> + <y></y> + <z></z> + </rotation> + <translation> + <x></x> + <y></y> + <z></z> + </translation> + </transformation> + <elements> + <element> + <name></name> + <profileUID></profileUID> + <transformation> + <scaling> + <x></x> + <y></y> + <z></z> + </scaling> + <rotation> + <x></x> + <y></y> + <z></z> + </rotation> + <translation> + <x></x> + <y></y> + <z></z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning> + <name></name> + <length></length> + <sweepAngle></sweepAngle> + <dihedralAngle></dihedralAngle> + <fromSectionUID></fromSectionUID> + <toSectionUID></toSectionUID> + </positioning> + </positionings> + <segments> + <segment> + <name></name> + <fromElementUID></fromElementUID> + <toElementUID></toElementUID> + </segment> + </segments> + </fuselage> + </fuselages> + <wings> + <wing> + <name></name> + <parentUID></parentUID> + <transformation> + <scaling> + <x></x> + <y></y> + <z></z> + </scaling> + <rotation> + <x></x> + <y></y> + <z></z> + </rotation> + <translation> + <x></x> + <y></y> + <z></z> + </translation> + </transformation> + <sections> + <section> + <name></name> + <transformation> + <scaling> + <x></x> + <y></y> + <z></z> + </scaling> + <rotation> + <x></x> + <y></y> + <z></z> + </rotation> + <translation> + <x></x> + <y></y> + <z></z> + </translation> + </transformation> + <elements> + <element> + <name></name> + <airfoilUID></airfoilUID> + <transformation> + <scaling> + <x></x> + <y></y> + <z></z> + </scaling> + <rotation> + <x></x> + <y></y> + <z></z> + </rotation> + <translation> + <x></x> + <y></y> + <z></z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning> + <name></name> + <length></length> + <sweepAngle></sweepAngle> + <dihedralAngle></dihedralAngle> + <fromSectionUID></fromSectionUID> + <toSectionUID></toSectionUID> + </positioning> + </positionings> + <segments> + <segment> + <name></name> + <fromElementUID></fromElementUID> + <toElementUID></toElementUID> + </segment> + </segments> + <componentSegments> + <componentSegment> + <name></name> + <description></description> + <structure> + <upperShell> + <skin> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </skin> + <stringer> + <stringerStructureUID></stringerStructureUID> + <pitch></pitch> + <angle></angle> + </stringer> + </upperShell> + <lowerShell> + <skin> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </skin> + <stringer> + <stringerStructureUID></stringerStructureUID> + <pitch></pitch> + <angle></angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition> + <name></name> + <ribsPositioning> + <ribReference></ribReference> + <etaStart></etaStart> + <etaEnd></etaEnd> + <ribStart></ribStart> + <ribEnd></ribEnd> + <numberOfRibs></numberOfRibs> + <ribCrossingBehaviour></ribCrossingBehaviour> + <ribRotation> + <ribRotationReference></ribRotationReference> + <z></z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition> + <eta></eta> + <xsi></xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment> + <name></name> + <description></description> + <sparPositionUIDs> + <sparPositionUID></sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area></area> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </upperCap> + <lowerCap> + <area></area> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + <relPos></relPos> + </web1> + <rotation></rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <controlSurfaces> + <leadingEdgeDevices> + <leadingEdgeDevice> + <name></name> + <description></description> + <parentUID></parentUID> + <outerShape> + <innerBorder> + <etaLE></etaLE> + <xsiTEUpper></xsiTEUpper> + <xsiTELower></xsiTELower> + <leadingEdgeShape> + <relHeightLE></relHeightLE> + <xsiUpperSkin></xsiUpperSkin> + <xsiLowerSkin></xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE></etaLE> + <xsiTEUpper></xsiTEUpper> + <xsiTELower></xsiTELower> + <leadingEdgeShape> + <relHeightLE></relHeightLE> + <xsiUpperSkin></xsiUpperSkin> + <xsiLowerSkin></xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi></hingeXsi> + <hingeRelHeight></hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi></hingeXsi> + <hingeRelHeight></hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection></relDeflection> + <innerHingeTranslation> + <x></x> + <y></y> + <z></z> + </innerHingeTranslation> + <outerHingeTranslation> + <x></x> + <z></z> + </outerHingeTranslation> + <hingeLineRotation></hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + </leadingEdgeDevices> + <trailingEdgeDevices> + <trailingEdgeDevice> + <name></name> + <description></description> + <parentUID></parentUID> + <outerShape> + <innerBorder> + <etaLE></etaLE> + <etaTE></etaTE> + <xsiLE></xsiLE> + <leadingEdgeShape> + <relHeightLE></relHeightLE> + <xsiUpperSkin></xsiUpperSkin> + <xsiLowerSkin></xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE></etaLE> + <etaTE></etaTE> + <xsiLE></xsiLE> + <leadingEdgeShape> + <relHeightLE></relHeightLE> + <xsiUpperSkin></xsiUpperSkin> + <xsiLowerSkin></xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <structure> + <upperShell> + <skin> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </skin> + <stringer> + <stringerStructureUID></stringerStructureUID> + <pitch></pitch> + <angle></angle> + </stringer> + </upperShell> + <lowerShell> + <skin> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </skin> + <stringer> + <stringerStructureUID></stringerStructureUID> + <pitch></pitch> + <angle></angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition> + <name></name> + <ribsPositioning> + <ribReference></ribReference> + <etaStart></etaStart> + <etaEnd></etaEnd> + <ribStart></ribStart> + <ribEnd></ribEnd> + <spacing></spacing> + <ribCrossingBehaviour></ribCrossingBehaviour> + <ribRotation> + <ribRotationReference></ribRotationReference> + <z></z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition> + <eta></eta> + <xsi></xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment> + <name></name> + <description></description> + <sparPositionUIDs> + <sparPositionUID></sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area></area> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </upperCap> + <lowerCap> + <area></area> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + <relPos></relPos> + </web1> + <rotation></rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <path> + <innerHingePoint> + <hingeXsi></hingeXsi> + <hingeRelHeight></hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi></hingeXsi> + <hingeRelHeight></hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection></relDeflection> + <innerHingeTranslation> + <x></x> + <y></y> + <z></z> + </innerHingeTranslation> + <outerHingeTranslation> + <x></x> + <z></z> + </outerHingeTranslation> + <hingeLineRotation></hingeLineRotation> + </step> + </steps> + </path> + <tracks> + <track> + <eta></eta> + <trackType></trackType> + <trackStructure> + <controlSurfaceAttachment> + <materialUID></materialUID> + <thickness></thickness> + </controlSurfaceAttachment> + </trackStructure> + </track> + </tracks> + <actuators> + <actuator> + <actuatorUID></actuatorUID> + <attachment> + <etaControlSurface></etaControlSurface> + <parentAttachment> + <parentXsi></parentXsi> + <parentHeight></parentHeight> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </parentAttachment> + <controlSurfaceAttachment> + <parentXsi></parentXsi> + <parentHeight></parentHeight> + <material> + <materialUID></materialUID> + <thickness></thickness> + </material> + </controlSurfaceAttachment> + </attachment> + </actuator> + </actuators> + </trailingEdgeDevice> + </trailingEdgeDevices> + </controlSurfaces> + <wingFuselageAttachments> + <wingFuselageAttachment> + <rib1> + <ribDefinitionUID></ribDefinitionUID> + <ribNumber></ribNumber> + </rib1> + </wingFuselageAttachment> + </wingFuselageAttachments> + <wingFuelTanks> + <wingFuelTank> + <name></name> + <geometry> + <border> + <ribDefinitionUID></ribDefinitionUID> + <ribNumber></ribNumber> + </border> + </geometry> + </wingFuelTank> + </wingFuelTanks> + <fromElementUID></fromElementUID> + <toElementUID></toElementUID> + </componentSegment> + </componentSegments> + </wing> + </wings> + <engines> + <engine> + <engineUID></engineUID> + <parentUID></parentUID> + <transformation> + <translation> + <x></x> + <y></y> + <z></z> + </translation> + </transformation> + </engine> + </engines> + <analyses> + <aeroPerformanceMap> + <machNumber></machNumber> + <reynoldsNumber></reynoldsNumber> + <angleOfYaw></angleOfYaw> + <angleOfAttack></angleOfAttack> + <cfx></cfx> + <cfy></cfy> + <cfz></cfz> + <cmx></cmx> + <cmy></cmy> + <cmz></cmz> + </aeroPerformanceMap> + <loadAnalysis> + <loadCases> + <aeroDataSetsForLoads> + <aeroDataSetForLoads> + <flowCondition> + <machNumber></machNumber> + <reynoldsNumber></reynoldsNumber> + <angleOfYaw></angleOfYaw> + <targetLiftCoefficient></targetLiftCoefficient> + </flowCondition> + <wings> + <wing> + <wingUID></wingUID> + <coefficients> + <cfz></cfz> + <cmy></cmy> + </coefficients> + <segments> + <segment> + <strip> + <cfz></cfz> + <cmy></cmy> + <reference> + <length></length> + <flightShapePoint> + <x></x> + <y></y> + <z></z> + </flightShapePoint> + </reference> + </strip> + <segmentUID></segmentUID> + </segment> + </segments> + </wing> + </wings> + </aeroDataSetForLoads> + </aeroDataSetsForLoads> + <flightLoadCase> + <description></description> + <loadCondition> + <designSpeed></designSpeed> + <safetyFactor></safetyFactor> + <sizingType></sizingType> + </loadCondition> + <state> + <atmosphericConditions> + <model></model> + <altitude></altitude> + <staticPressure></staticPressure> + <density></density> + <temperature></temperature> + <speedOfSound></speedOfSound> + </atmosphericConditions> + <derivedParameters> + <machNumber></machNumber> + <targetCfz></targetCfz> + </derivedParameters> + <attitudeAndMotion> + <translation> + <velocity> + <u></u> + <v></v> + <w></w> + </velocity> + <acceleration> + <uDot></uDot> + <vDot></vDot> + <wDot></wDot> + </acceleration> + </translation> + </attitudeAndMotion> + </state> + <aircraftSettings> + <controlSurfaces> + <controlSurface> + <controlSurfaceUID></controlSurfaceUID> + </controlSurface> + </controlSurfaces> + <landingGears> + <landingGear> + <landingGearUID></landingGearUID> + <extended></extended> + <relDeflection></relDeflection> + </landingGear> + </landingGears> + <engines> + <engine> + <modelEngineUID></modelEngineUID> + <thrustLevel></thrustLevel> + <inoperative></inoperative> + </engine> + </engines> + <cabinPressure></cabinPressure> + <mass> + <weightAndBalanceUID></weightAndBalanceUID> + </mass> + </aircraftSettings> + <mass> + <weightAndBalanceUID></weightAndBalanceUID> + </mass> + <aeroLoads> + <description></description> + <totalCoefficients> + <cfx></cfx> + <cfy></cfy> + <cfz></cfz> + <cfl></cfl> + <cfd></cfd> + <cmx></cmx> + <cmy></cmy> + <cmz></cmz> + <reference> + <area></area> + <length></length> + <point> + <x></x> + <y></y> + <z></z> + </point> + </reference> + </totalCoefficients> + <wings> + <wing> + <wingUID></wingUID> + <coefficients> + <cfx></cfx> + <cfy></cfy> + <cfz></cfz> + </coefficients> + <reference> + <area></area> + <length></length> + <point> + <x></x> + <y></y> + <z></z> + </point> + </reference> + <strips> + <strip> + <cfx></cfx> + <cfy></cfy> + <cfz></cfz> + <reference> + <area></area> + <length></length> + <point> + <x></x> + <y></y> + <z></z> + </point> + </reference> + <elements> + <element> + <cfx></cfx> + <cfy></cfy> + <cfz></cfz> + <reference> + <area></area> + <length></length> + <point> + <x></x> + <y></y> + <z></z> + </point> + </reference> + </element> + </elements> + </strip> + </strips> + </wing> + </wings> + </aeroLoads> + <aeroDataSetUID></aeroDataSetUID> + </flightLoadCase> + </loadCases> + </loadAnalysis> + <massBreakdown> + <mOEM> + <mEM> + <mPowerUnits> + <massDescription> + <massInertia> + <Jxx></Jxx> + <Jyy></Jyy> + <Jzz></Jzz> + </massInertia> + <mass></mass> + </massDescription> + </mPowerUnits> + <mFurnishing> + <massDescription> + <mass></mass> + </massDescription> + </mFurnishing> + <mStructure> + <mFuselagesStructure> + <mFuselageStructure> + <massDescription> + <mass></mass> + <location> + <x></x> + </location> + </massDescription> + </mFuselageStructure> + </mFuselagesStructure> + <mWingsStructure> + <mWingStructure> + <massDescription> + <mass></mass> + <parentUID></parentUID> + <location> + <x></x> + </location> + </massDescription> + </mWingStructure> + </mWingsStructure> + <mLandingGears> + <mLandingGear> + <massDescription> + <parentUID></parentUID> + <mass></mass> + </massDescription> + </mLandingGear> + </mLandingGears> + <mPylons> + <massDescription> + <mass></mass> + </massDescription> + </mPylons> + </mStructure> + <mSystems> + <massDescription> + <mass></mass> + <location> + <x></x> + </location> + </massDescription> + </mSystems> + </mEM> + <massDescription> + <mass></mass> + </massDescription> + <mOperatorItems> + <massDescription> + <mass></mass> + </massDescription> + </mOperatorItems> + </mOEM> + <fuel> + <massDescription> + <mass></mass> + <description></description> + </massDescription> + </fuel> + <designMasses> + <mTOM> + <massInertia> + <Jxx></Jxx> + <Jyy></Jyy> + <Jzz></Jzz> + </massInertia> + <mass></mass> + <location> + <x></x> + </location> + </mTOM> + <mMLM> + <mass></mass> + </mMLM> + <mZFM> + <mass></mass> + </mZFM> + </designMasses> + <payload> + <massDescription> + <description></description> + <mass></mass> + </massDescription> + </payload> + </massBreakdown> + </analyses> + <global> + <machCruise></machCruise> + <paxSeats></paxSeats> + </global> + </model> + </aircraft> + <profiles> + <wingAirfoils> + <wingAirfoil> + <name></name> + <pointList> + <x></x> + <y></y> + <z></z> + </pointList> + </wingAirfoil> + </wingAirfoils> + <fuselageProfiles> + <fuselageProfile> + <name></name> + <pointList> + <x></x> + <y></y> + <z></z> + </pointList> + </fuselageProfile> + </fuselageProfiles> + </profiles> + <engines> + <engine> + <description></description> + <analysis> + <bpr00></bpr00> + <thrust00></thrust00> + <mass> + <mass></mass> + </mass> + </analysis> + <geometry> + <diameter></diameter> + <length></length> + </geometry> + </engine> + </engines> + <materials> + <material> + <name></name> + <rho></rho> + <k11></k11> + <k12></k12> + <sig11></sig11> + <tau12></tau12> + <postFailure> + <name></name> + <description></description> + <materialLaw></materialLaw> + <plasticEliminationStrain></plasticEliminationStrain> + <plasticityCurvePoint> + <tangentModulus></tangentModulus> + <trueStress></trueStress> + </plasticityCurvePoint> + </postFailure> + </material> + </materials> + </vehicles> +</cpacs> \ No newline at end of file diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/Q3D-info.json b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/Q3D-info.json new file mode 100644 index 0000000000000000000000000000000000000000..ebf821754f74302cdec45eafa088f0f4f1f02a11 --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/Q3D-info.json @@ -0,0 +1,37 @@ +{ + "general_info": { + "name": "Q3D", + "version": 1.0, + "creator": "Mengmeng Zhang", + "description": "description here", + "schema_input": "Q3D-input-map.xml", + "schema_output": "Q3D-output-map.xml" + }, + "execution_info": + [{ + "mode": "FLC", + "description": "description here", + "prog_env": "MATLAB", + "toolspecific": "q3D", + "runtime": 5, + "fidelity": "L1", + "precision": 0.05 + }, { + "mode": "APM", + "description": "description here", + "prog_env": "MATLAB", + "toolspecific": "q3D", + "runtime": 22, + "fidelity": "L1", + "precision": 0.15 + },{ + "mode": "VDE", + "description": "description here", + "prog_env": "MATLAB", + "toolspecific": "q3D", + "runtime": 22, + "fidelity": "L1", + "precision": 0.15 + } + ] +} diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/Q3D-input-map.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/Q3D-input-map.xml new file mode 100644 index 0000000000000000000000000000000000000000..7fa9781ad21e8f5a458c38ec3aa93e2ff8048a28 --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/Q3D-input-map.xml @@ -0,0 +1,127 @@ +<?xml version='1.0' encoding='UTF-8'?> +<cpacs> + <header> + <cpacsVersion></cpacsVersion> + </header> + <vehicles> + <aircraft> + <model> + <wings> + <wing> + <sections> + <section> + <elements> + <element> + <airfoilUID></airfoilUID> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning> + <length></length> + <sweepAngle></sweepAngle> + <dihedralAngle></dihedralAngle> + <fromSectionUID></fromSectionUID> + <toSectionUID></toSectionUID> + </positioning> + </positionings> + <segments> + <segment> + <fromElementUID></fromElementUID> + <toElementUID></toElementUID> + </segment> + </segments> + </wing> + </wings> + <analyses> + <aeroPerformanceMap modes="APM"> + <machNumber></machNumber> + <reynoldsNumber></reynoldsNumber> + <angleOfYaw></angleOfYaw> + <angleOfAttack></angleOfAttack> + </aeroPerformanceMap> + <loadAnalysis> + <loadCases> + <flightLoadCase> + <state> + <atmosphericConditions> + <model modes="APM"></model> + <altitude modes="APM"></altitude> + <density modes="FLC"></density> + <temperature modes="FLC"></temperature> + <speedOfSound modes="FLC"></speedOfSound> + </atmosphericConditions> + <attitudeAndMotion modes="FLC"> + <translation> + <velocity> + <u></u> + </velocity> + <acceleration> + <wDot></wDot> + </acceleration> + </translation> + </attitudeAndMotion> + </state> + <mass modes="FLC"> + <weightAndBalanceUID></weightAndBalanceUID> + </mass> + </flightLoadCase> + </loadCases> + </loadAnalysis> + <massBreakdown modes="FLC"> + <designMasses> + <mTOM> + <mass></mass> + </mTOM> + </designMasses> + </massBreakdown> + </analyses> + </model> + </aircraft> + <profiles> + <wingAirfoils> + <wingAirfoil> + <pointList> + <x></x> + <y></y> + <z></z> + </pointList> + </wingAirfoil> + </wingAirfoils> + </profiles> + </vehicles> + <toolspecific> + <q3D> + <cases> + <case uID="APM" modes="APM"> + <typeOfRun>aeroPerformanceMap</typeOfRun> + <modelUID>agile_v13_modelID</modelUID> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + </case> + <case uID="FLC" modes="FLC"> + <typeOfRun>flightLoadCase</typeOfRun> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + <flightLoadCaseUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m</flightLoadCaseUID> + </case> + <case uID="VDE" modes="VDE"> + <typeOfRun>flightLoadCase</typeOfRun> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + <flightLoadCaseUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m</flightLoadCaseUID> + </case> + </cases> + </q3D> + </toolspecific> +</cpacs> \ No newline at end of file diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/Q3D-output-map.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/Q3D-output-map.xml new file mode 100644 index 0000000000000000000000000000000000000000..365282f0a815c1a1816c85d3a4f1f1d182f1f11b --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/Q3D-output-map.xml @@ -0,0 +1,62 @@ +<?xml version='1.0' encoding='UTF-8'?> +<cpacs> + <vehicles> + <aircraft> + <model> + <analyses> + <aeroPerformanceMap modes="APM"> + <cfx></cfx> + <cfy></cfy> + <cfz></cfz> + <cmx></cmx> + <cmy></cmy> + <cmz></cmz> + </aeroPerformanceMap> + <loadAnalysis modes="FLC"> + <loadCases> + <aeroDataSetsForLoads> + <aeroDataSetForLoads> + <flowCondition> + <machNumber></machNumber> + <reynoldsNumber></reynoldsNumber> + <angleOfYaw></angleOfYaw> + <targetLiftCoefficient></targetLiftCoefficient> + </flowCondition> + <wings> + <wing> + <wingUID></wingUID> + <coefficients> + <cfz></cfz> + <cmy></cmy> + </coefficients> + <segments> + <segment> + <strip> + <cfz></cfz> + <cmy></cmy> + <reference> + <length></length> + <flightShapePoint> + <x></x> + <y></y> + <z></z> + </flightShapePoint> + </reference> + </strip> + <segmentUID></segmentUID> + </segment> + </segments> + </wing> + </wings> + </aeroDataSetForLoads> + </aeroDataSetsForLoads> + <flightLoadCase> + <aeroDataSetUID></aeroDataSetUID> + </flightLoadCase> + </loadCases> + </loadAnalysis> + </analyses> + </model> + </aircraft> + </vehicles> +</cpacs> \ No newline at end of file diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/_UIDmapping.json b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/_UIDmapping.json new file mode 100644 index 0000000000000000000000000000000000000000..87b8f54b7693e34e08e80645c463cebe0988f86c --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/_UIDmapping.json @@ -0,0 +1,24 @@ +{ + "MAPPING_DICT" : { + "/cpacs/vehicles/aircraft/model/analyses/massBreakdown/mOEM/mEM/mStructure/mWingsStructure/mWingStructure/massDescription/parentUID": "/cpacs/vehicles/aircraft/model/wings/wing", + "/cpacs/vehicles/aircraft/model/analyses/loadAnalysis/loadCases/aeroDataSetsForLoads/aeroDataSetForLoads/wings/wing/wingUID": "/cpacs/vehicles/aircraft/model/wings/wing", + "/cpacs/vehicles/aircraft/model/wings/wing/positionings/positioning/toSectionUID": "/cpacs/vehicles/aircraft/model/wings/wing/sections/section", + "/cpacs/vehicles/aircraft/model/wings/wing/positionings/positioning/fromSectionUID": "/cpacs/vehicles/aircraft/model/wings/wing/sections/section", + "/cpacs/vehicles/aircraft/model/wings/wing/segments/segment/fromElementUID" : "/cpacs/vehicles/aircraft/model/wings/wing/sections/section/elements/element", + "/cpacs/vehicles/aircraft/model/wings/wing/segments/segment/toElementUID": "/cpacs/vehicles/aircraft/model/wings/wing/sections/section/elements/element", + "/cpacs/vehicles/aircraft/model/analyses/loadAnalysis/loadCases/aeroDataSetsForLoads/aeroDataSetForLoads/wings/wing/segments/segment/segmentUID": "/cpacs/vehicles/aircraft/model/wings/wing/segments/segment", + "/cpacs/vehicles/aircraft/model/wings/wing/componentSegments/componentSegment/structure/upperShell/skin/material/materialUID" : "/cpacs/vehicles/materials/material", + "/cpacs/vehicles/aircraft/model/wings/wing/componentSegments/componentSegment/structure/lowerShell/skin/material/materialUID" : "/cpacs/vehicles/materials/material", + "/cpacs/vehicles/aircraft/model/wings/wing/componentSegments/componentSegment/structure/spars/sparSegments/sparSegment/sparCrossSection/web1/material/materialUID" : "/cpacs/vehicles/materials/material", + "/cpacs/vehicles/aircraft/model/wings/wing/sections/section/elements/element/airfoilUID" : "/cpacs/vehicles/profiles/wingAirfoils/wingAirfoil", + "/cpacs/vehicles/aircraft/model/analyses/loadAnalysis/loadCases/flightLoadCase/aeroDataSetUID" : "/cpacs/vehicles/aircraft/model/analyses/loadAnalysis/loadCases/aeroDataSetsForLoads/aeroDataSetForLoads", + "/cpacs/vehicles/aircraft/model/wings/wing/componentSegments/componentSegment/structure/spars/sparSegments/sparSegment/sparPositionUIDs/sparPositionUID" : "/cpacs/vehicles/aircraft/model/wings/wing/componentSegments/componentSegment/structure/spars/sparPositions/sparPosition", + "/cpacs/vehicles/aircraft/model/engines/engine/engineUID" : "/cpacs/vehicles/engines/engine", + "/cpacs/vehicles/aircraft/model/analyses/loadAnalysis/loadCases/flightLoadCase/mass/weightAndBalanceUID" : "/cpacs/vehicles/aircraft/model/analyses/massBreakdown/designMasses/mTOM", + "/cpacs/toolspecific/eMWET/loadcaseUID": "/cpacs/vehicles/aircraft/model/analyses/loadAnalysis/loadCases/flightLoadCase", + "/cpacs/toolspecific/eMWET/wingUID": "/cpacs/vehicles/aircraft/model/wings/wing", + "/cpacs/toolspecific/q3D/wingUID" : "/cpacs/vehicles/aircraft/model/wings/wing", + "/cpacs/toolspecific/q3D/modelUID" : "/cpacs/vehicles/aircraft/model", + "/cpacs/toolspecific/q3D/flightLoadCaseUID" : "/cpacs/vehicles/aircraft/model/analyses/loadAnalysis/loadCases/flightLoadCase" + } +} \ No newline at end of file diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/test.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/test.xml new file mode 100644 index 0000000000000000000000000000000000000000..2752f1975a5e6a521487c22913b86dfce2265f7f --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SCHEMATIC_BASE/MDO_DEMO_BLUEPRINTS/test.xml @@ -0,0 +1,46 @@ + <toolspecific> + python Q3D -c case1 + <cases> + <case uID="case1" modes="VDE"> + <executionModes>VDE</executionModes> + <typeOfRun>flightLoadCase</typeOfRun> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + </case> + <case uID="case2" modes="VDE"> + <executionModes>VDE</executionModes> + <typeOfRun>flightLoadCase</typeOfRun> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + </case> + </cases> + + + <q3D-APM modes="APM"> + <modelUID>agile_v13_modelID</modelUID> + <typeOfRun>aeroPerformanceMap</typeOfRun> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + </q3D-APM> + <q3D-FLC modes="FLC"> + <typeOfRun>flightLoadCase</typeOfRun> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + </q3D-FLC> + <q3D-FLC2> + + + </q3D-FLC2> + </toolspecific> diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/AGILE_DC1_TEST_EMWET/AGILE_DC1_TEST_EMWET-base.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/AGILE_DC1_TEST_EMWET/AGILE_DC1_TEST_EMWET-base.xml new file mode 100644 index 0000000000000000000000000000000000000000..444cdcb9a0a48d555f232f885f2777a51d99573a --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/AGILE_DC1_TEST_EMWET/AGILE_DC1_TEST_EMWET-base.xml @@ -0,0 +1,520 @@ +<?xml version="1.0" encoding="utf-8"?> +<cpacs> + <header> + <cpacsVersion>2.3</cpacsVersion> + </header> + <vehicles> + <aircraft> + <model uID="agile_v13_modelID"> + <wings> + <wing symmetry="x-z-plane" uID="MainWing_wingID"> + <sections> + <section uID="MainWing_wingSection1ID"> + <elements> + <element uID="MainWing_wingSection1Element1ID"> + <name>MainWingSection1</name> + <airfoilUID>Profile_MainWing_1ID</airfoilUID> + <transformation> + <scaling> + <x>6.3923</x> + <y>6.3923</y> + <z>6.3923</z> + </scaling> + </transformation> + </element> + </elements> + </section> + <section uID="MainWing_wingSection2ID"> + <elements> + <element uID="MainWing_wingSection2Element1ID"> + <name>MainWingSection2</name> + <airfoilUID>Profile_MainWing_2ID</airfoilUID> + <transformation> + <scaling> + <x>2.71737</x> + <y>2.71737</y> + <z>2.71737</z> + </scaling> + </transformation> + </element> + </elements> + </section> + <section uID="MainWing_wingSection3ID"> + <elements> + <element uID="MainWing_wingSection3Element1ID"> + <name>MainWingSection3</name> + <airfoilUID>Profile_MainWing_3ID</airfoilUID> + <transformation> + <scaling> + <x>1.05165</x> + <y>1.05165</y> + <z>1.05165</z> + </scaling> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="MainWing_wingPositioning1ID"> + <name>MainWingPositioning1</name> + <length>0</length> + <sweepAngle>0</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>MainWing_wingSection1ID</toSectionUID> + </positioning> + <positioning uID="MainWing_wingPositioning2ID"> + <name>MainWingPositioning2</name> + <length>6.73236</length> + <sweepAngle>33.2273</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>MainWing_wingSection1ID</fromSectionUID> + <toSectionUID>MainWing_wingSection2ID</toSectionUID> + </positioning> + <positioning uID="MainWing_wingPositioning3ID"> + <name>MainWingPositioning3</name> + <length>9.60746</length> + <sweepAngle>28.4037</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>MainWing_wingSection2ID</fromSectionUID> + <toSectionUID>MainWing_wingSection3ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="MainWing_wingSegment1ID"> + <fromElementUID>MainWing_wingSection1Element1ID</fromElementUID> + <toElementUID>MainWing_wingSection2Element1ID</toElementUID> + </segment> + <segment uID="MainWing_wingSegment2ID"> + <fromElementUID>MainWing_wingSection2Element1ID</fromElementUID> + <toElementUID>MainWing_wingSection3Element1ID</toElementUID> + </segment> + </segments> + <componentSegments> + <componentSegment uID="wing_Cseg"> + <name>wing_CSeg</name> + <description>wing_CSeg</description> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + </material> + </skin> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + </material> + </skin> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="wing_ribs_inner"> + <ribsPositioning> + <numberOfRibs>4</numberOfRibs> + </ribsPositioning> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_engine1"> + <ribsPositioning> + <numberOfRibs>3</numberOfRibs> + </ribsPositioning> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_engine2"> + <ribsPositioning> + <numberOfRibs>1</numberOfRibs> + </ribsPositioning> </ribsDefinition> + <ribsDefinition uID="wing_ribs_outer"> + <ribsPositioning> + <numberOfRibs>11</numberOfRibs> + </ribsPositioning> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="wing_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.1</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_FS_P1"> + <eta>0.106761565836</eta> + <xsi>0.1</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_FS_P2"> + <eta>1.0</eta> + <xsi>0.460829493088</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.56</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_RS_P1"> + <eta>0.106761565836</eta> + <xsi>0.56</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_RS_P2"> + <eta>0.350213340505</eta> + <xsi>0.6</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_RS_P3"> + <eta>1.0</eta> + <xsi>0.59</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="wing_Spar_FS"> + <sparPositionUIDs> + <sparPositionUID isLink="True">wing_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">wing_Spar_FS_P1</sparPositionUID> + <sparPositionUID isLink="True">wing_Spar_FS_P2</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + </material> + </web1> + </sparCrossSection> + </sparSegment> + <sparSegment uID="wing_Spar_RS"> + <sparPositionUIDs> + <sparPositionUID isLink="True">wing_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">wing_Spar_RS_P1</sparPositionUID> + <sparPositionUID isLink="True">wing_Spar_RS_P2</sparPositionUID> + <sparPositionUID isLink="True">wing_Spar_RS_P3</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + </material> + </web1> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + </componentSegment> + </componentSegments> + </wing> + </wings> + <engines> + <engine symmetry="x-z-plane" uID="model_engine"> + <engineUID isLink="True">engine</engineUID> + <transformation> + <translation refType="absGlobal"> + <y>4.215</y> + </translation> + </transformation> + </engine> + </engines> + <analyses> + <loadAnalysis> + <loadCases> + <aeroDataSetsForLoads> + <aeroDataSetForLoads uID="Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m_aeroDataSet"> + <wings> + <wing> + <wingUID>MainWing_wingID</wingUID> + <segments> + <segment> + <strip> + <cfz>0.4588</cfz> + <cmy>-0.1304</cmy> + <reference> + <length>6.1626</length> + <flightShapePoint> + <y>0.3500</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.4877</cfz> + <cmy>-0.1304</cmy> + <reference> + <length>5.7033</length> + <flightShapePoint> + <y>1.0501</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.5179</cfz> + <cmy>-0.1302</cmy> + <reference> + <length>5.2439</length> + <flightShapePoint> + <y>1.7502</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.5495</cfz> + <cmy>-0.1298</cmy> + <reference> + <length>4.7845</length> + <flightShapePoint> + <y>2.4503</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.5833</cfz> + <cmy>-0.1291</cmy> + <reference> + <length>4.3252</length> + <flightShapePoint> + <y>3.1504</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.6204</cfz> + <cmy>-0.1279</cmy> + <reference> + <length>3.8658</length> + <flightShapePoint> + <y>3.8505</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.6626</cfz> + <cmy>-0.126</cmy> + <reference> + <length>3.4064</length> + <flightShapePoint> + <y>4.5506</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.7131</cfz> + <cmy>-0.1227</cmy> + <reference> + <length>2.9471</length> + <flightShapePoint> + <y>5.2507</y> + </flightShapePoint> + </reference> + </strip> + <segmentUID>MainWing_wingSegment1ID</segmentUID> + </segment> + <segment> + <strip> + <cfz>0.7431</cfz> + <cmy>-0.1119</cmy> + <reference> + <length>2.648</length> + <flightShapePoint> + <y>5.9510</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.7541</cfz> + <cmy>-0.1071</cmy> + <reference> + <length>2.5092</length> + <flightShapePoint> + <y>6.6514</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.7682</cfz> + <cmy>-0.1056</cmy> + <reference> + <length>2.3703</length> + <flightShapePoint> + <y>7.3517</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.7838</cfz> + <cmy>-0.1057</cmy> + <reference> + <length>2.2315</length> + <flightShapePoint> + <y>8.0521</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8005</cfz> + <cmy>-0.107</cmy> + <reference> + <length>2.0927</length> + <flightShapePoint> + <y>8.7525</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8179</cfz> + <cmy>-0.1089</cmy> + <reference> + <length>1.9539</length> + <flightShapePoint> + <y>9.4529</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8355</cfz> + <cmy>-0.1113</cmy> + <reference> + <length>1.8151</length> + <flightShapePoint> + <y>10.1533</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8526</cfz> + <cmy>-0.1139</cmy> + <reference> + <length>1.6763</length> + <flightShapePoint> + <y>10.8537</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8667</cfz> + <cmy>-0.1165</cmy> + <reference> + <length>1.5375</length> + <flightShapePoint> + <y>11.5541</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8715</cfz> + <cmy>-0.1179</cmy> + <reference> + <length>1.3987</length> + <flightShapePoint> + <y>12.2544</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8485</cfz> + <cmy>-0.1154</cmy> + <reference> + <length>1.2599</length> + <flightShapePoint> + <y>12.9548</y> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.7288</cfz> + <cmy>-0.1</cmy> + <reference> + <length>1.1211</length> + <flightShapePoint> + <y>13.6552</y> + </flightShapePoint> + </reference> + </strip> + <segmentUID>MainWing_wingSegment2ID</segmentUID> + </segment> + </segments> + </wing> + </wings> + </aeroDataSetForLoads> + </aeroDataSetsForLoads> + <flightLoadCase uID="Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m"> + <state> + <atmosphericConditions> + <density>0.31093</density> + </atmosphericConditions> + <attitudeAndMotion> + <translation> + <velocity> + <u>230.178</u> + </velocity> + <acceleration> + <wDot>14.715</wDot> + </acceleration> + </translation> + </attitudeAndMotion> + </state> + <aeroDataSetUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m_aeroDataSet</aeroDataSetUID> + </flightLoadCase> + </loadCases> + </loadAnalysis> + <massBreakdown> + <mOEM> + <mEM> + <mStructure> + <mWingsStructure> + <mWingStructure> + <massDescription> + <mass>2071.37</mass> + <parentUID isLink="True">MainWing_wingID</parentUID> + </massDescription> + </mWingStructure> + </mWingsStructure> + </mStructure> + </mEM> + </mOEM> + <designMasses> + <mTOM uID="MTOW1"> + <mass>45045.8583098</mass> + </mTOM> + <mZFM> + <mass>36938.863897</mass> + </mZFM> + </designMasses> + </massBreakdown> + </analyses> + </model> + </aircraft> + <profiles> + <wingAirfoils> + <wingAirfoil uID="Profile_MainWing_1ID"> + <pointList> + <x mapType="vector">1;0.9898;0.9799;0.9699;0.9599;0.9499;0.9399;0.9299;0.9199;0.9098;0.8997;0.8896;0.8795;0.8693;0.8591;0.8489;0.8387;0.8285;0.8182;0.808;0.7978;0.7875;0.7772;0.767;0.7567;0.7465;0.7362;0.7259;0.7156;0.7054;0.6951;0.6848;0.6745;0.6642;0.6539;0.6436;0.6333;0.623;0.6127;0.6024;0.5921;0.5817;0.5714;0.5611;0.5508;0.5405;0.5301;0.5198;0.5095;0.4991;0.4888;0.4785;0.4681;0.4578;0.4475;0.4371;0.4268;0.4164;0.4061;0.3957;0.3854;0.3751;0.3647;0.3544;0.344;0.3337;0.3233;0.313;0.3026;0.2923;0.282;0.2716;0.2613;0.2509;0.2406;0.2303;0.2199;0.2096;0.1993;0.189;0.1786;0.1683;0.158;0.1477;0.1375;0.1272;0.117;0.1067;0.0965;0.0864;0.0763;0.0662;0.0563;0.0465;0.0369;0.0277;0.019;0.0113;0.0051;0.0013;0;0;0.0015;0.0062;0.013;0.021;0.0297;0.0389;0.0484;0.058;0.0679;0.0778;0.0878;0.0979;0.108;0.1182;0.1284;0.1386;0.1488;0.1591;0.1694;0.1797;0.19;0.2003;0.2106;0.2209;0.2312;0.2415;0.2519;0.2622;0.2725;0.2829;0.2932;0.3036;0.3139;0.3242;0.3346;0.3449;0.3553;0.3656;0.376;0.3863;0.3966;0.407;0.4173;0.4276;0.438;0.4483;0.4586;0.4689;0.4793;0.4896;0.4999;0.5102;0.5205;0.5307;0.541;0.5512;0.5614;0.5716;0.5818;0.592;0.6021;0.6123;0.6224;0.6326;0.6427;0.6528;0.6629;0.673;0.6831;0.6932;0.7032;0.7133;0.7234;0.7334;0.7435;0.7536;0.7638;0.7739;0.7841;0.7943;0.8045;0.8147;0.825;0.8352;0.8455;0.8557;0.866;0.8763;0.8866;0.8969;0.9072;0.9175;0.9278;0.9382;0.9485;0.9588;0.9692;0.9795;0.9899;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.0021;0.005;0.0078;0.0105;0.0132;0.0159;0.0186;0.0211;0.0236;0.026;0.0283;0.0304;0.0325;0.0344;0.0362;0.038;0.0397;0.0412;0.0428;0.0442;0.0456;0.047;0.0484;0.0497;0.051;0.0523;0.0536;0.0548;0.056;0.0572;0.0583;0.0594;0.0605;0.0615;0.0625;0.0635;0.0644;0.0653;0.0661;0.067;0.0678;0.0685;0.0692;0.0699;0.0706;0.0712;0.0719;0.0724;0.073;0.0735;0.074;0.0745;0.0749;0.0754;0.0757;0.0761;0.0764;0.0767;0.077;0.0772;0.0774;0.0776;0.0777;0.0778;0.0778;0.0778;0.0778;0.0777;0.0776;0.0775;0.0773;0.077;0.0767;0.0764;0.076;0.0756;0.0751;0.0745;0.0738;0.0731;0.0723;0.0714;0.0704;0.0693;0.0681;0.0668;0.0653;0.0638;0.062;0.06;0.0578;0.0554;0.0525;0.0492;0.0453;0.0406;0.0349;0.0281;0.0198;0.0102;0;0;-0.0102;-0.0194;-0.0272;-0.0337;-0.0393;-0.0441;-0.0482;-0.0518;-0.0551;-0.058;-0.0606;-0.0629;-0.0651;-0.067;-0.0687;-0.0703;-0.0718;-0.0731;-0.0742;-0.0753;-0.0762;-0.0771;-0.078;-0.0788;-0.0795;-0.0801;-0.0807;-0.0812;-0.0816;-0.0819;-0.0822;-0.0824;-0.0826;-0.0827;-0.0828;-0.0827;-0.0826;-0.0824;-0.0822;-0.0819;-0.0815;-0.0812;-0.0807;-0.0802;-0.0796;-0.079;-0.0784;-0.0777;-0.077;-0.0762;-0.0753;-0.0742;-0.0731;-0.0718;-0.0704;-0.0689;-0.0672;-0.0655;-0.0637;-0.0619;-0.0599;-0.0579;-0.0559;-0.0538;-0.0517;-0.0495;-0.0473;-0.045;-0.0427;-0.0404;-0.038;-0.0356;-0.0332;-0.0309;-0.0286;-0.0264;-0.0243;-0.0224;-0.0205;-0.0187;-0.0171;-0.0155;-0.014;-0.0125;-0.0111;-0.0099;-0.0087;-0.0075;-0.0065;-0.0056;-0.0047;-0.004;-0.0034;-0.0029;-0.0024;-0.0021;-0.0018;-0.0017;-0.0018;-0.0021</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_MainWing_2ID"> + <pointList> + <x mapType="vector">1;0.9898;0.9798;0.9698;0.9598;0.9498;0.9397;0.9297;0.9196;0.9096;0.8995;0.8893;0.8792;0.869;0.8589;0.8487;0.8385;0.8283;0.8181;0.8079;0.7977;0.7874;0.7772;0.767;0.7568;0.7465;0.7363;0.7261;0.7158;0.7056;0.6953;0.6851;0.6748;0.6646;0.6543;0.644;0.6338;0.6235;0.6132;0.603;0.5927;0.5824;0.5721;0.5619;0.5516;0.5413;0.531;0.5207;0.5104;0.5002;0.4899;0.4796;0.4693;0.459;0.4487;0.4384;0.4281;0.4178;0.4075;0.3972;0.3869;0.3766;0.3663;0.356;0.3457;0.3354;0.3251;0.3148;0.3045;0.2942;0.2839;0.2736;0.2633;0.253;0.2427;0.2324;0.2221;0.2118;0.2015;0.1913;0.181;0.1707;0.1605;0.1502;0.14;0.1297;0.1195;0.1093;0.0991;0.089;0.0789;0.0688;0.0589;0.049;0.0393;0.0299;0.0209;0.0127;0.0059;0.0013;0;0;0.0015;0.0064;0.0133;0.0215;0.0304;0.0397;0.0492;0.059;0.0688;0.0788;0.0888;0.0989;0.1091;0.1192;0.1294;0.1396;0.1499;0.1601;0.1704;0.1807;0.191;0.2013;0.2116;0.2219;0.2322;0.2425;0.2528;0.2631;0.2734;0.2837;0.294;0.3043;0.3147;0.325;0.3353;0.3456;0.3559;0.3663;0.3766;0.3869;0.3972;0.4075;0.4178;0.4281;0.4384;0.4487;0.459;0.4693;0.4796;0.4899;0.5002;0.5105;0.5207;0.531;0.5413;0.5515;0.5617;0.5719;0.5821;0.5923;0.6025;0.6126;0.6228;0.6329;0.643;0.6532;0.6633;0.6734;0.6835;0.6936;0.7037;0.7138;0.7238;0.7339;0.744;0.7541;0.7642;0.7744;0.7845;0.7947;0.8049;0.8151;0.8253;0.8356;0.8458;0.856;0.8663;0.8766;0.8868;0.8971;0.9074;0.9177;0.928;0.9383;0.9486;0.9589;0.9692;0.9795;0.9899;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.0019;0.0044;0.0068;0.0093;0.0117;0.0141;0.0164;0.0187;0.0209;0.023;0.025;0.027;0.0288;0.0305;0.0322;0.0338;0.0353;0.0367;0.0381;0.0394;0.0407;0.042;0.0433;0.0445;0.0457;0.0469;0.0481;0.0492;0.0504;0.0515;0.0525;0.0536;0.0546;0.0556;0.0565;0.0574;0.0583;0.0591;0.0599;0.0607;0.0615;0.0622;0.0629;0.0636;0.0642;0.0649;0.0655;0.066;0.0666;0.0671;0.0676;0.0681;0.0685;0.069;0.0693;0.0697;0.0701;0.0704;0.0706;0.0709;0.0711;0.0713;0.0714;0.0716;0.0716;0.0717;0.0717;0.0716;0.0716;0.0715;0.0713;0.0711;0.0709;0.0706;0.0703;0.0699;0.0694;0.0689;0.0683;0.0677;0.067;0.0661;0.0652;0.0643;0.0631;0.0619;0.0606;0.0592;0.0576;0.0558;0.0538;0.0516;0.049;0.046;0.0425;0.0384;0.0333;0.0271;0.0194;0.0102;0;0;-0.0102;-0.0192;-0.0268;-0.0331;-0.0384;-0.0429;-0.0467;-0.0501;-0.0531;-0.0558;-0.0582;-0.0603;-0.0623;-0.064;-0.0656;-0.0671;-0.0684;-0.0695;-0.0706;-0.0715;-0.0724;-0.0731;-0.0738;-0.0745;-0.075;-0.0756;-0.0761;-0.0764;-0.0768;-0.077;-0.0772;-0.0774;-0.0774;-0.0775;-0.0775;-0.0774;-0.0773;-0.0772;-0.0769;-0.0766;-0.0762;-0.0758;-0.0753;-0.0748;-0.0743;-0.0737;-0.0731;-0.0724;-0.0717;-0.0709;-0.0701;-0.0692;-0.0682;-0.0671;-0.0659;-0.0646;-0.0632;-0.0617;-0.0601;-0.0584;-0.0566;-0.0548;-0.053;-0.0511;-0.0491;-0.0471;-0.0451;-0.043;-0.0409;-0.0388;-0.0366;-0.0344;-0.0322;-0.03;-0.0279;-0.0258;-0.0238;-0.0219;-0.0201;-0.0184;-0.0168;-0.0152;-0.0138;-0.0124;-0.0111;-0.0098;-0.0087;-0.0076;-0.0066;-0.0057;-0.0049;-0.0042;-0.0035;-0.003;-0.0025;-0.0022;-0.0019;-0.0017;-0.0017;-0.0019</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_MainWing_3ID"> + <pointList> + <x mapType="vector">1;0.9902;0.9803;0.9703;0.9604;0.9504;0.9404;0.9304;0.9204;0.9104;0.9004;0.8903;0.8803;0.8703;0.8602;0.8501;0.8401;0.83;0.8199;0.8098;0.7997;0.7896;0.7795;0.7694;0.7593;0.7492;0.739;0.7289;0.7187;0.7086;0.6984;0.6882;0.6781;0.6679;0.6577;0.6475;0.6373;0.6271;0.6169;0.6067;0.5965;0.5863;0.576;0.5658;0.5556;0.5454;0.5352;0.5249;0.5147;0.5045;0.4943;0.4841;0.4738;0.4636;0.4534;0.4432;0.4329;0.4227;0.4125;0.4023;0.3921;0.3818;0.3716;0.3614;0.3511;0.3409;0.3307;0.3205;0.3103;0.3001;0.2898;0.2796;0.2694;0.2592;0.249;0.2388;0.2286;0.2184;0.2082;0.198;0.1879;0.1777;0.1675;0.1573;0.1472;0.137;0.1269;0.1168;0.1067;0.0966;0.0865;0.0764;0.0664;0.0565;0.0466;0.0368;0.0273;0.0183;0.0102;0.0034;0;0;0.0041;0.0122;0.0215;0.0311;0.0409;0.0508;0.0608;0.0708;0.0808;0.0908;0.1008;0.1109;0.1209;0.131;0.1411;0.1512;0.1613;0.1714;0.1815;0.1916;0.2017;0.2118;0.2219;0.2321;0.2422;0.2523;0.2625;0.2726;0.2828;0.2929;0.3031;0.3132;0.3234;0.3335;0.3437;0.3538;0.364;0.3741;0.3843;0.3944;0.4046;0.4147;0.4248;0.435;0.4451;0.4552;0.4654;0.4755;0.4856;0.4957;0.5058;0.5159;0.526;0.5361;0.5462;0.5563;0.5664;0.5764;0.5865;0.5966;0.6066;0.6167;0.6267;0.6368;0.6468;0.6568;0.6669;0.6769;0.6869;0.6969;0.707;0.717;0.727;0.737;0.7471;0.7571;0.7671;0.7772;0.7872;0.7973;0.8074;0.8175;0.8276;0.8377;0.8478;0.858;0.8681;0.8783;0.8884;0.8986;0.9087;0.9189;0.929;0.9391;0.9493;0.9594;0.9696;0.9797;0.9898;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.0024;0.0049;0.0074;0.0098;0.0121;0.0144;0.0166;0.0188;0.0209;0.023;0.025;0.027;0.0289;0.0308;0.0327;0.0345;0.0363;0.0381;0.0398;0.0414;0.0431;0.0447;0.0462;0.0477;0.0491;0.0505;0.0519;0.0532;0.0544;0.0556;0.0567;0.0578;0.0588;0.0597;0.0606;0.0614;0.0622;0.0629;0.0635;0.0641;0.0647;0.0652;0.0656;0.0661;0.0664;0.0668;0.0671;0.0674;0.0676;0.0678;0.0679;0.0681;0.0682;0.0682;0.0682;0.0682;0.0682;0.0681;0.068;0.0679;0.0677;0.0675;0.0673;0.0671;0.0668;0.0664;0.0661;0.0657;0.0652;0.0648;0.0643;0.0637;0.0631;0.0625;0.0618;0.0611;0.0604;0.0596;0.0588;0.0579;0.057;0.056;0.0549;0.0538;0.0526;0.0514;0.0501;0.0486;0.0471;0.0455;0.0437;0.0418;0.0398;0.0375;0.0349;0.0318;0.0282;0.0233;0.0171;0.0095;0;0;-0.009;-0.015;-0.0192;-0.0224;-0.025;-0.0272;-0.0292;-0.0311;-0.0328;-0.0343;-0.0358;-0.0372;-0.0386;-0.0399;-0.0411;-0.0422;-0.0433;-0.0443;-0.0453;-0.0462;-0.047;-0.0478;-0.0485;-0.0492;-0.0498;-0.0503;-0.0508;-0.0512;-0.0515;-0.0518;-0.052;-0.0521;-0.0522;-0.0522;-0.0521;-0.052;-0.0518;-0.0516;-0.0513;-0.051;-0.0506;-0.0502;-0.0496;-0.0491;-0.0485;-0.0478;-0.0471;-0.0463;-0.0455;-0.0446;-0.0436;-0.0427;-0.0416;-0.0406;-0.0394;-0.0383;-0.037;-0.0358;-0.0345;-0.0332;-0.0318;-0.0304;-0.029;-0.0275;-0.026;-0.0245;-0.0229;-0.0214;-0.0198;-0.0182;-0.0166;-0.015;-0.0133;-0.0117;-0.0101;-0.0086;-0.007;-0.0056;-0.0042;-0.0029;-0.0018;-0.0007;0.0002;0.0009;0.0015;0.0019;0.0022;0.0024;0.0024;0.0023;0.0022;0.002;0.0017;0.0013;0.0009;0.0004;-0.0002;-0.0009;-0.0016;-0.0024</z> + </pointList> + </wingAirfoil> + </wingAirfoils> + </profiles> + <engines> + <engine uID="engine"> + <analysis> + <mass> + <mass>1750.55</mass> + </mass> + </analysis> + </engine> + </engines> + <materials> + <material uID="aluminium2024"> + <rho>2.8e3</rho> + <k11>80.9561216474e9</k11> + <sig11>0.3268e9</sig11> + </material> + </materials> + </vehicles> +</cpacs> diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/KB_AGILE_DC1/AGILE_DC1_L0_MDA[extended]-base.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/KB_AGILE_DC1/AGILE_DC1_L0_MDA[extended]-base.xml new file mode 100644 index 0000000000000000000000000000000000000000..ffa121a3e1e82fe3c022e7759afce9440e152c53 --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/KB_AGILE_DC1/AGILE_DC1_L0_MDA[extended]-base.xml @@ -0,0 +1,5377 @@ +<?xml version="1.0" encoding="UTF-8"?> +<cpacs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="cpacs_schema.xsd"> + <header> + <name>AGILE_DC-1_Reference_L0_MDA</name> + <version>1.0</version> + <cpacsVersion>2.3</cpacsVersion> + <creator>AGILE WP2 L0</creator> + <description>AGILE D2.5 - Reference Aircraft Design Challenge L0</description> + <timestamp>2016-03-20T20:51:00</timestamp> + <updates> + <update> + <timestamp>2016-03-20T20:51:00</timestamp> + <version>1</version> + <cpacsVersion> 2 </cpacsVersion> + <modification>Initial Synthesis</modification> + <creator>TUD</creator> + </update> + </updates> + </header> + <vehicles> + <aircraft> + <model uID="agile_v13_modelID"> + <name>Agile-DC1-v13</name> + <description>Agile DC1 v13: 2:2 abreast 9180kg, right fuselage dims, medium BPR engine (6), max payload+range mission, LFL 1400 and TOFL 1500m, increased CLmax values</description> + <reference> + <point> + <x>15.6949</x> + <y>0.0</y> + <z>0.0</z> + </point> + <length>3.7317</length> + <area>82.7</area> + </reference> + <fuselages> + <fuselage uID="Fuselage_fuselageID"> + <name>Fuselage</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <sections> + <section uID="Fuselage_fuselageSection1ID"> + <name>FuselageSection1</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection1Element1ID"> + <name>FuselageSection1</name> + <profileUID>Profile_Fuselage_1ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection2ID"> + <name>FuselageSection2</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection2Element1ID"> + <name>FuselageSection2</name> + <profileUID>Profile_Fuselage_2ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection3ID"> + <name>FuselageSection3</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection3Element1ID"> + <name>FuselageSection3</name> + <profileUID>Profile_Fuselage_3ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection4ID"> + <name>FuselageSection4</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection4Element1ID"> + <name>FuselageSection4</name> + <profileUID>Profile_Fuselage_4ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection5ID"> + <name>FuselageSection5</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection5Element1ID"> + <name>FuselageSection5</name> + <profileUID>Profile_Fuselage_5ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection6ID"> + <name>FuselageSection6</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection6Element1ID"> + <name>FuselageSection6</name> + <profileUID>Profile_Fuselage_6ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection7ID"> + <name>FuselageSection7</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection7Element1ID"> + <name>FuselageSection7</name> + <profileUID>Profile_Fuselage_7ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection8ID"> + <name>FuselageSection8</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection8Element1ID"> + <name>FuselageSection8</name> + <profileUID>Profile_Fuselage_8ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection9ID"> + <name>FuselageSection9</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection9Element1ID"> + <name>FuselageSection9</name> + <profileUID>Profile_Fuselage_9ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection10ID"> + <name>FuselageSection10</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection10Element1ID"> + <name>FuselageSection10</name> + <profileUID>Profile_Fuselage_10ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection11ID"> + <name>FuselageSection11</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection11Element1ID"> + <name>FuselageSection11</name> + <profileUID>Profile_Fuselage_11ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection12ID"> + <name>FuselageSection12</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection12Element1ID"> + <name>FuselageSection12</name> + <profileUID>Profile_Fuselage_12ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection13ID"> + <name>FuselageSection13</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection13Element1ID"> + <name>FuselageSection13</name> + <profileUID>Profile_Fuselage_13ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection14ID"> + <name>FuselageSection14</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection14Element1ID"> + <name>FuselageSection14</name> + <profileUID>Profile_Fuselage_14ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection15ID"> + <name>FuselageSection15</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection15Element1ID"> + <name>FuselageSection15</name> + <profileUID>Profile_Fuselage_15ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection16ID"> + <name>FuselageSection16</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection16Element1ID"> + <name>FuselageSection16</name> + <profileUID>Profile_Fuselage_16ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection17ID"> + <name>FuselageSection17</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection17Element1ID"> + <name>FuselageSection17</name> + <profileUID>Profile_Fuselage_17ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection18ID"> + <name>FuselageSection18</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection18Element1ID"> + <name>FuselageSection18</name> + <profileUID>Profile_Fuselage_18ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection19ID"> + <name>FuselageSection19</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection19Element1ID"> + <name>FuselageSection19</name> + <profileUID>Profile_Fuselage_19ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection20ID"> + <name>FuselageSection20</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection20Element1ID"> + <name>FuselageSection20</name> + <profileUID>Profile_Fuselage_20ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection21ID"> + <name>FuselageSection21</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection21Element1ID"> + <name>FuselageSection21</name> + <profileUID>Profile_Fuselage_21ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection22ID"> + <name>FuselageSection22</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection22Element1ID"> + <name>FuselageSection22</name> + <profileUID>Profile_Fuselage_22ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection23ID"> + <name>FuselageSection23</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection23Element1ID"> + <name>FuselageSection23</name> + <profileUID>Profile_Fuselage_23ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection24ID"> + <name>FuselageSection24</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection24Element1ID"> + <name>FuselageSection24</name> + <profileUID>Profile_Fuselage_24ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection25ID"> + <name>FuselageSection25</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection25Element1ID"> + <name>FuselageSection25</name> + <profileUID>Profile_Fuselage_25ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection26ID"> + <name>FuselageSection26</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection26Element1ID"> + <name>FuselageSection26</name> + <profileUID>Profile_Fuselage_26ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection27ID"> + <name>FuselageSection27</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection27Element1ID"> + <name>FuselageSection27</name> + <profileUID>Profile_Fuselage_27ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection28ID"> + <name>FuselageSection28</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection28Element1ID"> + <name>FuselageSection28</name> + <profileUID>Profile_Fuselage_28ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection29ID"> + <name>FuselageSection29</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection29Element1ID"> + <name>FuselageSection29</name> + <profileUID>Profile_Fuselage_29ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection30ID"> + <name>FuselageSection30</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection30Element1ID"> + <name>FuselageSection30</name> + <profileUID>Profile_Fuselage_30ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="Fuselage_fuselagePositioning1ID"> + <name>FuselagePositioning1</name> + <length>0.021104</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>Fuselage_fuselageSection1ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning2ID"> + <name>FuselagePositioning2</name> + <length>0.0849068</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection2ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning3ID"> + <name>FuselagePositioning3</name> + <length>0.274377</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection3ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning4ID"> + <name>FuselagePositioning4</name> + <length>0.583757</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection4ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning5ID"> + <name>FuselagePositioning5</name> + <length>1.00365</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection5ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning6ID"> + <name>FuselagePositioning6</name> + <length>1.52129</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection6ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning7ID"> + <name>FuselagePositioning7</name> + <length>2.12095</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection7ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning8ID"> + <name>FuselagePositioning8</name> + <length>2.78442</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection8ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning9ID"> + <name>FuselagePositioning9</name> + <length>3.49153</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection9ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning10ID"> + <name>FuselagePositioning10</name> + <length>4.2208</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection10ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning11ID"> + <name>FuselagePositioning11</name> + <length>4.6862</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection11ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning12ID"> + <name>FuselagePositioning12</name> + <length>6.04468</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection12ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning13ID"> + <name>FuselagePositioning13</name> + <length>8.1862</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection13ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning14ID"> + <name>FuselagePositioning14</name> + <length>10.9373</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection14ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning15ID"> + <name>FuselagePositioning15</name> + <length>14.075</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection15ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning16ID"> + <name>FuselagePositioning16</name> + <length>17.3452</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection16ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning17ID"> + <name>FuselagePositioning17</name> + <length>20.4829</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection17ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning18ID"> + <name>FuselagePositioning18</name> + <length>23.234</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection18ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning19ID"> + <name>FuselagePositioning19</name> + <length>25.3755</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection19ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning20ID"> + <name>FuselagePositioning20</name> + <length>26.734</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection20ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning21ID"> + <name>FuselagePositioning21</name> + <length>27.1994</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection21ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning22ID"> + <name>FuselagePositioning22</name> + <length>28.3683</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection22ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning23ID"> + <name>FuselagePositioning23</name> + <length>29.5018</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection23ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning24ID"> + <name>FuselagePositioning24</name> + <length>30.5653</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection24ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning25ID"> + <name>FuselagePositioning25</name> + <length>31.5265</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection25ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning26ID"> + <name>FuselagePositioning26</name> + <length>32.3562</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection26ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning27ID"> + <name>FuselagePositioning27</name> + <length>33.0293</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection27ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning28ID"> + <name>FuselagePositioning28</name> + <length>33.5252</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection28ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning29ID"> + <name>FuselagePositioning29</name> + <length>33.8289</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection29ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning30ID"> + <name>FuselagePositioning30</name> + <length>33.9312</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection30ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="Fuselage_fuselageSegment1ID"> + <name>FuselageSegment1</name> + <fromElementUID>Fuselage_fuselageSection1Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection2Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment2ID"> + <name>FuselageSegment2</name> + <fromElementUID>Fuselage_fuselageSection2Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection3Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment3ID"> + <name>FuselageSegment3</name> + <fromElementUID>Fuselage_fuselageSection3Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection4Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment4ID"> + <name>FuselageSegment4</name> + <fromElementUID>Fuselage_fuselageSection4Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection5Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment5ID"> + <name>FuselageSegment5</name> + <fromElementUID>Fuselage_fuselageSection5Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection6Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment6ID"> + <name>FuselageSegment6</name> + <fromElementUID>Fuselage_fuselageSection6Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection7Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment7ID"> + <name>FuselageSegment7</name> + <fromElementUID>Fuselage_fuselageSection7Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection8Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment8ID"> + <name>FuselageSegment8</name> + <fromElementUID>Fuselage_fuselageSection8Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection9Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment9ID"> + <name>FuselageSegment9</name> + <fromElementUID>Fuselage_fuselageSection9Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection10Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment10ID"> + <name>FuselageSegment10</name> + <fromElementUID>Fuselage_fuselageSection10Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection11Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment11ID"> + <name>FuselageSegment11</name> + <fromElementUID>Fuselage_fuselageSection11Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection12Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment12ID"> + <name>FuselageSegment12</name> + <fromElementUID>Fuselage_fuselageSection12Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection13Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment13ID"> + <name>FuselageSegment13</name> + <fromElementUID>Fuselage_fuselageSection13Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection14Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment14ID"> + <name>FuselageSegment14</name> + <fromElementUID>Fuselage_fuselageSection14Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection15Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment15ID"> + <name>FuselageSegment15</name> + <fromElementUID>Fuselage_fuselageSection15Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection16Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment16ID"> + <name>FuselageSegment16</name> + <fromElementUID>Fuselage_fuselageSection16Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection17Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment17ID"> + <name>FuselageSegment17</name> + <fromElementUID>Fuselage_fuselageSection17Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection18Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment18ID"> + <name>FuselageSegment18</name> + <fromElementUID>Fuselage_fuselageSection18Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection19Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment19ID"> + <name>FuselageSegment19</name> + <fromElementUID>Fuselage_fuselageSection19Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection20Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment20ID"> + <name>FuselageSegment20</name> + <fromElementUID>Fuselage_fuselageSection20Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection21Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment21ID"> + <name>FuselageSegment21</name> + <fromElementUID>Fuselage_fuselageSection21Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection22Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment22ID"> + <name>FuselageSegment22</name> + <fromElementUID>Fuselage_fuselageSection22Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection23Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment23ID"> + <name>FuselageSegment23</name> + <fromElementUID>Fuselage_fuselageSection23Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection24Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment24ID"> + <name>FuselageSegment24</name> + <fromElementUID>Fuselage_fuselageSection24Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection25Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment25ID"> + <name>FuselageSegment25</name> + <fromElementUID>Fuselage_fuselageSection25Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection26Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment26ID"> + <name>FuselageSegment26</name> + <fromElementUID>Fuselage_fuselageSection26Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection27Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment27ID"> + <name>FuselageSegment27</name> + <fromElementUID>Fuselage_fuselageSection27Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection28Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment28ID"> + <name>FuselageSegment28</name> + <fromElementUID>Fuselage_fuselageSection28Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection29Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment29ID"> + <name>FuselageSegment29</name> + <fromElementUID>Fuselage_fuselageSection29Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection30Element1ID</toElementUID> + </segment> + </segments> + </fuselage> + </fuselages> + <wings> + <wing symmetry="x-z-plane" uID="MainWing_wingID"> + <name>MainWing</name> + <parentUID>Fuselage_fuselageID</parentUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>2</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>12.2479</x> + <y>0</y> + <z>-0.90003</z> + </translation> + </transformation> + <sections> + <section uID="MainWing_wingSection1ID"> + <name>MainWingSection1</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="MainWing_wingSection1Element1ID"> + <name>MainWingSection1</name> + <airfoilUID>Profile_MainWing_1ID</airfoilUID> + <transformation> + <scaling> + <x>6.3923</x> + <y>6.3923</y> + <z>6.3923</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="MainWing_wingSection2ID"> + <name>MainWingSection2</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="MainWing_wingSection2Element1ID"> + <name>MainWingSection2</name> + <airfoilUID>Profile_MainWing_2ID</airfoilUID> + <transformation> + <scaling> + <x>2.71737</x> + <y>2.71737</y> + <z>2.71737</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="MainWing_wingSection3ID"> + <name>MainWingSection3</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="MainWing_wingSection3Element1ID"> + <name>MainWingSection3</name> + <airfoilUID>Profile_MainWing_3ID</airfoilUID> + <transformation> + <scaling> + <x>1.05165</x> + <y>1.05165</y> + <z>1.05165</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="MainWing_wingPositioning1ID"> + <name>MainWingPositioning1</name> + <length>0</length> + <sweepAngle>0</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>MainWing_wingSection1ID</toSectionUID> + </positioning> + <positioning uID="MainWing_wingPositioning2ID"> + <name>MainWingPositioning2</name> + <length>6.73236</length> + <sweepAngle>33.2273</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>MainWing_wingSection1ID</fromSectionUID> + <toSectionUID>MainWing_wingSection2ID</toSectionUID> + </positioning> + <positioning uID="MainWing_wingPositioning3ID"> + <name>MainWingPositioning3</name> + <length>9.60746</length> + <sweepAngle>28.4037</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>MainWing_wingSection2ID</fromSectionUID> + <toSectionUID>MainWing_wingSection3ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="MainWing_wingSegment1ID"> + <name>MainWingSegment1</name> + <fromElementUID>MainWing_wingSection1Element1ID</fromElementUID> + <toElementUID>MainWing_wingSection2Element1ID</toElementUID> + </segment> + <segment uID="MainWing_wingSegment2ID"> + <name>MainWingSegment2</name> + <fromElementUID>MainWing_wingSection2Element1ID</fromElementUID> + <toElementUID>MainWing_wingSection3Element1ID</toElementUID> + </segment> + </segments> + <componentSegments> + <componentSegment uID="wing_Cseg"> + <name>wing_CSeg</name> + <description>wing_CSeg</description> + <fromElementUID isLink="True">MainWing_wingSection1Element1ID</fromElementUID> + <toElementUID isLink="True">MainWing_wingSection3Element1ID</toElementUID> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="wing_ribs_inner"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>frontSpar</ribReference> + <etaStart>0.0</etaStart> + <etaEnd>0.106761565836</etaEnd> + <ribStart>frontSpar</ribStart> + <ribEnd>rearSpar</ribEnd> + <numberOfRibs>4</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_engine1"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>frontSpar</ribReference> + <etaStart>0.163701067616</etaStart> + <etaEnd>0.286476868327</etaEnd> + <ribStart>frontSpar</ribStart> + <ribEnd>rearSpar</ribEnd> + <numberOfRibs>3</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_engine2"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>frontSpar</ribReference> + <etaStart>0.163701067616</etaStart> + <etaEnd>0.313523131673</etaEnd> + <ribStart>frontSpar</ribStart> + <ribEnd>rearSpar</ribEnd> + <numberOfRibs>1</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_outer"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>frontSpar</ribReference> + <etaStart>0.370462633452</etaStart> + <etaEnd>0.95</etaEnd> + <ribStart>frontSpar</ribStart> + <ribEnd>rearSpar</ribEnd> + <numberOfRibs>11</numberOfRibs> + <ribCrossingBehaviour>end</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>frontSpar</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="frontSpar_P0"> + <eta>0.0</eta> + <xsi>0.1</xsi> + </sparPosition> + <sparPosition uID="frontSpar_P1"> + <eta>0.106761565836</eta> + <xsi>0.1</xsi> + </sparPosition> + <sparPosition uID="frontSpar_P2"> + <eta>1.0</eta> + <xsi>0.460829493088</xsi> + </sparPosition> + <sparPosition uID="rearSpar_P0"> + <eta>0.0</eta> + <xsi>0.56</xsi> + </sparPosition> + <sparPosition uID="rearSpar_P1"> + <eta>0.106761565836</eta> + <xsi>0.56</xsi> + </sparPosition> + <sparPosition uID="rearSpar_P2"> + <eta>0.350213340505</eta> + <xsi>0.6</xsi> + </sparPosition> + <sparPosition uID="rearSpar_P3"> + <eta>1.0</eta> + <xsi>0.59</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="frontSpar"> + <name>frontSpar</name> + <description>frontSpar</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">frontSpar_P0</sparPositionUID> + <sparPositionUID isLink="True">frontSpar_P1</sparPositionUID> + <sparPositionUID isLink="True">frontSpar_P2</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="rearSpar"> + <name>rearSpar</name> + <description>rearSpar</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">rearSpar_P0</sparPositionUID> + <sparPositionUID isLink="True">rearSpar_P1</sparPositionUID> + <sparPositionUID isLink="True">rearSpar_P2</sparPositionUID> + <sparPositionUID isLink="True">rearSpar_P3</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <controlSurfaces> + <leadingEdgeDevices> + <leadingEdgeDevice uID="InnerSlat1UID"> + <name>InnerSlat1</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.12</etaLE> + <xsiTEUpper>0.0551328511278</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.33</etaLE> + <xsiTEUpper>0.0617900779981</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + <leadingEdgeDevice uID="OuterSlat1UID"> + <name>OuterSlat1</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.4</etaLE> + <xsiTEUpper>0.0765222350228</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.56</etaLE> + <xsiTEUpper>0.088656031377</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + <leadingEdgeDevice uID="OuterSlat2UID"> + <name>OuterSlat2</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.57</etaLE> + <xsiTEUpper>0.088656031377</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.73</etaLE> + <xsiTEUpper>0.102475793192</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + <leadingEdgeDevice uID="OuterSlat3UID"> + <name>OuterSlat3</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.74</etaLE> + <xsiTEUpper>0.102475793192</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.95</etaLE> + <xsiTEUpper>0.121399652732</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + </leadingEdgeDevices> + <trailingEdgeDevices> + <trailingEdgeDevice uID="aileronUID"> + <name>aileron</name> + <description>aileron from VAMPzero</description> + <parentUID isLink="True">wing_Cseg</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.79</etaLE> + <etaTE>0.79</etaTE> + <xsiLE>0.69323182997</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.96</etaLE> + <etaTE>0.96</etaTE> + <xsiLE>0.690615586661</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="aileronUID_ribs"> + <name>aileron_ribs</name> + <ribsPositioning> + <ribReference>aileronUID_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <spacing>0.25</spacing> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="aileronUID_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="aileronUID_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="aileronUID_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.7</xsi> + </sparPosition> + <sparPosition uID="aileronUID_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.7</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="aileronUID_Spar_FS"> + <name>aileronUID_Spar_FS</name> + <description>aileronUID_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">aileronUID_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">aileronUID_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="aileronUID_Spar_RS"> + <name>aileronUID_Spar_RS</name> + <description>aileronUID_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">aileronUID_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">aileronUID_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <path> + <innerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + <tracks> + <track uID="controlSurfaceID_track_1"> + <eta>0.25</eta> + <trackType>trackType1</trackType> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + </trackStructure> + </track> + <track uID="controlSurfaceID_track_2"> + <eta>0.75</eta> + <trackType>trackType1</trackType> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + </trackStructure> + </track> + </tracks> + <actuators> + <actuator uID="aileron_actuator1"> + <actuatorUID isLink="True">Aileron_Act1</actuatorUID> + <attachment> + <etaControlSurface>0.3</etaControlSurface> + <parentAttachment> + <parentXsi>0.612446956977</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </parentAttachment> + <controlSurfaceAttachment> + <parentXsi>0.712446956977</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </controlSurfaceAttachment> + </attachment> + </actuator> + <actuator uID="aileron_actuator2"> + <actuatorUID isLink="True">Aileron_Act2</actuatorUID> + <attachment> + <etaControlSurface>0.7</etaControlSurface> + <parentAttachment> + <parentXsi>0.611400459653</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </parentAttachment> + <controlSurfaceAttachment> + <parentXsi>0.711400459653</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </controlSurfaceAttachment> + </attachment> + </actuator> + </actuators> + </trailingEdgeDevice> + <trailingEdgeDevice uID="innerFlapUID"> + <name>innerFlap</name> + <description>innerFlap from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.12</etaLE> + <etaTE>0.12</etaTE> + <xsiLE>0.75</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.4</etaLE> + <etaTE>0.4</etaTE> + <xsiLE>0.68</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="innerFlapUID_ribs"> + <name>flap_ribs</name> + <ribsPositioning> + <ribReference>innerFlapUID_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>20</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="innerFlapUID_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="innerFlapUID_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="innerFlapUID_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.7</xsi> + </sparPosition> + <sparPosition uID="innerFlapUID_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.7</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="innerFlapUID_Spar_FS"> + <name>innerFlapUID_Spar_FS</name> + <description>innerFlapUID_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">innerFlapUID_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">innerFlapUID_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="innerFlapUID_Spar_RS"> + <name>innerFlapUID_Spar_RS</name> + <description>innerFlapUID_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">innerFlapUID_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">innerFlapUID_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <path> + <innerHingePoint> + <hingeXsi>0.789562336672</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.68</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>10</relDeflection> + <innerHingeTranslation> + <x>0.254449784009</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.254449784009</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>10.0</hingeLineRotation> + </step> + <step> + <relDeflection>40</relDeflection> + <innerHingeTranslation> + <x>0.508899568018</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.508899568018</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>40.0</hingeLineRotation> + </step> + </steps> + </path> + <tracks> + <track uID="innerFlapUID_track_1"> + <eta>0.0</eta> + <trackType>trackType3</trackType> + <trackSubType>trackSubType2</trackSubType> + <actuator uID="innerFlapUID_track_1_actuatorUID"> + <actuatorUID isLink="true">Act_FT1</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + <track uID="innerFlapUID_track_2"> + <eta>0.66</eta> + <trackType>trackType3</trackType> + <actuator uID="innerFlapUID_track_2_actuatorUID"> + <actuatorUID isLink="true">Act_FT2</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + </tracks> + </trailingEdgeDevice> + <trailingEdgeDevice uID="outerFlap1UID"> + <name>outerFlap1</name> + <description>innerFlap from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.4</etaLE> + <etaTE>0.4</etaTE> + <xsiLE>0.68</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.75</etaLE> + <etaTE>0.75</etaTE> + <xsiLE>0.68</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="outerFlap1UID_ribs"> + <name>flap_ribs</name> + <ribsPositioning> + <ribReference>outerFlap1UID_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>20</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="outerFlap1UID_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="outerFlap1UID_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="outerFlap1UID_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.7</xsi> + </sparPosition> + <sparPosition uID="outerFlap1UID_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.7</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="outerFlap1UID_Spar_FS"> + <name>outerFlap1UID_Spar_FS</name> + <description>outerFlap1UID_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">outerFlap1UID_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">outerFlap1UID_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="outerFlap1UID_Spar_RS"> + <name>outerFlap1UID_Spar_RS</name> + <description>outerFlap1UID_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">outerFlap1UID_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">outerFlap1UID_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <path> + <innerHingePoint> + <hingeXsi>0.68</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.718480649649</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>10</relDeflection> + <innerHingeTranslation> + <x>0.254449784009</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.1445249844</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>10.0</hingeLineRotation> + </step> + <step> + <relDeflection>40</relDeflection> + <innerHingeTranslation> + <x>0.508899568018</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.2890499688</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>40.0</hingeLineRotation> + </step> + </steps> + </path> + <tracks> + <track uID="outerFlap1UID_track_1"> + <eta>0.275</eta> + <trackType>trackType3</trackType> + <actuator uID="outerFlap1UID_track_1_actuatorUID"> + <actuatorUID isLink="true">Act_FT3</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + <track uID="outerFlap1UID_track_2"> + <eta>0.725</eta> + <trackType>trackType3</trackType> + <actuator uID="outerFlap1UID_track_2_actuatorUID"> + <actuatorUID isLink="true">Act_FT4</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + </tracks> + <cruiseRollers> + <cruiseRoller uID="outerFlap1UID_CR1"> + <position> + <eta>0.02</eta> + <xsi>0.05</xsi> + <relHeight>0.3</relHeight> + </position> + <parentAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </parentAttachment> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <blockedDOF> + <positive>False</positive> + <negative>True</negative> + </blockedDOF> + </cruiseRoller> + </cruiseRollers> + </trailingEdgeDevice> + </trailingEdgeDevices> + </controlSurfaces> + <wingFuselageAttachments> + <wingFuselageAttachment> + <rib1> + <ribDefinitionUID isLink="True">wing_ribs_inner</ribDefinitionUID> + <ribNumber>4</ribNumber> + </rib1> + </wingFuselageAttachment> + </wingFuselageAttachments> + <wingFuelTanks> + <wingFuelTank uID="wing_tank_inner"> + <name>wing_tank_inner</name> + <geometry> + <border> + <sparUID isLink="True">frontSpar</sparUID> + </border> + <border> + <ribDefinitionUID isLink="True">wing_ribs_inner</ribDefinitionUID> + <ribNumber>4</ribNumber> + </border> + <border> + <sparUID isLink="True">rearSpar</sparUID> + </border> + </geometry> + </wingFuelTank> + <wingFuelTank uID="wing_tank_middle"> + <name>wing_tank_middle</name> + <geometry> + <border> + <ribDefinitionUID isLink="True">wing_ribs_inner</ribDefinitionUID> + <ribNumber>4</ribNumber> + </border> + <border> + <sparUID isLink="True">frontSpar</sparUID> + </border> + <border> + <ribDefinitionUID isLink="True">wing_ribs_engine2</ribDefinitionUID> + <ribNumber>1</ribNumber> + </border> + <border> + <sparUID isLink="True">rearSpar</sparUID> + </border> + </geometry> + </wingFuelTank> + <wingFuelTank uID="wing_tank_outer"> + <name>wing_tank_outer</name> + <geometry> + <border> + <ribDefinitionUID isLink="True">wing_ribs_engine2</ribDefinitionUID> + <ribNumber>1</ribNumber> + </border> + <border> + <sparUID isLink="True">frontSpar</sparUID> + </border> + <border> + <ribDefinitionUID isLink="True">wing_ribs_outer</ribDefinitionUID> + <ribNumber>8</ribNumber> + </border> + <border> + <sparUID isLink="True">rearSpar</sparUID> + </border> + </geometry> + </wingFuelTank> + </wingFuelTanks> + </componentSegment> + </componentSegments> + </wing> + <wing symmetry="x-z-plane" uID="HorizontalStabiliser_wingID"> + <name>HorizontalStabiliser</name> + <parentUID>Fuselage_fuselageID</parentUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>29.743</x> + <y>0</y> + <z>0.90002</z> + </translation> + </transformation> + <sections> + <section uID="HorizontalStabiliser_wingSection1ID"> + <name>HorizontalStabiliserSection1</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="HorizontalStabiliser_wingSection1Element1ID"> + <name>HorizontalStabiliserSection1</name> + <airfoilUID>Profile_HorizontalStabiliser_1ID</airfoilUID> + <transformation> + <scaling> + <x>3.2362</x> + <y>3.2362</y> + <z>3.2362</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="HorizontalStabiliser_wingSection2ID"> + <name>HorizontalStabiliserSection2</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="HorizontalStabiliser_wingSection2Element1ID"> + <name>HorizontalStabiliserSection2</name> + <airfoilUID>Profile_HorizontalStabiliser_2ID</airfoilUID> + <transformation> + <scaling> + <x>1.13267</x> + <y>1.13267</y> + <z>1.13267</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="HorizontalStabiliser_wingPositioning1ID"> + <name>HorizontalStabiliserPositioning1</name> + <length>0</length> + <sweepAngle>0</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>HorizontalStabiliser_wingSection1ID</toSectionUID> + </positioning> + <positioning uID="HorizontalStabiliser_wingPositioning2ID"> + <name>HorizontalStabiliserPositioning2</name> + <length>5.30725</length> + <sweepAngle>34.2802</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>HorizontalStabiliser_wingSection1ID</fromSectionUID> + <toSectionUID>HorizontalStabiliser_wingSection2ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="HorizontalStabiliser_wingSegment1ID"> + <name>HorizontalStabiliserSegment1</name> + <fromElementUID>HorizontalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID>HorizontalStabiliser_wingSection2Element1ID</toElementUID> + </segment> + </segments> + <componentSegments> + <componentSegment uID="htp_Cseg"> + <name>htp_CSeg</name> + <description>htp_CSeg</description> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="htp_ribs"> + <name>trapezoid_ribs</name> + <ribsPositioning> + <ribReference>htp_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>5.0</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="htp_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="htp_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="htp_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.55</xsi> + </sparPosition> + <sparPosition uID="htp_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.55</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="htp_Spar_FS"> + <name>htp_Spar_FS</name> + <description>htp_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">htp_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">htp_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="htp_Spar_RS"> + <name>htp_Spar_RS</name> + <description>htp_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">htp_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">htp_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <controlSurfaces> + <trailingEdgeDevices> + <trailingEdgeDevice uID="elevatorUID"> + <name>elevator</name> + <description>elevator from VAMPzero</description> + <parentUID isLink="True">htp</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.325723003695</etaLE> + <xsiLE>0.446576244084</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.966286150185</etaLE> + <xsiLE>0.588077959118</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + </trailingEdgeDevice> + <trailingEdgeDevice uID="stabilizerUID"> + <name>stabilizer</name> + <description>stabilizer exported from VAMPzero</description> + <parentUID isLink="True">htp</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.0</etaLE> + <xsiLE>0.0</xsiLE> + </innerBorder> + <outerBorder> + <etaLE>1.0</etaLE> + <xsiLE>0.0</xsiLE> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.25</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.25</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + </trailingEdgeDevice> + </trailingEdgeDevices> + </controlSurfaces> + <fromElementUID isLink="True">HorizontalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID isLink="True">HorizontalStabiliser_wingSection2Element1ID</toElementUID> + </componentSegment> + </componentSegments> + </wing> + <wing uID="VerticalStabiliser_wingID"> + <name>VerticalStabiliser</name> + <parentUID>Fuselage_fuselageID</parentUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>90</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>29.0546</x> + <y>0</y> + <z>0.90002</z> + </translation> + </transformation> + <sections> + <section uID="VerticalStabiliser_wingSection1ID"> + <name>VerticalStabiliserSection1</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="VerticalStabiliser_wingSection1Element1ID"> + <name>VerticalStabiliserSection1</name> + <airfoilUID>Profile_VerticalStabiliser_1ID</airfoilUID> + <transformation> + <scaling> + <x>4.12099</x> + <y>4.12099</y> + <z>4.12099</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="VerticalStabiliser_wingSection2ID"> + <name>VerticalStabiliserSection2</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="VerticalStabiliser_wingSection2Element1ID"> + <name>VerticalStabiliserSection2</name> + <airfoilUID>Profile_VerticalStabiliser_2ID</airfoilUID> + <transformation> + <scaling> + <x>1.43655</x> + <y>1.43655</y> + <z>1.43655</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="VerticalStabiliser_wingPositioning1ID"> + <name>VerticalStabiliserPositioning1</name> + <length>0</length> + <sweepAngle>0</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>VerticalStabiliser_wingSection1ID</toSectionUID> + </positioning> + <positioning uID="VerticalStabiliser_wingPositioning2ID"> + <name>VerticalStabiliserPositioning2</name> + <length>6.28106</length> + <sweepAngle>43.6333</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>VerticalStabiliser_wingSection1ID</fromSectionUID> + <toSectionUID>VerticalStabiliser_wingSection2ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="VerticalStabiliser_wingSegment1ID"> + <name>VerticalStabiliserSegment1</name> + <fromElementUID>VerticalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID>VerticalStabiliser_wingSection2Element1ID</toElementUID> + </segment> + </segments> + <componentSegments> + + <componentSegment uID="vtp_Cseg"> + <name>vtp_CSeg</name> + <description>vtp_CSeg</description> + <fromElementUID isLink="True">VerticalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID isLink="True">VerticalStabiliser_wingSection2Element1ID</toElementUID> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="vtp_ribs"> + <name>trapezoid_ribs</name> + <ribsPositioning> + <ribReference>vtp_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>5.0</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="vtp_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="vtp_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="vtp_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.55</xsi> + </sparPosition> + <sparPosition uID="vtp_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.55</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="vtp_Spar_FS"> + <name>vtp_Spar_FS</name> + <description>vtp_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">vtp_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">vtp_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="vtp_Spar_RS"> + <name>vtp_Spar_RS</name> + <description>vtp_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">vtp_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">vtp_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <controlSurfaces> + <trailingEdgeDevices> + <trailingEdgeDevice uID="rudderUID"> + <name>rudder</name> + <description>rudder from VAMPzero</description> + <parentUID isLink="True">vtp_Cseg</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.0</etaLE> + <xsiLE>0.355528586144</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>1.0</etaLE> + <xsiLE>0.355528586144</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + </trailingEdgeDevice> + </trailingEdgeDevices> + </controlSurfaces> + </componentSegment> + </componentSegments> + </wing> + </wings> + <engines> + <engine symmetry="x-z-plane" uID="model_engine"> + <engineUID isLink="True">engine</engineUID> + <parentUID isLink="True">enginePylon</parentUID> + <transformation> + <translation refType="absGlobal"> + <x>11.8389319755</x> + <y>4.215</y> + <z>-1.75194260911</z> + </translation> + </transformation> + </engine> + </engines> + <analyses> + <flightDynamics> + <flightCases> + <flightCase> + <name>name</name> + <description>description</description> + <weightAndBalanceUID>weightAndBalanceUID</weightAndBalanceUID> + <standardAltitude>0.0</standardAltitude> + <vCAS>0.0</vCAS> + <configuration>0</configuration> + <gear>0</gear> + <linearModel> + <aLon mapType="vector">aLon</aLon> + <bLon mapType="vector">bLon</bLon> + <cLon mapType="vector">cLon</cLon> + <dLon mapType="vector">dLon</dLon> + <aLat mapType="vector">aLat</aLat> + <bLat mapType="vector">bLat</bLat> + <cLat mapType="vector">cLat</cLat> + <dLat mapType="vector">dLat</dLat> + </linearModel> + <trimResult> + <mach>0.0</mach> + <vTAS>0.0</vTAS> + <alpha>0.0</alpha> + <altitude>0.0</altitude> + </trimResult> + </flightCase> + </flightCases> + <model> + <name>name</name> + <description>description</description> + <xLonNames mapType="vector">xLonNames</xLonNames> + <yLonNames mapType="vector">yLonNames</yLonNames> + <uLonNames mapType="vector">uLonNames</uLonNames> + <xLatNames mapType="vector">xLatNames</xLatNames> + <yLatNames mapType="vector">yLatNames</yLatNames> + <uLatNames mapType="vector">uLatNames</uLatNames> + </model> + </flightDynamics> + <flyingQualities> + <fqCase> + <class>0</class> + <category>category</category> + <longitudinal> + <numQFes mapType="vector">numQFes</numQFes> + <numThe mapType="vector">numThe</numThe> + <numTheFes mapType="vector">numTheFes</numTheFes> + <numAlFes mapType="vector">numAlFes</numAlFes> + <numNzFes mapType="vector">numNzFes</numNzFes> + <denLon mapType="vector">denLon</denLon> + </longitudinal> + <lateral> + <numPhiDas mapType="vector">numPhiDas</numPhiDas> + <numRDas mapType="vector">numRDas</numRDas> + <numBetaDas mapType="vector">numBetaDas</numBetaDas> + <numPhiDasRed mapType="vector">numPhiDasRed</numPhiDasRed> + <numBetaDasRed mapType="vector">numBetaDasRed</numBetaDasRed> + <numRDrp mapType="vector">numRDrp</numRDrp> + <numBetaDrp mapType="vector">numBetaDrp</numBetaDrp> + <numPFas mapType="vector">numPFas</numPFas> + <numRFas mapType="vector">numRFas</numRFas> + <numPhiFas mapType="vector">numPhiFas</numPhiFas> + <numBetaFas mapType="vector">numBetaFas</numBetaFas> + <numPFrp mapType="vector">numPFrp</numPFrp> + <numRFrp mapType="vector">numRFrp</numRFrp> + <numPhiFrp mapType="vector">numPhiFrp</numPhiFrp> + <numBetaFrp mapType="vector">numBetaFrp</numBetaFrp> + <denLat mapType="vector">denLat</denLat> + <denLatRed mapType="vector">denLatRed</denLatRed> + </lateral> + <charParameters> + <staticMargin>staticMargin</staticMargin> + <phugoid> + <phDamping>0.0</phDamping> + <phDoublingTime>0.0</phDoublingTime> + </phugoid> + <shortPeriod> + <nAlpha>0.0</nAlpha> + <spFrequency>0.0</spFrequency> + <spDamping>0.0</spDamping> + <spTauRed>0.0</spTauRed> + <cap>0.0</cap> + </shortPeriod> + <rolosc> + <ratioPoscPav>0.0</ratioPoscPav> + <phasePsiBeta>0.0</phasePsiBeta> + <pasePBeta>0.0</pasePBeta> + <ratioP2P1>0.0</ratioP2P1> + <rollRateOsc>0.0</rollRateOsc> + </rolosc> + <rollSpiral>rollSpiral</rollSpiral> + <eiglat> + <dutchRollFrequency>0.0</dutchRollFrequency> + <dutchRollDamping>0.0</dutchRollDamping> + <rollTimeConstant>0.0</rollTimeConstant> + <spiralDoublingTime>0.0</spiralDoublingTime> + <ratioPhiBeta>0.0</ratioPhiBeta> + <rollFrequency>0.0</rollFrequency> + <rollSpiralDamping>0.0</rollSpiralDamping> + <rollSpiralProduct>0.0</rollSpiralProduct> + <durchroll>0.0</durchroll> + <roll>0.0</roll> + </eiglat> + <treff> + <treff>0.0</treff> + <ttan>0.0</ttan> + </treff> + <rollPerf> + <tPhi>0.0</tPhi> + <phiCrit>0.0</phiCrit> + </rollPerf> + </charParameters> + <ratings> + <phugoid>phugoid</phugoid> + <cStar>cStar</cStar> + <shortPeriod> + <nAlpha>0.0</nAlpha> + <spFrequency>0.0</spFrequency> + <spDamping>0.0</spDamping> + <spTauRed>0.0</spTauRed> + <cap>0.0</cap> + </shortPeriod> + <rolosc> + <ratioPoscPav>0.0</ratioPoscPav> + <phasePsiBeta>0.0</phasePsiBeta> + <pasePBeta>0.0</pasePBeta> + <ratioP2P1>0.0</ratioP2P1> + <rollRateOsc>0.0</rollRateOsc> + </rolosc> + <eiglat> + <dutchRollFrequency>0.0</dutchRollFrequency> + <dutchRollDamping>0.0</dutchRollDamping> + <rollTimeConstant>0.0</rollTimeConstant> + <spiralDoublingTime>0.0</spiralDoublingTime> + <ratioPhiBeta>0.0</ratioPhiBeta> + <rollFrequency>0.0</rollFrequency> + <rollSpiralDamping>0.0</rollSpiralDamping> + <rollSpiralProduct>0.0</rollSpiralProduct> + <durchroll>0.0</durchroll> + <roll>0.0</roll> + </eiglat> + <treff>treff</treff> + <rollPerf>rollPerf</rollPerf> + </ratings> + </fqCase> + </flyingQualities> + <aeroelastics> + <staticMaxDisplacement> + <rotation> 10 </rotation> + <translation> 10 </translation> + </staticMaxDisplacement> + </aeroelastics> + <loadAnalysis> + <loadCases> + <aeroDataSetsForLoads> + <aeroDataSetForLoads uID="Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m_aeroDataSet"> + <flowCondition> + <machNumber>0.78</machNumber> + <reynoldsNumber>18792419.4249</reynoldsNumber> + <angleOfYaw>0.0</angleOfYaw> + <targetLiftCoefficient>1.1096</targetLiftCoefficient> + </flowCondition> + <wings> + <wing> + <wingUID>MainWing_wingID</wingUID> + <coefficients> + <cfz>1.1096</cfz> + <cmy>-1.4781</cmy> + </coefficients> + <segments> + <segment> + <strip> + <cfz>0.7626</cfz> + <cmy>-0.1491</cmy> + <reference> + <length>6.1626</length> + <flightShapePoint> + <x>14.0193</x> + <y>0.3500</y> + <z>-0.9251</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8129</cfz> + <cmy>-0.1447</cmy> + <reference> + <length>5.7033</length> + <flightShapePoint> + <x>14.3680</x> + <y>1.0501</y> + <z>-0.8636</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8675</cfz> + <cmy>-0.1414</cmy> + <reference> + <length>5.2439</length> + <flightShapePoint> + <x>14.7166</x> + <y>1.7502</y> + <z>-0.8022</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.9256</cfz> + <cmy>-0.1389</cmy> + <reference> + <length>4.7845</length> + <flightShapePoint> + <x>15.0653</x> + <y>2.4503</y> + <z>-0.7407</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.989</cfz> + <cmy>-0.1368</cmy> + <reference> + <length>4.3252</length> + <flightShapePoint> + <x>15.4139</x> + <y>3.1504</y> + <z>-0.6793</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.06</cfz> + <cmy>-0.1349</cmy> + <reference> + <length>3.8658</length> + <flightShapePoint> + <x>15.7626</x> + <y>3.8505</y> + <z>-0.6178</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.1422</cfz> + <cmy>-0.1328</cmy> + <reference> + <length>3.4064</length> + <flightShapePoint> + <x>16.1112</x> + <y>4.5506</y> + <z>-0.5564</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.2426</cfz> + <cmy>-0.1291</cmy> + <reference> + <length>2.9471</length> + <flightShapePoint> + <x>16.4599</x> + <y>5.2507</y> + <z>-0.4949</z> + </flightShapePoint> + </reference> + </strip> + <segmentUID>MainWing_wingSegment1ID</segmentUID> + </segment> + <segment> + <strip> + <cfz>1.3016</cfz> + <cmy>-0.1128</cmy> + <reference> + <length>2.648</length> + <flightShapePoint> + <x>16.8085</x> + <y>5.9510</y> + <z>-0.4334</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.3195</cfz> + <cmy>-0.1063</cmy> + <reference> + <length>2.5092</length> + <flightShapePoint> + <x>17.1570</x> + <y>6.6514</y> + <z>-0.3719</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.3416</cfz> + <cmy>-0.1038</cmy> + <reference> + <length>2.3703</length> + <flightShapePoint> + <x>17.5054</x> + <y>7.3517</y> + <z>-0.3105</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.3656</cfz> + <cmy>-0.1034</cmy> + <reference> + <length>2.2315</length> + <flightShapePoint> + <x>17.8539</x> + <y>8.0521</y> + <z>-0.2490</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.3907</cfz> + <cmy>-0.1041</cmy> + <reference> + <length>2.0927</length> + <flightShapePoint> + <x>18.2024</x> + <y>8.7525</y> + <z>-0.1875</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.4162</cfz> + <cmy>-0.1056</cmy> + <reference> + <length>1.9539</length> + <flightShapePoint> + <x>18.5509</x> + <y>9.4529</y> + <z>-0.1260</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.4411</cfz> + <cmy>-0.1074</cmy> + <reference> + <length>1.8151</length> + <flightShapePoint> + <x>18.8994</x> + <y>10.1533</y> + <z>-0.0645</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.4635</cfz> + <cmy>-0.1091</cmy> + <reference> + <length>1.6763</length> + <flightShapePoint> + <x>19.2479</x> + <y>10.8537</y> + <z>-0.0030</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.479</cfz> + <cmy>-0.1102</cmy> + <reference> + <length>1.5375</length> + <flightShapePoint> + <x>19.5964</x> + <y>11.5541</y> + <z>0.0585</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.476</cfz> + <cmy>-0.1087</cmy> + <reference> + <length>1.3987</length> + <flightShapePoint> + <x>19.9449</x> + <y>12.2544</y> + <z>0.1200</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.4208</cfz> + <cmy>-0.0998</cmy> + <reference> + <length>1.2599</length> + <flightShapePoint> + <x>20.2934</x> + <y>12.9548</y> + <z>0.1814</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.194</cfz> + <cmy>-0.0721</cmy> + <reference> + <length>1.1211</length> + <flightShapePoint> + <x>20.6419</x> + <y>13.6552</y> + <z>0.2429</z> + </flightShapePoint> + </reference> + </strip> + <segmentUID>MainWing_wingSegment2ID</segmentUID> + </segment> + </segments> + </wing> + </wings> + </aeroDataSetForLoads> + </aeroDataSetsForLoads> + <flightLoadCases> + <flightLoadCase uID="Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m"> + <aeroDataSetUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m_aeroDataSet</aeroDataSetUID> + <state> + <trimParameters> + <loadFactorZ>1.5</loadFactorZ> + </trimParameters> + <atmosphericConditions> + <density>0.31093</density> + <temperature>216.5839</temperature> + <speedOfSound>295.1</speedOfSound> + </atmosphericConditions> + <attitudeAndMotion> + <refPointUID>refPointUID</refPointUID> + <refRotation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </refRotation> + <translation> + <velocity> + <u>230.178</u> + </velocity> + <acceleration> + <wDot>14.715</wDot> + </acceleration> + </translation> + </attitudeAndMotion> + </state> + <mass> + <weightAndBalanceUID>MTOW1</weightAndBalanceUID> + </mass> + </flightLoadCase> + </flightLoadCases> + <groundLoadCases> + <groundLoadCase uID="someGroundLoadCase_UID"> + <state> + <trimParameters> + <loadFactorZ>1.5</loadFactorZ> + </trimParameters> + </state> + </groundLoadCase> + </groundLoadCases> + </loadCases> + </loadAnalysis> + <weightAndBalance> + <operationalCases> + <operationalCase uID="MTOW1"> + <mass mapType="vector">77000</mass> + </operationalCase> + </operationalCases> + </weightAndBalance> + <aeroPerformanceMap> + <dampingDerivatives> + <positiveRates> + <dcfxdpstar mapType="array">1</dcfxdpstar> + <dcfxdqstar mapType="array">1</dcfxdqstar> + <dcfxdrstar mapType="array">1</dcfxdrstar> + <dcfydpstar mapType="array">1</dcfydpstar> + <dcfydqstar mapType="array">1</dcfydqstar> + <dcfydrstar mapType="array">1</dcfydrstar> + <dcfzdpstar mapType="array">1</dcfzdpstar> + <dcfzdqstar mapType="array">1</dcfzdqstar> + <dcfzdrstar mapType="array">1</dcfzdrstar> + <dcmxdpstar mapType="array">1</dcmxdpstar> + <dcmxdqstar mapType="array">1</dcmxdqstar> + <dcmxdrstar mapType="array">1</dcmxdrstar> + <dcmydpstar mapType="array">1</dcmydpstar> + <dcmydqstar mapType="array">1</dcmydqstar> + <dcmydrstar mapType="array">1</dcmydrstar> + <dcmzdpstar mapType="array">1</dcmzdpstar> + <dcmzdqstar mapType="array">1</dcmzdqstar> + <dcmzdrstar mapType="array">1</dcmzdrstar> + </positiveRates> + </dampingDerivatives> + <controlSurfaces> + <controlSurface> + <controlSurfaceUID>aileronUID</controlSurfaceUID> + <relDeflection mapType="vector">-3 0 3;</relDeflection> + </controlSurface> + </controlSurfaces> + <machNumber mapType="vector">0.2;0.6;0.78;0.8</machNumber> + <reynoldsNumber mapType="vector">1e+007;2.77e+007;3.4e+007;4.5e+007</reynoldsNumber> + <angleOfYaw mapType="vector">0;10</angleOfYaw> + <angleOfAttack mapType="vector">-5;-2.5;0;1;2;3;4;5;6;7.5;10;12.5</angleOfAttack> + <cfx mapType="array">0.01256;0.00757;0.01217;0.00737; NaN;0.01399;0.04064;0.01319;</cfx> + <cfy mapType="array"/> + <cfz mapType="array">-0.44185;-0.23391;-0.44185;-0.23391;-0.58373;-0.30838;-0.58373;-0.30838;</cfz> + <cmx mapType="array"/> + <cmy mapType="array">0.38631;0.20157;0.38631;0.20157;0.51935;0.26919;0.51935;0.26919;</cmy> + <cmz mapType="array"/> + </aeroPerformanceMap> + <massBreakdown> + <mOEM> + <mEM> + <mPowerUnits> + <massDescription> + <massInertia> + <Jxx>0.0</Jxx> + <Jyy>0.0</Jyy> + <Jzz>0.0</Jzz> + </massInertia> + <mass>3160.0</mass> + </massDescription> + </mPowerUnits> + <mFurnishing> + <massDescription> + <mass>2663.0</mass> + </massDescription> + </mFurnishing> + <mStructure> + <mFuselagesStructure> + <mFuselageStructure> + <massDescription> + <mass>5942.0</mass> + <location> + <x>14.811104</x> + </location> + </massDescription> + </mFuselageStructure> + </mFuselagesStructure> + <mWingsStructure> + <massDescription> + <mass>3123.1</mass> + </massDescription> + <mWingStructure> + <massDescription> + <mass>4856.32744539</mass> + <parentUID isLink="True">wing</parentUID> + <location> + <x>16.9844277401</x> + </location> + </massDescription> + </mWingStructure> + <mWingStructure> + <massDescription> + <mass>422.438824951</mass> + <parentUID isLink="True">htp</parentUID> + <location> + <x>31.0086677265</x> + </location> + </massDescription> + </mWingStructure> + <mWingStructure> + <massDescription> + <mass>315.821401487</mass> + <parentUID isLink="True">vtp</parentUID> + <location> + <x>29.7316574784</x> + </location> + </massDescription> + </mWingStructure> + </mWingsStructure> + <mLandingGears> + <mMainGears> + <massDescription uID="mainGear_Mass"> + <mass>1611.60312188</mass> + <location> + <x>11.921104</x> + </location> + </massDescription> + </mMainGears> + <mNoseGears> + <massDescription uID="noseGear_mass"> + <mass>314.322994979</mass> + <location> + <x>11.921104</x> + </location> + </massDescription> + </mNoseGears> + </mLandingGears> + <mPylons> + <massDescription> + <mass>750.529076187</mass> + </massDescription> + </mPylons> + </mStructure> + <mSystems> + <massDescription> + <mass>4782.0</mass> + <location> + <x>11.921104</x> + </location> + </massDescription> + </mSystems> + </mEM> + <massDescription> + <mass>27758.8623406</mass> + <massInertia> + <Jxx>1</Jxx> + <Jyy>1</Jyy> + <Jzz>1</Jzz> + </massInertia> + <location> + <x> 1 </x> + </location> + </massDescription> + <mOperatorItems> + <massDescription> + <mass>3255.14166023</mass> + <location> + <x>11.921104</x> + </location> + </massDescription> + </mOperatorItems> + </mOEM> + <fuel> + <massDescription> + <mass>8106.99160478</mass> + <location> + <x> 1 </x> + <y> 1 </y> + <z>1 </z> + </location> + <description>Max fuel, not mission fuel </description> + </massDescription> + </fuel> + <designMasses> + <mTOM> + <massInertia> + <Jxx>693743.095795</Jxx> + <Jyy>1946426.01247</Jyy> + <Jzz>2612419.99895</Jzz> + </massInertia> + <mass>45045.8583098</mass> + <location> + <x>15.2517882102</x> + </location> + </mTOM> + <mMLM> + <mass>38560.2667664</mass> + </mMLM> + <mMRM> + <mass>2000</mass> + </mMRM> + <mZFM> + <mass>36938.863897</mass> + </mZFM> + </designMasses> + <payload> + <massDescription> + <mCargo> + <massDescription> + <location> + <x> 1</x> + <y> 1 </y> + <z> 1 </z> + </location> + </massDescription> + </mCargo> + <description>Max payload, not design payload </description> + <mass>11500.0</mass> + </massDescription> + </payload> + </massBreakdown> + </analyses> + <global> + <machCruise>0.78</machCruise> + <designRange> + <required>10000</required> + <actual>1000</actual> + </designRange> + <paxSeats>90</paxSeats> + <cargoCapacity>2000</cargoCapacity> + <airportCompatability> + <wingSpan> + <actual>28.1</actual> + </wingSpan> + <takeOffFieldLength> + <required>2000</required> + <actual>222</actual> + </takeOffFieldLength> + <landingFieldLength> + <required>2000</required> + <actual>222</actual> + </landingFieldLength> + <numberFieldFlights>10</numberFieldFlights> + </airportCompatability> + <performanceTargets> + <cruiseMach> + <required>0.8</required> + <actual>0.7</actual> + </cruiseMach> + <initialCruiseAltitude> + <required>12000</required> + <actual>11000</actual> + </initialCruiseAltitude> + <timeToClimb> + <required>1222</required> + <actual>2562</actual> + </timeToClimb> + <approachSpeed> + <required>65</required> + <actual>66.8</actual> + </approachSpeed> + </performanceTargets> + </global> + <landingGear> + <noseGears> + <noseGear uID="nodeGear_ID"> + <components> + <mainStrut> + <length>1.2</length> + </mainStrut> + <wheels> + <wheel> + <radius>0.3</radius> + </wheel> + </wheels> + </components> + </noseGear> + </noseGears> + <mainGears> + <mainGear uID="mainGear_ID"> + <components> + <mainStrut> + <length>1.4</length> + </mainStrut> + <wheels> + <wheel> + <radius>0.44</radius> + </wheel> + </wheels> + </components> + </mainGear> + </mainGears> + </landingGear> + </model> + </aircraft> + <profiles> + <wingAirfoils> + <wingAirfoil uID="Profile_MainWing_1ID"> + <name>Profile_MainWing_1</name> + <pointList> + <x mapType="vector">1;0.9898;0.9799;0.9699;0.9599;0.9499;0.9399;0.9299;0.9199;0.9098;0.8997;0.8896;0.8795;0.8693;0.8591;0.8489;0.8387;0.8285;0.8182;0.808;0.7978;0.7875;0.7772;0.767;0.7567;0.7465;0.7362;0.7259;0.7156;0.7054;0.6951;0.6848;0.6745;0.6642;0.6539;0.6436;0.6333;0.623;0.6127;0.6024;0.5921;0.5817;0.5714;0.5611;0.5508;0.5405;0.5301;0.5198;0.5095;0.4991;0.4888;0.4785;0.4681;0.4578;0.4475;0.4371;0.4268;0.4164;0.4061;0.3957;0.3854;0.3751;0.3647;0.3544;0.344;0.3337;0.3233;0.313;0.3026;0.2923;0.282;0.2716;0.2613;0.2509;0.2406;0.2303;0.2199;0.2096;0.1993;0.189;0.1786;0.1683;0.158;0.1477;0.1375;0.1272;0.117;0.1067;0.0965;0.0864;0.0763;0.0662;0.0563;0.0465;0.0369;0.0277;0.019;0.0113;0.0051;0.0013;0;0;0.0015;0.0062;0.013;0.021;0.0297;0.0389;0.0484;0.058;0.0679;0.0778;0.0878;0.0979;0.108;0.1182;0.1284;0.1386;0.1488;0.1591;0.1694;0.1797;0.19;0.2003;0.2106;0.2209;0.2312;0.2415;0.2519;0.2622;0.2725;0.2829;0.2932;0.3036;0.3139;0.3242;0.3346;0.3449;0.3553;0.3656;0.376;0.3863;0.3966;0.407;0.4173;0.4276;0.438;0.4483;0.4586;0.4689;0.4793;0.4896;0.4999;0.5102;0.5205;0.5307;0.541;0.5512;0.5614;0.5716;0.5818;0.592;0.6021;0.6123;0.6224;0.6326;0.6427;0.6528;0.6629;0.673;0.6831;0.6932;0.7032;0.7133;0.7234;0.7334;0.7435;0.7536;0.7638;0.7739;0.7841;0.7943;0.8045;0.8147;0.825;0.8352;0.8455;0.8557;0.866;0.8763;0.8866;0.8969;0.9072;0.9175;0.9278;0.9382;0.9485;0.9588;0.9692;0.9795;0.9899;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.0021;0.005;0.0078;0.0105;0.0132;0.0159;0.0186;0.0211;0.0236;0.026;0.0283;0.0304;0.0325;0.0344;0.0362;0.038;0.0397;0.0412;0.0428;0.0442;0.0456;0.047;0.0484;0.0497;0.051;0.0523;0.0536;0.0548;0.056;0.0572;0.0583;0.0594;0.0605;0.0615;0.0625;0.0635;0.0644;0.0653;0.0661;0.067;0.0678;0.0685;0.0692;0.0699;0.0706;0.0712;0.0719;0.0724;0.073;0.0735;0.074;0.0745;0.0749;0.0754;0.0757;0.0761;0.0764;0.0767;0.077;0.0772;0.0774;0.0776;0.0777;0.0778;0.0778;0.0778;0.0778;0.0777;0.0776;0.0775;0.0773;0.077;0.0767;0.0764;0.076;0.0756;0.0751;0.0745;0.0738;0.0731;0.0723;0.0714;0.0704;0.0693;0.0681;0.0668;0.0653;0.0638;0.062;0.06;0.0578;0.0554;0.0525;0.0492;0.0453;0.0406;0.0349;0.0281;0.0198;0.0102;0;0;-0.0102;-0.0194;-0.0272;-0.0337;-0.0393;-0.0441;-0.0482;-0.0518;-0.0551;-0.058;-0.0606;-0.0629;-0.0651;-0.067;-0.0687;-0.0703;-0.0718;-0.0731;-0.0742;-0.0753;-0.0762;-0.0771;-0.078;-0.0788;-0.0795;-0.0801;-0.0807;-0.0812;-0.0816;-0.0819;-0.0822;-0.0824;-0.0826;-0.0827;-0.0828;-0.0827;-0.0826;-0.0824;-0.0822;-0.0819;-0.0815;-0.0812;-0.0807;-0.0802;-0.0796;-0.079;-0.0784;-0.0777;-0.077;-0.0762;-0.0753;-0.0742;-0.0731;-0.0718;-0.0704;-0.0689;-0.0672;-0.0655;-0.0637;-0.0619;-0.0599;-0.0579;-0.0559;-0.0538;-0.0517;-0.0495;-0.0473;-0.045;-0.0427;-0.0404;-0.038;-0.0356;-0.0332;-0.0309;-0.0286;-0.0264;-0.0243;-0.0224;-0.0205;-0.0187;-0.0171;-0.0155;-0.014;-0.0125;-0.0111;-0.0099;-0.0087;-0.0075;-0.0065;-0.0056;-0.0047;-0.004;-0.0034;-0.0029;-0.0024;-0.0021;-0.0018;-0.0017;-0.0018;-0.0021</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_MainWing_2ID"> + <name>Profile_MainWing_2</name> + <pointList> + <x mapType="vector">1;0.9898;0.9798;0.9698;0.9598;0.9498;0.9397;0.9297;0.9196;0.9096;0.8995;0.8893;0.8792;0.869;0.8589;0.8487;0.8385;0.8283;0.8181;0.8079;0.7977;0.7874;0.7772;0.767;0.7568;0.7465;0.7363;0.7261;0.7158;0.7056;0.6953;0.6851;0.6748;0.6646;0.6543;0.644;0.6338;0.6235;0.6132;0.603;0.5927;0.5824;0.5721;0.5619;0.5516;0.5413;0.531;0.5207;0.5104;0.5002;0.4899;0.4796;0.4693;0.459;0.4487;0.4384;0.4281;0.4178;0.4075;0.3972;0.3869;0.3766;0.3663;0.356;0.3457;0.3354;0.3251;0.3148;0.3045;0.2942;0.2839;0.2736;0.2633;0.253;0.2427;0.2324;0.2221;0.2118;0.2015;0.1913;0.181;0.1707;0.1605;0.1502;0.14;0.1297;0.1195;0.1093;0.0991;0.089;0.0789;0.0688;0.0589;0.049;0.0393;0.0299;0.0209;0.0127;0.0059;0.0013;0;0;0.0015;0.0064;0.0133;0.0215;0.0304;0.0397;0.0492;0.059;0.0688;0.0788;0.0888;0.0989;0.1091;0.1192;0.1294;0.1396;0.1499;0.1601;0.1704;0.1807;0.191;0.2013;0.2116;0.2219;0.2322;0.2425;0.2528;0.2631;0.2734;0.2837;0.294;0.3043;0.3147;0.325;0.3353;0.3456;0.3559;0.3663;0.3766;0.3869;0.3972;0.4075;0.4178;0.4281;0.4384;0.4487;0.459;0.4693;0.4796;0.4899;0.5002;0.5105;0.5207;0.531;0.5413;0.5515;0.5617;0.5719;0.5821;0.5923;0.6025;0.6126;0.6228;0.6329;0.643;0.6532;0.6633;0.6734;0.6835;0.6936;0.7037;0.7138;0.7238;0.7339;0.744;0.7541;0.7642;0.7744;0.7845;0.7947;0.8049;0.8151;0.8253;0.8356;0.8458;0.856;0.8663;0.8766;0.8868;0.8971;0.9074;0.9177;0.928;0.9383;0.9486;0.9589;0.9692;0.9795;0.9899;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.0019;0.0044;0.0068;0.0093;0.0117;0.0141;0.0164;0.0187;0.0209;0.023;0.025;0.027;0.0288;0.0305;0.0322;0.0338;0.0353;0.0367;0.0381;0.0394;0.0407;0.042;0.0433;0.0445;0.0457;0.0469;0.0481;0.0492;0.0504;0.0515;0.0525;0.0536;0.0546;0.0556;0.0565;0.0574;0.0583;0.0591;0.0599;0.0607;0.0615;0.0622;0.0629;0.0636;0.0642;0.0649;0.0655;0.066;0.0666;0.0671;0.0676;0.0681;0.0685;0.069;0.0693;0.0697;0.0701;0.0704;0.0706;0.0709;0.0711;0.0713;0.0714;0.0716;0.0716;0.0717;0.0717;0.0716;0.0716;0.0715;0.0713;0.0711;0.0709;0.0706;0.0703;0.0699;0.0694;0.0689;0.0683;0.0677;0.067;0.0661;0.0652;0.0643;0.0631;0.0619;0.0606;0.0592;0.0576;0.0558;0.0538;0.0516;0.049;0.046;0.0425;0.0384;0.0333;0.0271;0.0194;0.0102;0;0;-0.0102;-0.0192;-0.0268;-0.0331;-0.0384;-0.0429;-0.0467;-0.0501;-0.0531;-0.0558;-0.0582;-0.0603;-0.0623;-0.064;-0.0656;-0.0671;-0.0684;-0.0695;-0.0706;-0.0715;-0.0724;-0.0731;-0.0738;-0.0745;-0.075;-0.0756;-0.0761;-0.0764;-0.0768;-0.077;-0.0772;-0.0774;-0.0774;-0.0775;-0.0775;-0.0774;-0.0773;-0.0772;-0.0769;-0.0766;-0.0762;-0.0758;-0.0753;-0.0748;-0.0743;-0.0737;-0.0731;-0.0724;-0.0717;-0.0709;-0.0701;-0.0692;-0.0682;-0.0671;-0.0659;-0.0646;-0.0632;-0.0617;-0.0601;-0.0584;-0.0566;-0.0548;-0.053;-0.0511;-0.0491;-0.0471;-0.0451;-0.043;-0.0409;-0.0388;-0.0366;-0.0344;-0.0322;-0.03;-0.0279;-0.0258;-0.0238;-0.0219;-0.0201;-0.0184;-0.0168;-0.0152;-0.0138;-0.0124;-0.0111;-0.0098;-0.0087;-0.0076;-0.0066;-0.0057;-0.0049;-0.0042;-0.0035;-0.003;-0.0025;-0.0022;-0.0019;-0.0017;-0.0017;-0.0019</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_MainWing_3ID"> + <name>Profile_MainWing_3</name> + <pointList> + <x mapType="vector">1;0.9902;0.9803;0.9703;0.9604;0.9504;0.9404;0.9304;0.9204;0.9104;0.9004;0.8903;0.8803;0.8703;0.8602;0.8501;0.8401;0.83;0.8199;0.8098;0.7997;0.7896;0.7795;0.7694;0.7593;0.7492;0.739;0.7289;0.7187;0.7086;0.6984;0.6882;0.6781;0.6679;0.6577;0.6475;0.6373;0.6271;0.6169;0.6067;0.5965;0.5863;0.576;0.5658;0.5556;0.5454;0.5352;0.5249;0.5147;0.5045;0.4943;0.4841;0.4738;0.4636;0.4534;0.4432;0.4329;0.4227;0.4125;0.4023;0.3921;0.3818;0.3716;0.3614;0.3511;0.3409;0.3307;0.3205;0.3103;0.3001;0.2898;0.2796;0.2694;0.2592;0.249;0.2388;0.2286;0.2184;0.2082;0.198;0.1879;0.1777;0.1675;0.1573;0.1472;0.137;0.1269;0.1168;0.1067;0.0966;0.0865;0.0764;0.0664;0.0565;0.0466;0.0368;0.0273;0.0183;0.0102;0.0034;0;0;0.0041;0.0122;0.0215;0.0311;0.0409;0.0508;0.0608;0.0708;0.0808;0.0908;0.1008;0.1109;0.1209;0.131;0.1411;0.1512;0.1613;0.1714;0.1815;0.1916;0.2017;0.2118;0.2219;0.2321;0.2422;0.2523;0.2625;0.2726;0.2828;0.2929;0.3031;0.3132;0.3234;0.3335;0.3437;0.3538;0.364;0.3741;0.3843;0.3944;0.4046;0.4147;0.4248;0.435;0.4451;0.4552;0.4654;0.4755;0.4856;0.4957;0.5058;0.5159;0.526;0.5361;0.5462;0.5563;0.5664;0.5764;0.5865;0.5966;0.6066;0.6167;0.6267;0.6368;0.6468;0.6568;0.6669;0.6769;0.6869;0.6969;0.707;0.717;0.727;0.737;0.7471;0.7571;0.7671;0.7772;0.7872;0.7973;0.8074;0.8175;0.8276;0.8377;0.8478;0.858;0.8681;0.8783;0.8884;0.8986;0.9087;0.9189;0.929;0.9391;0.9493;0.9594;0.9696;0.9797;0.9898;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.0024;0.0049;0.0074;0.0098;0.0121;0.0144;0.0166;0.0188;0.0209;0.023;0.025;0.027;0.0289;0.0308;0.0327;0.0345;0.0363;0.0381;0.0398;0.0414;0.0431;0.0447;0.0462;0.0477;0.0491;0.0505;0.0519;0.0532;0.0544;0.0556;0.0567;0.0578;0.0588;0.0597;0.0606;0.0614;0.0622;0.0629;0.0635;0.0641;0.0647;0.0652;0.0656;0.0661;0.0664;0.0668;0.0671;0.0674;0.0676;0.0678;0.0679;0.0681;0.0682;0.0682;0.0682;0.0682;0.0682;0.0681;0.068;0.0679;0.0677;0.0675;0.0673;0.0671;0.0668;0.0664;0.0661;0.0657;0.0652;0.0648;0.0643;0.0637;0.0631;0.0625;0.0618;0.0611;0.0604;0.0596;0.0588;0.0579;0.057;0.056;0.0549;0.0538;0.0526;0.0514;0.0501;0.0486;0.0471;0.0455;0.0437;0.0418;0.0398;0.0375;0.0349;0.0318;0.0282;0.0233;0.0171;0.0095;0;0;-0.009;-0.015;-0.0192;-0.0224;-0.025;-0.0272;-0.0292;-0.0311;-0.0328;-0.0343;-0.0358;-0.0372;-0.0386;-0.0399;-0.0411;-0.0422;-0.0433;-0.0443;-0.0453;-0.0462;-0.047;-0.0478;-0.0485;-0.0492;-0.0498;-0.0503;-0.0508;-0.0512;-0.0515;-0.0518;-0.052;-0.0521;-0.0522;-0.0522;-0.0521;-0.052;-0.0518;-0.0516;-0.0513;-0.051;-0.0506;-0.0502;-0.0496;-0.0491;-0.0485;-0.0478;-0.0471;-0.0463;-0.0455;-0.0446;-0.0436;-0.0427;-0.0416;-0.0406;-0.0394;-0.0383;-0.037;-0.0358;-0.0345;-0.0332;-0.0318;-0.0304;-0.029;-0.0275;-0.026;-0.0245;-0.0229;-0.0214;-0.0198;-0.0182;-0.0166;-0.015;-0.0133;-0.0117;-0.0101;-0.0086;-0.007;-0.0056;-0.0042;-0.0029;-0.0018;-0.0007;0.0002;0.0009;0.0015;0.0019;0.0022;0.0024;0.0024;0.0023;0.0022;0.002;0.0017;0.0013;0.0009;0.0004;-0.0002;-0.0009;-0.0016;-0.0024</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_HorizontalStabiliser_1ID"> + <name>Profile_HorizontalStabiliser_1</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_HorizontalStabiliser_2ID"> + <name>Profile_HorizontalStabiliser_2</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_VerticalStabiliser_1ID"> + <name>Profile_VerticalStabiliser_1</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_VerticalStabiliser_2ID"> + <name>Profile_VerticalStabiliser_2</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + </wingAirfoils> + <fuselageProfiles> + <fuselageProfile uID="Profile_Fuselage_1ID"> + <name>Profile_Fuselage_1</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.00760827;-0.0151289;-0.0224751;-0.0295622;-0.0363087;-0.0426367;-0.0484732;-0.0537511;-0.0584094;-0.0611548;-0.0634929;-0.0654046;-0.0668743;-0.0678901;-0.0684436;-0.0685304;-0.0681497;-0.0673046;-0.0643827;-0.0599899;-0.0542266;-0.0472243;-0.0391432;-0.0301677;-0.0205031;-0.01037;-8.42605e-18;8.42605e-18;0.01037;0.0205031;0.0301677;0.0391432;0.0472243;0.0542266;0.0599899;0.0643827;0.0673046;0.0681497;0.0685304;0.0684436;0.0678901;0.0668743;0.0654046;0.0634929;0.0611548;0.0584094;0.0537511;0.0484732;0.0426367;0.0363087;0.0295622;0.0224751;0.0151289;0.00760827;0</y> + <z mapType="vector">-0.380603;-0.381012;-0.382234;-0.384255;-0.387053;-0.390594;-0.394837;-0.399735;-0.40523;-0.41126;-0.415649;-0.420268;-0.425079;-0.430044;-0.43512;-0.440268;-0.445444;-0.450607;-0.455715;-0.465696;-0.475122;-0.483779;-0.491468;-0.498014;-0.503267;-0.507108;-0.509448;-0.510234;-0.510234;-0.509448;-0.507108;-0.503267;-0.498014;-0.491468;-0.483779;-0.475122;-0.465696;-0.455715;-0.450607;-0.445444;-0.440268;-0.43512;-0.430044;-0.425079;-0.420268;-0.415649;-0.41126;-0.40523;-0.399735;-0.394837;-0.390594;-0.387053;-0.384255;-0.382234;-0.381012;-0.380603</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_2ID"> + <name>Profile_Fuselage_2</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0269479;-0.0535852;-0.0796049;-0.104707;-0.128603;-0.151016;-0.171688;-0.190382;-0.206882;-0.216606;-0.224887;-0.231658;-0.236864;-0.240461;-0.242422;-0.242729;-0.241381;-0.238388;-0.228039;-0.21248;-0.192066;-0.167265;-0.138642;-0.106852;-0.0726203;-0.0367297;-2.98444e-17;2.98444e-17;0.0367297;0.0726203;0.106852;0.138642;0.167265;0.192066;0.21248;0.228039;0.238388;0.241381;0.242729;0.242422;0.240461;0.236864;0.231658;0.224887;0.216606;0.206882;0.190382;0.171688;0.151016;0.128603;0.104707;0.0796049;0.0535852;0.0269479;0</y> + <z mapType="vector">-0.202044;-0.203493;-0.207822;-0.214982;-0.224889;-0.237431;-0.252463;-0.26981;-0.289273;-0.310629;-0.326176;-0.342536;-0.359577;-0.37716;-0.395141;-0.413373;-0.431708;-0.449995;-0.468086;-0.503438;-0.536825;-0.567487;-0.594721;-0.617906;-0.636513;-0.650115;-0.658403;-0.661187;-0.661187;-0.658403;-0.650115;-0.636513;-0.617906;-0.594721;-0.567487;-0.536825;-0.503438;-0.468086;-0.449995;-0.431708;-0.413373;-0.395141;-0.37716;-0.359577;-0.342536;-0.326176;-0.310629;-0.289273;-0.26981;-0.252463;-0.237431;-0.224889;-0.214982;-0.207822;-0.203493;-0.202044</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_3ID"> + <name>Profile_Fuselage_3</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0514493;-0.102306;-0.151983;-0.199908;-0.24553;-0.288321;-0.32779;-0.36348;-0.394981;-0.413546;-0.429357;-0.442285;-0.452223;-0.459092;-0.462836;-0.463422;-0.460848;-0.455133;-0.435374;-0.405669;-0.366696;-0.319344;-0.264697;-0.204003;-0.138648;-0.0701249;-5.69794e-17;5.69794e-17;0.0701249;0.138648;0.204003;0.264697;0.319344;0.366696;0.405669;0.435374;0.455133;0.460848;0.463422;0.462836;0.459092;0.452223;0.442285;0.429357;0.413546;0.394981;0.36348;0.32779;0.288321;0.24553;0.199908;0.151983;0.102306;0.0514493;0</y> + <z mapType="vector">0.0458874;0.0431216;0.0348563;0.0211867;0.00227037;-0.0216747;-0.0503726;-0.0834924;-0.120653;-0.161425;-0.191107;-0.222343;-0.254878;-0.288447;-0.322776;-0.357585;-0.39259;-0.427505;-0.462045;-0.529538;-0.593282;-0.651821;-0.703818;-0.748083;-0.783607;-0.809577;-0.8254;-0.830715;-0.830715;-0.8254;-0.809577;-0.783607;-0.748083;-0.703818;-0.651821;-0.593282;-0.529538;-0.462045;-0.427505;-0.39259;-0.357585;-0.322776;-0.288447;-0.254878;-0.222343;-0.191107;-0.161425;-0.120653;-0.0834924;-0.0503726;-0.0216747;0.00227037;0.0211867;0.0348563;0.0431216;0.0458874</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_4ID"> + <name>Profile_Fuselage_4</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0750025;-0.149141;-0.22156;-0.291425;-0.357932;-0.420313;-0.47785;-0.529879;-0.575801;-0.602865;-0.625914;-0.64476;-0.659248;-0.669262;-0.674719;-0.675574;-0.671821;-0.66349;-0.634686;-0.591382;-0.534566;-0.465538;-0.385874;-0.297394;-0.20212;-0.102228;-8.30642e-17;8.30642e-17;0.102228;0.20212;0.297394;0.385874;0.465538;0.534566;0.591382;0.634686;0.66349;0.671821;0.675574;0.674719;0.669262;0.659248;0.64476;0.625914;0.602865;0.575801;0.529879;0.47785;0.420313;0.357932;0.291425;0.22156;0.149141;0.0750025;0</y> + <z mapType="vector">0.305768;0.301737;0.289687;0.26976;0.242184;0.207277;0.165441;0.117159;0.0629876;0.0035503;-0.0397198;-0.0852555;-0.132685;-0.181622;-0.231667;-0.282411;-0.333441;-0.38434;-0.434692;-0.533083;-0.626009;-0.711347;-0.787147;-0.851677;-0.903463;-0.941322;-0.964389;-0.972137;-0.972137;-0.964389;-0.941322;-0.903463;-0.851677;-0.787147;-0.711347;-0.626009;-0.533083;-0.434692;-0.38434;-0.333441;-0.282411;-0.231667;-0.181622;-0.132685;-0.0852555;-0.0397198;0.0035503;0.0629876;0.117159;0.165441;0.207277;0.242184;0.26976;0.289687;0.301737;0.305768</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_5ID"> + <name>Profile_Fuselage_5</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0962309;-0.191353;-0.284269;-0.373909;-0.459239;-0.539277;-0.613099;-0.679854;-0.738774;-0.773498;-0.80307;-0.82725;-0.845839;-0.858687;-0.865688;-0.866786;-0.86197;-0.851282;-0.814325;-0.758764;-0.685868;-0.597302;-0.49509;-0.381567;-0.259327;-0.131162;-1.06574e-16;1.06574e-16;0.131162;0.259327;0.381567;0.49509;0.597302;0.685868;0.758764;0.814325;0.851282;0.86197;0.866786;0.865688;0.858687;0.845839;0.82725;0.80307;0.773498;0.738774;0.679854;0.613099;0.539277;0.459239;0.373909;0.284269;0.191353;0.0962309;0</y> + <z mapType="vector">0.556032;0.550859;0.5354;0.509832;0.474451;0.429664;0.375988;0.31404;0.244536;0.168276;0.112759;0.0543348;-0.00651942;-0.0693073;-0.133517;-0.198623;-0.264096;-0.329401;-0.394004;-0.520244;-0.639471;-0.748963;-0.846217;-0.929011;-0.995455;-1.04403;-1.07363;-1.08357;-1.08357;-1.07363;-1.04403;-0.995455;-0.929011;-0.846217;-0.748963;-0.639471;-0.520244;-0.394004;-0.329401;-0.264096;-0.198623;-0.133517;-0.0693073;-0.00651942;0.0543348;0.112759;0.168276;0.244536;0.31404;0.375988;0.429664;0.474451;0.509832;0.5354;0.550859;0.556032</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_6ID"> + <name>Profile_Fuselage_6</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.116018;-0.230698;-0.34272;-0.450792;-0.553668;-0.650162;-0.739163;-0.819645;-0.89068;-0.932543;-0.968196;-0.997348;-1.01976;-1.03525;-1.04369;-1.04501;-1.03921;-1.02632;-0.981766;-0.91478;-0.826895;-0.720119;-0.59689;-0.460025;-0.312649;-0.158131;-1.28488e-16;1.28488e-16;0.158131;0.312649;0.460025;0.59689;0.720119;0.826895;0.91478;0.981766;1.02632;1.03921;1.04501;1.04369;1.03525;1.01976;0.997348;0.968196;0.932543;0.89068;0.819645;0.739163;0.650162;0.553668;0.450792;0.34272;0.230698;0.116018;0</y> + <z mapType="vector">0.796924;0.790687;0.772049;0.741224;0.698568;0.644572;0.579859;0.505174;0.421378;0.329438;0.262505;0.192068;0.118701;0.0430027;-0.0344091;-0.112903;-0.191838;-0.270571;-0.348458;-0.500655;-0.644398;-0.776403;-0.893654;-0.993472;-1.07358;-1.13214;-1.16782;-1.17981;-1.17981;-1.16782;-1.13214;-1.07358;-0.993472;-0.893654;-0.776403;-0.644398;-0.500655;-0.348458;-0.270571;-0.191838;-0.112903;-0.0344091;0.0430027;0.118701;0.192068;0.262505;0.329438;0.421378;0.505174;0.579859;0.644572;0.698568;0.741224;0.772049;0.790687;0.796924</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_7ID"> + <name>Profile_Fuselage_7</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.133077;-0.264621;-0.393115;-0.517077;-0.635081;-0.745764;-0.847852;-0.940168;-1.02165;-1.06967;-1.11056;-1.144;-1.16971;-1.18748;-1.19716;-1.19868;-1.19202;-1.17723;-1.12613;-1.04929;-0.948484;-0.826007;-0.684659;-0.527668;-0.358622;-0.181383;-1.47381e-16;1.47381e-16;0.181383;0.358622;0.527668;0.684659;0.826007;0.948484;1.04929;1.12613;1.17723;1.19202;1.19868;1.19716;1.18748;1.16971;1.144;1.11056;1.06967;1.02165;0.940168;0.847852;0.745764;0.635081;0.517077;0.393115;0.264621;0.133077;0</y> + <z mapType="vector">1.00719;1.00004;0.978662;0.943304;0.894376;0.83244;0.758211;0.672544;0.576427;0.470967;0.394193;0.313398;0.229243;0.142414;0.0536191;-0.0364167;-0.126959;-0.217269;-0.306609;-0.481185;-0.646064;-0.797479;-0.931972;-1.04647;-1.13835;-1.20553;-1.24645;-1.2602;-1.2602;-1.24645;-1.20553;-1.13835;-1.04647;-0.931972;-0.797479;-0.646064;-0.481185;-0.306609;-0.217269;-0.126959;-0.0364167;0.0536191;0.142414;0.229243;0.313398;0.394193;0.470967;0.576427;0.672544;0.758211;0.83244;0.894376;0.943304;0.978662;1.00004;1.00719</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_8ID"> + <name>Profile_Fuselage_8</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.147337;-0.292977;-0.435239;-0.572485;-0.703133;-0.825677;-0.938704;-1.04091;-1.13112;-1.18429;-1.22957;-1.26659;-1.29505;-1.31472;-1.32544;-1.32712;-1.31975;-1.30338;-1.2468;-1.16173;-1.05012;-0.914519;-0.758024;-0.584211;-0.397051;-0.200819;-1.63174e-16;1.63174e-16;0.200819;0.397051;0.584211;0.758024;0.914519;1.05012;1.16173;1.2468;1.30338;1.31975;1.32712;1.32544;1.31472;1.29505;1.26659;1.22957;1.18429;1.13112;1.04091;0.938704;0.825677;0.703133;0.572485;0.435239;0.292977;0.147337;0</y> + <z mapType="vector">1.18088;1.17296;1.1493;1.11015;1.05598;0.987405;0.905222;0.810375;0.703958;0.587198;0.502197;0.412745;0.319572;0.223438;0.125129;0.0254449;-0.0747993;-0.174786;-0.2737;-0.466983;-0.64953;-0.81717;-0.966074;-1.09284;-1.19457;-1.26894;-1.31425;-1.32948;-1.32948;-1.31425;-1.26894;-1.19457;-1.09284;-0.966074;-0.81717;-0.64953;-0.466983;-0.2737;-0.174786;-0.0747993;0.0254449;0.125129;0.223438;0.319572;0.412745;0.502197;0.587198;0.703958;0.810375;0.905222;0.987405;1.05598;1.11015;1.1493;1.17296;1.18088</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_9ID"> + <name>Profile_Fuselage_9</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.158826;-0.315821;-0.469176;-0.617124;-0.757959;-0.890058;-1.0119;-1.12208;-1.21932;-1.27663;-1.32544;-1.36535;-1.39603;-1.41723;-1.42879;-1.4306;-1.42265;-1.40501;-1.34402;-1.25231;-1.132;-0.985826;-0.817129;-0.629763;-0.42801;-0.216478;-1.75897e-16;1.75897e-16;0.216478;0.42801;0.629763;0.817129;0.985826;1.132;1.25231;1.34402;1.40501;1.42265;1.4306;1.42879;1.41723;1.39603;1.36535;1.32544;1.27663;1.21932;1.12208;1.0119;0.890058;0.757959;0.617124;0.469176;0.315821;0.158826;0</y> + <z mapType="vector">1.31647;1.30794;1.28242;1.24022;1.18183;1.10791;1.01932;0.917075;0.802361;0.676496;0.584867;0.48844;0.388002;0.284373;0.178398;0.0709417;-0.0371189;-0.144902;-0.251528;-0.459882;-0.656663;-0.837375;-0.997889;-1.13454;-1.2442;-1.32437;-1.37322;-1.38963;-1.38963;-1.37322;-1.32437;-1.2442;-1.13454;-0.997889;-0.837375;-0.656663;-0.459882;-0.251528;-0.144902;-0.0371189;0.0709417;0.178398;0.284373;0.388002;0.48844;0.584867;0.676496;0.802361;0.917075;1.01932;1.10791;1.18183;1.24022;1.28242;1.30794;1.31647</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_10ID"> + <name>Profile_Fuselage_10</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.167385;-0.33284;-0.49446;-0.65038;-0.798805;-0.938022;-1.06643;-1.18254;-1.28503;-1.34543;-1.39687;-1.43892;-1.47126;-1.49361;-1.50578;-1.50746;-1.50746;-1.50769;-1.49932;-1.48073;-1.41644;-1.3198;-1.193;-1.03895;-0.861164;-0.663701;-0.451075;-0.228144;-1.85376e-16;1.85376e-16;0.228144;0.451075;0.663701;0.861164;1.03895;1.193;1.3198;1.41644;1.48073;1.49932;1.50769;1.50746;1.50746;1.50578;1.49361;1.47126;1.43892;1.39687;1.34543;1.28503;1.18254;1.06643;0.938022;0.798805;0.65038;0.49446;0.33284;0.167385;0</y> + <z mapType="vector">1.4125;1.4035;1.37661;1.33214;1.2706;1.1927;1.09933;0.991579;0.870683;0.738035;0.641468;0.539845;0.433995;0.324781;0.213095;0.0998478;-1.21431e-17;-1.04083e-17;-0.0140362;-0.127628;-0.24;-0.459582;-0.666967;-0.857417;-1.02658;-1.17059;-1.28617;-1.37066;-1.42214;-1.43943;-1.43943;-1.42214;-1.37066;-1.28617;-1.17059;-1.02658;-0.857417;-0.666967;-0.459582;-0.24;-0.127628;-0.0140362;-1.04083e-17;-1.21431e-17;0.0998478;0.213095;0.324781;0.433995;0.539845;0.641468;0.738035;0.870683;0.991579;1.09933;1.1927;1.2706;1.33214;1.37661;1.4035;1.4125</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_11ID"> + <name>Profile_Fuselage_11</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.170215;-0.338336;-0.502295;-0.660075;-0.809738;-0.949443;-1.07747;-1.19226;-1.29239;-1.34981;-1.39871;-1.43873;-1.46958;-1.49103;-1.50292;-1.50517;-1.49775;-1.48073;-1.41929;-1.32466;-1.19904;-1.04538;-0.867254;-0.668842;-0.454782;-0.230083;-1.84815e-16;1.84815e-16;0.230083;0.454782;0.668842;0.867254;1.04538;1.19904;1.32466;1.41929;1.48073;1.49775;1.50517;1.50292;1.49103;1.46958;1.43873;1.39871;1.34981;1.29239;1.19226;1.07747;0.949443;0.809738;0.660075;0.502295;0.338336;0.170215;0</y> + <z mapType="vector">1.44226;1.43282;1.40459;1.35794;1.29343;1.21187;1.11425;1.00179;0.875866;0.738035;0.640312;0.538033;0.431945;0.322822;0.211459;0.09867;-0.0147213;-0.127887;-0.24;-0.462387;-0.672814;-0.866355;-1.03848;-1.18517;-1.30298;-1.38915;-1.44168;-1.45932;-1.45932;-1.44168;-1.38915;-1.30298;-1.18517;-1.03848;-0.866355;-0.672814;-0.462387;-0.24;-0.127887;-0.0147213;0.09867;0.211459;0.322822;0.431945;0.538033;0.640312;0.738035;0.875866;1.00179;1.11425;1.21187;1.29343;1.35794;1.40459;1.43282;1.44226</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_12ID"> + <name>Profile_Fuselage_12</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175211;-0.348035;-0.516116;-0.677163;-0.828981;-0.969502;-1.09681;-1.20917;-1.30506;-1.35719;-1.40161;-1.43805;-1.4663;-1.4862;-1.49763;-1.50053;-1.49489;-1.48073;-1.4245;-1.33355;-1.21009;-1.05713;-0.878398;-0.67825;-0.461567;-0.233631;-1.83808e-16;1.83808e-16;0.233631;0.461567;0.67825;0.878398;1.05713;1.21009;1.33355;1.4245;1.48073;1.49489;1.50053;1.49763;1.4862;1.4663;1.43805;1.40161;1.35719;1.30506;1.20917;1.09681;0.969502;0.828981;0.677163;0.516116;0.348035;0.175211;0</y> + <z mapType="vector">1.49503;1.48478;1.45419;1.40366;1.33389;1.24583;1.14068;1.01986;0.885037;0.738035;0.638276;0.534848;0.428346;0.319386;0.208596;0.0966149;-0.0159107;-0.128332;-0.24;-0.467501;-0.683478;-0.882665;-1.06021;-1.21177;-1.33367;-1.42293;-1.47737;-1.49566;-1.49566;-1.47737;-1.42293;-1.33367;-1.21177;-1.06021;-0.882665;-0.683478;-0.467501;-0.24;-0.128332;-0.0159107;0.0966149;0.208596;0.319386;0.428346;0.534848;0.638276;0.738035;0.885037;1.01986;1.14068;1.24583;1.33389;1.40366;1.45419;1.48478;1.49503</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_13ID"> + <name>Profile_Fuselage_13</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0</y> + <z mapType="vector">1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_14ID"> + <name>Profile_Fuselage_14</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0</y> + <z mapType="vector">1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_15ID"> + <name>Profile_Fuselage_15</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0</y> + <z mapType="vector">1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_16ID"> + <name>Profile_Fuselage_16</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175662;-0.348914;-0.517377;-0.678739;-0.830787;-0.971432;-1.09875;-1.21098;-1.3066;-1.35836;-1.40244;-1.43859;-1.46661;-1.48633;-1.49764;-1.50048;-1.49483;-1.48073;-1.42463;-1.33377;-1.21036;-1.05741;-0.878664;-0.678474;-0.461729;-0.233716;-1.83786e-16;1.83786e-16;0.233716;0.461729;0.678474;0.878664;1.05741;1.21036;1.33377;1.42463;1.48073;1.49483;1.50048;1.49764;1.48633;1.46661;1.43859;1.40244;1.35836;1.3066;1.21098;1.09875;0.971432;0.830787;0.678739;0.517377;0.348914;0.175662;0</y> + <z mapType="vector">1.49917;1.48886;1.45808;1.40725;1.33707;1.2485;1.14275;1.02128;0.885755;0.738035;0.638146;0.534639;0.428102;0.319142;0.20838;0.0964462;-0.016022;-0.128384;-0.24;-0.467621;-0.683729;-0.883049;-1.06072;-1.2124;-1.3344;-1.42372;-1.47821;-1.49652;-1.49652;-1.47821;-1.42372;-1.3344;-1.2124;-1.06072;-0.883049;-0.683729;-0.467621;-0.24;-0.128384;-0.016022;0.0964462;0.20838;0.319142;0.428102;0.534639;0.638146;0.738035;0.885755;1.02128;1.14275;1.2485;1.33707;1.40725;1.45808;1.48886;1.49917</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_17ID"> + <name>Profile_Fuselage_17</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175611;-0.348904;-0.517594;-0.679454;-0.83235;-0.974263;-1.10332;-1.21782;-1.31626;-1.36984;-1.4151;-1.45173;-1.47948;-1.49818;-1.50768;-1.50793;-1.49892;-1.48073;-1.4175;-1.3216;-1.19524;-1.04133;-0.863417;-0.665603;-0.452447;-0.228861;-1.8517e-16;1.8517e-16;0.228861;0.452447;0.665603;0.863417;1.04133;1.19524;1.3216;1.4175;1.48073;1.49892;1.50793;1.50768;1.49818;1.47948;1.45173;1.4151;1.36984;1.31626;1.21782;1.10332;0.974263;0.83235;0.679454;0.517594;0.348904;0.175611;0</y> + <z mapType="vector">1.48673;1.47663;1.44646;1.39661;1.32775;1.24078;1.13685;1.01734;0.88381;0.738035;0.638866;0.535631;0.429028;0.319778;0.208619;0.0963014;-0.0164149;-0.128768;-0.24;-0.460619;-0.669129;-0.860722;-1.03098;-1.17598;-1.29238;-1.3775;-1.42936;-1.44679;-1.44679;-1.42936;-1.3775;-1.29238;-1.17598;-1.03098;-0.860722;-0.669129;-0.460619;-0.24;-0.128768;-0.0164149;0.0963014;0.208619;0.319778;0.429028;0.535631;0.638866;0.738035;0.88381;1.01734;1.13685;1.24078;1.32775;1.39661;1.44646;1.47663;1.48673</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_18ID"> + <name>Profile_Fuselage_18</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175832;-0.349588;-0.519218;-0.68272;-0.838165;-0.983716;-1.11766;-1.23841;-1.34455;-1.40314;-1.45163;-1.48952;-1.51644;-1.53209;-1.53633;-1.52912;-1.51052;-1.48073;-1.39918;-1.29045;-1.15666;-1.00039;-0.824688;-0.632961;-0.428934;-0.216571;-1.90889e-16;1.90889e-16;0.216571;0.428934;0.632961;0.824688;1.00039;1.15666;1.29045;1.39918;1.48073;1.51052;1.52912;1.53633;1.53209;1.51644;1.48952;1.45163;1.40314;1.34455;1.23841;1.11766;0.983716;0.838165;0.68272;0.519218;0.349588;0.175832;0</y> + <z mapType="vector">1.45358;1.44401;1.41543;1.36818;1.3028;1.22007;1.12097;1.00667;0.878524;0.738035;0.640777;0.538103;0.431062;0.320746;0.208282;0.0948189;-0.0184848;-0.130472;-0.24;-0.4411;-0.628928;-0.799831;-0.950485;-1.07796;-1.17977;-1.25394;-1.29903;-1.31416;-1.31416;-1.29903;-1.25394;-1.17977;-1.07796;-0.950485;-0.799831;-0.628928;-0.4411;-0.24;-0.130472;-0.0184848;0.0948189;0.208282;0.320746;0.431062;0.538103;0.640777;0.738035;0.878524;1.00667;1.12097;1.22007;1.3028;1.36818;1.41543;1.44401;1.45358</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_19ID"> + <name>Profile_Fuselage_19</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.171561;-0.341303;-0.507426;-0.668169;-0.821826;-0.96677;-1.10146;-1.22447;-1.3345;-1.39767;-1.44857;-1.48644;-1.5107;-1.52099;-1.51716;-1.49926;-1.46758;-1.42259;-1.3248;-1.20692;-1.07074;-0.918311;-0.751952;-0.574183;-0.3877;-0.195332;-1.95014e-16;1.95014e-16;0.195332;0.3877;0.574183;0.751952;0.918311;1.07074;1.20692;1.3248;1.42259;1.46758;1.49926;1.51716;1.52099;1.5107;1.48644;1.44857;1.39767;1.3345;1.22447;1.10146;0.96677;0.821826;0.668169;0.507426;0.341303;0.171561;0</y> + <z mapType="vector">1.40515;1.39631;1.36987;1.32611;1.26551;1.18869;1.09649;0.989864;0.869956;0.738035;0.642103;0.539138;0.430703;0.318445;0.204066;0.089304;-0.0241001;-0.134426;-0.24;-0.409315;-0.565362;-0.705768;-0.828395;-0.931378;-1.01315;-1.07246;-1.10842;-1.12046;-1.12046;-1.10842;-1.07246;-1.01315;-0.931378;-0.828395;-0.705768;-0.565362;-0.409315;-0.24;-0.134426;-0.0241001;0.089304;0.204066;0.318445;0.430703;0.539138;0.642103;0.738035;0.869956;0.989864;1.09649;1.18869;1.26551;1.32611;1.36987;1.39631;1.40515</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_20ID"> + <name>Profile_Fuselage_20</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.162522;-0.323372;-0.480897;-0.633477;-0.779541;-0.917589;-1.0462;-1.16405;-1.26993;-1.33438;-1.38495;-1.42069;-1.44093;-1.44527;-1.43364;-1.40628;-1.3637;-1.30674;-1.20499;-1.08859;-0.958951;-0.817648;-0.666394;-0.507027;-0.341488;-0.17179;-1.91908e-16;1.91908e-16;0.17179;0.341488;0.507027;0.666394;0.817648;0.958951;1.08859;1.20499;1.30674;1.3637;1.40628;1.43364;1.44527;1.44093;1.42069;1.38495;1.33438;1.26993;1.16405;1.0462;0.917589;0.779541;0.633477;0.480897;0.323372;0.162522;0</y> + <z mapType="vector">1.36175;1.3535;1.32883;1.288;1.23142;1.15969;1.07352;0.973821;0.861608;0.738035;0.641563;0.537151;0.426787;0.31257;0.196675;0.0813069;-0.0313402;-0.139125;-0.24;-0.378415;-0.504841;-0.617728;-0.715696;-0.797543;-0.862267;-0.909073;-0.937388;-0.946866;-0.946866;-0.937388;-0.909073;-0.862267;-0.797543;-0.715696;-0.617728;-0.504841;-0.378415;-0.24;-0.139125;-0.0313402;0.0813069;0.196675;0.31257;0.426787;0.537151;0.641563;0.738035;0.861608;0.973821;1.07352;1.15969;1.23142;1.288;1.32883;1.3535;1.36175</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_21ID"> + <name>Profile_Fuselage_21</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.158809;-0.315997;-0.469962;-0.619133;-0.761988;-0.89707;-1.023;-1.1385;-1.24238;-1.30717;-1.35747;-1.39225;-1.4108;-1.41273;-1.39801;-1.37646;-1.37646;-1.36694;-1.32016;-1.25862;-1.15615;-1.04101;-0.914462;-0.777892;-0.632797;-0.480768;-0.323469;-0.162626;-1.90505e-16;1.90505e-16;0.162626;0.323469;0.480768;0.632797;0.777892;0.914462;1.04101;1.15615;1.25862;1.32016;1.36694;1.37646;1.37646;1.39801;1.41273;1.4108;1.39225;1.35747;1.30717;1.24238;1.1385;1.023;0.89707;0.761988;0.619133;0.469962;0.315997;0.158809;0</y> + <z mapType="vector">1.34539;1.33736;1.31335;1.27361;1.21854;1.1487;1.06481;0.967721;0.858424;0.738035;0.641215;0.536136;0.42495;0.309937;0.193454;0.0778887;-4.51028e-17;1.38778e-16;-0.0343905;-0.141082;-0.24;-0.36657;-0.481734;-0.58423;-0.672935;-0.746877;-0.805244;-0.847398;-0.872877;-0.881401;-0.881401;-0.872877;-0.847398;-0.805244;-0.746877;-0.672935;-0.58423;-0.481734;-0.36657;-0.24;-0.141082;-0.0343905;1.38778e-16;-4.51028e-17;0.0778887;0.193454;0.309937;0.42495;0.536136;0.641215;0.738035;0.858424;0.967721;1.06481;1.1487;1.21854;1.27361;1.31335;1.33736;1.34539</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_22ID"> + <name>Profile_Fuselage_22</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.138612;-0.275811;-0.410195;-0.540395;-0.665083;-0.782986;-0.892901;-0.993708;-1.08438;-1.14093;-1.18483;-1.21519;-1.23138;-1.23307;-1.22022;-1.1931;-1.15227;-1.09855;-1.00912;-0.90862;-0.798166;-0.678964;-0.552322;-0.419626;-0.282332;-0.141944;-1.66277e-16;1.66277e-16;0.141944;0.282332;0.419626;0.552322;0.678964;0.798166;0.90862;1.00912;1.09855;1.15227;1.1931;1.22022;1.23307;1.23138;1.21519;1.18483;1.14093;1.08438;0.993708;0.892901;0.782986;0.665083;0.540395;0.410195;0.275811;0.138612;0</y> + <z mapType="vector">1.29468;1.28756;1.26629;1.23107;1.18227;1.12038;1.04605;0.960013;0.863162;0.756481;0.670685;0.577571;0.479045;0.377129;0.273909;0.171503;0.0720081;-0.0225352;-0.110189;-0.222348;-0.324398;-0.415224;-0.493828;-0.55935;-0.611072;-0.648426;-0.671003;-0.678557;-0.678557;-0.671003;-0.648426;-0.611072;-0.55935;-0.493828;-0.415224;-0.324398;-0.222348;-0.110189;-0.0225352;0.0720081;0.171503;0.273909;0.377129;0.479045;0.577571;0.670685;0.756481;0.863162;0.960013;1.04605;1.12038;1.18227;1.23107;1.26629;1.28756;1.29468</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_23ID"> + <name>Profile_Fuselage_23</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.115885;-0.230588;-0.342939;-0.451791;-0.556034;-0.654606;-0.746499;-0.830777;-0.90658;-0.95386;-0.990566;-1.01595;-1.02948;-1.03089;-1.02015;-0.99748;-0.96334;-0.918432;-0.843659;-0.75964;-0.667297;-0.56764;-0.461762;-0.350824;-0.23604;-0.11867;-1.39014e-16;1.39014e-16;0.11867;0.23604;0.350824;0.461762;0.56764;0.667297;0.75964;0.843659;0.918432;0.96334;0.99748;1.02015;1.03089;1.02948;1.01595;0.990566;0.95386;0.90658;0.830777;0.746499;0.654606;0.556034;0.451791;0.342939;0.230588;0.115885;0</y> + <z mapType="vector">1.23706;1.23098;1.21281;1.18273;1.14106;1.08821;1.02473;0.951255;0.868545;0.77744;0.704172;0.624653;0.540513;0.453476;0.365328;0.277873;0.192906;0.112167;0.0373106;-0.0584715;-0.145622;-0.223186;-0.290314;-0.346269;-0.390439;-0.422339;-0.44162;-0.448071;-0.448071;-0.44162;-0.422339;-0.390439;-0.346269;-0.290314;-0.223186;-0.145622;-0.0584715;0.0373106;0.112167;0.192906;0.277873;0.365328;0.453476;0.540513;0.624653;0.704172;0.77744;0.868545;0.951255;1.02473;1.08821;1.14106;1.18273;1.21281;1.23098;1.23706</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_24ID"> + <name>Profile_Fuselage_24</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0920396;-0.18314;-0.272373;-0.358827;-0.44162;-0.519908;-0.592893;-0.659829;-0.720034;-0.757585;-0.786739;-0.806897;-0.817646;-0.818767;-0.810237;-0.79223;-0.765115;-0.729448;-0.670061;-0.60333;-0.529988;-0.450837;-0.366746;-0.278635;-0.187471;-0.0942518;-1.10409e-16;1.10409e-16;0.0942518;0.187471;0.278635;0.366746;0.450837;0.529988;0.60333;0.670061;0.729448;0.765115;0.79223;0.810237;0.818767;0.817646;0.806897;0.786739;0.757585;0.720034;0.659829;0.592893;0.519908;0.44162;0.358827;0.272373;0.18314;0.0920396;0</y> + <z mapType="vector">1.17298;1.16806;1.15334;1.12899;1.09524;1.05243;1.00102;0.941516;0.874531;0.800747;0.741408;0.677007;0.608864;0.538375;0.466986;0.396158;0.327345;0.261956;0.201331;0.12376;0.053178;-0.00963954;-0.0640047;-0.109322;-0.145094;-0.170929;-0.186544;-0.191769;-0.191769;-0.186544;-0.170929;-0.145094;-0.109322;-0.0640047;-0.00963954;0.053178;0.12376;0.201331;0.261956;0.327345;0.396158;0.466986;0.538375;0.608864;0.677007;0.741408;0.800747;0.874531;0.941516;1.00102;1.05243;1.09524;1.12899;1.15334;1.16806;1.17298</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_25ID"> + <name>Profile_Fuselage_25</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0693292;-0.137951;-0.205166;-0.270288;-0.332652;-0.391623;-0.446599;-0.497019;-0.542369;-0.570654;-0.592614;-0.607798;-0.615895;-0.61674;-0.610314;-0.59675;-0.576326;-0.549459;-0.504726;-0.454461;-0.399215;-0.339595;-0.276253;-0.209883;-0.141213;-0.0709956;-8.31663e-17;8.31663e-17;0.0709956;0.141213;0.209883;0.276253;0.339595;0.399215;0.454461;0.504726;0.549459;0.576326;0.59675;0.610314;0.61674;0.615895;0.607798;0.592614;0.570654;0.542369;0.497019;0.446599;0.391623;0.332652;0.270288;0.205166;0.137951;0.0693292;0</y> + <z mapType="vector">1.10741;1.10367;1.09249;1.07399;1.04834;1.01582;0.976759;0.93155;0.880656;0.824597;0.779513;0.730583;0.67881;0.625254;0.571014;0.517201;0.464918;0.415237;0.369176;0.310239;0.256613;0.208886;0.167581;0.13315;0.105971;0.0863423;0.0744781;0.0705089;0.0705089;0.0744781;0.0863423;0.105971;0.13315;0.167581;0.208886;0.256613;0.310239;0.369176;0.415237;0.464918;0.517201;0.571014;0.625254;0.67881;0.730583;0.779513;0.824597;0.880656;0.93155;0.976759;1.01582;1.04834;1.07399;1.09249;1.10367;1.10741</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_26ID"> + <name>Profile_Fuselage_26</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.049198;-0.0978941;-0.145592;-0.191804;-0.236059;-0.277907;-0.31692;-0.352699;-0.384881;-0.404953;-0.420536;-0.431311;-0.437057;-0.437656;-0.433097;-0.423471;-0.408977;-0.389912;-0.358168;-0.322499;-0.283295;-0.240986;-0.196037;-0.148939;-0.100209;-0.0503805;-5.90172e-17;5.90172e-17;0.0503805;0.100209;0.148939;0.196037;0.240986;0.283295;0.322499;0.358168;0.389912;0.408977;0.423471;0.433097;0.437656;0.437057;0.431311;0.420536;0.404953;0.384881;0.352699;0.31692;0.277907;0.236059;0.191804;0.145592;0.0978941;0.049198;0</y> + <z mapType="vector">1.04425;1.04165;1.03388;1.02101;1.00317;0.980557;0.953391;0.92195;0.886557;0.847571;0.816218;0.78219;0.746185;0.70894;0.671219;0.633796;0.597436;0.562886;0.530853;0.489866;0.452573;0.419381;0.390656;0.366711;0.34781;0.334159;0.325909;0.323148;0.323148;0.325909;0.334159;0.34781;0.366711;0.390656;0.419381;0.452573;0.489866;0.530853;0.562886;0.597436;0.633796;0.671219;0.70894;0.746185;0.78219;0.816218;0.847571;0.886557;0.92195;0.953391;0.980557;1.00317;1.02101;1.03388;1.04165;1.04425</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_27ID"> + <name>Profile_Fuselage_27</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0327759;-0.0652174;-0.0969936;-0.12778;-0.157264;-0.185143;-0.211133;-0.234969;-0.256409;-0.269781;-0.280162;-0.287341;-0.291169;-0.291568;-0.28853;-0.282118;-0.272462;-0.259761;-0.238613;-0.21485;-0.188732;-0.160546;-0.1306;-0.0992237;-0.0667595;-0.0335637;-3.93175e-17;3.93175e-17;0.0335637;0.0667595;0.0992237;0.1306;0.160546;0.188732;0.21485;0.238613;0.259761;0.272462;0.282118;0.28853;0.291568;0.291169;0.287341;0.280162;0.269781;0.256409;0.234969;0.211133;0.185143;0.157264;0.12778;0.0969936;0.0652174;0.0327759;0</y> + <z mapType="vector">0.988024;0.986438;0.981694;0.973842;0.962961;0.949162;0.932587;0.913404;0.891809;0.868023;0.848893;0.828131;0.806163;0.783439;0.760424;0.737591;0.715406;0.694326;0.674782;0.649774;0.62702;0.606769;0.589242;0.574633;0.563101;0.554772;0.549738;0.548053;0.548053;0.549738;0.554772;0.563101;0.574633;0.589242;0.606769;0.62702;0.649774;0.674782;0.694326;0.715406;0.737591;0.760424;0.783439;0.806163;0.828131;0.848893;0.868023;0.891809;0.913404;0.932587;0.949162;0.962961;0.973842;0.981694;0.986438;0.988024</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_28ID"> + <name>Profile_Fuselage_28</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0207606;-0.0413094;-0.0614368;-0.0809375;-0.0996125;-0.117271;-0.133734;-0.148832;-0.162412;-0.170882;-0.177458;-0.182005;-0.18443;-0.184682;-0.182758;-0.178696;-0.17258;-0.164535;-0.15114;-0.136088;-0.119545;-0.101692;-0.0827237;-0.0628493;-0.0422862;-0.0212596;-2.49041e-17;2.49041e-17;0.0212596;0.0422862;0.0628493;0.0827237;0.101692;0.119545;0.136088;0.15114;0.164535;0.17258;0.178696;0.182758;0.184682;0.18443;0.182005;0.177458;0.170882;0.162412;0.148832;0.133734;0.117271;0.0996125;0.0809375;0.0614368;0.0413094;0.0207606;0</y> + <z mapType="vector">0.943811;0.943021;0.940661;0.936754;0.931341;0.924475;0.916229;0.906684;0.89594;0.884105;0.874587;0.864258;0.853328;0.842021;0.83057;0.81921;0.808172;0.797684;0.78796;0.775518;0.764196;0.754121;0.745401;0.738132;0.732394;0.72825;0.725745;0.724907;0.724907;0.725745;0.72825;0.732394;0.738132;0.745401;0.754121;0.764196;0.775518;0.78796;0.797684;0.808172;0.81921;0.83057;0.842021;0.853328;0.864258;0.874587;0.884105;0.89594;0.906684;0.916229;0.924475;0.931341;0.936754;0.940661;0.943021;0.943811</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_29ID"> + <name>Profile_Fuselage_29</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0134438;-0.0267504;-0.0397841;-0.052412;-0.0645053;-0.0759405;-0.086601;-0.096378;-0.105172;-0.110657;-0.114915;-0.117859;-0.11943;-0.119593;-0.118347;-0.115717;-0.111757;-0.106547;-0.0978725;-0.0881255;-0.0774127;-0.0658516;-0.0535688;-0.0406989;-0.0273829;-0.0137669;-1.6127e-17;1.6127e-17;0.0137669;0.0273829;0.0406989;0.0535688;0.0658516;0.0774127;0.0881255;0.0978725;0.106547;0.111757;0.115717;0.118347;0.119593;0.11943;0.117859;0.114915;0.110657;0.105172;0.096378;0.086601;0.0759405;0.0645053;0.052412;0.0397841;0.0267504;0.0134438;0</y> + <z mapType="vector">0.915758;0.915474;0.914626;0.913223;0.911278;0.908812;0.905849;0.90242;0.898561;0.894309;0.89089;0.887179;0.883253;0.879191;0.875078;0.870996;0.867031;0.863264;0.85977;0.855301;0.851234;0.847614;0.844481;0.84187;0.839809;0.83832;0.837421;0.83712;0.83712;0.837421;0.83832;0.839809;0.84187;0.844481;0.847614;0.851234;0.855301;0.85977;0.863264;0.867031;0.870996;0.875078;0.879191;0.883253;0.887179;0.89089;0.894309;0.898561;0.90242;0.905849;0.908812;0.911278;0.913223;0.914626;0.915474;0.915758</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_30ID"> + <name>Profile_Fuselage_30</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0109799;-0.0218478;-0.0324928;-0.0428063;-0.0526831;-0.0620226;-0.0707293;-0.0787144;-0.0858966;-0.0903763;-0.0938541;-0.0962589;-0.0975413;-0.097675;-0.0966574;-0.0945092;-0.0912745;-0.0870196;-0.079935;-0.0719744;-0.063225;-0.0537827;-0.043751;-0.0332398;-0.0223644;-0.0112438;-1.31713e-17;1.31713e-17;0.0112438;0.0223644;0.0332398;0.043751;0.0537827;0.063225;0.0719744;0.079935;0.0870196;0.0912745;0.0945092;0.0966574;0.097675;0.0975413;0.0962589;0.0938541;0.0903763;0.0858966;0.0787144;0.0707293;0.0620226;0.0526831;0.0428063;0.0324928;0.0218478;0.0109799;0</y> + <z mapType="vector">0.906311;0.906198;0.905859;0.905299;0.904522;0.903537;0.902354;0.900985;0.899443;0.897745;0.89638;0.894898;0.89333;0.891708;0.890065;0.888435;0.886852;0.885347;0.883952;0.882167;0.880543;0.879097;0.877846;0.876804;0.87598;0.875386;0.875027;0.874906;0.874906;0.875027;0.875386;0.87598;0.876804;0.877846;0.879097;0.880543;0.882167;0.883952;0.885347;0.886852;0.888435;0.890065;0.891708;0.89333;0.894898;0.89638;0.897745;0.899443;0.900985;0.902354;0.903537;0.904522;0.905299;0.905859;0.906198;0.906311</z> + </pointList> + </fuselageProfile> + </fuselageProfiles> + </profiles> + <engines> + <engine uID="engine"> + <description>AGILE DC-1 Reference Engine 1</description> + <analysis> + <performanceMaps> + <performanceMap> + <flightLevel mapType="vector"> 120 </flightLevel> + <machNumber mapType="vector"> 0.9 </machNumber> + <thrust mapType="vector"> </thrust> + <mDotFuel mapType="vector"></mDotFuel> + </performanceMap> + </performanceMaps> + <mass> + <mass>2266.0</mass> + </mass> + <bpr00>4.4</bpr00> + <thrust00>61367.6832837</thrust00> + </analysis> + <geometry> + <diameter>1.40118975114</diameter> + <length>2.41986362808</length> + </geometry> + <transformation> + <translation refType="absLocal"> + <x>13.6765</x> + <y>5.7482</y> + <z>-2.33895</z> + </translation> + </transformation> + </engine> + </engines> + <materials> + <material uID="aluminium2024"> + <rho>2.8e3</rho> + <k11>80.9561216474e9</k11> + <sig11>0.3268e9</sig11> + </material> + <material uID="aluminium7075"> + <rho>2.8e3</rho> + <k11>80.9561216474e9</k11> + <sig11>0.3268e9</sig11> + </material> + </materials> + <fuels> + <fuel> + <density>804</density> + <kinematicViscosity>0.000008</kinematicViscosity> + </fuel> + </fuels> + </vehicles> + <missions> + <mission uID="mission_UID"> + <segments> + <segment uID=""> + <constraints> + <constraintAltitude mapType="vector">0</constraintAltitude> + </constraints> + </segment> + </segments> + </mission> + </missions> + <toolspecific> + <initiator> + <settings> + <NumberOfFlights>100000</NumberOfFlights> + <AirworthinessRegulations>Far-25</AirworthinessRegulations> + <LoiterTime>30</LoiterTime> + <DivRange>500</DivRange> + <WingLocation>Low</WingLocation> + <TailType>Standard</TailType> + <RootAirfoil>boeing-a</RootAirfoil> + <KinkAirfoil>boeing-b</KinkAirfoil> + <TipAirfoil>boeing-c</TipAirfoil> + <Parts mainPart="Fuselage"> + <fuselage name="Fuselage" type="Conventional"/> + <wing name="Main Wing" type="MainWing"/> + <wing name="Horizontal Stabiliser" type="HorizontalTail"/> + <wing name="Vertical Stabiliser" type="VerticalTail"/> + <engine name="Engine-1" type="TurboFan"> + <location>Main Wing</location> + <bypassRatio>6.0</bypassRatio> + </engine> + <engine name="Engine-2" type="TurboFan"> + <location>Main Wing</location> + <bypassRatio>6.0</bypassRatio> + </engine> + </Parts> + </settings> + <initialguesses> + <LDmax>16</LDmax> + <SFC>0.5</SFC> + <FFStartUp>0.990</FFStartUp> + <FFTaxi>0.990</FFTaxi> + <CLmaxLanding>3.2</CLmaxLanding> + <CLmaxTakeOff>2.2</CLmaxTakeOff> + <CLmaxClean>1.2</CLmaxClean> + <WingAspectRatio>9.39</WingAspectRatio> + </initialguesses> + </initiator> + <proteus> + <inputData> + <wingUID>MainWing_wingID</wingUID> + <beamElements>8</beamElements> + <spanwisePanels>12</spanwisePanels> + <chordwisePanels>10</chordwisePanels> + <crosssectionalElements>75</crosssectionalElements> + <linear>1</linear> + <trim>1</trim> + <weightDefinition>1</weightDefinition> + <gravity>1</gravity> + <graphic>0</graphic> + </inputData> + <outputData> + <loadCases> + </loadCases> + </outputData> + </proteus> + <q3D> + <aircraftmodelUID>agile_v13_modelID</aircraftmodelUID> + <typeOfRun>flightLoadCase</typeOfRun> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + <flightLoadCaseUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m</flightLoadCaseUID> + </q3D> + <EMWET uID="EMWET"> + <wingUID>MainWing_wingID</wingUID> + <loadcaseUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m</loadcaseUID> + <preferences> + <preference_description>"model" to obtain from model, "given" to take given value</preference_description> + <spar_pref>model</spar_pref> + <fueltank_pref>given</fueltank_pref> + <rib_pref>model</rib_pref> + </preferences> + <spars> + <spar_start_x>0.2</spar_start_x> + <spar_end_x>0.8</spar_end_x> + </spars> + <fueltank> + <fueltank_start_y>0.1</fueltank_start_y> + <fueltank_end_y>0.7</fueltank_end_y> + </fueltank> + <stringer_efficiency>0.96</stringer_efficiency> + <ribpitch>0.5</ribpitch> + <display>0</display> + </EMWET> + </toolspecific> +</cpacs> \ No newline at end of file diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/KB_TUD_AGILE_DC1/AGILE_DC1_L0_MDA-base.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/KB_TUD_AGILE_DC1/AGILE_DC1_L0_MDA-base.xml new file mode 100644 index 0000000000000000000000000000000000000000..f5f163dac5845bd95812190d1e8b43855254d22a --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/KB_TUD_AGILE_DC1/AGILE_DC1_L0_MDA-base.xml @@ -0,0 +1,5309 @@ +<?xml version="1.0" encoding="UTF-8"?> +<cpacs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="cpacs_schema.xsd"> + <header> + <name>AGILE_DC-1_Reference_L0_MDA</name> + <version>1.0</version> + <cpacsVersion>2.3</cpacsVersion> + <creator>AGILE WP2 L0</creator> + <description>AGILE D2.5 - Reference Aircraft Design Challenge L0</description> + <timestamp>2016-03-20T20:51:00</timestamp> + <updates> + <update> + <timestamp>2016-03-20T20:51:00</timestamp> + <version>1</version> + <cpacsVersion> 2 </cpacsVersion> + <modification>Initial Synthesis</modification> + <creator>TUD</creator> + </update> + </updates> + </header> + <vehicles> + <aircraft> + <model uID="agile_v13_modelID"> + <name>Agile-DC1-v13</name> + <description>Agile DC1 v13: 2:2 abreast 9180kg, right fuselage dims, medium BPR engine (6), max payload+range mission, LFL 1400 and TOFL 1500m, increased CLmax values</description> + <reference> + <point> + <x>15.6949</x> + <y>0.0</y> + <z>0.0</z> + </point> + <length>3.7317</length> + <area>82.7</area> + </reference> + <fuselages> + <fuselage uID="Fuselage_fuselageID"> + <name>Fuselage</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <sections> + <section uID="Fuselage_fuselageSection1ID"> + <name>FuselageSection1</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection1Element1ID"> + <name>FuselageSection1</name> + <profileUID>Profile_Fuselage_1ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection2ID"> + <name>FuselageSection2</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection2Element1ID"> + <name>FuselageSection2</name> + <profileUID>Profile_Fuselage_2ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection3ID"> + <name>FuselageSection3</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection3Element1ID"> + <name>FuselageSection3</name> + <profileUID>Profile_Fuselage_3ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection4ID"> + <name>FuselageSection4</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection4Element1ID"> + <name>FuselageSection4</name> + <profileUID>Profile_Fuselage_4ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection5ID"> + <name>FuselageSection5</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection5Element1ID"> + <name>FuselageSection5</name> + <profileUID>Profile_Fuselage_5ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection6ID"> + <name>FuselageSection6</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection6Element1ID"> + <name>FuselageSection6</name> + <profileUID>Profile_Fuselage_6ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection7ID"> + <name>FuselageSection7</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection7Element1ID"> + <name>FuselageSection7</name> + <profileUID>Profile_Fuselage_7ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection8ID"> + <name>FuselageSection8</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection8Element1ID"> + <name>FuselageSection8</name> + <profileUID>Profile_Fuselage_8ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection9ID"> + <name>FuselageSection9</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection9Element1ID"> + <name>FuselageSection9</name> + <profileUID>Profile_Fuselage_9ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection10ID"> + <name>FuselageSection10</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection10Element1ID"> + <name>FuselageSection10</name> + <profileUID>Profile_Fuselage_10ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection11ID"> + <name>FuselageSection11</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection11Element1ID"> + <name>FuselageSection11</name> + <profileUID>Profile_Fuselage_11ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection12ID"> + <name>FuselageSection12</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection12Element1ID"> + <name>FuselageSection12</name> + <profileUID>Profile_Fuselage_12ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection13ID"> + <name>FuselageSection13</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection13Element1ID"> + <name>FuselageSection13</name> + <profileUID>Profile_Fuselage_13ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection14ID"> + <name>FuselageSection14</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection14Element1ID"> + <name>FuselageSection14</name> + <profileUID>Profile_Fuselage_14ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection15ID"> + <name>FuselageSection15</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection15Element1ID"> + <name>FuselageSection15</name> + <profileUID>Profile_Fuselage_15ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection16ID"> + <name>FuselageSection16</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection16Element1ID"> + <name>FuselageSection16</name> + <profileUID>Profile_Fuselage_16ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection17ID"> + <name>FuselageSection17</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection17Element1ID"> + <name>FuselageSection17</name> + <profileUID>Profile_Fuselage_17ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection18ID"> + <name>FuselageSection18</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection18Element1ID"> + <name>FuselageSection18</name> + <profileUID>Profile_Fuselage_18ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection19ID"> + <name>FuselageSection19</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection19Element1ID"> + <name>FuselageSection19</name> + <profileUID>Profile_Fuselage_19ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection20ID"> + <name>FuselageSection20</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection20Element1ID"> + <name>FuselageSection20</name> + <profileUID>Profile_Fuselage_20ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection21ID"> + <name>FuselageSection21</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection21Element1ID"> + <name>FuselageSection21</name> + <profileUID>Profile_Fuselage_21ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection22ID"> + <name>FuselageSection22</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection22Element1ID"> + <name>FuselageSection22</name> + <profileUID>Profile_Fuselage_22ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection23ID"> + <name>FuselageSection23</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection23Element1ID"> + <name>FuselageSection23</name> + <profileUID>Profile_Fuselage_23ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection24ID"> + <name>FuselageSection24</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection24Element1ID"> + <name>FuselageSection24</name> + <profileUID>Profile_Fuselage_24ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection25ID"> + <name>FuselageSection25</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection25Element1ID"> + <name>FuselageSection25</name> + <profileUID>Profile_Fuselage_25ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection26ID"> + <name>FuselageSection26</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection26Element1ID"> + <name>FuselageSection26</name> + <profileUID>Profile_Fuselage_26ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection27ID"> + <name>FuselageSection27</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection27Element1ID"> + <name>FuselageSection27</name> + <profileUID>Profile_Fuselage_27ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection28ID"> + <name>FuselageSection28</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection28Element1ID"> + <name>FuselageSection28</name> + <profileUID>Profile_Fuselage_28ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection29ID"> + <name>FuselageSection29</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection29Element1ID"> + <name>FuselageSection29</name> + <profileUID>Profile_Fuselage_29ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection30ID"> + <name>FuselageSection30</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection30Element1ID"> + <name>FuselageSection30</name> + <profileUID>Profile_Fuselage_30ID</profileUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="Fuselage_fuselagePositioning1ID"> + <name>FuselagePositioning1</name> + <length>0.021104</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>Fuselage_fuselageSection1ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning2ID"> + <name>FuselagePositioning2</name> + <length>0.0849068</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection2ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning3ID"> + <name>FuselagePositioning3</name> + <length>0.274377</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection3ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning4ID"> + <name>FuselagePositioning4</name> + <length>0.583757</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection4ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning5ID"> + <name>FuselagePositioning5</name> + <length>1.00365</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection5ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning6ID"> + <name>FuselagePositioning6</name> + <length>1.52129</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection6ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning7ID"> + <name>FuselagePositioning7</name> + <length>2.12095</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection7ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning8ID"> + <name>FuselagePositioning8</name> + <length>2.78442</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection8ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning9ID"> + <name>FuselagePositioning9</name> + <length>3.49153</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection9ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning10ID"> + <name>FuselagePositioning10</name> + <length>4.2208</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection10ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning11ID"> + <name>FuselagePositioning11</name> + <length>4.6862</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection11ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning12ID"> + <name>FuselagePositioning12</name> + <length>6.04468</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection12ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning13ID"> + <name>FuselagePositioning13</name> + <length>8.1862</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection13ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning14ID"> + <name>FuselagePositioning14</name> + <length>10.9373</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection14ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning15ID"> + <name>FuselagePositioning15</name> + <length>14.075</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection15ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning16ID"> + <name>FuselagePositioning16</name> + <length>17.3452</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection16ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning17ID"> + <name>FuselagePositioning17</name> + <length>20.4829</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection17ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning18ID"> + <name>FuselagePositioning18</name> + <length>23.234</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection18ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning19ID"> + <name>FuselagePositioning19</name> + <length>25.3755</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection19ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning20ID"> + <name>FuselagePositioning20</name> + <length>26.734</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection20ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning21ID"> + <name>FuselagePositioning21</name> + <length>27.1994</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection21ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning22ID"> + <name>FuselagePositioning22</name> + <length>28.3683</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection22ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning23ID"> + <name>FuselagePositioning23</name> + <length>29.5018</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection23ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning24ID"> + <name>FuselagePositioning24</name> + <length>30.5653</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection24ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning25ID"> + <name>FuselagePositioning25</name> + <length>31.5265</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection25ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning26ID"> + <name>FuselagePositioning26</name> + <length>32.3562</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection26ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning27ID"> + <name>FuselagePositioning27</name> + <length>33.0293</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection27ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning28ID"> + <name>FuselagePositioning28</name> + <length>33.5252</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection28ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning29ID"> + <name>FuselagePositioning29</name> + <length>33.8289</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection29ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning30ID"> + <name>FuselagePositioning30</name> + <length>33.9312</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection30ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="Fuselage_fuselageSegment1ID"> + <name>FuselageSegment1</name> + <fromElementUID>Fuselage_fuselageSection1Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection2Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment2ID"> + <name>FuselageSegment2</name> + <fromElementUID>Fuselage_fuselageSection2Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection3Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment3ID"> + <name>FuselageSegment3</name> + <fromElementUID>Fuselage_fuselageSection3Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection4Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment4ID"> + <name>FuselageSegment4</name> + <fromElementUID>Fuselage_fuselageSection4Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection5Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment5ID"> + <name>FuselageSegment5</name> + <fromElementUID>Fuselage_fuselageSection5Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection6Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment6ID"> + <name>FuselageSegment6</name> + <fromElementUID>Fuselage_fuselageSection6Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection7Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment7ID"> + <name>FuselageSegment7</name> + <fromElementUID>Fuselage_fuselageSection7Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection8Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment8ID"> + <name>FuselageSegment8</name> + <fromElementUID>Fuselage_fuselageSection8Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection9Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment9ID"> + <name>FuselageSegment9</name> + <fromElementUID>Fuselage_fuselageSection9Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection10Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment10ID"> + <name>FuselageSegment10</name> + <fromElementUID>Fuselage_fuselageSection10Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection11Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment11ID"> + <name>FuselageSegment11</name> + <fromElementUID>Fuselage_fuselageSection11Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection12Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment12ID"> + <name>FuselageSegment12</name> + <fromElementUID>Fuselage_fuselageSection12Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection13Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment13ID"> + <name>FuselageSegment13</name> + <fromElementUID>Fuselage_fuselageSection13Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection14Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment14ID"> + <name>FuselageSegment14</name> + <fromElementUID>Fuselage_fuselageSection14Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection15Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment15ID"> + <name>FuselageSegment15</name> + <fromElementUID>Fuselage_fuselageSection15Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection16Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment16ID"> + <name>FuselageSegment16</name> + <fromElementUID>Fuselage_fuselageSection16Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection17Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment17ID"> + <name>FuselageSegment17</name> + <fromElementUID>Fuselage_fuselageSection17Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection18Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment18ID"> + <name>FuselageSegment18</name> + <fromElementUID>Fuselage_fuselageSection18Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection19Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment19ID"> + <name>FuselageSegment19</name> + <fromElementUID>Fuselage_fuselageSection19Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection20Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment20ID"> + <name>FuselageSegment20</name> + <fromElementUID>Fuselage_fuselageSection20Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection21Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment21ID"> + <name>FuselageSegment21</name> + <fromElementUID>Fuselage_fuselageSection21Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection22Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment22ID"> + <name>FuselageSegment22</name> + <fromElementUID>Fuselage_fuselageSection22Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection23Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment23ID"> + <name>FuselageSegment23</name> + <fromElementUID>Fuselage_fuselageSection23Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection24Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment24ID"> + <name>FuselageSegment24</name> + <fromElementUID>Fuselage_fuselageSection24Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection25Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment25ID"> + <name>FuselageSegment25</name> + <fromElementUID>Fuselage_fuselageSection25Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection26Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment26ID"> + <name>FuselageSegment26</name> + <fromElementUID>Fuselage_fuselageSection26Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection27Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment27ID"> + <name>FuselageSegment27</name> + <fromElementUID>Fuselage_fuselageSection27Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection28Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment28ID"> + <name>FuselageSegment28</name> + <fromElementUID>Fuselage_fuselageSection28Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection29Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment29ID"> + <name>FuselageSegment29</name> + <fromElementUID>Fuselage_fuselageSection29Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection30Element1ID</toElementUID> + </segment> + </segments> + </fuselage> + </fuselages> + <wings> + <wing symmetry="x-z-plane" uID="MainWing_wingID"> + <name>MainWing</name> + <parentUID>Fuselage_fuselageID</parentUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>2</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>12.2479</x> + <y>0</y> + <z>-0.90003</z> + </translation> + </transformation> + <sections> + <section uID="MainWing_wingSection1ID"> + <name>MainWingSection1</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="MainWing_wingSection1Element1ID"> + <name>MainWingSection1</name> + <airfoilUID>Profile_MainWing_1ID</airfoilUID> + <transformation> + <scaling> + <x>6.3923</x> + <y>6.3923</y> + <z>6.3923</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="MainWing_wingSection2ID"> + <name>MainWingSection2</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="MainWing_wingSection2Element1ID"> + <name>MainWingSection2</name> + <airfoilUID>Profile_MainWing_2ID</airfoilUID> + <transformation> + <scaling> + <x>2.71737</x> + <y>2.71737</y> + <z>2.71737</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="MainWing_wingSection3ID"> + <name>MainWingSection3</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="MainWing_wingSection3Element1ID"> + <name>MainWingSection3</name> + <airfoilUID>Profile_MainWing_3ID</airfoilUID> + <transformation> + <scaling> + <x>1.05165</x> + <y>1.05165</y> + <z>1.05165</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="MainWing_wingPositioning1ID"> + <name>MainWingPositioning1</name> + <length>0</length> + <sweepAngle>0</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>MainWing_wingSection1ID</toSectionUID> + </positioning> + <positioning uID="MainWing_wingPositioning2ID"> + <name>MainWingPositioning2</name> + <length>6.73236</length> + <sweepAngle>33.2273</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>MainWing_wingSection1ID</fromSectionUID> + <toSectionUID>MainWing_wingSection2ID</toSectionUID> + </positioning> + <positioning uID="MainWing_wingPositioning3ID"> + <name>MainWingPositioning3</name> + <length>9.60746</length> + <sweepAngle>28.4037</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>MainWing_wingSection2ID</fromSectionUID> + <toSectionUID>MainWing_wingSection3ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="MainWing_wingSegment1ID"> + <name>MainWingSegment1</name> + <fromElementUID>MainWing_wingSection1Element1ID</fromElementUID> + <toElementUID>MainWing_wingSection2Element1ID</toElementUID> + </segment> + <segment uID="MainWing_wingSegment2ID"> + <name>MainWingSegment2</name> + <fromElementUID>MainWing_wingSection2Element1ID</fromElementUID> + <toElementUID>MainWing_wingSection3Element1ID</toElementUID> + </segment> + </segments> + <componentSegments> + <componentSegment uID="wing_Cseg"> + <name>wing_CSeg</name> + <description>wing_CSeg</description> + <fromElementUID isLink="True">MainWing_wingSection1Element1ID</fromElementUID> + <toElementUID isLink="True">MainWing_wingSection3Element1ID</toElementUID> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="wing_ribs_inner"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>frontSpar</ribReference> + <etaStart>0.0</etaStart> + <etaEnd>0.106761565836</etaEnd> + <ribStart>frontSpar</ribStart> + <ribEnd>rearSpar</ribEnd> + <numberOfRibs>4</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_engine1"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>frontSpar</ribReference> + <etaStart>0.163701067616</etaStart> + <etaEnd>0.286476868327</etaEnd> + <ribStart>frontSpar</ribStart> + <ribEnd>rearSpar</ribEnd> + <numberOfRibs>3</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_engine2"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>frontSpar</ribReference> + <etaStart>0.163701067616</etaStart> + <etaEnd>0.313523131673</etaEnd> + <ribStart>frontSpar</ribStart> + <ribEnd>rearSpar</ribEnd> + <numberOfRibs>1</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_outer"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>frontSpar</ribReference> + <etaStart>0.370462633452</etaStart> + <etaEnd>0.95</etaEnd> + <ribStart>frontSpar</ribStart> + <ribEnd>rearSpar</ribEnd> + <numberOfRibs>11</numberOfRibs> + <ribCrossingBehaviour>end</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>frontSpar</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="frontSpar_P0"> + <eta>0.0</eta> + <xsi>0.1</xsi> + </sparPosition> + <sparPosition uID="frontSpar_P1"> + <eta>0.106761565836</eta> + <xsi>0.1</xsi> + </sparPosition> + <sparPosition uID="frontSpar_P2"> + <eta>1.0</eta> + <xsi>0.460829493088</xsi> + </sparPosition> + <sparPosition uID="rearSpar_P0"> + <eta>0.0</eta> + <xsi>0.56</xsi> + </sparPosition> + <sparPosition uID="rearSpar_P1"> + <eta>0.106761565836</eta> + <xsi>0.56</xsi> + </sparPosition> + <sparPosition uID="rearSpar_P2"> + <eta>0.350213340505</eta> + <xsi>0.6</xsi> + </sparPosition> + <sparPosition uID="rearSpar_P3"> + <eta>1.0</eta> + <xsi>0.59</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="frontSpar"> + <name>frontSpar</name> + <description>frontSpar</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">frontSpar_P0</sparPositionUID> + <sparPositionUID isLink="True">frontSpar_P1</sparPositionUID> + <sparPositionUID isLink="True">frontSpar_P2</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="rearSpar"> + <name>rearSpar</name> + <description>rearSpar</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">rearSpar_P0</sparPositionUID> + <sparPositionUID isLink="True">rearSpar_P1</sparPositionUID> + <sparPositionUID isLink="True">rearSpar_P2</sparPositionUID> + <sparPositionUID isLink="True">rearSpar_P3</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <controlSurfaces> + <leadingEdgeDevices> + <leadingEdgeDevice uID="InnerSlat1UID"> + <name>InnerSlat1</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.12</etaLE> + <xsiTEUpper>0.0551328511278</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.33</etaLE> + <xsiTEUpper>0.0617900779981</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + <leadingEdgeDevice uID="OuterSlat1UID"> + <name>OuterSlat1</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.4</etaLE> + <xsiTEUpper>0.0765222350228</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.56</etaLE> + <xsiTEUpper>0.088656031377</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + <leadingEdgeDevice uID="OuterSlat2UID"> + <name>OuterSlat2</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.57</etaLE> + <xsiTEUpper>0.088656031377</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.73</etaLE> + <xsiTEUpper>0.102475793192</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + <leadingEdgeDevice uID="OuterSlat3UID"> + <name>OuterSlat3</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.74</etaLE> + <xsiTEUpper>0.102475793192</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.95</etaLE> + <xsiTEUpper>0.121399652732</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + </leadingEdgeDevices> + <trailingEdgeDevices> + <trailingEdgeDevice uID="aileronUID"> + <name>aileron</name> + <description>aileron from VAMPzero</description> + <parentUID isLink="True">wing_Cseg</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.79</etaLE> + <etaTE>0.79</etaTE> + <xsiLE>0.69323182997</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.96</etaLE> + <etaTE>0.96</etaTE> + <xsiLE>0.690615586661</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="aileronUID_ribs"> + <name>aileron_ribs</name> + <ribsPositioning> + <ribReference>aileronUID_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <spacing>0.25</spacing> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="aileronUID_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="aileronUID_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="aileronUID_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.7</xsi> + </sparPosition> + <sparPosition uID="aileronUID_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.7</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="aileronUID_Spar_FS"> + <name>aileronUID_Spar_FS</name> + <description>aileronUID_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">aileronUID_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">aileronUID_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="aileronUID_Spar_RS"> + <name>aileronUID_Spar_RS</name> + <description>aileronUID_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">aileronUID_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">aileronUID_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <path> + <innerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + <tracks> + <track uID="controlSurfaceID_track_1"> + <eta>0.25</eta> + <trackType>trackType1</trackType> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + </trackStructure> + </track> + <track uID="controlSurfaceID_track_2"> + <eta>0.75</eta> + <trackType>trackType1</trackType> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + </trackStructure> + </track> + </tracks> + <actuators> + <actuator uID="aileron_actuator1"> + <actuatorUID isLink="True">Aileron_Act1</actuatorUID> + <attachment> + <etaControlSurface>0.3</etaControlSurface> + <parentAttachment> + <parentXsi>0.612446956977</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </parentAttachment> + <controlSurfaceAttachment> + <parentXsi>0.712446956977</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </controlSurfaceAttachment> + </attachment> + </actuator> + <actuator uID="aileron_actuator2"> + <actuatorUID isLink="True">Aileron_Act2</actuatorUID> + <attachment> + <etaControlSurface>0.7</etaControlSurface> + <parentAttachment> + <parentXsi>0.611400459653</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </parentAttachment> + <controlSurfaceAttachment> + <parentXsi>0.711400459653</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </controlSurfaceAttachment> + </attachment> + </actuator> + </actuators> + </trailingEdgeDevice> + <trailingEdgeDevice uID="innerFlapUID"> + <name>innerFlap</name> + <description>innerFlap from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.12</etaLE> + <etaTE>0.12</etaTE> + <xsiLE>0.75</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.4</etaLE> + <etaTE>0.4</etaTE> + <xsiLE>0.68</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="innerFlapUID_ribs"> + <name>flap_ribs</name> + <ribsPositioning> + <ribReference>innerFlapUID_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>20</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="innerFlapUID_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="innerFlapUID_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="innerFlapUID_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.7</xsi> + </sparPosition> + <sparPosition uID="innerFlapUID_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.7</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="innerFlapUID_Spar_FS"> + <name>innerFlapUID_Spar_FS</name> + <description>innerFlapUID_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">innerFlapUID_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">innerFlapUID_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="innerFlapUID_Spar_RS"> + <name>innerFlapUID_Spar_RS</name> + <description>innerFlapUID_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">innerFlapUID_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">innerFlapUID_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <path> + <innerHingePoint> + <hingeXsi>0.789562336672</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.68</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>10</relDeflection> + <innerHingeTranslation> + <x>0.254449784009</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.254449784009</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>10.0</hingeLineRotation> + </step> + <step> + <relDeflection>40</relDeflection> + <innerHingeTranslation> + <x>0.508899568018</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.508899568018</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>40.0</hingeLineRotation> + </step> + </steps> + </path> + <tracks> + <track uID="innerFlapUID_track_1"> + <eta>0.0</eta> + <trackType>trackType3</trackType> + <trackSubType>trackSubType2</trackSubType> + <actuator uID="innerFlapUID_track_1_actuatorUID"> + <actuatorUID isLink="true">Act_FT1</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + <track uID="innerFlapUID_track_2"> + <eta>0.66</eta> + <trackType>trackType3</trackType> + <actuator uID="innerFlapUID_track_2_actuatorUID"> + <actuatorUID isLink="true">Act_FT2</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + </tracks> + </trailingEdgeDevice> + <trailingEdgeDevice uID="outerFlap1UID"> + <name>outerFlap1</name> + <description>innerFlap from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.4</etaLE> + <etaTE>0.4</etaTE> + <xsiLE>0.68</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.75</etaLE> + <etaTE>0.75</etaTE> + <xsiLE>0.68</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="outerFlap1UID_ribs"> + <name>flap_ribs</name> + <ribsPositioning> + <ribReference>outerFlap1UID_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>20</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.001</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="outerFlap1UID_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="outerFlap1UID_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="outerFlap1UID_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.7</xsi> + </sparPosition> + <sparPosition uID="outerFlap1UID_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.7</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="outerFlap1UID_Spar_FS"> + <name>outerFlap1UID_Spar_FS</name> + <description>outerFlap1UID_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">outerFlap1UID_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">outerFlap1UID_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="outerFlap1UID_Spar_RS"> + <name>outerFlap1UID_Spar_RS</name> + <description>outerFlap1UID_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">outerFlap1UID_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">outerFlap1UID_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <path> + <innerHingePoint> + <hingeXsi>0.68</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.718480649649</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>10</relDeflection> + <innerHingeTranslation> + <x>0.254449784009</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.1445249844</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>10.0</hingeLineRotation> + </step> + <step> + <relDeflection>40</relDeflection> + <innerHingeTranslation> + <x>0.508899568018</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.2890499688</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>40.0</hingeLineRotation> + </step> + </steps> + </path> + <tracks> + <track uID="outerFlap1UID_track_1"> + <eta>0.275</eta> + <trackType>trackType3</trackType> + <actuator uID="outerFlap1UID_track_1_actuatorUID"> + <actuatorUID isLink="true">Act_FT3</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + <track uID="outerFlap1UID_track_2"> + <eta>0.725</eta> + <trackType>trackType3</trackType> + <actuator uID="outerFlap1UID_track_2_actuatorUID"> + <actuatorUID isLink="true">Act_FT4</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + </tracks> + <cruiseRollers> + <cruiseRoller uID="outerFlap1UID_CR1"> + <position> + <eta>0.02</eta> + <xsi>0.05</xsi> + <relHeight>0.3</relHeight> + </position> + <parentAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </parentAttachment> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <blockedDOF> + <positive>False</positive> + <negative>True</negative> + </blockedDOF> + </cruiseRoller> + </cruiseRollers> + </trailingEdgeDevice> + </trailingEdgeDevices> + </controlSurfaces> + <wingFuselageAttachments> + <wingFuselageAttachment> + <rib1> + <ribDefinitionUID isLink="True">wing_ribs_inner</ribDefinitionUID> + <ribNumber>4</ribNumber> + </rib1> + </wingFuselageAttachment> + </wingFuselageAttachments> + <wingFuelTanks> + <wingFuelTank uID="wing_tank_inner"> + <name>wing_tank_inner</name> + <geometry> + <border> + <sparUID isLink="True">frontSpar</sparUID> + </border> + <border> + <ribDefinitionUID isLink="True">wing_ribs_inner</ribDefinitionUID> + <ribNumber>4</ribNumber> + </border> + <border> + <sparUID isLink="True">rearSpar</sparUID> + </border> + </geometry> + </wingFuelTank> + <wingFuelTank uID="wing_tank_middle"> + <name>wing_tank_middle</name> + <geometry> + <border> + <ribDefinitionUID isLink="True">wing_ribs_inner</ribDefinitionUID> + <ribNumber>4</ribNumber> + </border> + <border> + <sparUID isLink="True">frontSpar</sparUID> + </border> + <border> + <ribDefinitionUID isLink="True">wing_ribs_engine2</ribDefinitionUID> + <ribNumber>1</ribNumber> + </border> + <border> + <sparUID isLink="True">rearSpar</sparUID> + </border> + </geometry> + </wingFuelTank> + <wingFuelTank uID="wing_tank_outer"> + <name>wing_tank_outer</name> + <geometry> + <border> + <ribDefinitionUID isLink="True">wing_ribs_engine2</ribDefinitionUID> + <ribNumber>1</ribNumber> + </border> + <border> + <sparUID isLink="True">frontSpar</sparUID> + </border> + <border> + <ribDefinitionUID isLink="True">wing_ribs_outer</ribDefinitionUID> + <ribNumber>8</ribNumber> + </border> + <border> + <sparUID isLink="True">rearSpar</sparUID> + </border> + </geometry> + </wingFuelTank> + </wingFuelTanks> + </componentSegment> + </componentSegments> + </wing> + <wing symmetry="x-z-plane" uID="HorizontalStabiliser_wingID"> + <name>HorizontalStabiliser</name> + <parentUID>Fuselage_fuselageID</parentUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>29.743</x> + <y>0</y> + <z>0.90002</z> + </translation> + </transformation> + <sections> + <section uID="HorizontalStabiliser_wingSection1ID"> + <name>HorizontalStabiliserSection1</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="HorizontalStabiliser_wingSection1Element1ID"> + <name>HorizontalStabiliserSection1</name> + <airfoilUID>Profile_HorizontalStabiliser_1ID</airfoilUID> + <transformation> + <scaling> + <x>3.2362</x> + <y>3.2362</y> + <z>3.2362</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="HorizontalStabiliser_wingSection2ID"> + <name>HorizontalStabiliserSection2</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="HorizontalStabiliser_wingSection2Element1ID"> + <name>HorizontalStabiliserSection2</name> + <airfoilUID>Profile_HorizontalStabiliser_2ID</airfoilUID> + <transformation> + <scaling> + <x>1.13267</x> + <y>1.13267</y> + <z>1.13267</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="HorizontalStabiliser_wingPositioning1ID"> + <name>HorizontalStabiliserPositioning1</name> + <length>0</length> + <sweepAngle>0</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>HorizontalStabiliser_wingSection1ID</toSectionUID> + </positioning> + <positioning uID="HorizontalStabiliser_wingPositioning2ID"> + <name>HorizontalStabiliserPositioning2</name> + <length>5.30725</length> + <sweepAngle>34.2802</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>HorizontalStabiliser_wingSection1ID</fromSectionUID> + <toSectionUID>HorizontalStabiliser_wingSection2ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="HorizontalStabiliser_wingSegment1ID"> + <name>HorizontalStabiliserSegment1</name> + <fromElementUID>HorizontalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID>HorizontalStabiliser_wingSection2Element1ID</toElementUID> + </segment> + </segments> + <componentSegments> + <componentSegment uID="htp_Cseg"> + <name>htp_CSeg</name> + <description>htp_CSeg</description> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="htp_ribs"> + <name>trapezoid_ribs</name> + <ribsPositioning> + <ribReference>htp_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>5.0</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="htp_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="htp_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="htp_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.55</xsi> + </sparPosition> + <sparPosition uID="htp_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.55</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="htp_Spar_FS"> + <name>htp_Spar_FS</name> + <description>htp_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">htp_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">htp_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="htp_Spar_RS"> + <name>htp_Spar_RS</name> + <description>htp_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">htp_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">htp_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <controlSurfaces> + <trailingEdgeDevices> + <trailingEdgeDevice uID="elevatorUID"> + <name>elevator</name> + <description>elevator from VAMPzero</description> + <parentUID isLink="True">htp</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.325723003695</etaLE> + <xsiLE>0.446576244084</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.966286150185</etaLE> + <xsiLE>0.588077959118</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + </trailingEdgeDevice> + <trailingEdgeDevice uID="stabilizerUID"> + <name>stabilizer</name> + <description>stabilizer exported from VAMPzero</description> + <parentUID isLink="True">htp</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.0</etaLE> + <xsiLE>0.0</xsiLE> + </innerBorder> + <outerBorder> + <etaLE>1.0</etaLE> + <xsiLE>0.0</xsiLE> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.25</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.25</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + </trailingEdgeDevice> + </trailingEdgeDevices> + </controlSurfaces> + <fromElementUID isLink="True">HorizontalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID isLink="True">HorizontalStabiliser_wingSection2Element1ID</toElementUID> + </componentSegment> + </componentSegments> + </wing> + <wing uID="VerticalStabiliser_wingID"> + <name>VerticalStabiliser</name> + <parentUID>Fuselage_fuselageID</parentUID> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>90</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>29.0546</x> + <y>0</y> + <z>0.90002</z> + </translation> + </transformation> + <sections> + <section uID="VerticalStabiliser_wingSection1ID"> + <name>VerticalStabiliserSection1</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="VerticalStabiliser_wingSection1Element1ID"> + <name>VerticalStabiliserSection1</name> + <airfoilUID>Profile_VerticalStabiliser_1ID</airfoilUID> + <transformation> + <scaling> + <x>4.12099</x> + <y>4.12099</y> + <z>4.12099</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="VerticalStabiliser_wingSection2ID"> + <name>VerticalStabiliserSection2</name> + <transformation> + <scaling> + <x>1</x> + <y>1</y> + <z>1</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + <elements> + <element uID="VerticalStabiliser_wingSection2Element1ID"> + <name>VerticalStabiliserSection2</name> + <airfoilUID>Profile_VerticalStabiliser_2ID</airfoilUID> + <transformation> + <scaling> + <x>1.43655</x> + <y>1.43655</y> + <z>1.43655</z> + </scaling> + <rotation> + <x>0</x> + <y>0</y> + <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> + <y>0</y> + <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="VerticalStabiliser_wingPositioning1ID"> + <name>VerticalStabiliserPositioning1</name> + <length>0</length> + <sweepAngle>0</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>VerticalStabiliser_wingSection1ID</toSectionUID> + </positioning> + <positioning uID="VerticalStabiliser_wingPositioning2ID"> + <name>VerticalStabiliserPositioning2</name> + <length>6.28106</length> + <sweepAngle>43.6333</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>VerticalStabiliser_wingSection1ID</fromSectionUID> + <toSectionUID>VerticalStabiliser_wingSection2ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="VerticalStabiliser_wingSegment1ID"> + <name>VerticalStabiliserSegment1</name> + <fromElementUID>VerticalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID>VerticalStabiliser_wingSection2Element1ID</toElementUID> + </segment> + </segments> + <componentSegments> + + <componentSegment uID="vtp_Cseg"> + <name>vtp_CSeg</name> + <description>vtp_CSeg</description> + <fromElementUID isLink="True">VerticalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID isLink="True">VerticalStabiliser_wingSection2Element1ID</toElementUID> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="vtp_ribs"> + <name>trapezoid_ribs</name> + <ribsPositioning> + <ribReference>vtp_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>5.0</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> + <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="vtp_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="vtp_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="vtp_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.55</xsi> + </sparPosition> + <sparPosition uID="vtp_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.55</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="vtp_Spar_FS"> + <name>vtp_Spar_FS</name> + <description>vtp_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">vtp_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">vtp_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="vtp_Spar_RS"> + <name>vtp_Spar_RS</name> + <description>vtp_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">vtp_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">vtp_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium7075</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <controlSurfaces> + <trailingEdgeDevices> + <trailingEdgeDevice uID="rudderUID"> + <name>rudder</name> + <description>rudder from VAMPzero</description> + <parentUID isLink="True">vtp_Cseg</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.0</etaLE> + <xsiLE>0.355528586144</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>1.0</etaLE> + <xsiLE>0.355528586144</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> + <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + </trailingEdgeDevice> + </trailingEdgeDevices> + </controlSurfaces> + </componentSegment> + </componentSegments> + </wing> + </wings> + <engines> + <engine symmetry="x-z-plane" uID="model_engine"> + <engineUID isLink="True">engine</engineUID> + <parentUID isLink="True">enginePylon</parentUID> + <transformation> + <translation refType="absGlobal"> + <x>11.8389319755</x> + <y>4.215</y> + <z>-1.75194260911</z> + </translation> + </transformation> + </engine> + </engines> + <analyses> + <flightDynamics> + <flightCases> + <flightCase> + <name>name</name> + <description>description</description> + <weightAndBalanceUID>weightAndBalanceUID</weightAndBalanceUID> + <standardAltitude>0.0</standardAltitude> + <vCAS>0.0</vCAS> + <configuration>0</configuration> + <gear>0</gear> + <linearModel> + <aLon mapType="vector">aLon</aLon> + <bLon mapType="vector">bLon</bLon> + <cLon mapType="vector">cLon</cLon> + <dLon mapType="vector">dLon</dLon> + <aLat mapType="vector">aLat</aLat> + <bLat mapType="vector">bLat</bLat> + <cLat mapType="vector">cLat</cLat> + <dLat mapType="vector">dLat</dLat> + </linearModel> + <trimResult> + <mach>0.0</mach> + <vTAS>0.0</vTAS> + <alpha>0.0</alpha> + <altitude>0.0</altitude> + </trimResult> + </flightCase> + </flightCases> + <model> + <name>name</name> + <description>description</description> + <xLonNames mapType="vector">xLonNames</xLonNames> + <yLonNames mapType="vector">yLonNames</yLonNames> + <uLonNames mapType="vector">uLonNames</uLonNames> + <xLatNames mapType="vector">xLatNames</xLatNames> + <yLatNames mapType="vector">yLatNames</yLatNames> + <uLatNames mapType="vector">uLatNames</uLatNames> + </model> + </flightDynamics> + <flyingQualities> + <fqCase> + <class>0</class> + <category>category</category> + <longitudinal> + <numQFes mapType="vector">numQFes</numQFes> + <numThe mapType="vector">numThe</numThe> + <numTheFes mapType="vector">numTheFes</numTheFes> + <numAlFes mapType="vector">numAlFes</numAlFes> + <numNzFes mapType="vector">numNzFes</numNzFes> + <denLon mapType="vector">denLon</denLon> + </longitudinal> + <lateral> + <numPhiDas mapType="vector">numPhiDas</numPhiDas> + <numRDas mapType="vector">numRDas</numRDas> + <numBetaDas mapType="vector">numBetaDas</numBetaDas> + <numPhiDasRed mapType="vector">numPhiDasRed</numPhiDasRed> + <numBetaDasRed mapType="vector">numBetaDasRed</numBetaDasRed> + <numRDrp mapType="vector">numRDrp</numRDrp> + <numBetaDrp mapType="vector">numBetaDrp</numBetaDrp> + <numPFas mapType="vector">numPFas</numPFas> + <numRFas mapType="vector">numRFas</numRFas> + <numPhiFas mapType="vector">numPhiFas</numPhiFas> + <numBetaFas mapType="vector">numBetaFas</numBetaFas> + <numPFrp mapType="vector">numPFrp</numPFrp> + <numRFrp mapType="vector">numRFrp</numRFrp> + <numPhiFrp mapType="vector">numPhiFrp</numPhiFrp> + <numBetaFrp mapType="vector">numBetaFrp</numBetaFrp> + <denLat mapType="vector">denLat</denLat> + <denLatRed mapType="vector">denLatRed</denLatRed> + </lateral> + <charParameters> + <staticMargin>staticMargin</staticMargin> + <phugoid> + <phDamping>0.0</phDamping> + <phDoublingTime>0.0</phDoublingTime> + </phugoid> + <shortPeriod> + <nAlpha>0.0</nAlpha> + <spFrequency>0.0</spFrequency> + <spDamping>0.0</spDamping> + <spTauRed>0.0</spTauRed> + <cap>0.0</cap> + </shortPeriod> + <rolosc> + <ratioPoscPav>0.0</ratioPoscPav> + <phasePsiBeta>0.0</phasePsiBeta> + <pasePBeta>0.0</pasePBeta> + <ratioP2P1>0.0</ratioP2P1> + <rollRateOsc>0.0</rollRateOsc> + </rolosc> + <rollSpiral>rollSpiral</rollSpiral> + <eiglat> + <dutchRollFrequency>0.0</dutchRollFrequency> + <dutchRollDamping>0.0</dutchRollDamping> + <rollTimeConstant>0.0</rollTimeConstant> + <spiralDoublingTime>0.0</spiralDoublingTime> + <ratioPhiBeta>0.0</ratioPhiBeta> + <rollFrequency>0.0</rollFrequency> + <rollSpiralDamping>0.0</rollSpiralDamping> + <rollSpiralProduct>0.0</rollSpiralProduct> + <durchroll>0.0</durchroll> + <roll>0.0</roll> + </eiglat> + <treff> + <treff>0.0</treff> + <ttan>0.0</ttan> + </treff> + <rollPerf> + <tPhi>0.0</tPhi> + <phiCrit>0.0</phiCrit> + </rollPerf> + </charParameters> + <ratings> + <phugoid>phugoid</phugoid> + <cStar>cStar</cStar> + <shortPeriod> + <nAlpha>0.0</nAlpha> + <spFrequency>0.0</spFrequency> + <spDamping>0.0</spDamping> + <spTauRed>0.0</spTauRed> + <cap>0.0</cap> + </shortPeriod> + <rolosc> + <ratioPoscPav>0.0</ratioPoscPav> + <phasePsiBeta>0.0</phasePsiBeta> + <pasePBeta>0.0</pasePBeta> + <ratioP2P1>0.0</ratioP2P1> + <rollRateOsc>0.0</rollRateOsc> + </rolosc> + <eiglat> + <dutchRollFrequency>0.0</dutchRollFrequency> + <dutchRollDamping>0.0</dutchRollDamping> + <rollTimeConstant>0.0</rollTimeConstant> + <spiralDoublingTime>0.0</spiralDoublingTime> + <ratioPhiBeta>0.0</ratioPhiBeta> + <rollFrequency>0.0</rollFrequency> + <rollSpiralDamping>0.0</rollSpiralDamping> + <rollSpiralProduct>0.0</rollSpiralProduct> + <durchroll>0.0</durchroll> + <roll>0.0</roll> + </eiglat> + <treff>treff</treff> + <rollPerf>rollPerf</rollPerf> + </ratings> + </fqCase> + </flyingQualities> + <aeroelastics> + <staticMaxDisplacement> + <rotation> 10 </rotation> + <translation> 10 </translation> + </staticMaxDisplacement> + </aeroelastics> + <loadAnalysis> + <loadCases> + <aeroDataSetsForLoads> + <aeroDataSetForLoads uID="Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m_aeroDataSet"> + <flowCondition> + <machNumber>0.78</machNumber> + <reynoldsNumber>18792419.4249</reynoldsNumber> + <angleOfYaw>0.0</angleOfYaw> + <targetLiftCoefficient>1.1096</targetLiftCoefficient> + </flowCondition> + <wings> + <wing> + <wingUID>MainWing_wingID</wingUID> + <coefficients> + <cfz>1.1096</cfz> + <cmy>-1.4781</cmy> + </coefficients> + <segments> + <segment> + <strip> + <cfz>0.7626</cfz> + <cmy>-0.1491</cmy> + <reference> + <length>6.1626</length> + <flightShapePoint> + <x>14.0193</x> + <y>0.3500</y> + <z>-0.9251</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8129</cfz> + <cmy>-0.1447</cmy> + <reference> + <length>5.7033</length> + <flightShapePoint> + <x>14.3680</x> + <y>1.0501</y> + <z>-0.8636</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.8675</cfz> + <cmy>-0.1414</cmy> + <reference> + <length>5.2439</length> + <flightShapePoint> + <x>14.7166</x> + <y>1.7502</y> + <z>-0.8022</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.9256</cfz> + <cmy>-0.1389</cmy> + <reference> + <length>4.7845</length> + <flightShapePoint> + <x>15.0653</x> + <y>2.4503</y> + <z>-0.7407</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>0.989</cfz> + <cmy>-0.1368</cmy> + <reference> + <length>4.3252</length> + <flightShapePoint> + <x>15.4139</x> + <y>3.1504</y> + <z>-0.6793</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.06</cfz> + <cmy>-0.1349</cmy> + <reference> + <length>3.8658</length> + <flightShapePoint> + <x>15.7626</x> + <y>3.8505</y> + <z>-0.6178</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.1422</cfz> + <cmy>-0.1328</cmy> + <reference> + <length>3.4064</length> + <flightShapePoint> + <x>16.1112</x> + <y>4.5506</y> + <z>-0.5564</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.2426</cfz> + <cmy>-0.1291</cmy> + <reference> + <length>2.9471</length> + <flightShapePoint> + <x>16.4599</x> + <y>5.2507</y> + <z>-0.4949</z> + </flightShapePoint> + </reference> + </strip> + <segmentUID>MainWing_wingSegment1ID</segmentUID> + </segment> + <segment> + <strip> + <cfz>1.3016</cfz> + <cmy>-0.1128</cmy> + <reference> + <length>2.648</length> + <flightShapePoint> + <x>16.8085</x> + <y>5.9510</y> + <z>-0.4334</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.3195</cfz> + <cmy>-0.1063</cmy> + <reference> + <length>2.5092</length> + <flightShapePoint> + <x>17.1570</x> + <y>6.6514</y> + <z>-0.3719</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.3416</cfz> + <cmy>-0.1038</cmy> + <reference> + <length>2.3703</length> + <flightShapePoint> + <x>17.5054</x> + <y>7.3517</y> + <z>-0.3105</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.3656</cfz> + <cmy>-0.1034</cmy> + <reference> + <length>2.2315</length> + <flightShapePoint> + <x>17.8539</x> + <y>8.0521</y> + <z>-0.2490</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.3907</cfz> + <cmy>-0.1041</cmy> + <reference> + <length>2.0927</length> + <flightShapePoint> + <x>18.2024</x> + <y>8.7525</y> + <z>-0.1875</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.4162</cfz> + <cmy>-0.1056</cmy> + <reference> + <length>1.9539</length> + <flightShapePoint> + <x>18.5509</x> + <y>9.4529</y> + <z>-0.1260</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.4411</cfz> + <cmy>-0.1074</cmy> + <reference> + <length>1.8151</length> + <flightShapePoint> + <x>18.8994</x> + <y>10.1533</y> + <z>-0.0645</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.4635</cfz> + <cmy>-0.1091</cmy> + <reference> + <length>1.6763</length> + <flightShapePoint> + <x>19.2479</x> + <y>10.8537</y> + <z>-0.0030</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.479</cfz> + <cmy>-0.1102</cmy> + <reference> + <length>1.5375</length> + <flightShapePoint> + <x>19.5964</x> + <y>11.5541</y> + <z>0.0585</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.476</cfz> + <cmy>-0.1087</cmy> + <reference> + <length>1.3987</length> + <flightShapePoint> + <x>19.9449</x> + <y>12.2544</y> + <z>0.1200</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.4208</cfz> + <cmy>-0.0998</cmy> + <reference> + <length>1.2599</length> + <flightShapePoint> + <x>20.2934</x> + <y>12.9548</y> + <z>0.1814</z> + </flightShapePoint> + </reference> + </strip> + <strip> + <cfz>1.194</cfz> + <cmy>-0.0721</cmy> + <reference> + <length>1.1211</length> + <flightShapePoint> + <x>20.6419</x> + <y>13.6552</y> + <z>0.2429</z> + </flightShapePoint> + </reference> + </strip> + <segmentUID>MainWing_wingSegment2ID</segmentUID> + </segment> + </segments> + </wing> + </wings> + </aeroDataSetForLoads> + </aeroDataSetsForLoads> + <flightLoadCases> + <flightLoadCase uID="Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m"> + <aeroDataSetUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m_aeroDataSet</aeroDataSetUID> + <state> + <atmosphericConditions> + <density>0.31093</density> + <temperature>216.5839</temperature> + <speedOfSound>295.1</speedOfSound> + </atmosphericConditions> + <attitudeAndMotion> + <refPointUID>refPointUID</refPointUID> + <refRotation> + <x>0.0</x> + <y>0.0</y> + <z>0.0</z> + </refRotation> + <translation> + <velocity> + <u>230.178</u> + </velocity> + <acceleration> + <wDot>14.715</wDot> + </acceleration> + </translation> + </attitudeAndMotion> + </state> + <mass> + <weightAndBalanceUID>MTOW1</weightAndBalanceUID> + </mass> + </flightLoadCase> + </flightLoadCases> + </loadCases> + </loadAnalysis> + <weightAndBalance> + <operationalCases> + <operationalCase uID="MTOW1"> + <mass mapType="vector">77000</mass> + </operationalCase> + </operationalCases> + </weightAndBalance> + <aeroPerformanceMap> + <dampingDerivatives> + <positiveRates> + <dcfxdpstar mapType="array">1</dcfxdpstar> + <dcfxdqstar mapType="array">1</dcfxdqstar> + <dcfxdrstar mapType="array">1</dcfxdrstar> + <dcfydpstar mapType="array">1</dcfydpstar> + <dcfydqstar mapType="array">1</dcfydqstar> + <dcfydrstar mapType="array">1</dcfydrstar> + <dcfzdpstar mapType="array">1</dcfzdpstar> + <dcfzdqstar mapType="array">1</dcfzdqstar> + <dcfzdrstar mapType="array">1</dcfzdrstar> + <dcmxdpstar mapType="array">1</dcmxdpstar> + <dcmxdqstar mapType="array">1</dcmxdqstar> + <dcmxdrstar mapType="array">1</dcmxdrstar> + <dcmydpstar mapType="array">1</dcmydpstar> + <dcmydqstar mapType="array">1</dcmydqstar> + <dcmydrstar mapType="array">1</dcmydrstar> + <dcmzdpstar mapType="array">1</dcmzdpstar> + <dcmzdqstar mapType="array">1</dcmzdqstar> + <dcmzdrstar mapType="array">1</dcmzdrstar> + </positiveRates> + </dampingDerivatives> + <controlSurfaces> + <controlSurface> + <relDeflection mapType="vector"></relDeflection> + </controlSurface> + </controlSurfaces> + <machNumber mapType="vector">0.2;0.6;0.78;0.8</machNumber> + <reynoldsNumber mapType="vector">1e+007;2.77e+007;3.4e+007;4.5e+007</reynoldsNumber> + <angleOfYaw mapType="vector">0;10</angleOfYaw> + <angleOfAttack mapType="vector">-5;-2.5;0;1;2;3;4;5;6;7.5;10;12.5</angleOfAttack> + <cfx mapType="array">0.01256;0.00757;0.01217;0.00737; NaN;0.01399;0.04064;0.01319;</cfx> + <cfy mapType="array"/> + <cfz mapType="array">-0.44185;-0.23391;-0.44185;-0.23391;-0.58373;-0.30838;-0.58373;-0.30838;</cfz> + <cmx mapType="array"/> + <cmy mapType="array">0.38631;0.20157;0.38631;0.20157;0.51935;0.26919;0.51935;0.26919;</cmy> + <cmz mapType="array"/> + </aeroPerformanceMap> + <massBreakdown> + <mOEM> + <mEM> + <mPowerUnits> + <massDescription> + <massInertia> + <Jxx>0.0</Jxx> + <Jyy>0.0</Jyy> + <Jzz>0.0</Jzz> + </massInertia> + <mass>3160.0</mass> + </massDescription> + </mPowerUnits> + <mFurnishing> + <massDescription> + <mass>2663.0</mass> + </massDescription> + </mFurnishing> + <mStructure> + <mFuselagesStructure> + <mFuselageStructure> + <massDescription> + <mass>5942.0</mass> + <location> + <x>14.811104</x> + </location> + </massDescription> + </mFuselageStructure> + </mFuselagesStructure> + <mWingsStructure> + <massDescription> + <mass>3123.1</mass> + </massDescription> + <mWingStructure> + <massDescription> + <mass>4856.32744539</mass> + <parentUID isLink="True">wing</parentUID> + <location> + <x>16.9844277401</x> + </location> + </massDescription> + </mWingStructure> + <mWingStructure> + <massDescription> + <mass>422.438824951</mass> + <parentUID isLink="True">htp</parentUID> + <location> + <x>31.0086677265</x> + </location> + </massDescription> + </mWingStructure> + <mWingStructure> + <massDescription> + <mass>315.821401487</mass> + <parentUID isLink="True">vtp</parentUID> + <location> + <x>29.7316574784</x> + </location> + </massDescription> + </mWingStructure> + </mWingsStructure> + <mLandingGears> + <mMainGears> + <massDescription uID="mainGear_Mass"> + <mass>1611.60312188</mass> + <location> + <x>11.921104</x> + </location> + </massDescription> + </mMainGears> + <mNoseGears> + <massDescription uID="noseGear_mass"> + <mass>314.322994979</mass> + <location> + <x>11.921104</x> + </location> + </massDescription> + </mNoseGears> + </mLandingGears> + <mPylons> + <massDescription> + <mass>750.529076187</mass> + </massDescription> + </mPylons> + </mStructure> + <mSystems> + <massDescription> + <mass>4782.0</mass> + <location> + <x>11.921104</x> + </location> + </massDescription> + </mSystems> + </mEM> + <massDescription> + <mass>27758.8623406</mass> + <massInertia> + <Jxx>1</Jxx> + <Jyy>1</Jyy> + <Jzz>1</Jzz> + </massInertia> + <location> + <x> 1 </x> + </location> + </massDescription> + <mOperatorItems> + <massDescription> + <mass>3255.14166023</mass> + <location> + <x>11.921104</x> + </location> + </massDescription> + </mOperatorItems> + </mOEM> + <fuel> + <massDescription> + <mass>8106.99160478</mass> + <location> + <x> 1 </x> + <y> 1 </y> + <z>1 </z> + </location> + <description>Max fuel, not mission fuel </description> + </massDescription> + </fuel> + <designMasses> + <mTOM> + <massInertia> + <Jxx>693743.095795</Jxx> + <Jyy>1946426.01247</Jyy> + <Jzz>2612419.99895</Jzz> + </massInertia> + <mass>45045.8583098</mass> + <location> + <x>15.2517882102</x> + </location> + </mTOM> + <mMLM> + <mass>38560.2667664</mass> + </mMLM> + <mMRM> + <mass>2000</mass> + </mMRM> + <mZFM> + <mass>36938.863897</mass> + </mZFM> + </designMasses> + <payload> + <massDescription> + <mCargo> + <massDescription> + <location> + <x> 1</x> + <y> 1 </y> + <z> 1 </z> + </location> + </massDescription> + </mCargo> + <description>Max payload, not design payload </description> + <mass>11500.0</mass> + </massDescription> + </payload> + </massBreakdown> + </analyses> + <global> + <designRange> + <required>10000</required> + <actual>1000</actual> + </designRange> + <paxSeats>90</paxSeats> + <cargoCapacity>2000</cargoCapacity> + <airportCompatability> + <takeOffFieldLength> + <required>2000</required> + <actual>222</actual> + </takeOffFieldLength> + <landingFieldLength> + <required>2000</required> + <actual>222</actual> + </landingFieldLength> + <numberFieldFlights>10</numberFieldFlights> + </airportCompatability> + <performanceTargets> + <cruiseMach> + <required>0.8</required> + <actual>0.7</actual> + </cruiseMach> + <initialCruiseAltitude> + <required>12000</required> + <actual>11000</actual> + </initialCruiseAltitude> + <timeToClimb> + <required>1222</required> + <actual>2562</actual> + </timeToClimb> + </performanceTargets> + </global> + </model> + </aircraft> + <profiles> + <wingAirfoils> + <wingAirfoil uID="Profile_MainWing_1ID"> + <name>Profile_MainWing_1</name> + <pointList> + <x mapType="vector">1;0.9898;0.9799;0.9699;0.9599;0.9499;0.9399;0.9299;0.9199;0.9098;0.8997;0.8896;0.8795;0.8693;0.8591;0.8489;0.8387;0.8285;0.8182;0.808;0.7978;0.7875;0.7772;0.767;0.7567;0.7465;0.7362;0.7259;0.7156;0.7054;0.6951;0.6848;0.6745;0.6642;0.6539;0.6436;0.6333;0.623;0.6127;0.6024;0.5921;0.5817;0.5714;0.5611;0.5508;0.5405;0.5301;0.5198;0.5095;0.4991;0.4888;0.4785;0.4681;0.4578;0.4475;0.4371;0.4268;0.4164;0.4061;0.3957;0.3854;0.3751;0.3647;0.3544;0.344;0.3337;0.3233;0.313;0.3026;0.2923;0.282;0.2716;0.2613;0.2509;0.2406;0.2303;0.2199;0.2096;0.1993;0.189;0.1786;0.1683;0.158;0.1477;0.1375;0.1272;0.117;0.1067;0.0965;0.0864;0.0763;0.0662;0.0563;0.0465;0.0369;0.0277;0.019;0.0113;0.0051;0.0013;0;0;0.0015;0.0062;0.013;0.021;0.0297;0.0389;0.0484;0.058;0.0679;0.0778;0.0878;0.0979;0.108;0.1182;0.1284;0.1386;0.1488;0.1591;0.1694;0.1797;0.19;0.2003;0.2106;0.2209;0.2312;0.2415;0.2519;0.2622;0.2725;0.2829;0.2932;0.3036;0.3139;0.3242;0.3346;0.3449;0.3553;0.3656;0.376;0.3863;0.3966;0.407;0.4173;0.4276;0.438;0.4483;0.4586;0.4689;0.4793;0.4896;0.4999;0.5102;0.5205;0.5307;0.541;0.5512;0.5614;0.5716;0.5818;0.592;0.6021;0.6123;0.6224;0.6326;0.6427;0.6528;0.6629;0.673;0.6831;0.6932;0.7032;0.7133;0.7234;0.7334;0.7435;0.7536;0.7638;0.7739;0.7841;0.7943;0.8045;0.8147;0.825;0.8352;0.8455;0.8557;0.866;0.8763;0.8866;0.8969;0.9072;0.9175;0.9278;0.9382;0.9485;0.9588;0.9692;0.9795;0.9899;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.0021;0.005;0.0078;0.0105;0.0132;0.0159;0.0186;0.0211;0.0236;0.026;0.0283;0.0304;0.0325;0.0344;0.0362;0.038;0.0397;0.0412;0.0428;0.0442;0.0456;0.047;0.0484;0.0497;0.051;0.0523;0.0536;0.0548;0.056;0.0572;0.0583;0.0594;0.0605;0.0615;0.0625;0.0635;0.0644;0.0653;0.0661;0.067;0.0678;0.0685;0.0692;0.0699;0.0706;0.0712;0.0719;0.0724;0.073;0.0735;0.074;0.0745;0.0749;0.0754;0.0757;0.0761;0.0764;0.0767;0.077;0.0772;0.0774;0.0776;0.0777;0.0778;0.0778;0.0778;0.0778;0.0777;0.0776;0.0775;0.0773;0.077;0.0767;0.0764;0.076;0.0756;0.0751;0.0745;0.0738;0.0731;0.0723;0.0714;0.0704;0.0693;0.0681;0.0668;0.0653;0.0638;0.062;0.06;0.0578;0.0554;0.0525;0.0492;0.0453;0.0406;0.0349;0.0281;0.0198;0.0102;0;0;-0.0102;-0.0194;-0.0272;-0.0337;-0.0393;-0.0441;-0.0482;-0.0518;-0.0551;-0.058;-0.0606;-0.0629;-0.0651;-0.067;-0.0687;-0.0703;-0.0718;-0.0731;-0.0742;-0.0753;-0.0762;-0.0771;-0.078;-0.0788;-0.0795;-0.0801;-0.0807;-0.0812;-0.0816;-0.0819;-0.0822;-0.0824;-0.0826;-0.0827;-0.0828;-0.0827;-0.0826;-0.0824;-0.0822;-0.0819;-0.0815;-0.0812;-0.0807;-0.0802;-0.0796;-0.079;-0.0784;-0.0777;-0.077;-0.0762;-0.0753;-0.0742;-0.0731;-0.0718;-0.0704;-0.0689;-0.0672;-0.0655;-0.0637;-0.0619;-0.0599;-0.0579;-0.0559;-0.0538;-0.0517;-0.0495;-0.0473;-0.045;-0.0427;-0.0404;-0.038;-0.0356;-0.0332;-0.0309;-0.0286;-0.0264;-0.0243;-0.0224;-0.0205;-0.0187;-0.0171;-0.0155;-0.014;-0.0125;-0.0111;-0.0099;-0.0087;-0.0075;-0.0065;-0.0056;-0.0047;-0.004;-0.0034;-0.0029;-0.0024;-0.0021;-0.0018;-0.0017;-0.0018;-0.0021</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_MainWing_2ID"> + <name>Profile_MainWing_2</name> + <pointList> + <x mapType="vector">1;0.9898;0.9798;0.9698;0.9598;0.9498;0.9397;0.9297;0.9196;0.9096;0.8995;0.8893;0.8792;0.869;0.8589;0.8487;0.8385;0.8283;0.8181;0.8079;0.7977;0.7874;0.7772;0.767;0.7568;0.7465;0.7363;0.7261;0.7158;0.7056;0.6953;0.6851;0.6748;0.6646;0.6543;0.644;0.6338;0.6235;0.6132;0.603;0.5927;0.5824;0.5721;0.5619;0.5516;0.5413;0.531;0.5207;0.5104;0.5002;0.4899;0.4796;0.4693;0.459;0.4487;0.4384;0.4281;0.4178;0.4075;0.3972;0.3869;0.3766;0.3663;0.356;0.3457;0.3354;0.3251;0.3148;0.3045;0.2942;0.2839;0.2736;0.2633;0.253;0.2427;0.2324;0.2221;0.2118;0.2015;0.1913;0.181;0.1707;0.1605;0.1502;0.14;0.1297;0.1195;0.1093;0.0991;0.089;0.0789;0.0688;0.0589;0.049;0.0393;0.0299;0.0209;0.0127;0.0059;0.0013;0;0;0.0015;0.0064;0.0133;0.0215;0.0304;0.0397;0.0492;0.059;0.0688;0.0788;0.0888;0.0989;0.1091;0.1192;0.1294;0.1396;0.1499;0.1601;0.1704;0.1807;0.191;0.2013;0.2116;0.2219;0.2322;0.2425;0.2528;0.2631;0.2734;0.2837;0.294;0.3043;0.3147;0.325;0.3353;0.3456;0.3559;0.3663;0.3766;0.3869;0.3972;0.4075;0.4178;0.4281;0.4384;0.4487;0.459;0.4693;0.4796;0.4899;0.5002;0.5105;0.5207;0.531;0.5413;0.5515;0.5617;0.5719;0.5821;0.5923;0.6025;0.6126;0.6228;0.6329;0.643;0.6532;0.6633;0.6734;0.6835;0.6936;0.7037;0.7138;0.7238;0.7339;0.744;0.7541;0.7642;0.7744;0.7845;0.7947;0.8049;0.8151;0.8253;0.8356;0.8458;0.856;0.8663;0.8766;0.8868;0.8971;0.9074;0.9177;0.928;0.9383;0.9486;0.9589;0.9692;0.9795;0.9899;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.0019;0.0044;0.0068;0.0093;0.0117;0.0141;0.0164;0.0187;0.0209;0.023;0.025;0.027;0.0288;0.0305;0.0322;0.0338;0.0353;0.0367;0.0381;0.0394;0.0407;0.042;0.0433;0.0445;0.0457;0.0469;0.0481;0.0492;0.0504;0.0515;0.0525;0.0536;0.0546;0.0556;0.0565;0.0574;0.0583;0.0591;0.0599;0.0607;0.0615;0.0622;0.0629;0.0636;0.0642;0.0649;0.0655;0.066;0.0666;0.0671;0.0676;0.0681;0.0685;0.069;0.0693;0.0697;0.0701;0.0704;0.0706;0.0709;0.0711;0.0713;0.0714;0.0716;0.0716;0.0717;0.0717;0.0716;0.0716;0.0715;0.0713;0.0711;0.0709;0.0706;0.0703;0.0699;0.0694;0.0689;0.0683;0.0677;0.067;0.0661;0.0652;0.0643;0.0631;0.0619;0.0606;0.0592;0.0576;0.0558;0.0538;0.0516;0.049;0.046;0.0425;0.0384;0.0333;0.0271;0.0194;0.0102;0;0;-0.0102;-0.0192;-0.0268;-0.0331;-0.0384;-0.0429;-0.0467;-0.0501;-0.0531;-0.0558;-0.0582;-0.0603;-0.0623;-0.064;-0.0656;-0.0671;-0.0684;-0.0695;-0.0706;-0.0715;-0.0724;-0.0731;-0.0738;-0.0745;-0.075;-0.0756;-0.0761;-0.0764;-0.0768;-0.077;-0.0772;-0.0774;-0.0774;-0.0775;-0.0775;-0.0774;-0.0773;-0.0772;-0.0769;-0.0766;-0.0762;-0.0758;-0.0753;-0.0748;-0.0743;-0.0737;-0.0731;-0.0724;-0.0717;-0.0709;-0.0701;-0.0692;-0.0682;-0.0671;-0.0659;-0.0646;-0.0632;-0.0617;-0.0601;-0.0584;-0.0566;-0.0548;-0.053;-0.0511;-0.0491;-0.0471;-0.0451;-0.043;-0.0409;-0.0388;-0.0366;-0.0344;-0.0322;-0.03;-0.0279;-0.0258;-0.0238;-0.0219;-0.0201;-0.0184;-0.0168;-0.0152;-0.0138;-0.0124;-0.0111;-0.0098;-0.0087;-0.0076;-0.0066;-0.0057;-0.0049;-0.0042;-0.0035;-0.003;-0.0025;-0.0022;-0.0019;-0.0017;-0.0017;-0.0019</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_MainWing_3ID"> + <name>Profile_MainWing_3</name> + <pointList> + <x mapType="vector">1;0.9902;0.9803;0.9703;0.9604;0.9504;0.9404;0.9304;0.9204;0.9104;0.9004;0.8903;0.8803;0.8703;0.8602;0.8501;0.8401;0.83;0.8199;0.8098;0.7997;0.7896;0.7795;0.7694;0.7593;0.7492;0.739;0.7289;0.7187;0.7086;0.6984;0.6882;0.6781;0.6679;0.6577;0.6475;0.6373;0.6271;0.6169;0.6067;0.5965;0.5863;0.576;0.5658;0.5556;0.5454;0.5352;0.5249;0.5147;0.5045;0.4943;0.4841;0.4738;0.4636;0.4534;0.4432;0.4329;0.4227;0.4125;0.4023;0.3921;0.3818;0.3716;0.3614;0.3511;0.3409;0.3307;0.3205;0.3103;0.3001;0.2898;0.2796;0.2694;0.2592;0.249;0.2388;0.2286;0.2184;0.2082;0.198;0.1879;0.1777;0.1675;0.1573;0.1472;0.137;0.1269;0.1168;0.1067;0.0966;0.0865;0.0764;0.0664;0.0565;0.0466;0.0368;0.0273;0.0183;0.0102;0.0034;0;0;0.0041;0.0122;0.0215;0.0311;0.0409;0.0508;0.0608;0.0708;0.0808;0.0908;0.1008;0.1109;0.1209;0.131;0.1411;0.1512;0.1613;0.1714;0.1815;0.1916;0.2017;0.2118;0.2219;0.2321;0.2422;0.2523;0.2625;0.2726;0.2828;0.2929;0.3031;0.3132;0.3234;0.3335;0.3437;0.3538;0.364;0.3741;0.3843;0.3944;0.4046;0.4147;0.4248;0.435;0.4451;0.4552;0.4654;0.4755;0.4856;0.4957;0.5058;0.5159;0.526;0.5361;0.5462;0.5563;0.5664;0.5764;0.5865;0.5966;0.6066;0.6167;0.6267;0.6368;0.6468;0.6568;0.6669;0.6769;0.6869;0.6969;0.707;0.717;0.727;0.737;0.7471;0.7571;0.7671;0.7772;0.7872;0.7973;0.8074;0.8175;0.8276;0.8377;0.8478;0.858;0.8681;0.8783;0.8884;0.8986;0.9087;0.9189;0.929;0.9391;0.9493;0.9594;0.9696;0.9797;0.9898;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.0024;0.0049;0.0074;0.0098;0.0121;0.0144;0.0166;0.0188;0.0209;0.023;0.025;0.027;0.0289;0.0308;0.0327;0.0345;0.0363;0.0381;0.0398;0.0414;0.0431;0.0447;0.0462;0.0477;0.0491;0.0505;0.0519;0.0532;0.0544;0.0556;0.0567;0.0578;0.0588;0.0597;0.0606;0.0614;0.0622;0.0629;0.0635;0.0641;0.0647;0.0652;0.0656;0.0661;0.0664;0.0668;0.0671;0.0674;0.0676;0.0678;0.0679;0.0681;0.0682;0.0682;0.0682;0.0682;0.0682;0.0681;0.068;0.0679;0.0677;0.0675;0.0673;0.0671;0.0668;0.0664;0.0661;0.0657;0.0652;0.0648;0.0643;0.0637;0.0631;0.0625;0.0618;0.0611;0.0604;0.0596;0.0588;0.0579;0.057;0.056;0.0549;0.0538;0.0526;0.0514;0.0501;0.0486;0.0471;0.0455;0.0437;0.0418;0.0398;0.0375;0.0349;0.0318;0.0282;0.0233;0.0171;0.0095;0;0;-0.009;-0.015;-0.0192;-0.0224;-0.025;-0.0272;-0.0292;-0.0311;-0.0328;-0.0343;-0.0358;-0.0372;-0.0386;-0.0399;-0.0411;-0.0422;-0.0433;-0.0443;-0.0453;-0.0462;-0.047;-0.0478;-0.0485;-0.0492;-0.0498;-0.0503;-0.0508;-0.0512;-0.0515;-0.0518;-0.052;-0.0521;-0.0522;-0.0522;-0.0521;-0.052;-0.0518;-0.0516;-0.0513;-0.051;-0.0506;-0.0502;-0.0496;-0.0491;-0.0485;-0.0478;-0.0471;-0.0463;-0.0455;-0.0446;-0.0436;-0.0427;-0.0416;-0.0406;-0.0394;-0.0383;-0.037;-0.0358;-0.0345;-0.0332;-0.0318;-0.0304;-0.029;-0.0275;-0.026;-0.0245;-0.0229;-0.0214;-0.0198;-0.0182;-0.0166;-0.015;-0.0133;-0.0117;-0.0101;-0.0086;-0.007;-0.0056;-0.0042;-0.0029;-0.0018;-0.0007;0.0002;0.0009;0.0015;0.0019;0.0022;0.0024;0.0024;0.0023;0.0022;0.002;0.0017;0.0013;0.0009;0.0004;-0.0002;-0.0009;-0.0016;-0.0024</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_HorizontalStabiliser_1ID"> + <name>Profile_HorizontalStabiliser_1</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_HorizontalStabiliser_2ID"> + <name>Profile_HorizontalStabiliser_2</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_VerticalStabiliser_1ID"> + <name>Profile_VerticalStabiliser_1</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_VerticalStabiliser_2ID"> + <name>Profile_VerticalStabiliser_2</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> + <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> + <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + </wingAirfoils> + <fuselageProfiles> + <fuselageProfile uID="Profile_Fuselage_1ID"> + <name>Profile_Fuselage_1</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.00760827;-0.0151289;-0.0224751;-0.0295622;-0.0363087;-0.0426367;-0.0484732;-0.0537511;-0.0584094;-0.0611548;-0.0634929;-0.0654046;-0.0668743;-0.0678901;-0.0684436;-0.0685304;-0.0681497;-0.0673046;-0.0643827;-0.0599899;-0.0542266;-0.0472243;-0.0391432;-0.0301677;-0.0205031;-0.01037;-8.42605e-18;8.42605e-18;0.01037;0.0205031;0.0301677;0.0391432;0.0472243;0.0542266;0.0599899;0.0643827;0.0673046;0.0681497;0.0685304;0.0684436;0.0678901;0.0668743;0.0654046;0.0634929;0.0611548;0.0584094;0.0537511;0.0484732;0.0426367;0.0363087;0.0295622;0.0224751;0.0151289;0.00760827;0</y> + <z mapType="vector">-0.380603;-0.381012;-0.382234;-0.384255;-0.387053;-0.390594;-0.394837;-0.399735;-0.40523;-0.41126;-0.415649;-0.420268;-0.425079;-0.430044;-0.43512;-0.440268;-0.445444;-0.450607;-0.455715;-0.465696;-0.475122;-0.483779;-0.491468;-0.498014;-0.503267;-0.507108;-0.509448;-0.510234;-0.510234;-0.509448;-0.507108;-0.503267;-0.498014;-0.491468;-0.483779;-0.475122;-0.465696;-0.455715;-0.450607;-0.445444;-0.440268;-0.43512;-0.430044;-0.425079;-0.420268;-0.415649;-0.41126;-0.40523;-0.399735;-0.394837;-0.390594;-0.387053;-0.384255;-0.382234;-0.381012;-0.380603</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_2ID"> + <name>Profile_Fuselage_2</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0269479;-0.0535852;-0.0796049;-0.104707;-0.128603;-0.151016;-0.171688;-0.190382;-0.206882;-0.216606;-0.224887;-0.231658;-0.236864;-0.240461;-0.242422;-0.242729;-0.241381;-0.238388;-0.228039;-0.21248;-0.192066;-0.167265;-0.138642;-0.106852;-0.0726203;-0.0367297;-2.98444e-17;2.98444e-17;0.0367297;0.0726203;0.106852;0.138642;0.167265;0.192066;0.21248;0.228039;0.238388;0.241381;0.242729;0.242422;0.240461;0.236864;0.231658;0.224887;0.216606;0.206882;0.190382;0.171688;0.151016;0.128603;0.104707;0.0796049;0.0535852;0.0269479;0</y> + <z mapType="vector">-0.202044;-0.203493;-0.207822;-0.214982;-0.224889;-0.237431;-0.252463;-0.26981;-0.289273;-0.310629;-0.326176;-0.342536;-0.359577;-0.37716;-0.395141;-0.413373;-0.431708;-0.449995;-0.468086;-0.503438;-0.536825;-0.567487;-0.594721;-0.617906;-0.636513;-0.650115;-0.658403;-0.661187;-0.661187;-0.658403;-0.650115;-0.636513;-0.617906;-0.594721;-0.567487;-0.536825;-0.503438;-0.468086;-0.449995;-0.431708;-0.413373;-0.395141;-0.37716;-0.359577;-0.342536;-0.326176;-0.310629;-0.289273;-0.26981;-0.252463;-0.237431;-0.224889;-0.214982;-0.207822;-0.203493;-0.202044</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_3ID"> + <name>Profile_Fuselage_3</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0514493;-0.102306;-0.151983;-0.199908;-0.24553;-0.288321;-0.32779;-0.36348;-0.394981;-0.413546;-0.429357;-0.442285;-0.452223;-0.459092;-0.462836;-0.463422;-0.460848;-0.455133;-0.435374;-0.405669;-0.366696;-0.319344;-0.264697;-0.204003;-0.138648;-0.0701249;-5.69794e-17;5.69794e-17;0.0701249;0.138648;0.204003;0.264697;0.319344;0.366696;0.405669;0.435374;0.455133;0.460848;0.463422;0.462836;0.459092;0.452223;0.442285;0.429357;0.413546;0.394981;0.36348;0.32779;0.288321;0.24553;0.199908;0.151983;0.102306;0.0514493;0</y> + <z mapType="vector">0.0458874;0.0431216;0.0348563;0.0211867;0.00227037;-0.0216747;-0.0503726;-0.0834924;-0.120653;-0.161425;-0.191107;-0.222343;-0.254878;-0.288447;-0.322776;-0.357585;-0.39259;-0.427505;-0.462045;-0.529538;-0.593282;-0.651821;-0.703818;-0.748083;-0.783607;-0.809577;-0.8254;-0.830715;-0.830715;-0.8254;-0.809577;-0.783607;-0.748083;-0.703818;-0.651821;-0.593282;-0.529538;-0.462045;-0.427505;-0.39259;-0.357585;-0.322776;-0.288447;-0.254878;-0.222343;-0.191107;-0.161425;-0.120653;-0.0834924;-0.0503726;-0.0216747;0.00227037;0.0211867;0.0348563;0.0431216;0.0458874</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_4ID"> + <name>Profile_Fuselage_4</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0750025;-0.149141;-0.22156;-0.291425;-0.357932;-0.420313;-0.47785;-0.529879;-0.575801;-0.602865;-0.625914;-0.64476;-0.659248;-0.669262;-0.674719;-0.675574;-0.671821;-0.66349;-0.634686;-0.591382;-0.534566;-0.465538;-0.385874;-0.297394;-0.20212;-0.102228;-8.30642e-17;8.30642e-17;0.102228;0.20212;0.297394;0.385874;0.465538;0.534566;0.591382;0.634686;0.66349;0.671821;0.675574;0.674719;0.669262;0.659248;0.64476;0.625914;0.602865;0.575801;0.529879;0.47785;0.420313;0.357932;0.291425;0.22156;0.149141;0.0750025;0</y> + <z mapType="vector">0.305768;0.301737;0.289687;0.26976;0.242184;0.207277;0.165441;0.117159;0.0629876;0.0035503;-0.0397198;-0.0852555;-0.132685;-0.181622;-0.231667;-0.282411;-0.333441;-0.38434;-0.434692;-0.533083;-0.626009;-0.711347;-0.787147;-0.851677;-0.903463;-0.941322;-0.964389;-0.972137;-0.972137;-0.964389;-0.941322;-0.903463;-0.851677;-0.787147;-0.711347;-0.626009;-0.533083;-0.434692;-0.38434;-0.333441;-0.282411;-0.231667;-0.181622;-0.132685;-0.0852555;-0.0397198;0.0035503;0.0629876;0.117159;0.165441;0.207277;0.242184;0.26976;0.289687;0.301737;0.305768</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_5ID"> + <name>Profile_Fuselage_5</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0962309;-0.191353;-0.284269;-0.373909;-0.459239;-0.539277;-0.613099;-0.679854;-0.738774;-0.773498;-0.80307;-0.82725;-0.845839;-0.858687;-0.865688;-0.866786;-0.86197;-0.851282;-0.814325;-0.758764;-0.685868;-0.597302;-0.49509;-0.381567;-0.259327;-0.131162;-1.06574e-16;1.06574e-16;0.131162;0.259327;0.381567;0.49509;0.597302;0.685868;0.758764;0.814325;0.851282;0.86197;0.866786;0.865688;0.858687;0.845839;0.82725;0.80307;0.773498;0.738774;0.679854;0.613099;0.539277;0.459239;0.373909;0.284269;0.191353;0.0962309;0</y> + <z mapType="vector">0.556032;0.550859;0.5354;0.509832;0.474451;0.429664;0.375988;0.31404;0.244536;0.168276;0.112759;0.0543348;-0.00651942;-0.0693073;-0.133517;-0.198623;-0.264096;-0.329401;-0.394004;-0.520244;-0.639471;-0.748963;-0.846217;-0.929011;-0.995455;-1.04403;-1.07363;-1.08357;-1.08357;-1.07363;-1.04403;-0.995455;-0.929011;-0.846217;-0.748963;-0.639471;-0.520244;-0.394004;-0.329401;-0.264096;-0.198623;-0.133517;-0.0693073;-0.00651942;0.0543348;0.112759;0.168276;0.244536;0.31404;0.375988;0.429664;0.474451;0.509832;0.5354;0.550859;0.556032</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_6ID"> + <name>Profile_Fuselage_6</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.116018;-0.230698;-0.34272;-0.450792;-0.553668;-0.650162;-0.739163;-0.819645;-0.89068;-0.932543;-0.968196;-0.997348;-1.01976;-1.03525;-1.04369;-1.04501;-1.03921;-1.02632;-0.981766;-0.91478;-0.826895;-0.720119;-0.59689;-0.460025;-0.312649;-0.158131;-1.28488e-16;1.28488e-16;0.158131;0.312649;0.460025;0.59689;0.720119;0.826895;0.91478;0.981766;1.02632;1.03921;1.04501;1.04369;1.03525;1.01976;0.997348;0.968196;0.932543;0.89068;0.819645;0.739163;0.650162;0.553668;0.450792;0.34272;0.230698;0.116018;0</y> + <z mapType="vector">0.796924;0.790687;0.772049;0.741224;0.698568;0.644572;0.579859;0.505174;0.421378;0.329438;0.262505;0.192068;0.118701;0.0430027;-0.0344091;-0.112903;-0.191838;-0.270571;-0.348458;-0.500655;-0.644398;-0.776403;-0.893654;-0.993472;-1.07358;-1.13214;-1.16782;-1.17981;-1.17981;-1.16782;-1.13214;-1.07358;-0.993472;-0.893654;-0.776403;-0.644398;-0.500655;-0.348458;-0.270571;-0.191838;-0.112903;-0.0344091;0.0430027;0.118701;0.192068;0.262505;0.329438;0.421378;0.505174;0.579859;0.644572;0.698568;0.741224;0.772049;0.790687;0.796924</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_7ID"> + <name>Profile_Fuselage_7</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.133077;-0.264621;-0.393115;-0.517077;-0.635081;-0.745764;-0.847852;-0.940168;-1.02165;-1.06967;-1.11056;-1.144;-1.16971;-1.18748;-1.19716;-1.19868;-1.19202;-1.17723;-1.12613;-1.04929;-0.948484;-0.826007;-0.684659;-0.527668;-0.358622;-0.181383;-1.47381e-16;1.47381e-16;0.181383;0.358622;0.527668;0.684659;0.826007;0.948484;1.04929;1.12613;1.17723;1.19202;1.19868;1.19716;1.18748;1.16971;1.144;1.11056;1.06967;1.02165;0.940168;0.847852;0.745764;0.635081;0.517077;0.393115;0.264621;0.133077;0</y> + <z mapType="vector">1.00719;1.00004;0.978662;0.943304;0.894376;0.83244;0.758211;0.672544;0.576427;0.470967;0.394193;0.313398;0.229243;0.142414;0.0536191;-0.0364167;-0.126959;-0.217269;-0.306609;-0.481185;-0.646064;-0.797479;-0.931972;-1.04647;-1.13835;-1.20553;-1.24645;-1.2602;-1.2602;-1.24645;-1.20553;-1.13835;-1.04647;-0.931972;-0.797479;-0.646064;-0.481185;-0.306609;-0.217269;-0.126959;-0.0364167;0.0536191;0.142414;0.229243;0.313398;0.394193;0.470967;0.576427;0.672544;0.758211;0.83244;0.894376;0.943304;0.978662;1.00004;1.00719</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_8ID"> + <name>Profile_Fuselage_8</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.147337;-0.292977;-0.435239;-0.572485;-0.703133;-0.825677;-0.938704;-1.04091;-1.13112;-1.18429;-1.22957;-1.26659;-1.29505;-1.31472;-1.32544;-1.32712;-1.31975;-1.30338;-1.2468;-1.16173;-1.05012;-0.914519;-0.758024;-0.584211;-0.397051;-0.200819;-1.63174e-16;1.63174e-16;0.200819;0.397051;0.584211;0.758024;0.914519;1.05012;1.16173;1.2468;1.30338;1.31975;1.32712;1.32544;1.31472;1.29505;1.26659;1.22957;1.18429;1.13112;1.04091;0.938704;0.825677;0.703133;0.572485;0.435239;0.292977;0.147337;0</y> + <z mapType="vector">1.18088;1.17296;1.1493;1.11015;1.05598;0.987405;0.905222;0.810375;0.703958;0.587198;0.502197;0.412745;0.319572;0.223438;0.125129;0.0254449;-0.0747993;-0.174786;-0.2737;-0.466983;-0.64953;-0.81717;-0.966074;-1.09284;-1.19457;-1.26894;-1.31425;-1.32948;-1.32948;-1.31425;-1.26894;-1.19457;-1.09284;-0.966074;-0.81717;-0.64953;-0.466983;-0.2737;-0.174786;-0.0747993;0.0254449;0.125129;0.223438;0.319572;0.412745;0.502197;0.587198;0.703958;0.810375;0.905222;0.987405;1.05598;1.11015;1.1493;1.17296;1.18088</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_9ID"> + <name>Profile_Fuselage_9</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.158826;-0.315821;-0.469176;-0.617124;-0.757959;-0.890058;-1.0119;-1.12208;-1.21932;-1.27663;-1.32544;-1.36535;-1.39603;-1.41723;-1.42879;-1.4306;-1.42265;-1.40501;-1.34402;-1.25231;-1.132;-0.985826;-0.817129;-0.629763;-0.42801;-0.216478;-1.75897e-16;1.75897e-16;0.216478;0.42801;0.629763;0.817129;0.985826;1.132;1.25231;1.34402;1.40501;1.42265;1.4306;1.42879;1.41723;1.39603;1.36535;1.32544;1.27663;1.21932;1.12208;1.0119;0.890058;0.757959;0.617124;0.469176;0.315821;0.158826;0</y> + <z mapType="vector">1.31647;1.30794;1.28242;1.24022;1.18183;1.10791;1.01932;0.917075;0.802361;0.676496;0.584867;0.48844;0.388002;0.284373;0.178398;0.0709417;-0.0371189;-0.144902;-0.251528;-0.459882;-0.656663;-0.837375;-0.997889;-1.13454;-1.2442;-1.32437;-1.37322;-1.38963;-1.38963;-1.37322;-1.32437;-1.2442;-1.13454;-0.997889;-0.837375;-0.656663;-0.459882;-0.251528;-0.144902;-0.0371189;0.0709417;0.178398;0.284373;0.388002;0.48844;0.584867;0.676496;0.802361;0.917075;1.01932;1.10791;1.18183;1.24022;1.28242;1.30794;1.31647</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_10ID"> + <name>Profile_Fuselage_10</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.167385;-0.33284;-0.49446;-0.65038;-0.798805;-0.938022;-1.06643;-1.18254;-1.28503;-1.34543;-1.39687;-1.43892;-1.47126;-1.49361;-1.50578;-1.50746;-1.50746;-1.50769;-1.49932;-1.48073;-1.41644;-1.3198;-1.193;-1.03895;-0.861164;-0.663701;-0.451075;-0.228144;-1.85376e-16;1.85376e-16;0.228144;0.451075;0.663701;0.861164;1.03895;1.193;1.3198;1.41644;1.48073;1.49932;1.50769;1.50746;1.50746;1.50578;1.49361;1.47126;1.43892;1.39687;1.34543;1.28503;1.18254;1.06643;0.938022;0.798805;0.65038;0.49446;0.33284;0.167385;0</y> + <z mapType="vector">1.4125;1.4035;1.37661;1.33214;1.2706;1.1927;1.09933;0.991579;0.870683;0.738035;0.641468;0.539845;0.433995;0.324781;0.213095;0.0998478;-1.21431e-17;-1.04083e-17;-0.0140362;-0.127628;-0.24;-0.459582;-0.666967;-0.857417;-1.02658;-1.17059;-1.28617;-1.37066;-1.42214;-1.43943;-1.43943;-1.42214;-1.37066;-1.28617;-1.17059;-1.02658;-0.857417;-0.666967;-0.459582;-0.24;-0.127628;-0.0140362;-1.04083e-17;-1.21431e-17;0.0998478;0.213095;0.324781;0.433995;0.539845;0.641468;0.738035;0.870683;0.991579;1.09933;1.1927;1.2706;1.33214;1.37661;1.4035;1.4125</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_11ID"> + <name>Profile_Fuselage_11</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.170215;-0.338336;-0.502295;-0.660075;-0.809738;-0.949443;-1.07747;-1.19226;-1.29239;-1.34981;-1.39871;-1.43873;-1.46958;-1.49103;-1.50292;-1.50517;-1.49775;-1.48073;-1.41929;-1.32466;-1.19904;-1.04538;-0.867254;-0.668842;-0.454782;-0.230083;-1.84815e-16;1.84815e-16;0.230083;0.454782;0.668842;0.867254;1.04538;1.19904;1.32466;1.41929;1.48073;1.49775;1.50517;1.50292;1.49103;1.46958;1.43873;1.39871;1.34981;1.29239;1.19226;1.07747;0.949443;0.809738;0.660075;0.502295;0.338336;0.170215;0</y> + <z mapType="vector">1.44226;1.43282;1.40459;1.35794;1.29343;1.21187;1.11425;1.00179;0.875866;0.738035;0.640312;0.538033;0.431945;0.322822;0.211459;0.09867;-0.0147213;-0.127887;-0.24;-0.462387;-0.672814;-0.866355;-1.03848;-1.18517;-1.30298;-1.38915;-1.44168;-1.45932;-1.45932;-1.44168;-1.38915;-1.30298;-1.18517;-1.03848;-0.866355;-0.672814;-0.462387;-0.24;-0.127887;-0.0147213;0.09867;0.211459;0.322822;0.431945;0.538033;0.640312;0.738035;0.875866;1.00179;1.11425;1.21187;1.29343;1.35794;1.40459;1.43282;1.44226</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_12ID"> + <name>Profile_Fuselage_12</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175211;-0.348035;-0.516116;-0.677163;-0.828981;-0.969502;-1.09681;-1.20917;-1.30506;-1.35719;-1.40161;-1.43805;-1.4663;-1.4862;-1.49763;-1.50053;-1.49489;-1.48073;-1.4245;-1.33355;-1.21009;-1.05713;-0.878398;-0.67825;-0.461567;-0.233631;-1.83808e-16;1.83808e-16;0.233631;0.461567;0.67825;0.878398;1.05713;1.21009;1.33355;1.4245;1.48073;1.49489;1.50053;1.49763;1.4862;1.4663;1.43805;1.40161;1.35719;1.30506;1.20917;1.09681;0.969502;0.828981;0.677163;0.516116;0.348035;0.175211;0</y> + <z mapType="vector">1.49503;1.48478;1.45419;1.40366;1.33389;1.24583;1.14068;1.01986;0.885037;0.738035;0.638276;0.534848;0.428346;0.319386;0.208596;0.0966149;-0.0159107;-0.128332;-0.24;-0.467501;-0.683478;-0.882665;-1.06021;-1.21177;-1.33367;-1.42293;-1.47737;-1.49566;-1.49566;-1.47737;-1.42293;-1.33367;-1.21177;-1.06021;-0.882665;-0.683478;-0.467501;-0.24;-0.128332;-0.0159107;0.0966149;0.208596;0.319386;0.428346;0.534848;0.638276;0.738035;0.885037;1.01986;1.14068;1.24583;1.33389;1.40366;1.45419;1.48478;1.49503</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_13ID"> + <name>Profile_Fuselage_13</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0</y> + <z mapType="vector">1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_14ID"> + <name>Profile_Fuselage_14</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0</y> + <z mapType="vector">1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_15ID"> + <name>Profile_Fuselage_15</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0</y> + <z mapType="vector">1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_16ID"> + <name>Profile_Fuselage_16</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175662;-0.348914;-0.517377;-0.678739;-0.830787;-0.971432;-1.09875;-1.21098;-1.3066;-1.35836;-1.40244;-1.43859;-1.46661;-1.48633;-1.49764;-1.50048;-1.49483;-1.48073;-1.42463;-1.33377;-1.21036;-1.05741;-0.878664;-0.678474;-0.461729;-0.233716;-1.83786e-16;1.83786e-16;0.233716;0.461729;0.678474;0.878664;1.05741;1.21036;1.33377;1.42463;1.48073;1.49483;1.50048;1.49764;1.48633;1.46661;1.43859;1.40244;1.35836;1.3066;1.21098;1.09875;0.971432;0.830787;0.678739;0.517377;0.348914;0.175662;0</y> + <z mapType="vector">1.49917;1.48886;1.45808;1.40725;1.33707;1.2485;1.14275;1.02128;0.885755;0.738035;0.638146;0.534639;0.428102;0.319142;0.20838;0.0964462;-0.016022;-0.128384;-0.24;-0.467621;-0.683729;-0.883049;-1.06072;-1.2124;-1.3344;-1.42372;-1.47821;-1.49652;-1.49652;-1.47821;-1.42372;-1.3344;-1.2124;-1.06072;-0.883049;-0.683729;-0.467621;-0.24;-0.128384;-0.016022;0.0964462;0.20838;0.319142;0.428102;0.534639;0.638146;0.738035;0.885755;1.02128;1.14275;1.2485;1.33707;1.40725;1.45808;1.48886;1.49917</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_17ID"> + <name>Profile_Fuselage_17</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175611;-0.348904;-0.517594;-0.679454;-0.83235;-0.974263;-1.10332;-1.21782;-1.31626;-1.36984;-1.4151;-1.45173;-1.47948;-1.49818;-1.50768;-1.50793;-1.49892;-1.48073;-1.4175;-1.3216;-1.19524;-1.04133;-0.863417;-0.665603;-0.452447;-0.228861;-1.8517e-16;1.8517e-16;0.228861;0.452447;0.665603;0.863417;1.04133;1.19524;1.3216;1.4175;1.48073;1.49892;1.50793;1.50768;1.49818;1.47948;1.45173;1.4151;1.36984;1.31626;1.21782;1.10332;0.974263;0.83235;0.679454;0.517594;0.348904;0.175611;0</y> + <z mapType="vector">1.48673;1.47663;1.44646;1.39661;1.32775;1.24078;1.13685;1.01734;0.88381;0.738035;0.638866;0.535631;0.429028;0.319778;0.208619;0.0963014;-0.0164149;-0.128768;-0.24;-0.460619;-0.669129;-0.860722;-1.03098;-1.17598;-1.29238;-1.3775;-1.42936;-1.44679;-1.44679;-1.42936;-1.3775;-1.29238;-1.17598;-1.03098;-0.860722;-0.669129;-0.460619;-0.24;-0.128768;-0.0164149;0.0963014;0.208619;0.319778;0.429028;0.535631;0.638866;0.738035;0.88381;1.01734;1.13685;1.24078;1.32775;1.39661;1.44646;1.47663;1.48673</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_18ID"> + <name>Profile_Fuselage_18</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.175832;-0.349588;-0.519218;-0.68272;-0.838165;-0.983716;-1.11766;-1.23841;-1.34455;-1.40314;-1.45163;-1.48952;-1.51644;-1.53209;-1.53633;-1.52912;-1.51052;-1.48073;-1.39918;-1.29045;-1.15666;-1.00039;-0.824688;-0.632961;-0.428934;-0.216571;-1.90889e-16;1.90889e-16;0.216571;0.428934;0.632961;0.824688;1.00039;1.15666;1.29045;1.39918;1.48073;1.51052;1.52912;1.53633;1.53209;1.51644;1.48952;1.45163;1.40314;1.34455;1.23841;1.11766;0.983716;0.838165;0.68272;0.519218;0.349588;0.175832;0</y> + <z mapType="vector">1.45358;1.44401;1.41543;1.36818;1.3028;1.22007;1.12097;1.00667;0.878524;0.738035;0.640777;0.538103;0.431062;0.320746;0.208282;0.0948189;-0.0184848;-0.130472;-0.24;-0.4411;-0.628928;-0.799831;-0.950485;-1.07796;-1.17977;-1.25394;-1.29903;-1.31416;-1.31416;-1.29903;-1.25394;-1.17977;-1.07796;-0.950485;-0.799831;-0.628928;-0.4411;-0.24;-0.130472;-0.0184848;0.0948189;0.208282;0.320746;0.431062;0.538103;0.640777;0.738035;0.878524;1.00667;1.12097;1.22007;1.3028;1.36818;1.41543;1.44401;1.45358</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_19ID"> + <name>Profile_Fuselage_19</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.171561;-0.341303;-0.507426;-0.668169;-0.821826;-0.96677;-1.10146;-1.22447;-1.3345;-1.39767;-1.44857;-1.48644;-1.5107;-1.52099;-1.51716;-1.49926;-1.46758;-1.42259;-1.3248;-1.20692;-1.07074;-0.918311;-0.751952;-0.574183;-0.3877;-0.195332;-1.95014e-16;1.95014e-16;0.195332;0.3877;0.574183;0.751952;0.918311;1.07074;1.20692;1.3248;1.42259;1.46758;1.49926;1.51716;1.52099;1.5107;1.48644;1.44857;1.39767;1.3345;1.22447;1.10146;0.96677;0.821826;0.668169;0.507426;0.341303;0.171561;0</y> + <z mapType="vector">1.40515;1.39631;1.36987;1.32611;1.26551;1.18869;1.09649;0.989864;0.869956;0.738035;0.642103;0.539138;0.430703;0.318445;0.204066;0.089304;-0.0241001;-0.134426;-0.24;-0.409315;-0.565362;-0.705768;-0.828395;-0.931378;-1.01315;-1.07246;-1.10842;-1.12046;-1.12046;-1.10842;-1.07246;-1.01315;-0.931378;-0.828395;-0.705768;-0.565362;-0.409315;-0.24;-0.134426;-0.0241001;0.089304;0.204066;0.318445;0.430703;0.539138;0.642103;0.738035;0.869956;0.989864;1.09649;1.18869;1.26551;1.32611;1.36987;1.39631;1.40515</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_20ID"> + <name>Profile_Fuselage_20</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.162522;-0.323372;-0.480897;-0.633477;-0.779541;-0.917589;-1.0462;-1.16405;-1.26993;-1.33438;-1.38495;-1.42069;-1.44093;-1.44527;-1.43364;-1.40628;-1.3637;-1.30674;-1.20499;-1.08859;-0.958951;-0.817648;-0.666394;-0.507027;-0.341488;-0.17179;-1.91908e-16;1.91908e-16;0.17179;0.341488;0.507027;0.666394;0.817648;0.958951;1.08859;1.20499;1.30674;1.3637;1.40628;1.43364;1.44527;1.44093;1.42069;1.38495;1.33438;1.26993;1.16405;1.0462;0.917589;0.779541;0.633477;0.480897;0.323372;0.162522;0</y> + <z mapType="vector">1.36175;1.3535;1.32883;1.288;1.23142;1.15969;1.07352;0.973821;0.861608;0.738035;0.641563;0.537151;0.426787;0.31257;0.196675;0.0813069;-0.0313402;-0.139125;-0.24;-0.378415;-0.504841;-0.617728;-0.715696;-0.797543;-0.862267;-0.909073;-0.937388;-0.946866;-0.946866;-0.937388;-0.909073;-0.862267;-0.797543;-0.715696;-0.617728;-0.504841;-0.378415;-0.24;-0.139125;-0.0313402;0.0813069;0.196675;0.31257;0.426787;0.537151;0.641563;0.738035;0.861608;0.973821;1.07352;1.15969;1.23142;1.288;1.32883;1.3535;1.36175</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_21ID"> + <name>Profile_Fuselage_21</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.158809;-0.315997;-0.469962;-0.619133;-0.761988;-0.89707;-1.023;-1.1385;-1.24238;-1.30717;-1.35747;-1.39225;-1.4108;-1.41273;-1.39801;-1.37646;-1.37646;-1.36694;-1.32016;-1.25862;-1.15615;-1.04101;-0.914462;-0.777892;-0.632797;-0.480768;-0.323469;-0.162626;-1.90505e-16;1.90505e-16;0.162626;0.323469;0.480768;0.632797;0.777892;0.914462;1.04101;1.15615;1.25862;1.32016;1.36694;1.37646;1.37646;1.39801;1.41273;1.4108;1.39225;1.35747;1.30717;1.24238;1.1385;1.023;0.89707;0.761988;0.619133;0.469962;0.315997;0.158809;0</y> + <z mapType="vector">1.34539;1.33736;1.31335;1.27361;1.21854;1.1487;1.06481;0.967721;0.858424;0.738035;0.641215;0.536136;0.42495;0.309937;0.193454;0.0778887;-4.51028e-17;1.38778e-16;-0.0343905;-0.141082;-0.24;-0.36657;-0.481734;-0.58423;-0.672935;-0.746877;-0.805244;-0.847398;-0.872877;-0.881401;-0.881401;-0.872877;-0.847398;-0.805244;-0.746877;-0.672935;-0.58423;-0.481734;-0.36657;-0.24;-0.141082;-0.0343905;1.38778e-16;-4.51028e-17;0.0778887;0.193454;0.309937;0.42495;0.536136;0.641215;0.738035;0.858424;0.967721;1.06481;1.1487;1.21854;1.27361;1.31335;1.33736;1.34539</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_22ID"> + <name>Profile_Fuselage_22</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.138612;-0.275811;-0.410195;-0.540395;-0.665083;-0.782986;-0.892901;-0.993708;-1.08438;-1.14093;-1.18483;-1.21519;-1.23138;-1.23307;-1.22022;-1.1931;-1.15227;-1.09855;-1.00912;-0.90862;-0.798166;-0.678964;-0.552322;-0.419626;-0.282332;-0.141944;-1.66277e-16;1.66277e-16;0.141944;0.282332;0.419626;0.552322;0.678964;0.798166;0.90862;1.00912;1.09855;1.15227;1.1931;1.22022;1.23307;1.23138;1.21519;1.18483;1.14093;1.08438;0.993708;0.892901;0.782986;0.665083;0.540395;0.410195;0.275811;0.138612;0</y> + <z mapType="vector">1.29468;1.28756;1.26629;1.23107;1.18227;1.12038;1.04605;0.960013;0.863162;0.756481;0.670685;0.577571;0.479045;0.377129;0.273909;0.171503;0.0720081;-0.0225352;-0.110189;-0.222348;-0.324398;-0.415224;-0.493828;-0.55935;-0.611072;-0.648426;-0.671003;-0.678557;-0.678557;-0.671003;-0.648426;-0.611072;-0.55935;-0.493828;-0.415224;-0.324398;-0.222348;-0.110189;-0.0225352;0.0720081;0.171503;0.273909;0.377129;0.479045;0.577571;0.670685;0.756481;0.863162;0.960013;1.04605;1.12038;1.18227;1.23107;1.26629;1.28756;1.29468</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_23ID"> + <name>Profile_Fuselage_23</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.115885;-0.230588;-0.342939;-0.451791;-0.556034;-0.654606;-0.746499;-0.830777;-0.90658;-0.95386;-0.990566;-1.01595;-1.02948;-1.03089;-1.02015;-0.99748;-0.96334;-0.918432;-0.843659;-0.75964;-0.667297;-0.56764;-0.461762;-0.350824;-0.23604;-0.11867;-1.39014e-16;1.39014e-16;0.11867;0.23604;0.350824;0.461762;0.56764;0.667297;0.75964;0.843659;0.918432;0.96334;0.99748;1.02015;1.03089;1.02948;1.01595;0.990566;0.95386;0.90658;0.830777;0.746499;0.654606;0.556034;0.451791;0.342939;0.230588;0.115885;0</y> + <z mapType="vector">1.23706;1.23098;1.21281;1.18273;1.14106;1.08821;1.02473;0.951255;0.868545;0.77744;0.704172;0.624653;0.540513;0.453476;0.365328;0.277873;0.192906;0.112167;0.0373106;-0.0584715;-0.145622;-0.223186;-0.290314;-0.346269;-0.390439;-0.422339;-0.44162;-0.448071;-0.448071;-0.44162;-0.422339;-0.390439;-0.346269;-0.290314;-0.223186;-0.145622;-0.0584715;0.0373106;0.112167;0.192906;0.277873;0.365328;0.453476;0.540513;0.624653;0.704172;0.77744;0.868545;0.951255;1.02473;1.08821;1.14106;1.18273;1.21281;1.23098;1.23706</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_24ID"> + <name>Profile_Fuselage_24</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0920396;-0.18314;-0.272373;-0.358827;-0.44162;-0.519908;-0.592893;-0.659829;-0.720034;-0.757585;-0.786739;-0.806897;-0.817646;-0.818767;-0.810237;-0.79223;-0.765115;-0.729448;-0.670061;-0.60333;-0.529988;-0.450837;-0.366746;-0.278635;-0.187471;-0.0942518;-1.10409e-16;1.10409e-16;0.0942518;0.187471;0.278635;0.366746;0.450837;0.529988;0.60333;0.670061;0.729448;0.765115;0.79223;0.810237;0.818767;0.817646;0.806897;0.786739;0.757585;0.720034;0.659829;0.592893;0.519908;0.44162;0.358827;0.272373;0.18314;0.0920396;0</y> + <z mapType="vector">1.17298;1.16806;1.15334;1.12899;1.09524;1.05243;1.00102;0.941516;0.874531;0.800747;0.741408;0.677007;0.608864;0.538375;0.466986;0.396158;0.327345;0.261956;0.201331;0.12376;0.053178;-0.00963954;-0.0640047;-0.109322;-0.145094;-0.170929;-0.186544;-0.191769;-0.191769;-0.186544;-0.170929;-0.145094;-0.109322;-0.0640047;-0.00963954;0.053178;0.12376;0.201331;0.261956;0.327345;0.396158;0.466986;0.538375;0.608864;0.677007;0.741408;0.800747;0.874531;0.941516;1.00102;1.05243;1.09524;1.12899;1.15334;1.16806;1.17298</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_25ID"> + <name>Profile_Fuselage_25</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0693292;-0.137951;-0.205166;-0.270288;-0.332652;-0.391623;-0.446599;-0.497019;-0.542369;-0.570654;-0.592614;-0.607798;-0.615895;-0.61674;-0.610314;-0.59675;-0.576326;-0.549459;-0.504726;-0.454461;-0.399215;-0.339595;-0.276253;-0.209883;-0.141213;-0.0709956;-8.31663e-17;8.31663e-17;0.0709956;0.141213;0.209883;0.276253;0.339595;0.399215;0.454461;0.504726;0.549459;0.576326;0.59675;0.610314;0.61674;0.615895;0.607798;0.592614;0.570654;0.542369;0.497019;0.446599;0.391623;0.332652;0.270288;0.205166;0.137951;0.0693292;0</y> + <z mapType="vector">1.10741;1.10367;1.09249;1.07399;1.04834;1.01582;0.976759;0.93155;0.880656;0.824597;0.779513;0.730583;0.67881;0.625254;0.571014;0.517201;0.464918;0.415237;0.369176;0.310239;0.256613;0.208886;0.167581;0.13315;0.105971;0.0863423;0.0744781;0.0705089;0.0705089;0.0744781;0.0863423;0.105971;0.13315;0.167581;0.208886;0.256613;0.310239;0.369176;0.415237;0.464918;0.517201;0.571014;0.625254;0.67881;0.730583;0.779513;0.824597;0.880656;0.93155;0.976759;1.01582;1.04834;1.07399;1.09249;1.10367;1.10741</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_26ID"> + <name>Profile_Fuselage_26</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.049198;-0.0978941;-0.145592;-0.191804;-0.236059;-0.277907;-0.31692;-0.352699;-0.384881;-0.404953;-0.420536;-0.431311;-0.437057;-0.437656;-0.433097;-0.423471;-0.408977;-0.389912;-0.358168;-0.322499;-0.283295;-0.240986;-0.196037;-0.148939;-0.100209;-0.0503805;-5.90172e-17;5.90172e-17;0.0503805;0.100209;0.148939;0.196037;0.240986;0.283295;0.322499;0.358168;0.389912;0.408977;0.423471;0.433097;0.437656;0.437057;0.431311;0.420536;0.404953;0.384881;0.352699;0.31692;0.277907;0.236059;0.191804;0.145592;0.0978941;0.049198;0</y> + <z mapType="vector">1.04425;1.04165;1.03388;1.02101;1.00317;0.980557;0.953391;0.92195;0.886557;0.847571;0.816218;0.78219;0.746185;0.70894;0.671219;0.633796;0.597436;0.562886;0.530853;0.489866;0.452573;0.419381;0.390656;0.366711;0.34781;0.334159;0.325909;0.323148;0.323148;0.325909;0.334159;0.34781;0.366711;0.390656;0.419381;0.452573;0.489866;0.530853;0.562886;0.597436;0.633796;0.671219;0.70894;0.746185;0.78219;0.816218;0.847571;0.886557;0.92195;0.953391;0.980557;1.00317;1.02101;1.03388;1.04165;1.04425</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_27ID"> + <name>Profile_Fuselage_27</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0327759;-0.0652174;-0.0969936;-0.12778;-0.157264;-0.185143;-0.211133;-0.234969;-0.256409;-0.269781;-0.280162;-0.287341;-0.291169;-0.291568;-0.28853;-0.282118;-0.272462;-0.259761;-0.238613;-0.21485;-0.188732;-0.160546;-0.1306;-0.0992237;-0.0667595;-0.0335637;-3.93175e-17;3.93175e-17;0.0335637;0.0667595;0.0992237;0.1306;0.160546;0.188732;0.21485;0.238613;0.259761;0.272462;0.282118;0.28853;0.291568;0.291169;0.287341;0.280162;0.269781;0.256409;0.234969;0.211133;0.185143;0.157264;0.12778;0.0969936;0.0652174;0.0327759;0</y> + <z mapType="vector">0.988024;0.986438;0.981694;0.973842;0.962961;0.949162;0.932587;0.913404;0.891809;0.868023;0.848893;0.828131;0.806163;0.783439;0.760424;0.737591;0.715406;0.694326;0.674782;0.649774;0.62702;0.606769;0.589242;0.574633;0.563101;0.554772;0.549738;0.548053;0.548053;0.549738;0.554772;0.563101;0.574633;0.589242;0.606769;0.62702;0.649774;0.674782;0.694326;0.715406;0.737591;0.760424;0.783439;0.806163;0.828131;0.848893;0.868023;0.891809;0.913404;0.932587;0.949162;0.962961;0.973842;0.981694;0.986438;0.988024</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_28ID"> + <name>Profile_Fuselage_28</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0207606;-0.0413094;-0.0614368;-0.0809375;-0.0996125;-0.117271;-0.133734;-0.148832;-0.162412;-0.170882;-0.177458;-0.182005;-0.18443;-0.184682;-0.182758;-0.178696;-0.17258;-0.164535;-0.15114;-0.136088;-0.119545;-0.101692;-0.0827237;-0.0628493;-0.0422862;-0.0212596;-2.49041e-17;2.49041e-17;0.0212596;0.0422862;0.0628493;0.0827237;0.101692;0.119545;0.136088;0.15114;0.164535;0.17258;0.178696;0.182758;0.184682;0.18443;0.182005;0.177458;0.170882;0.162412;0.148832;0.133734;0.117271;0.0996125;0.0809375;0.0614368;0.0413094;0.0207606;0</y> + <z mapType="vector">0.943811;0.943021;0.940661;0.936754;0.931341;0.924475;0.916229;0.906684;0.89594;0.884105;0.874587;0.864258;0.853328;0.842021;0.83057;0.81921;0.808172;0.797684;0.78796;0.775518;0.764196;0.754121;0.745401;0.738132;0.732394;0.72825;0.725745;0.724907;0.724907;0.725745;0.72825;0.732394;0.738132;0.745401;0.754121;0.764196;0.775518;0.78796;0.797684;0.808172;0.81921;0.83057;0.842021;0.853328;0.864258;0.874587;0.884105;0.89594;0.906684;0.916229;0.924475;0.931341;0.936754;0.940661;0.943021;0.943811</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_29ID"> + <name>Profile_Fuselage_29</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0134438;-0.0267504;-0.0397841;-0.052412;-0.0645053;-0.0759405;-0.086601;-0.096378;-0.105172;-0.110657;-0.114915;-0.117859;-0.11943;-0.119593;-0.118347;-0.115717;-0.111757;-0.106547;-0.0978725;-0.0881255;-0.0774127;-0.0658516;-0.0535688;-0.0406989;-0.0273829;-0.0137669;-1.6127e-17;1.6127e-17;0.0137669;0.0273829;0.0406989;0.0535688;0.0658516;0.0774127;0.0881255;0.0978725;0.106547;0.111757;0.115717;0.118347;0.119593;0.11943;0.117859;0.114915;0.110657;0.105172;0.096378;0.086601;0.0759405;0.0645053;0.052412;0.0397841;0.0267504;0.0134438;0</y> + <z mapType="vector">0.915758;0.915474;0.914626;0.913223;0.911278;0.908812;0.905849;0.90242;0.898561;0.894309;0.89089;0.887179;0.883253;0.879191;0.875078;0.870996;0.867031;0.863264;0.85977;0.855301;0.851234;0.847614;0.844481;0.84187;0.839809;0.83832;0.837421;0.83712;0.83712;0.837421;0.83832;0.839809;0.84187;0.844481;0.847614;0.851234;0.855301;0.85977;0.863264;0.867031;0.870996;0.875078;0.879191;0.883253;0.887179;0.89089;0.894309;0.898561;0.90242;0.905849;0.908812;0.911278;0.913223;0.914626;0.915474;0.915758</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_30ID"> + <name>Profile_Fuselage_30</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> + <y mapType="vector">0;-0.0109799;-0.0218478;-0.0324928;-0.0428063;-0.0526831;-0.0620226;-0.0707293;-0.0787144;-0.0858966;-0.0903763;-0.0938541;-0.0962589;-0.0975413;-0.097675;-0.0966574;-0.0945092;-0.0912745;-0.0870196;-0.079935;-0.0719744;-0.063225;-0.0537827;-0.043751;-0.0332398;-0.0223644;-0.0112438;-1.31713e-17;1.31713e-17;0.0112438;0.0223644;0.0332398;0.043751;0.0537827;0.063225;0.0719744;0.079935;0.0870196;0.0912745;0.0945092;0.0966574;0.097675;0.0975413;0.0962589;0.0938541;0.0903763;0.0858966;0.0787144;0.0707293;0.0620226;0.0526831;0.0428063;0.0324928;0.0218478;0.0109799;0</y> + <z mapType="vector">0.906311;0.906198;0.905859;0.905299;0.904522;0.903537;0.902354;0.900985;0.899443;0.897745;0.89638;0.894898;0.89333;0.891708;0.890065;0.888435;0.886852;0.885347;0.883952;0.882167;0.880543;0.879097;0.877846;0.876804;0.87598;0.875386;0.875027;0.874906;0.874906;0.875027;0.875386;0.87598;0.876804;0.877846;0.879097;0.880543;0.882167;0.883952;0.885347;0.886852;0.888435;0.890065;0.891708;0.89333;0.894898;0.89638;0.897745;0.899443;0.900985;0.902354;0.903537;0.904522;0.905299;0.905859;0.906198;0.906311</z> + </pointList> + </fuselageProfile> + </fuselageProfiles> + </profiles> + <engines> + <engine uID="engine"> + <description>AGILE DC-1 Reference Engine 1</description> + <analysis> + <performanceMaps> + <performanceMap> + <flightLevel mapType="vector"> 120 </flightLevel> + <machNumber mapType="vector"> 0.9 </machNumber> + <thrust mapType="vector"> </thrust> + <mDotFuel mapType="vector"></mDotFuel> + </performanceMap> + </performanceMaps> + <mass> + <mass>2266.0</mass> + </mass> + <bpr00>4.4</bpr00> + <thrust00>61367.6832837</thrust00> + </analysis> + <geometry> + <diameter>1.40118975114</diameter> + <length>2.41986362808</length> + </geometry> + <transformation> + <translation refType="absLocal"> + <x>13.6765</x> + <y>5.7482</y> + <z>-2.33895</z> + </translation> + </transformation> + </engine> + </engines> + <materials> + <material uID="aluminium2024"> + <rho>2.8e3</rho> + <k11>80.9561216474e9</k11> + <sig11>0.3268e9</sig11> + </material> + <material uID="aluminium7075"> + <rho>2.8e3</rho> + <k11>80.9561216474e9</k11> + <sig11>0.3268e9</sig11> + </material> + </materials> + </vehicles> + <toolspecific> + <initiator> + <settings> + <NumberOfFlights>100000</NumberOfFlights> + <AirworthinessRegulations>Far-25</AirworthinessRegulations> + <LoiterTime>30</LoiterTime> + <DivRange>500</DivRange> + <WingLocation>Low</WingLocation> + <TailType>Standard</TailType> + <RootAirfoil>boeing-a</RootAirfoil> + <KinkAirfoil>boeing-b</KinkAirfoil> + <TipAirfoil>boeing-c</TipAirfoil> + <Parts mainPart="Fuselage"> + <fuselage name="Fuselage" type="Conventional"/> + <wing name="Main Wing" type="MainWing"/> + <wing name="Horizontal Stabiliser" type="HorizontalTail"/> + <wing name="Vertical Stabiliser" type="VerticalTail"/> + <engine name="Engine-1" type="TurboFan"> + <location>Main Wing</location> + <bypassRatio>6.0</bypassRatio> + </engine> + <engine name="Engine-2" type="TurboFan"> + <location>Main Wing</location> + <bypassRatio>6.0</bypassRatio> + </engine> + </Parts> + </settings> + <initialguesses> + <LDmax>16</LDmax> + <SFC>0.5</SFC> + <FFStartUp>0.990</FFStartUp> + <FFTaxi>0.990</FFTaxi> + <CLmaxLanding>3.2</CLmaxLanding> + <CLmaxTakeOff>2.2</CLmaxTakeOff> + <CLmaxClean>1.2</CLmaxClean> + <WingAspectRatio>9.39</WingAspectRatio> + </initialguesses> + </initiator> + <proteus> + <inputData> + <wingUID>MainWing_wingID</wingUID> + <beamElements>8</beamElements> + <spanwisePanels>12</spanwisePanels> + <chordwisePanels>10</chordwisePanels> + <crosssectionalElements>75</crosssectionalElements> + <linear>1</linear> + <trim>1</trim> + <weightDefinition>1</weightDefinition> + <gravity>1</gravity> + <graphic>0</graphic> + </inputData> + <outputData> + <loadCases> + </loadCases> + </outputData> + </proteus> + <q3D> + <aircraftmodelUID>agile_v13_modelID</aircraftmodelUID> + <typeOfRun>flightLoadCase</typeOfRun> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + <flightLoadCaseUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m</flightLoadCaseUID> + </q3D> + <EMWET uID="EMWET"> + <wingUID>MainWing_wingID</wingUID> + <loadcaseUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m</loadcaseUID> + <preferences> + <preference_description>"model" to obtain from model, "given" to take given value</preference_description> + <spar_pref>model</spar_pref> + <fueltank_pref>given</fueltank_pref> + <rib_pref>model</rib_pref> + </preferences> + <spars> + <spar_start_x>0.2</spar_start_x> + <spar_end_x>0.8</spar_end_x> + </spars> + <fueltank> + <fueltank_start_y>0.1</fueltank_start_y> + <fueltank_end_y>0.7</fueltank_end_y> + </fueltank> + <stringer_efficiency>0.96</stringer_efficiency> + <ribpitch>0.5</ribpitch> + <display>0</display> + </EMWET> + </toolspecific> +</cpacs> \ No newline at end of file diff --git a/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/MY_TEST_KB/MY_TEST_KB-base.xml b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/MY_TEST_KB/MY_TEST_KB-base.xml new file mode 100644 index 0000000000000000000000000000000000000000..9522aef4d3c90c279f0814d7293605e42e883a49 --- /dev/null +++ b/pyKADMOS/scripts/Andreas_development_scripts/DEMO_KNOWLEDGE_BASE/SPECIFIC_BASE/MY_TEST_KB/MY_TEST_KB-base.xml @@ -0,0 +1,4053 @@ +<?xml version='1.0' encoding='UTF-8'?> +<cpacs> + <header> + <name>some Name</name> + <version>1.0</version> + <cpacsVersion>2.3</cpacsVersion> + <creator>TUD</creator> + <description>some description</description> + <timestamp>2017-01-18 16:47:55.545000</timestamp> + <updates> + <update> + <modification>Initial Synthesis</modification> + <creator>TUD</creator> + </update> + <update> + <modification>CIAM Reference Engine included</modification> + <creator>DLR</creator> + </update> + <update> + <modification>POLITO Systems Mass analysis included</modification> + <creator>DLR</creator> + </update> + <update> + <modification>UNINA High Lift design included</modification> + <creator>DLR</creator> + </update> + <update> + <modification>Structural components included</modification> + <creator>DLR</creator> + </update> + <update> + <modification>DLR updated synthesis L0</modification> + <creator>DLR</creator> + </update> + </updates> + </header> + <vehicles> + <aircraft> + <model uID="agile_v13_modelID"> + <name>Agile-DC1-v13</name> + <description>Agile DC1 v13: 2:2 abreast 9180kg, right fuselage dims, medium BPR engine (6), max payload+range mission, LFL 1400 and TOFL 1500m, increased CLmax values</description> + <reference> + <point> + <y>0.0</y> <z>0.0</z> <x>15.6949</x> + </point> + <length>3.7317</length> + <area>82.7</area> + </reference> + <fuselages> + <fuselage uID="Fuselage_fuselageID"> + <name>Fuselage</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <sections> + <section uID="Fuselage_fuselageSection1ID"> + <name>FuselageSection1</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection1Element1ID"> + <name>FuselageSection1</name> + <profileUID>Profile_Fuselage_1ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection2ID"> + <name>FuselageSection2</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection2Element1ID"> + <name>FuselageSection2</name> + <profileUID>Profile_Fuselage_2ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection3ID"> + <name>FuselageSection3</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection3Element1ID"> + <name>FuselageSection3</name> + <profileUID>Profile_Fuselage_3ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection4ID"> + <name>FuselageSection4</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection4Element1ID"> + <name>FuselageSection4</name> + <profileUID>Profile_Fuselage_4ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection5ID"> + <name>FuselageSection5</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection5Element1ID"> + <name>FuselageSection5</name> + <profileUID>Profile_Fuselage_5ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection6ID"> + <name>FuselageSection6</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection6Element1ID"> + <name>FuselageSection6</name> + <profileUID>Profile_Fuselage_6ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection7ID"> + <name>FuselageSection7</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection7Element1ID"> + <name>FuselageSection7</name> + <profileUID>Profile_Fuselage_7ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection8ID"> + <name>FuselageSection8</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection8Element1ID"> + <name>FuselageSection8</name> + <profileUID>Profile_Fuselage_8ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection9ID"> + <name>FuselageSection9</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection9Element1ID"> + <name>FuselageSection9</name> + <profileUID>Profile_Fuselage_9ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection10ID"> + <name>FuselageSection10</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection10Element1ID"> + <name>FuselageSection10</name> + <profileUID>Profile_Fuselage_10ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection11ID"> + <name>FuselageSection11</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection11Element1ID"> + <name>FuselageSection11</name> + <profileUID>Profile_Fuselage_11ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection12ID"> + <name>FuselageSection12</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection12Element1ID"> + <name>FuselageSection12</name> + <profileUID>Profile_Fuselage_12ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection13ID"> + <name>FuselageSection13</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection13Element1ID"> + <name>FuselageSection13</name> + <profileUID>Profile_Fuselage_13ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection14ID"> + <name>FuselageSection14</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection14Element1ID"> + <name>FuselageSection14</name> + <profileUID>Profile_Fuselage_14ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection15ID"> + <name>FuselageSection15</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection15Element1ID"> + <name>FuselageSection15</name> + <profileUID>Profile_Fuselage_15ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection16ID"> + <name>FuselageSection16</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection16Element1ID"> + <name>FuselageSection16</name> + <profileUID>Profile_Fuselage_16ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection17ID"> + <name>FuselageSection17</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection17Element1ID"> + <name>FuselageSection17</name> + <profileUID>Profile_Fuselage_17ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection18ID"> + <name>FuselageSection18</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection18Element1ID"> + <name>FuselageSection18</name> + <profileUID>Profile_Fuselage_18ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection19ID"> + <name>FuselageSection19</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection19Element1ID"> + <name>FuselageSection19</name> + <profileUID>Profile_Fuselage_19ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection20ID"> + <name>FuselageSection20</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection20Element1ID"> + <name>FuselageSection20</name> + <profileUID>Profile_Fuselage_20ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection21ID"> + <name>FuselageSection21</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection21Element1ID"> + <name>FuselageSection21</name> + <profileUID>Profile_Fuselage_21ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection22ID"> + <name>FuselageSection22</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection22Element1ID"> + <name>FuselageSection22</name> + <profileUID>Profile_Fuselage_22ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection23ID"> + <name>FuselageSection23</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection23Element1ID"> + <name>FuselageSection23</name> + <profileUID>Profile_Fuselage_23ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection24ID"> + <name>FuselageSection24</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection24Element1ID"> + <name>FuselageSection24</name> + <profileUID>Profile_Fuselage_24ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection25ID"> + <name>FuselageSection25</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection25Element1ID"> + <name>FuselageSection25</name> + <profileUID>Profile_Fuselage_25ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection26ID"> + <name>FuselageSection26</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection26Element1ID"> + <name>FuselageSection26</name> + <profileUID>Profile_Fuselage_26ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection27ID"> + <name>FuselageSection27</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection27Element1ID"> + <name>FuselageSection27</name> + <profileUID>Profile_Fuselage_27ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection28ID"> + <name>FuselageSection28</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection28Element1ID"> + <name>FuselageSection28</name> + <profileUID>Profile_Fuselage_28ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection29ID"> + <name>FuselageSection29</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection29Element1ID"> + <name>FuselageSection29</name> + <profileUID>Profile_Fuselage_29ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="Fuselage_fuselageSection30ID"> + <name>FuselageSection30</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="Fuselage_fuselageSection30Element1ID"> + <name>FuselageSection30</name> + <profileUID>Profile_Fuselage_30ID</profileUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="Fuselage_fuselagePositioning1ID"> + <name>FuselagePositioning1</name> + <length>0.021104</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>Fuselage_fuselageSection1ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning2ID"> + <name>FuselagePositioning2</name> + <length>0.0849068</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection2ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning3ID"> + <name>FuselagePositioning3</name> + <length>0.274377</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection3ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning4ID"> + <name>FuselagePositioning4</name> + <length>0.583757</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection4ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning5ID"> + <name>FuselagePositioning5</name> + <length>1.00365</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection5ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning6ID"> + <name>FuselagePositioning6</name> + <length>1.52129</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection6ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning7ID"> + <name>FuselagePositioning7</name> + <length>2.12095</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection7ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning8ID"> + <name>FuselagePositioning8</name> + <length>2.78442</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection8ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning9ID"> + <name>FuselagePositioning9</name> + <length>3.49153</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection9ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning10ID"> + <name>FuselagePositioning10</name> + <length>4.2208</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection10ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning11ID"> + <name>FuselagePositioning11</name> + <length>4.6862</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection11ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning12ID"> + <name>FuselagePositioning12</name> + <length>6.04468</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection12ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning13ID"> + <name>FuselagePositioning13</name> + <length>8.1862</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection13ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning14ID"> + <name>FuselagePositioning14</name> + <length>10.9373</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection14ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning15ID"> + <name>FuselagePositioning15</name> + <length>14.075</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection15ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning16ID"> + <name>FuselagePositioning16</name> + <length>17.3452</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection16ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning17ID"> + <name>FuselagePositioning17</name> + <length>20.4829</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection17ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning18ID"> + <name>FuselagePositioning18</name> + <length>23.234</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection18ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning19ID"> + <name>FuselagePositioning19</name> + <length>25.3755</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection19ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning20ID"> + <name>FuselagePositioning20</name> + <length>26.734</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection20ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning21ID"> + <name>FuselagePositioning21</name> + <length>27.1994</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection21ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning22ID"> + <name>FuselagePositioning22</name> + <length>28.3683</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection22ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning23ID"> + <name>FuselagePositioning23</name> + <length>29.5018</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection23ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning24ID"> + <name>FuselagePositioning24</name> + <length>30.5653</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection24ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning25ID"> + <name>FuselagePositioning25</name> + <length>31.5265</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection25ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning26ID"> + <name>FuselagePositioning26</name> + <length>32.3562</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection26ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning27ID"> + <name>FuselagePositioning27</name> + <length>33.0293</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection27ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning28ID"> + <name>FuselagePositioning28</name> + <length>33.5252</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection28ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning29ID"> + <name>FuselagePositioning29</name> + <length>33.8289</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection29ID</toSectionUID> + </positioning> + <positioning uID="Fuselage_fuselagePositioning30ID"> + <name>FuselagePositioning30</name> + <length>33.9312</length> + <sweepAngle>90</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>Fuselage_fuselageSection1ID</fromSectionUID> + <toSectionUID>Fuselage_fuselageSection30ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="Fuselage_fuselageSegment1ID"> + <name>FuselageSegment1</name> + <fromElementUID>Fuselage_fuselageSection1Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection2Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment2ID"> + <name>FuselageSegment2</name> + <fromElementUID>Fuselage_fuselageSection2Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection3Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment3ID"> + <name>FuselageSegment3</name> + <fromElementUID>Fuselage_fuselageSection3Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection4Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment4ID"> + <name>FuselageSegment4</name> + <fromElementUID>Fuselage_fuselageSection4Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection5Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment5ID"> + <name>FuselageSegment5</name> + <fromElementUID>Fuselage_fuselageSection5Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection6Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment6ID"> + <name>FuselageSegment6</name> + <fromElementUID>Fuselage_fuselageSection6Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection7Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment7ID"> + <name>FuselageSegment7</name> + <fromElementUID>Fuselage_fuselageSection7Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection8Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment8ID"> + <name>FuselageSegment8</name> + <fromElementUID>Fuselage_fuselageSection8Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection9Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment9ID"> + <name>FuselageSegment9</name> + <fromElementUID>Fuselage_fuselageSection9Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection10Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment10ID"> + <name>FuselageSegment10</name> + <fromElementUID>Fuselage_fuselageSection10Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection11Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment11ID"> + <name>FuselageSegment11</name> + <fromElementUID>Fuselage_fuselageSection11Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection12Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment12ID"> + <name>FuselageSegment12</name> + <fromElementUID>Fuselage_fuselageSection12Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection13Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment13ID"> + <name>FuselageSegment13</name> + <fromElementUID>Fuselage_fuselageSection13Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection14Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment14ID"> + <name>FuselageSegment14</name> + <fromElementUID>Fuselage_fuselageSection14Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection15Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment15ID"> + <name>FuselageSegment15</name> + <fromElementUID>Fuselage_fuselageSection15Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection16Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment16ID"> + <name>FuselageSegment16</name> + <fromElementUID>Fuselage_fuselageSection16Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection17Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment17ID"> + <name>FuselageSegment17</name> + <fromElementUID>Fuselage_fuselageSection17Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection18Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment18ID"> + <name>FuselageSegment18</name> + <fromElementUID>Fuselage_fuselageSection18Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection19Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment19ID"> + <name>FuselageSegment19</name> + <fromElementUID>Fuselage_fuselageSection19Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection20Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment20ID"> + <name>FuselageSegment20</name> + <fromElementUID>Fuselage_fuselageSection20Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection21Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment21ID"> + <name>FuselageSegment21</name> + <fromElementUID>Fuselage_fuselageSection21Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection22Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment22ID"> + <name>FuselageSegment22</name> + <fromElementUID>Fuselage_fuselageSection22Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection23Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment23ID"> + <name>FuselageSegment23</name> + <fromElementUID>Fuselage_fuselageSection23Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection24Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment24ID"> + <name>FuselageSegment24</name> + <fromElementUID>Fuselage_fuselageSection24Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection25Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment25ID"> + <name>FuselageSegment25</name> + <fromElementUID>Fuselage_fuselageSection25Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection26Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment26ID"> + <name>FuselageSegment26</name> + <fromElementUID>Fuselage_fuselageSection26Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection27Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment27ID"> + <name>FuselageSegment27</name> + <fromElementUID>Fuselage_fuselageSection27Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection28Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment28ID"> + <name>FuselageSegment28</name> + <fromElementUID>Fuselage_fuselageSection28Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection29Element1ID</toElementUID> + </segment> + <segment uID="Fuselage_fuselageSegment29ID"> + <name>FuselageSegment29</name> + <fromElementUID>Fuselage_fuselageSection29Element1ID</fromElementUID> + <toElementUID>Fuselage_fuselageSection30Element1ID</toElementUID> + </segment> + </segments> + </fuselage> + </fuselages> + <wings> + <wing symmetry="x-z-plane" uID="MainWing_wingID"> + <name>MainWing</name> + <parentUID>Fuselage_fuselageID</parentUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>2</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>12.2479</x> <y>0</y> <z>-0.90003</z> + </translation> + </transformation> + <sections> + <section uID="MainWing_wingSection1ID"> + <name>MainWingSection1</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="MainWing_wingSection1Element1ID"> + <name>MainWingSection1</name> + <airfoilUID>Profile_MainWing_1ID</airfoilUID> + <transformation> + <scaling> + <x>6.3923</x> <y>6.3923</y> <z>6.3923</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="MainWing_wingSection2ID"> + <name>MainWingSection2</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="MainWing_wingSection2Element1ID"> + <name>MainWingSection2</name> + <airfoilUID>Profile_MainWing_2ID</airfoilUID> + <transformation> + <scaling> + <x>2.71737</x> <y>2.71737</y> <z>2.71737</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="MainWing_wingSection3ID"> + <name>MainWingSection3</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="MainWing_wingSection3Element1ID"> + <name>MainWingSection3</name> + <airfoilUID>Profile_MainWing_3ID</airfoilUID> + <transformation> + <scaling> + <x>1.05165</x> <y>1.05165</y> <z>1.05165</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="MainWing_wingPositioning1ID"> + <name>MainWingPositioning1</name> + <length>0</length> + <sweepAngle>0</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>MainWing_wingSection1ID</toSectionUID> + </positioning> + <positioning uID="MainWing_wingPositioning2ID"> + <name>MainWingPositioning2</name> + <length>6.73236</length> + <sweepAngle>33.2273</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>MainWing_wingSection1ID</fromSectionUID> + <toSectionUID>MainWing_wingSection2ID</toSectionUID> + </positioning> + <positioning uID="MainWing_wingPositioning3ID"> + <name>MainWingPositioning3</name> + <length>9.60746</length> + <sweepAngle>28.4037</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>MainWing_wingSection2ID</fromSectionUID> + <toSectionUID>MainWing_wingSection3ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="MainWing_wingSegment1ID"> + <name>MainWingSegment1</name> + <fromElementUID>MainWing_wingSection1Element1ID</fromElementUID> + <toElementUID>MainWing_wingSection2Element1ID</toElementUID> + </segment> + <segment uID="MainWing_wingSegment2ID"> + <name>MainWingSegment2</name> + <fromElementUID>MainWing_wingSection2Element1ID</fromElementUID> + <toElementUID>MainWing_wingSection3Element1ID</toElementUID> + </segment> + </segments> + <componentSegments> + <componentSegment uID="wing_Cseg"> + <name>wing_CSeg</name> + <description>wing_CSeg</description> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="wing_ribs_inner"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>wing_Spar_FS</ribReference> + <etaStart>0.0</etaStart> + <etaEnd>0.106761565836</etaEnd> + <ribStart>wing_Spar_FS</ribStart> + <ribEnd>wing_Spar_RS</ribEnd> + <numberOfRibs>4</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_engine1"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>wing_Spar_FS</ribReference> + <etaStart>0.163701067616</etaStart> + <etaEnd>0.286476868327</etaEnd> + <ribStart>wing_Spar_FS</ribStart> + <ribEnd>wing_Spar_RS</ribEnd> + <numberOfRibs>3</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_engine2"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>wing_Spar_FS</ribReference> + <etaStart>0.163701067616</etaStart> + <etaEnd>0.313523131673</etaEnd> + <ribStart>wing_Spar_FS</ribStart> + <ribEnd>wing_Spar_RS</ribEnd> + <numberOfRibs>1</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + <ribsDefinition uID="wing_ribs_outer"> + <name>wing_ribs</name> + <ribsPositioning> + <ribReference>wing_Spar_FS</ribReference> + <etaStart>0.370462633452</etaStart> + <etaEnd>0.95</etaEnd> + <ribStart>wing_Spar_FS</ribStart> + <ribEnd>wing_Spar_RS</ribEnd> + <numberOfRibs>11</numberOfRibs> + <ribCrossingBehaviour>end</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>wing_Spar_FS</ribRotationReference> <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="wing_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.1</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_FS_P1"> + <eta>0.106761565836</eta> + <xsi>0.1</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_FS_P2"> + <eta>1.0</eta> + <xsi>0.460829493088</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.56</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_RS_P1"> + <eta>0.106761565836</eta> + <xsi>0.56</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_RS_P2"> + <eta>0.350213340505</eta> + <xsi>0.6</xsi> + </sparPosition> + <sparPosition uID="wing_Spar_RS_P3"> + <eta>1.0</eta> + <xsi>0.59</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="wing_Spar_FS"> + <name>wing_Spar_FS</name> + <description>wing_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">wing_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">wing_Spar_FS_P1</sparPositionUID> + <sparPositionUID isLink="True">wing_Spar_FS_P2</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="wing_Spar_RS"> + <name>wing_Spar_RS</name> + <description>wing_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">wing_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">wing_Spar_RS_P1</sparPositionUID> + <sparPositionUID isLink="True">wing_Spar_RS_P2</sparPositionUID> + <sparPositionUID isLink="True">wing_Spar_RS_P3</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <controlSurfaces> + <leadingEdgeDevices> + <leadingEdgeDevice uID="InnerSlat1UID"> + <name>InnerSlat1</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.12</etaLE> + <xsiTEUpper>0.0551328511278</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.33</etaLE> + <xsiTEUpper>0.0617900779981</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + <leadingEdgeDevice uID="OuterSlat1UID"> + <name>OuterSlat1</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.4</etaLE> + <xsiTEUpper>0.0765222350228</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.56</etaLE> + <xsiTEUpper>0.088656031377</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + <leadingEdgeDevice uID="OuterSlat2UID"> + <name>OuterSlat2</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.57</etaLE> + <xsiTEUpper>0.088656031377</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.73</etaLE> + <xsiTEUpper>0.102475793192</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + <leadingEdgeDevice uID="OuterSlat3UID"> + <name>OuterSlat3</name> + <description>slat from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.74</etaLE> + <xsiTEUpper>0.102475793192</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.95</etaLE> + <xsiTEUpper>0.121399652732</xsiTEUpper> + <xsiTELower>0.02</xsiTELower> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.5</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>30</relDeflection> + <innerHingeTranslation> + <x>-0.127354072363</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>-0.127354072363</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-30.0</hingeLineRotation> + </step> + </steps> + </path> + </leadingEdgeDevice> + </leadingEdgeDevices> + <trailingEdgeDevices> + <trailingEdgeDevice uID="aileronUID"> + <name>aileron</name> + <description>aileron from VAMPzero</description> + <parentUID isLink="True">wing_Cseg</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.79</etaLE> + <etaTE>0.79</etaTE> + <xsiLE>0.69323182997</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.96</etaLE> + <etaTE>0.96</etaTE> + <xsiLE>0.690615586661</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="aileronUID_ribs"> + <name>aileron_ribs</name> + <ribsPositioning> + <ribReference>aileronUID_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <spacing>0.25</spacing> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="aileronUID_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="aileronUID_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="aileronUID_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.7</xsi> + </sparPosition> + <sparPosition uID="aileronUID_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.7</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="aileronUID_Spar_FS"> + <name>aileronUID_Spar_FS</name> + <description>aileronUID_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">aileronUID_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">aileronUID_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="aileronUID_Spar_RS"> + <name>aileronUID_Spar_RS</name> + <description>aileronUID_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">aileronUID_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">aileronUID_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <path> + <innerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + <tracks> + <track uID="controlSurfaceID_track_1"> + <eta>0.25</eta> + <trackType>trackType1</trackType> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + </trackStructure> + </track> + <track uID="controlSurfaceID_track_2"> + <eta>0.75</eta> + <trackType>trackType1</trackType> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + </trackStructure> + </track> + </tracks> + <actuators> + <actuator uID="aileron_actuator1"> + <actuatorUID isLink="True">Aileron_Act1</actuatorUID> + <attachment> + <etaControlSurface>0.3</etaControlSurface> + <parentAttachment> + <parentXsi>0.612446956977</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </parentAttachment> + <controlSurfaceAttachment> + <parentXsi>0.712446956977</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </controlSurfaceAttachment> + </attachment> + </actuator> + <actuator uID="aileron_actuator2"> + <actuatorUID isLink="True">Aileron_Act2</actuatorUID> + <attachment> + <etaControlSurface>0.7</etaControlSurface> + <parentAttachment> + <parentXsi>0.611400459653</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </parentAttachment> + <controlSurfaceAttachment> + <parentXsi>0.711400459653</parentXsi> + <parentHeight>0.8</parentHeight> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </controlSurfaceAttachment> + </attachment> + </actuator> + </actuators> + </trailingEdgeDevice> + <trailingEdgeDevice uID="innerFlapUID"> + <name>innerFlap</name> + <description>innerFlap from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.12</etaLE> + <etaTE>0.12</etaTE> + <xsiLE>0.75</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.4</etaLE> + <etaTE>0.4</etaTE> + <xsiLE>0.68</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="innerFlapUID_ribs"> + <name>flap_ribs</name> + <ribsPositioning> + <ribReference>innerFlapUID_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>20</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="innerFlapUID_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="innerFlapUID_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="innerFlapUID_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.7</xsi> + </sparPosition> + <sparPosition uID="innerFlapUID_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.7</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="innerFlapUID_Spar_FS"> + <name>innerFlapUID_Spar_FS</name> + <description>innerFlapUID_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">innerFlapUID_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">innerFlapUID_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="innerFlapUID_Spar_RS"> + <name>innerFlapUID_Spar_RS</name> + <description>innerFlapUID_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">innerFlapUID_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">innerFlapUID_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <path> + <innerHingePoint> + <hingeXsi>0.789562336672</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.68</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>10</relDeflection> + <innerHingeTranslation> + <x>0.254449784009</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.254449784009</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>10.0</hingeLineRotation> + </step> + <step> + <relDeflection>40</relDeflection> + <innerHingeTranslation> + <x>0.508899568018</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.508899568018</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>40.0</hingeLineRotation> + </step> + </steps> + </path> + <tracks> + <track uID="innerFlapUID_track_1"> + <eta>0.0</eta> + <trackType>trackType3</trackType> + <trackSubType>trackSubType2</trackSubType> + <actuator uID="innerFlapUID_track_1_actuatorUID"> + <actuatorUID isLink="true">Act_FT1</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + <track uID="innerFlapUID_track_2"> + <eta>0.66</eta> + <trackType>trackType3</trackType> + <actuator uID="innerFlapUID_track_2_actuatorUID"> + <actuatorUID isLink="true">Act_FT2</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + </tracks> + </trailingEdgeDevice> + <trailingEdgeDevice uID="outerFlap1UID"> + <name>outerFlap1</name> + <description>innerFlap from VAMPzero</description> + <parentUID isLink="True">wing</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.4</etaLE> + <etaTE>0.4</etaTE> + <xsiLE>0.68</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.75</etaLE> + <etaTE>0.75</etaTE> + <xsiLE>0.68</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.2</relHeightLE> + <xsiUpperSkin>0.5</xsiUpperSkin> + <xsiLowerSkin>0.95</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="outerFlap1UID_ribs"> + <name>flap_ribs</name> + <ribsPositioning> + <ribReference>outerFlap1UID_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>20</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="outerFlap1UID_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="outerFlap1UID_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.2</xsi> + </sparPosition> + <sparPosition uID="outerFlap1UID_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.7</xsi> + </sparPosition> + <sparPosition uID="outerFlap1UID_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.7</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="outerFlap1UID_Spar_FS"> + <name>outerFlap1UID_Spar_FS</name> + <description>outerFlap1UID_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">outerFlap1UID_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">outerFlap1UID_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="outerFlap1UID_Spar_RS"> + <name>outerFlap1UID_Spar_RS</name> + <description>outerFlap1UID_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">outerFlap1UID_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">outerFlap1UID_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <path> + <innerHingePoint> + <hingeXsi>0.68</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.718480649649</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>10</relDeflection> + <innerHingeTranslation> + <x>0.254449784009</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.1445249844</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>10.0</hingeLineRotation> + </step> + <step> + <relDeflection>40</relDeflection> + <innerHingeTranslation> + <x>0.508899568018</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.2890499688</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>40.0</hingeLineRotation> + </step> + </steps> + </path> + <tracks> + <track uID="outerFlap1UID_track_1"> + <eta>0.275</eta> + <trackType>trackType3</trackType> + <actuator uID="outerFlap1UID_track_1_actuatorUID"> + <actuatorUID isLink="true">Act_FT3</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + <track uID="outerFlap1UID_track_2"> + <eta>0.725</eta> + <trackType>trackType3</trackType> + <actuator uID="outerFlap1UID_track_2_actuatorUID"> + <actuatorUID isLink="true">Act_FT4</actuatorUID> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </material> + </actuator> + <trackStructure> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <car/> + <sidePanels> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </sidePanels> + <upperPanel> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </upperPanel> + <lowerPanel> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </lowerPanel> + <rollerTrack> + <materialUID isLink="True">titan</materialUID> + <thickness>0.001</thickness> + </rollerTrack> + <ribs> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </ribs> + </trackStructure> + </track> + </tracks> + <cruiseRollers> + <cruiseRoller uID="outerFlap1UID_CR1"> + <position> + <eta>0.02</eta> + <xsi>0.05</xsi> + <relHeight>0.3</relHeight> + </position> + <parentAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </parentAttachment> + <controlSurfaceAttachment> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.001</thickness> + </controlSurfaceAttachment> + <blockedDOF> + <positive>False</positive> + <negative>True</negative> + </blockedDOF> + </cruiseRoller> + </cruiseRollers> + </trailingEdgeDevice> + </trailingEdgeDevices> + </controlSurfaces> + <wingFuselageAttachments> + <wingFuselageAttachment> + <rib1> + <ribDefinitionUID isLink="True">wing_ribs_inner</ribDefinitionUID> + <ribNumber>4</ribNumber> + </rib1> + </wingFuselageAttachment> + </wingFuselageAttachments> + <wingFuelTanks> + <wingFuelTank uID="wing_tank_inner"> + <name>wing_tank_inner</name> + <geometry> + <border> + <sparUID isLink="True">wing_Spar_FS</sparUID> + </border> + <border> + <ribDefinitionUID isLink="True">wing_ribs_inner</ribDefinitionUID> + <ribNumber>4</ribNumber> + </border> + <border> + <sparUID isLink="True">wing_Spar_RS</sparUID> + </border> + </geometry> + </wingFuelTank> + <wingFuelTank uID="wing_tank_middle"> + <name>wing_tank_middle</name> + <geometry> + <border> + <ribDefinitionUID isLink="True">wing_ribs_inner</ribDefinitionUID> + <ribNumber>4</ribNumber> + </border> + <border> + <sparUID isLink="True">wing_Spar_FS</sparUID> + </border> + <border> + <ribDefinitionUID isLink="True">wing_ribs_engine2</ribDefinitionUID> + <ribNumber>1</ribNumber> + </border> + <border> + <sparUID isLink="True">wing_Spar_RS</sparUID> + </border> + </geometry> + </wingFuelTank> + <wingFuelTank uID="wing_tank_outer"> + <name>wing_tank_outer</name> + <geometry> + <border> + <ribDefinitionUID isLink="True">wing_ribs_engine2</ribDefinitionUID> + <ribNumber>1</ribNumber> + </border> + <border> + <sparUID isLink="True">wing_Spar_FS</sparUID> + </border> + <border> + <ribDefinitionUID isLink="True">wing_ribs_outer</ribDefinitionUID> + <ribNumber>8</ribNumber> + </border> + <border> + <sparUID isLink="True">wing_Spar_RS</sparUID> + </border> + </geometry> + </wingFuelTank> + </wingFuelTanks> + <fromElementUID isLink="True">MainWing_wingSection1Element1ID</fromElementUID> + <toElementUID isLink="True">MainWing_wingSection§Element1ID</toElementUID> + </componentSegment> + </componentSegments> + </wing> + <wing symmetry="x-z-plane" uID="HorizontalStabiliser_wingID"> + <name>HorizontalStabiliser</name> + <parentUID>Fuselage_fuselageID</parentUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>29.743</x> <y>0</y> <z>0.90002</z> + </translation> + </transformation> + <sections> + <section uID="HorizontalStabiliser_wingSection1ID"> + <name>HorizontalStabiliserSection1</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="HorizontalStabiliser_wingSection1Element1ID"> + <name>HorizontalStabiliserSection1</name> + <airfoilUID>Profile_HorizontalStabiliser_1ID</airfoilUID> + <transformation> + <scaling> + <x>3.2362</x> <y>3.2362</y> <z>3.2362</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="HorizontalStabiliser_wingSection2ID"> + <name>HorizontalStabiliserSection2</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="HorizontalStabiliser_wingSection2Element1ID"> + <name>HorizontalStabiliserSection2</name> + <airfoilUID>Profile_HorizontalStabiliser_2ID</airfoilUID> + <transformation> + <scaling> + <x>1.13267</x> <y>1.13267</y> <z>1.13267</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="HorizontalStabiliser_wingPositioning1ID"> + <name>HorizontalStabiliserPositioning1</name> + <length>0</length> + <sweepAngle>0</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>HorizontalStabiliser_wingSection1ID</toSectionUID> + </positioning> + <positioning uID="HorizontalStabiliser_wingPositioning2ID"> + <name>HorizontalStabiliserPositioning2</name> + <length>5.30725</length> + <sweepAngle>34.2802</sweepAngle> + <dihedralAngle>6</dihedralAngle> + <fromSectionUID>HorizontalStabiliser_wingSection1ID</fromSectionUID> + <toSectionUID>HorizontalStabiliser_wingSection2ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="HorizontalStabiliser_wingSegment1ID"> + <name>HorizontalStabiliserSegment1</name> + <fromElementUID>HorizontalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID>HorizontalStabiliser_wingSection2Element1ID</toElementUID> + </segment> + </segments> + <componentSegments> + <componentSegment uID="htp_Cseg"> + <name>htp_CSeg</name> + <description>htp_CSeg</description> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="htp_ribs"> + <name>trapezoid_ribs</name> + <ribsPositioning> + <ribReference>htp_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>5.0</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="htp_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="htp_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="htp_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.55</xsi> + </sparPosition> + <sparPosition uID="htp_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.55</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="htp_Spar_FS"> + <name>htp_Spar_FS</name> + <description>htp_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">htp_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">htp_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="htp_Spar_RS"> + <name>htp_Spar_RS</name> + <description>htp_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">htp_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">htp_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <controlSurfaces> + <trailingEdgeDevices> + <trailingEdgeDevice uID="elevatorUID"> + <name>elevator</name> + <description>elevator from VAMPzero</description> + <parentUID isLink="True">htp</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.325723003695</etaLE> + <xsiLE>0.446576244084</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>0.966286150185</etaLE> + <xsiLE>0.588077959118</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + </trailingEdgeDevice> + <trailingEdgeDevice uID="stabilizerUID"> + <name>stabilizer</name> + <description>stabilizer exported from VAMPzero</description> + <parentUID isLink="True">htp</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.0</etaLE> + <xsiLE>0.0</xsiLE> + </innerBorder> + <outerBorder> + <etaLE>1.0</etaLE> + <xsiLE>0.0</xsiLE> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.25</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.25</hingeXsi> + <hingeRelHeight>0.5</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + </trailingEdgeDevice> + </trailingEdgeDevices> + </controlSurfaces> + <fromElementUID isLink="True">HorizontalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID isLink="True">HorizontalStabiliser_wingSection2Element1ID</toElementUID> + </componentSegment> + </componentSegments> + </wing> + <wing uID="VerticalStabiliser_wingID"> + <name>VerticalStabiliser</name> + <parentUID>Fuselage_fuselageID</parentUID> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>90</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>29.0546</x> <y>0</y> <z>0.90002</z> + </translation> + </transformation> + <sections> + <section uID="VerticalStabiliser_wingSection1ID"> + <name>VerticalStabiliserSection1</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="VerticalStabiliser_wingSection1Element1ID"> + <name>VerticalStabiliserSection1</name> + <airfoilUID>Profile_VerticalStabiliser_1ID</airfoilUID> + <transformation> + <scaling> + <x>4.12099</x> <y>4.12099</y> <z>4.12099</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + <section uID="VerticalStabiliser_wingSection2ID"> + <name>VerticalStabiliserSection2</name> + <transformation> + <scaling> + <x>1</x> <y>1</y> <z>1</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + <elements> + <element uID="VerticalStabiliser_wingSection2Element1ID"> + <name>VerticalStabiliserSection2</name> + <airfoilUID>Profile_VerticalStabiliser_2ID</airfoilUID> + <transformation> + <scaling> + <x>1.43655</x> <y>1.43655</y> <z>1.43655</z> + </scaling> + <rotation> + <x>0</x> <y>0</y> <z>0</z> + </rotation> + <translation refType="absLocal"> + <x>0</x> <y>0</y> <z>0</z> + </translation> + </transformation> + </element> + </elements> + </section> + </sections> + <positionings> + <positioning uID="VerticalStabiliser_wingPositioning1ID"> + <name>VerticalStabiliserPositioning1</name> + <length>0</length> + <sweepAngle>0</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <toSectionUID>VerticalStabiliser_wingSection1ID</toSectionUID> + </positioning> + <positioning uID="VerticalStabiliser_wingPositioning2ID"> + <name>VerticalStabiliserPositioning2</name> + <length>6.28106</length> + <sweepAngle>43.6333</sweepAngle> + <dihedralAngle>0</dihedralAngle> + <fromSectionUID>VerticalStabiliser_wingSection1ID</fromSectionUID> + <toSectionUID>VerticalStabiliser_wingSection2ID</toSectionUID> + </positioning> + </positionings> + <segments> + <segment uID="VerticalStabiliser_wingSegment1ID"> + <name>VerticalStabiliserSegment1</name> + <fromElementUID>VerticalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID>VerticalStabiliser_wingSection2Element1ID</toElementUID> + </segment> + </segments> + <componentSegments> + <componentSegment uID="vtp_Cseg"> + <name>vtp_CSeg</name> + <description>vtp_CSeg</description> + <fromElementUID isLink="True">VerticalStabiliser_wingSection1Element1ID</fromElementUID> + <toElementUID isLink="True">VerticalStabiliser_wingSection2Element1ID</toElementUID> + <structure> + <upperShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_up</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </upperShell> + <lowerShell uID=""> + <skin> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </skin> + <stringer> + <stringerStructureUID isLink="True">Stringer_WING_low</stringerStructureUID> + <pitch>0.14</pitch> + <angle>0.0</angle> + </stringer> + </lowerShell> + <ribsDefinitions> + <ribsDefinition uID="vtp_ribs"> + <name>trapezoid_ribs</name> + <ribsPositioning> + <ribReference>vtp_Spar_FS</ribReference> + <etaStart>0.</etaStart> + <etaEnd>1.</etaEnd> + <ribStart>leadingEdge</ribStart> + <ribEnd>trailingEdge</ribEnd> + <numberOfRibs>5.0</numberOfRibs> + <ribCrossingBehaviour>cross</ribCrossingBehaviour> + <ribRotation> + <ribRotationReference>globalY</ribRotationReference> <z>90.</z> + </ribRotation> + </ribsPositioning> + <ribCrossSection> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.03</thickness> + </material> + </ribCrossSection> + </ribsDefinition> + </ribsDefinitions> + <spars> + <sparPositions> + <sparPosition uID="vtp_Spar_FS_P0"> + <eta>0.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="vtp_Spar_FS_P1"> + <eta>1.0</eta> + <xsi>0.22</xsi> + </sparPosition> + <sparPosition uID="vtp_Spar_RS_P0"> + <eta>0.0</eta> + <xsi>0.55</xsi> + </sparPosition> + <sparPosition uID="vtp_Spar_RS_P1"> + <eta>1.0</eta> + <xsi>0.55</xsi> + </sparPosition> + </sparPositions> + <sparSegments> + <sparSegment uID="vtp_Spar_FS"> + <name>vtp_Spar_FS</name> + <description>vtp_Spar_FS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">vtp_Spar_FS_P0</sparPositionUID> + <sparPositionUID isLink="True">vtp_Spar_FS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + <sparSegment uID="vtp_Spar_RS"> + <name>vtp_Spar_RS</name> + <description>vtp_Spar_RS</description> + <sparPositionUIDs> + <sparPositionUID isLink="True">vtp_Spar_RS_P0</sparPositionUID> + <sparPositionUID isLink="True">vtp_Spar_RS_P1</sparPositionUID> + </sparPositionUIDs> + <sparCrossSection> + <upperCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </upperCap> + <lowerCap> + <area>0.0003</area> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + </lowerCap> + <web1> + <material> + <materialUID isLink="True">aluminium2024</materialUID> + <thickness>0.003</thickness> + </material> + <relPos>0.5</relPos> + </web1> + <rotation>90.0</rotation> + </sparCrossSection> + </sparSegment> + </sparSegments> + </spars> + </structure> + <controlSurfaces> + <trailingEdgeDevices> + <trailingEdgeDevice uID="rudderUID"> + <name>rudder</name> + <description>rudder from VAMPzero</description> + <parentUID isLink="True">vtp_Cseg</parentUID> + <outerShape> + <innerBorder> + <etaLE>0.0</etaLE> + <xsiLE>0.355528586144</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </innerBorder> + <outerBorder> + <etaLE>1.0</etaLE> + <xsiLE>0.355528586144</xsiLE> + <leadingEdgeShape> + <relHeightLE>0.5</relHeightLE> + <xsiUpperSkin>0.85</xsiUpperSkin> + <xsiLowerSkin>0.85</xsiLowerSkin> + </leadingEdgeShape> + </outerBorder> + </outerShape> + <path> + <innerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </innerHingePoint> + <outerHingePoint> + <hingeXsi>0.75</hingeXsi> + <hingeRelHeight>0.2</hingeRelHeight> + </outerHingePoint> + <steps> + <step> + <relDeflection>25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>25.0</hingeLineRotation> + </step> + <step> + <relDeflection>0</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>0.0</hingeLineRotation> + </step> + <step> + <relDeflection>-25</relDeflection> + <innerHingeTranslation> + <x>0.0</x> <y>0.0</y> <z>0.0</z> + </innerHingeTranslation> + <outerHingeTranslation> + <x>0.0</x> <z>0.0</z> + </outerHingeTranslation> + <hingeLineRotation>-25.0</hingeLineRotation> + </step> + </steps> + </path> + </trailingEdgeDevice> + </trailingEdgeDevices> + </controlSurfaces> + </componentSegment> + </componentSegments> + </wing> + </wings> + <engines> + <engine symmetry="x-z-plane" uID="model_engine"> + <engineUID isLink="True">engine</engineUID> + <parentUID isLink="True">enginePylon</parentUID> + <transformation> + <translation refType="absGlobal"> + <x>11.8389319755</x> <y>4.215</y> <z>-1.75194260911</z> + </translation> + </transformation> + </engine> + </engines> + <analyses> + <aeroPerformanceMap> + <machNumber mapType="vector">0.2;0.6;0.78;0.8</machNumber> + <reynoldsNumber mapType="vector">1e+007;2.77e+007;3.4e+007;4.5e+007</reynoldsNumber> + <angleOfYaw mapType="vector">0</angleOfYaw> + <angleOfAttack mapType="vector">-5;-2.5;0;1;2;3;4;5;6;7.5;10;12.5</angleOfAttack> + </aeroPerformanceMap> + <massBreakdown> + <mOEM> + <mEM> + <mPowerUnits> + <massDescription> + <massInertia> + <Jxx>0.0</Jxx> + <Jyy>0.0</Jyy> + <Jzz>0.0</Jzz> + </massInertia> + <mass>3160.0</mass> + </massDescription> + </mPowerUnits> + <mFurnishing> + <massDescription> + <mass>2663.0</mass> + </massDescription> + </mFurnishing> + <mStructure> + <mFuselagesStructure> + <mFuselageStructure> + <massDescription> + <mass>5942.0</mass> + <location> + <x>14.811104</x> + </location> + </massDescription> + </mFuselageStructure> + </mFuselagesStructure> + <mWingsStructure> + <mWingStructure> + <massDescription> + <mass>4856.32744539</mass> + <parentUID isLink="True">MainWing_wingID</parentUID> + <location> + <x>16.9844277401</x> + </location> + </massDescription> + </mWingStructure> + <mWingStructure> + <massDescription> + <mass>422.438824951</mass> + <parentUID isLink="True">HorizontalStabiliser_wingID</parentUID> + <location> + <x>31.0086677265</x> + </location> + </massDescription> + </mWingStructure> + <mWingStructure> + <massDescription> + <mass>315.821401487</mass> + <parentUID isLink="True">VerticalStabiliser_wingID</parentUID> + <location> + <x>29.7316574784</x> + </location> + </massDescription> + </mWingStructure> + </mWingsStructure> + <mLandingGears> + <mLandingGear> + <massDescription uID="mainGear_Mass"> + <parentUID isLink="True">mainGear</parentUID> + <mass>1611.60312188</mass> + </massDescription> + </mLandingGear> + <mLandingGear> + <massDescription uID="noseGear_mass"> + <parentUID isLink="True">noseGear</parentUID> + <mass>314.322994979</mass> + </massDescription> + </mLandingGear> + </mLandingGears> + <mPylons> + <massDescription> + <mass>750.529076187</mass> + </massDescription> + </mPylons> + </mStructure> + <mSystems> + <massDescription> + <mass>4782.0</mass> + <location> + <x>11.921104</x> + </location> + </massDescription> + </mSystems> + </mEM> + <massDescription> + <mass>27758.8623406</mass> + </massDescription> + <mOperatorItems> + <massDescription> + <mass>3255.14166023</mass> + </massDescription> + </mOperatorItems> + </mOEM> + <fuel> + <massDescription> + <mass>8106.99160478</mass> + <description>Max fuel, not mission fuel </description> + </massDescription> + </fuel> + <designMasses> + <mTOM> + <massInertia> + <Jxx>693743.095795</Jxx> + <Jyy>1946426.01247</Jyy> + <Jzz>2612419.99895</Jzz> + </massInertia> + <mass>45045.8583098</mass> + <location> + <x>15.2517882102</x> + </location> + </mTOM> + <mMLM> + <mass>38560.2667664</mass> + </mMLM> + <mZFM> + <mass>36938.863897</mass> + </mZFM> + </designMasses> + <payload> + <massDescription> + <description>Max payload, not design payload </description> + <mass>11500.0</mass> + </massDescription> + </payload> + </massBreakdown> + </analyses> + <global> + <machCruise>0.78</machCruise> + <paxSeats>90.0</paxSeats> + </global> + </model> + </aircraft> + <profiles> + <wingAirfoils> + <wingAirfoil uID="Profile_MainWing_1ID"> + <name>Profile_MainWing_1</name> + <pointList> + <x mapType="vector">1;0.9898;0.9799;0.9699;0.9599;0.9499;0.9399;0.9299;0.9199;0.9098;0.8997;0.8896;0.8795;0.8693;0.8591;0.8489;0.8387;0.8285;0.8182;0.808;0.7978;0.7875;0.7772;0.767;0.7567;0.7465;0.7362;0.7259;0.7156;0.7054;0.6951;0.6848;0.6745;0.6642;0.6539;0.6436;0.6333;0.623;0.6127;0.6024;0.5921;0.5817;0.5714;0.5611;0.5508;0.5405;0.5301;0.5198;0.5095;0.4991;0.4888;0.4785;0.4681;0.4578;0.4475;0.4371;0.4268;0.4164;0.4061;0.3957;0.3854;0.3751;0.3647;0.3544;0.344;0.3337;0.3233;0.313;0.3026;0.2923;0.282;0.2716;0.2613;0.2509;0.2406;0.2303;0.2199;0.2096;0.1993;0.189;0.1786;0.1683;0.158;0.1477;0.1375;0.1272;0.117;0.1067;0.0965;0.0864;0.0763;0.0662;0.0563;0.0465;0.0369;0.0277;0.019;0.0113;0.0051;0.0013;0;0;0.0015;0.0062;0.013;0.021;0.0297;0.0389;0.0484;0.058;0.0679;0.0778;0.0878;0.0979;0.108;0.1182;0.1284;0.1386;0.1488;0.1591;0.1694;0.1797;0.19;0.2003;0.2106;0.2209;0.2312;0.2415;0.2519;0.2622;0.2725;0.2829;0.2932;0.3036;0.3139;0.3242;0.3346;0.3449;0.3553;0.3656;0.376;0.3863;0.3966;0.407;0.4173;0.4276;0.438;0.4483;0.4586;0.4689;0.4793;0.4896;0.4999;0.5102;0.5205;0.5307;0.541;0.5512;0.5614;0.5716;0.5818;0.592;0.6021;0.6123;0.6224;0.6326;0.6427;0.6528;0.6629;0.673;0.6831;0.6932;0.7032;0.7133;0.7234;0.7334;0.7435;0.7536;0.7638;0.7739;0.7841;0.7943;0.8045;0.8147;0.825;0.8352;0.8455;0.8557;0.866;0.8763;0.8866;0.8969;0.9072;0.9175;0.9278;0.9382;0.9485;0.9588;0.9692;0.9795;0.9899;1</x> <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> <z mapType="vector">0.0021;0.005;0.0078;0.0105;0.0132;0.0159;0.0186;0.0211;0.0236;0.026;0.0283;0.0304;0.0325;0.0344;0.0362;0.038;0.0397;0.0412;0.0428;0.0442;0.0456;0.047;0.0484;0.0497;0.051;0.0523;0.0536;0.0548;0.056;0.0572;0.0583;0.0594;0.0605;0.0615;0.0625;0.0635;0.0644;0.0653;0.0661;0.067;0.0678;0.0685;0.0692;0.0699;0.0706;0.0712;0.0719;0.0724;0.073;0.0735;0.074;0.0745;0.0749;0.0754;0.0757;0.0761;0.0764;0.0767;0.077;0.0772;0.0774;0.0776;0.0777;0.0778;0.0778;0.0778;0.0778;0.0777;0.0776;0.0775;0.0773;0.077;0.0767;0.0764;0.076;0.0756;0.0751;0.0745;0.0738;0.0731;0.0723;0.0714;0.0704;0.0693;0.0681;0.0668;0.0653;0.0638;0.062;0.06;0.0578;0.0554;0.0525;0.0492;0.0453;0.0406;0.0349;0.0281;0.0198;0.0102;0;0;-0.0102;-0.0194;-0.0272;-0.0337;-0.0393;-0.0441;-0.0482;-0.0518;-0.0551;-0.058;-0.0606;-0.0629;-0.0651;-0.067;-0.0687;-0.0703;-0.0718;-0.0731;-0.0742;-0.0753;-0.0762;-0.0771;-0.078;-0.0788;-0.0795;-0.0801;-0.0807;-0.0812;-0.0816;-0.0819;-0.0822;-0.0824;-0.0826;-0.0827;-0.0828;-0.0827;-0.0826;-0.0824;-0.0822;-0.0819;-0.0815;-0.0812;-0.0807;-0.0802;-0.0796;-0.079;-0.0784;-0.0777;-0.077;-0.0762;-0.0753;-0.0742;-0.0731;-0.0718;-0.0704;-0.0689;-0.0672;-0.0655;-0.0637;-0.0619;-0.0599;-0.0579;-0.0559;-0.0538;-0.0517;-0.0495;-0.0473;-0.045;-0.0427;-0.0404;-0.038;-0.0356;-0.0332;-0.0309;-0.0286;-0.0264;-0.0243;-0.0224;-0.0205;-0.0187;-0.0171;-0.0155;-0.014;-0.0125;-0.0111;-0.0099;-0.0087;-0.0075;-0.0065;-0.0056;-0.0047;-0.004;-0.0034;-0.0029;-0.0024;-0.0021;-0.0018;-0.0017;-0.0018;-0.0021</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_MainWing_2ID"> + <name>Profile_MainWing_2</name> + <pointList> + <x mapType="vector">1;0.9898;0.9798;0.9698;0.9598;0.9498;0.9397;0.9297;0.9196;0.9096;0.8995;0.8893;0.8792;0.869;0.8589;0.8487;0.8385;0.8283;0.8181;0.8079;0.7977;0.7874;0.7772;0.767;0.7568;0.7465;0.7363;0.7261;0.7158;0.7056;0.6953;0.6851;0.6748;0.6646;0.6543;0.644;0.6338;0.6235;0.6132;0.603;0.5927;0.5824;0.5721;0.5619;0.5516;0.5413;0.531;0.5207;0.5104;0.5002;0.4899;0.4796;0.4693;0.459;0.4487;0.4384;0.4281;0.4178;0.4075;0.3972;0.3869;0.3766;0.3663;0.356;0.3457;0.3354;0.3251;0.3148;0.3045;0.2942;0.2839;0.2736;0.2633;0.253;0.2427;0.2324;0.2221;0.2118;0.2015;0.1913;0.181;0.1707;0.1605;0.1502;0.14;0.1297;0.1195;0.1093;0.0991;0.089;0.0789;0.0688;0.0589;0.049;0.0393;0.0299;0.0209;0.0127;0.0059;0.0013;0;0;0.0015;0.0064;0.0133;0.0215;0.0304;0.0397;0.0492;0.059;0.0688;0.0788;0.0888;0.0989;0.1091;0.1192;0.1294;0.1396;0.1499;0.1601;0.1704;0.1807;0.191;0.2013;0.2116;0.2219;0.2322;0.2425;0.2528;0.2631;0.2734;0.2837;0.294;0.3043;0.3147;0.325;0.3353;0.3456;0.3559;0.3663;0.3766;0.3869;0.3972;0.4075;0.4178;0.4281;0.4384;0.4487;0.459;0.4693;0.4796;0.4899;0.5002;0.5105;0.5207;0.531;0.5413;0.5515;0.5617;0.5719;0.5821;0.5923;0.6025;0.6126;0.6228;0.6329;0.643;0.6532;0.6633;0.6734;0.6835;0.6936;0.7037;0.7138;0.7238;0.7339;0.744;0.7541;0.7642;0.7744;0.7845;0.7947;0.8049;0.8151;0.8253;0.8356;0.8458;0.856;0.8663;0.8766;0.8868;0.8971;0.9074;0.9177;0.928;0.9383;0.9486;0.9589;0.9692;0.9795;0.9899;1</x> <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> <z mapType="vector">0.0019;0.0044;0.0068;0.0093;0.0117;0.0141;0.0164;0.0187;0.0209;0.023;0.025;0.027;0.0288;0.0305;0.0322;0.0338;0.0353;0.0367;0.0381;0.0394;0.0407;0.042;0.0433;0.0445;0.0457;0.0469;0.0481;0.0492;0.0504;0.0515;0.0525;0.0536;0.0546;0.0556;0.0565;0.0574;0.0583;0.0591;0.0599;0.0607;0.0615;0.0622;0.0629;0.0636;0.0642;0.0649;0.0655;0.066;0.0666;0.0671;0.0676;0.0681;0.0685;0.069;0.0693;0.0697;0.0701;0.0704;0.0706;0.0709;0.0711;0.0713;0.0714;0.0716;0.0716;0.0717;0.0717;0.0716;0.0716;0.0715;0.0713;0.0711;0.0709;0.0706;0.0703;0.0699;0.0694;0.0689;0.0683;0.0677;0.067;0.0661;0.0652;0.0643;0.0631;0.0619;0.0606;0.0592;0.0576;0.0558;0.0538;0.0516;0.049;0.046;0.0425;0.0384;0.0333;0.0271;0.0194;0.0102;0;0;-0.0102;-0.0192;-0.0268;-0.0331;-0.0384;-0.0429;-0.0467;-0.0501;-0.0531;-0.0558;-0.0582;-0.0603;-0.0623;-0.064;-0.0656;-0.0671;-0.0684;-0.0695;-0.0706;-0.0715;-0.0724;-0.0731;-0.0738;-0.0745;-0.075;-0.0756;-0.0761;-0.0764;-0.0768;-0.077;-0.0772;-0.0774;-0.0774;-0.0775;-0.0775;-0.0774;-0.0773;-0.0772;-0.0769;-0.0766;-0.0762;-0.0758;-0.0753;-0.0748;-0.0743;-0.0737;-0.0731;-0.0724;-0.0717;-0.0709;-0.0701;-0.0692;-0.0682;-0.0671;-0.0659;-0.0646;-0.0632;-0.0617;-0.0601;-0.0584;-0.0566;-0.0548;-0.053;-0.0511;-0.0491;-0.0471;-0.0451;-0.043;-0.0409;-0.0388;-0.0366;-0.0344;-0.0322;-0.03;-0.0279;-0.0258;-0.0238;-0.0219;-0.0201;-0.0184;-0.0168;-0.0152;-0.0138;-0.0124;-0.0111;-0.0098;-0.0087;-0.0076;-0.0066;-0.0057;-0.0049;-0.0042;-0.0035;-0.003;-0.0025;-0.0022;-0.0019;-0.0017;-0.0017;-0.0019</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_MainWing_3ID"> + <name>Profile_MainWing_3</name> + <pointList> + <x mapType="vector">1;0.9902;0.9803;0.9703;0.9604;0.9504;0.9404;0.9304;0.9204;0.9104;0.9004;0.8903;0.8803;0.8703;0.8602;0.8501;0.8401;0.83;0.8199;0.8098;0.7997;0.7896;0.7795;0.7694;0.7593;0.7492;0.739;0.7289;0.7187;0.7086;0.6984;0.6882;0.6781;0.6679;0.6577;0.6475;0.6373;0.6271;0.6169;0.6067;0.5965;0.5863;0.576;0.5658;0.5556;0.5454;0.5352;0.5249;0.5147;0.5045;0.4943;0.4841;0.4738;0.4636;0.4534;0.4432;0.4329;0.4227;0.4125;0.4023;0.3921;0.3818;0.3716;0.3614;0.3511;0.3409;0.3307;0.3205;0.3103;0.3001;0.2898;0.2796;0.2694;0.2592;0.249;0.2388;0.2286;0.2184;0.2082;0.198;0.1879;0.1777;0.1675;0.1573;0.1472;0.137;0.1269;0.1168;0.1067;0.0966;0.0865;0.0764;0.0664;0.0565;0.0466;0.0368;0.0273;0.0183;0.0102;0.0034;0;0;0.0041;0.0122;0.0215;0.0311;0.0409;0.0508;0.0608;0.0708;0.0808;0.0908;0.1008;0.1109;0.1209;0.131;0.1411;0.1512;0.1613;0.1714;0.1815;0.1916;0.2017;0.2118;0.2219;0.2321;0.2422;0.2523;0.2625;0.2726;0.2828;0.2929;0.3031;0.3132;0.3234;0.3335;0.3437;0.3538;0.364;0.3741;0.3843;0.3944;0.4046;0.4147;0.4248;0.435;0.4451;0.4552;0.4654;0.4755;0.4856;0.4957;0.5058;0.5159;0.526;0.5361;0.5462;0.5563;0.5664;0.5764;0.5865;0.5966;0.6066;0.6167;0.6267;0.6368;0.6468;0.6568;0.6669;0.6769;0.6869;0.6969;0.707;0.717;0.727;0.737;0.7471;0.7571;0.7671;0.7772;0.7872;0.7973;0.8074;0.8175;0.8276;0.8377;0.8478;0.858;0.8681;0.8783;0.8884;0.8986;0.9087;0.9189;0.929;0.9391;0.9493;0.9594;0.9696;0.9797;0.9898;1</x> <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> <z mapType="vector">0.0024;0.0049;0.0074;0.0098;0.0121;0.0144;0.0166;0.0188;0.0209;0.023;0.025;0.027;0.0289;0.0308;0.0327;0.0345;0.0363;0.0381;0.0398;0.0414;0.0431;0.0447;0.0462;0.0477;0.0491;0.0505;0.0519;0.0532;0.0544;0.0556;0.0567;0.0578;0.0588;0.0597;0.0606;0.0614;0.0622;0.0629;0.0635;0.0641;0.0647;0.0652;0.0656;0.0661;0.0664;0.0668;0.0671;0.0674;0.0676;0.0678;0.0679;0.0681;0.0682;0.0682;0.0682;0.0682;0.0682;0.0681;0.068;0.0679;0.0677;0.0675;0.0673;0.0671;0.0668;0.0664;0.0661;0.0657;0.0652;0.0648;0.0643;0.0637;0.0631;0.0625;0.0618;0.0611;0.0604;0.0596;0.0588;0.0579;0.057;0.056;0.0549;0.0538;0.0526;0.0514;0.0501;0.0486;0.0471;0.0455;0.0437;0.0418;0.0398;0.0375;0.0349;0.0318;0.0282;0.0233;0.0171;0.0095;0;0;-0.009;-0.015;-0.0192;-0.0224;-0.025;-0.0272;-0.0292;-0.0311;-0.0328;-0.0343;-0.0358;-0.0372;-0.0386;-0.0399;-0.0411;-0.0422;-0.0433;-0.0443;-0.0453;-0.0462;-0.047;-0.0478;-0.0485;-0.0492;-0.0498;-0.0503;-0.0508;-0.0512;-0.0515;-0.0518;-0.052;-0.0521;-0.0522;-0.0522;-0.0521;-0.052;-0.0518;-0.0516;-0.0513;-0.051;-0.0506;-0.0502;-0.0496;-0.0491;-0.0485;-0.0478;-0.0471;-0.0463;-0.0455;-0.0446;-0.0436;-0.0427;-0.0416;-0.0406;-0.0394;-0.0383;-0.037;-0.0358;-0.0345;-0.0332;-0.0318;-0.0304;-0.029;-0.0275;-0.026;-0.0245;-0.0229;-0.0214;-0.0198;-0.0182;-0.0166;-0.015;-0.0133;-0.0117;-0.0101;-0.0086;-0.007;-0.0056;-0.0042;-0.0029;-0.0018;-0.0007;0.0002;0.0009;0.0015;0.0019;0.0022;0.0024;0.0024;0.0023;0.0022;0.002;0.0017;0.0013;0.0009;0.0004;-0.0002;-0.0009;-0.0016;-0.0024</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_HorizontalStabiliser_1ID"> + <name>Profile_HorizontalStabiliser_1</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_HorizontalStabiliser_2ID"> + <name>Profile_HorizontalStabiliser_2</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_VerticalStabiliser_1ID"> + <name>Profile_VerticalStabiliser_1</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + <wingAirfoil uID="Profile_VerticalStabiliser_2ID"> + <name>Profile_VerticalStabiliser_2</name> + <pointList> + <x mapType="vector">1;0.98952;0.969839;0.946227;0.920506;0.893968;0.867152;0.840237;0.81328;0.786301;0.759311;0.732314;0.705318;0.678327;0.651346;0.624382;0.597439;0.570525;0.543645;0.516806;0.490016;0.463283;0.436617;0.410027;0.383526;0.357128;0.33085;0.304713;0.278743;0.252974;0.227451;0.202237;0.177426;0.153163;0.129693;0.107423;0.086964;0.06902;0.054048;0.041996;0.032424;0.024799;0.018663;0.013682;0.009627;0.006354;0.003785;0.001888;0.000655;6.9e-05;6.9e-05;0.000655;0.001888;0.003785;0.006355;0.009627;0.013682;0.018663;0.024799;0.032424;0.041996;0.054048;0.06902;0.086964;0.107423;0.129694;0.153163;0.177426;0.202238;0.227452;0.252975;0.278744;0.304713;0.33085;0.357128;0.383526;0.410027;0.436617;0.463284;0.490017;0.516807;0.543645;0.570525;0.59744;0.624382;0.651347;0.678327;0.705318;0.732315;0.759311;0.786301;0.81328;0.840237;0.867152;0.893968;0.920506;0.946227;0.969839;0.98952;1</x> <y mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</y> <z mapType="vector">0.00126;0.002721;0.005415;0.008563;0.011893;0.015226;0.01849;0.021666;0.024749;0.027736;0.030628;0.033423;0.03612;0.038715;0.041204;0.043582;0.045844;0.047981;0.049986;0.051849;0.053559;0.055104;0.05647;0.057641;0.058601;0.059331;0.059809;0.060012;0.059914;0.059485;0.058693;0.057503;0.055874;0.053768;0.051155;0.048034;0.044472;0.040632;0.036739;0.032971;0.02941;0.026051;0.022853;0.019763;0.016731;0.013712;0.010671;0.007597;0.00451;0.001471;-0.001471;-0.004511;-0.007597;-0.010671;-0.013712;-0.016731;-0.019764;-0.022853;-0.026051;-0.02941;-0.032972;-0.036739;-0.040632;-0.044472;-0.048034;-0.051155;-0.053768;-0.055874;-0.057503;-0.058693;-0.059485;-0.059914;-0.060012;-0.059809;-0.059331;-0.058601;-0.057641;-0.05647;-0.055104;-0.053559;-0.051849;-0.049986;-0.047981;-0.045843;-0.043582;-0.041204;-0.038714;-0.03612;-0.033423;-0.030628;-0.027736;-0.024749;-0.021666;-0.01849;-0.015226;-0.011893;-0.008563;-0.005415;-0.002721;-0.00126</z> + </pointList> + </wingAirfoil> + </wingAirfoils> + <fuselageProfiles> + <fuselageProfile uID="Profile_Fuselage_1ID"> + <name>Profile_Fuselage_1</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.00760827;-0.0151289;-0.0224751;-0.0295622;-0.0363087;-0.0426367;-0.0484732;-0.0537511;-0.0584094;-0.0611548;-0.0634929;-0.0654046;-0.0668743;-0.0678901;-0.0684436;-0.0685304;-0.0681497;-0.0673046;-0.0643827;-0.0599899;-0.0542266;-0.0472243;-0.0391432;-0.0301677;-0.0205031;-0.01037;-8.42605e-18;8.42605e-18;0.01037;0.0205031;0.0301677;0.0391432;0.0472243;0.0542266;0.0599899;0.0643827;0.0673046;0.0681497;0.0685304;0.0684436;0.0678901;0.0668743;0.0654046;0.0634929;0.0611548;0.0584094;0.0537511;0.0484732;0.0426367;0.0363087;0.0295622;0.0224751;0.0151289;0.00760827;0</y> <z mapType="vector">-0.380603;-0.381012;-0.382234;-0.384255;-0.387053;-0.390594;-0.394837;-0.399735;-0.40523;-0.41126;-0.415649;-0.420268;-0.425079;-0.430044;-0.43512;-0.440268;-0.445444;-0.450607;-0.455715;-0.465696;-0.475122;-0.483779;-0.491468;-0.498014;-0.503267;-0.507108;-0.509448;-0.510234;-0.510234;-0.509448;-0.507108;-0.503267;-0.498014;-0.491468;-0.483779;-0.475122;-0.465696;-0.455715;-0.450607;-0.445444;-0.440268;-0.43512;-0.430044;-0.425079;-0.420268;-0.415649;-0.41126;-0.40523;-0.399735;-0.394837;-0.390594;-0.387053;-0.384255;-0.382234;-0.381012;-0.380603</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_2ID"> + <name>Profile_Fuselage_2</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.0269479;-0.0535852;-0.0796049;-0.104707;-0.128603;-0.151016;-0.171688;-0.190382;-0.206882;-0.216606;-0.224887;-0.231658;-0.236864;-0.240461;-0.242422;-0.242729;-0.241381;-0.238388;-0.228039;-0.21248;-0.192066;-0.167265;-0.138642;-0.106852;-0.0726203;-0.0367297;-2.98444e-17;2.98444e-17;0.0367297;0.0726203;0.106852;0.138642;0.167265;0.192066;0.21248;0.228039;0.238388;0.241381;0.242729;0.242422;0.240461;0.236864;0.231658;0.224887;0.216606;0.206882;0.190382;0.171688;0.151016;0.128603;0.104707;0.0796049;0.0535852;0.0269479;0</y> <z mapType="vector">-0.202044;-0.203493;-0.207822;-0.214982;-0.224889;-0.237431;-0.252463;-0.26981;-0.289273;-0.310629;-0.326176;-0.342536;-0.359577;-0.37716;-0.395141;-0.413373;-0.431708;-0.449995;-0.468086;-0.503438;-0.536825;-0.567487;-0.594721;-0.617906;-0.636513;-0.650115;-0.658403;-0.661187;-0.661187;-0.658403;-0.650115;-0.636513;-0.617906;-0.594721;-0.567487;-0.536825;-0.503438;-0.468086;-0.449995;-0.431708;-0.413373;-0.395141;-0.37716;-0.359577;-0.342536;-0.326176;-0.310629;-0.289273;-0.26981;-0.252463;-0.237431;-0.224889;-0.214982;-0.207822;-0.203493;-0.202044</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_3ID"> + <name>Profile_Fuselage_3</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.0514493;-0.102306;-0.151983;-0.199908;-0.24553;-0.288321;-0.32779;-0.36348;-0.394981;-0.413546;-0.429357;-0.442285;-0.452223;-0.459092;-0.462836;-0.463422;-0.460848;-0.455133;-0.435374;-0.405669;-0.366696;-0.319344;-0.264697;-0.204003;-0.138648;-0.0701249;-5.69794e-17;5.69794e-17;0.0701249;0.138648;0.204003;0.264697;0.319344;0.366696;0.405669;0.435374;0.455133;0.460848;0.463422;0.462836;0.459092;0.452223;0.442285;0.429357;0.413546;0.394981;0.36348;0.32779;0.288321;0.24553;0.199908;0.151983;0.102306;0.0514493;0</y> <z mapType="vector">0.0458874;0.0431216;0.0348563;0.0211867;0.00227037;-0.0216747;-0.0503726;-0.0834924;-0.120653;-0.161425;-0.191107;-0.222343;-0.254878;-0.288447;-0.322776;-0.357585;-0.39259;-0.427505;-0.462045;-0.529538;-0.593282;-0.651821;-0.703818;-0.748083;-0.783607;-0.809577;-0.8254;-0.830715;-0.830715;-0.8254;-0.809577;-0.783607;-0.748083;-0.703818;-0.651821;-0.593282;-0.529538;-0.462045;-0.427505;-0.39259;-0.357585;-0.322776;-0.288447;-0.254878;-0.222343;-0.191107;-0.161425;-0.120653;-0.0834924;-0.0503726;-0.0216747;0.00227037;0.0211867;0.0348563;0.0431216;0.0458874</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_4ID"> + <name>Profile_Fuselage_4</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.0750025;-0.149141;-0.22156;-0.291425;-0.357932;-0.420313;-0.47785;-0.529879;-0.575801;-0.602865;-0.625914;-0.64476;-0.659248;-0.669262;-0.674719;-0.675574;-0.671821;-0.66349;-0.634686;-0.591382;-0.534566;-0.465538;-0.385874;-0.297394;-0.20212;-0.102228;-8.30642e-17;8.30642e-17;0.102228;0.20212;0.297394;0.385874;0.465538;0.534566;0.591382;0.634686;0.66349;0.671821;0.675574;0.674719;0.669262;0.659248;0.64476;0.625914;0.602865;0.575801;0.529879;0.47785;0.420313;0.357932;0.291425;0.22156;0.149141;0.0750025;0</y> <z mapType="vector">0.305768;0.301737;0.289687;0.26976;0.242184;0.207277;0.165441;0.117159;0.0629876;0.0035503;-0.0397198;-0.0852555;-0.132685;-0.181622;-0.231667;-0.282411;-0.333441;-0.38434;-0.434692;-0.533083;-0.626009;-0.711347;-0.787147;-0.851677;-0.903463;-0.941322;-0.964389;-0.972137;-0.972137;-0.964389;-0.941322;-0.903463;-0.851677;-0.787147;-0.711347;-0.626009;-0.533083;-0.434692;-0.38434;-0.333441;-0.282411;-0.231667;-0.181622;-0.132685;-0.0852555;-0.0397198;0.0035503;0.0629876;0.117159;0.165441;0.207277;0.242184;0.26976;0.289687;0.301737;0.305768</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_5ID"> + <name>Profile_Fuselage_5</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.0962309;-0.191353;-0.284269;-0.373909;-0.459239;-0.539277;-0.613099;-0.679854;-0.738774;-0.773498;-0.80307;-0.82725;-0.845839;-0.858687;-0.865688;-0.866786;-0.86197;-0.851282;-0.814325;-0.758764;-0.685868;-0.597302;-0.49509;-0.381567;-0.259327;-0.131162;-1.06574e-16;1.06574e-16;0.131162;0.259327;0.381567;0.49509;0.597302;0.685868;0.758764;0.814325;0.851282;0.86197;0.866786;0.865688;0.858687;0.845839;0.82725;0.80307;0.773498;0.738774;0.679854;0.613099;0.539277;0.459239;0.373909;0.284269;0.191353;0.0962309;0</y> <z mapType="vector">0.556032;0.550859;0.5354;0.509832;0.474451;0.429664;0.375988;0.31404;0.244536;0.168276;0.112759;0.0543348;-0.00651942;-0.0693073;-0.133517;-0.198623;-0.264096;-0.329401;-0.394004;-0.520244;-0.639471;-0.748963;-0.846217;-0.929011;-0.995455;-1.04403;-1.07363;-1.08357;-1.08357;-1.07363;-1.04403;-0.995455;-0.929011;-0.846217;-0.748963;-0.639471;-0.520244;-0.394004;-0.329401;-0.264096;-0.198623;-0.133517;-0.0693073;-0.00651942;0.0543348;0.112759;0.168276;0.244536;0.31404;0.375988;0.429664;0.474451;0.509832;0.5354;0.550859;0.556032</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_6ID"> + <name>Profile_Fuselage_6</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.116018;-0.230698;-0.34272;-0.450792;-0.553668;-0.650162;-0.739163;-0.819645;-0.89068;-0.932543;-0.968196;-0.997348;-1.01976;-1.03525;-1.04369;-1.04501;-1.03921;-1.02632;-0.981766;-0.91478;-0.826895;-0.720119;-0.59689;-0.460025;-0.312649;-0.158131;-1.28488e-16;1.28488e-16;0.158131;0.312649;0.460025;0.59689;0.720119;0.826895;0.91478;0.981766;1.02632;1.03921;1.04501;1.04369;1.03525;1.01976;0.997348;0.968196;0.932543;0.89068;0.819645;0.739163;0.650162;0.553668;0.450792;0.34272;0.230698;0.116018;0</y> <z mapType="vector">0.796924;0.790687;0.772049;0.741224;0.698568;0.644572;0.579859;0.505174;0.421378;0.329438;0.262505;0.192068;0.118701;0.0430027;-0.0344091;-0.112903;-0.191838;-0.270571;-0.348458;-0.500655;-0.644398;-0.776403;-0.893654;-0.993472;-1.07358;-1.13214;-1.16782;-1.17981;-1.17981;-1.16782;-1.13214;-1.07358;-0.993472;-0.893654;-0.776403;-0.644398;-0.500655;-0.348458;-0.270571;-0.191838;-0.112903;-0.0344091;0.0430027;0.118701;0.192068;0.262505;0.329438;0.421378;0.505174;0.579859;0.644572;0.698568;0.741224;0.772049;0.790687;0.796924</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_7ID"> + <name>Profile_Fuselage_7</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.133077;-0.264621;-0.393115;-0.517077;-0.635081;-0.745764;-0.847852;-0.940168;-1.02165;-1.06967;-1.11056;-1.144;-1.16971;-1.18748;-1.19716;-1.19868;-1.19202;-1.17723;-1.12613;-1.04929;-0.948484;-0.826007;-0.684659;-0.527668;-0.358622;-0.181383;-1.47381e-16;1.47381e-16;0.181383;0.358622;0.527668;0.684659;0.826007;0.948484;1.04929;1.12613;1.17723;1.19202;1.19868;1.19716;1.18748;1.16971;1.144;1.11056;1.06967;1.02165;0.940168;0.847852;0.745764;0.635081;0.517077;0.393115;0.264621;0.133077;0</y> <z mapType="vector">1.00719;1.00004;0.978662;0.943304;0.894376;0.83244;0.758211;0.672544;0.576427;0.470967;0.394193;0.313398;0.229243;0.142414;0.0536191;-0.0364167;-0.126959;-0.217269;-0.306609;-0.481185;-0.646064;-0.797479;-0.931972;-1.04647;-1.13835;-1.20553;-1.24645;-1.2602;-1.2602;-1.24645;-1.20553;-1.13835;-1.04647;-0.931972;-0.797479;-0.646064;-0.481185;-0.306609;-0.217269;-0.126959;-0.0364167;0.0536191;0.142414;0.229243;0.313398;0.394193;0.470967;0.576427;0.672544;0.758211;0.83244;0.894376;0.943304;0.978662;1.00004;1.00719</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_8ID"> + <name>Profile_Fuselage_8</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.147337;-0.292977;-0.435239;-0.572485;-0.703133;-0.825677;-0.938704;-1.04091;-1.13112;-1.18429;-1.22957;-1.26659;-1.29505;-1.31472;-1.32544;-1.32712;-1.31975;-1.30338;-1.2468;-1.16173;-1.05012;-0.914519;-0.758024;-0.584211;-0.397051;-0.200819;-1.63174e-16;1.63174e-16;0.200819;0.397051;0.584211;0.758024;0.914519;1.05012;1.16173;1.2468;1.30338;1.31975;1.32712;1.32544;1.31472;1.29505;1.26659;1.22957;1.18429;1.13112;1.04091;0.938704;0.825677;0.703133;0.572485;0.435239;0.292977;0.147337;0</y> <z mapType="vector">1.18088;1.17296;1.1493;1.11015;1.05598;0.987405;0.905222;0.810375;0.703958;0.587198;0.502197;0.412745;0.319572;0.223438;0.125129;0.0254449;-0.0747993;-0.174786;-0.2737;-0.466983;-0.64953;-0.81717;-0.966074;-1.09284;-1.19457;-1.26894;-1.31425;-1.32948;-1.32948;-1.31425;-1.26894;-1.19457;-1.09284;-0.966074;-0.81717;-0.64953;-0.466983;-0.2737;-0.174786;-0.0747993;0.0254449;0.125129;0.223438;0.319572;0.412745;0.502197;0.587198;0.703958;0.810375;0.905222;0.987405;1.05598;1.11015;1.1493;1.17296;1.18088</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_9ID"> + <name>Profile_Fuselage_9</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.158826;-0.315821;-0.469176;-0.617124;-0.757959;-0.890058;-1.0119;-1.12208;-1.21932;-1.27663;-1.32544;-1.36535;-1.39603;-1.41723;-1.42879;-1.4306;-1.42265;-1.40501;-1.34402;-1.25231;-1.132;-0.985826;-0.817129;-0.629763;-0.42801;-0.216478;-1.75897e-16;1.75897e-16;0.216478;0.42801;0.629763;0.817129;0.985826;1.132;1.25231;1.34402;1.40501;1.42265;1.4306;1.42879;1.41723;1.39603;1.36535;1.32544;1.27663;1.21932;1.12208;1.0119;0.890058;0.757959;0.617124;0.469176;0.315821;0.158826;0</y> <z mapType="vector">1.31647;1.30794;1.28242;1.24022;1.18183;1.10791;1.01932;0.917075;0.802361;0.676496;0.584867;0.48844;0.388002;0.284373;0.178398;0.0709417;-0.0371189;-0.144902;-0.251528;-0.459882;-0.656663;-0.837375;-0.997889;-1.13454;-1.2442;-1.32437;-1.37322;-1.38963;-1.38963;-1.37322;-1.32437;-1.2442;-1.13454;-0.997889;-0.837375;-0.656663;-0.459882;-0.251528;-0.144902;-0.0371189;0.0709417;0.178398;0.284373;0.388002;0.48844;0.584867;0.676496;0.802361;0.917075;1.01932;1.10791;1.18183;1.24022;1.28242;1.30794;1.31647</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_10ID"> + <name>Profile_Fuselage_10</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.167385;-0.33284;-0.49446;-0.65038;-0.798805;-0.938022;-1.06643;-1.18254;-1.28503;-1.34543;-1.39687;-1.43892;-1.47126;-1.49361;-1.50578;-1.50746;-1.50746;-1.50769;-1.49932;-1.48073;-1.41644;-1.3198;-1.193;-1.03895;-0.861164;-0.663701;-0.451075;-0.228144;-1.85376e-16;1.85376e-16;0.228144;0.451075;0.663701;0.861164;1.03895;1.193;1.3198;1.41644;1.48073;1.49932;1.50769;1.50746;1.50746;1.50578;1.49361;1.47126;1.43892;1.39687;1.34543;1.28503;1.18254;1.06643;0.938022;0.798805;0.65038;0.49446;0.33284;0.167385;0</y> <z mapType="vector">1.4125;1.4035;1.37661;1.33214;1.2706;1.1927;1.09933;0.991579;0.870683;0.738035;0.641468;0.539845;0.433995;0.324781;0.213095;0.0998478;-1.21431e-17;-1.04083e-17;-0.0140362;-0.127628;-0.24;-0.459582;-0.666967;-0.857417;-1.02658;-1.17059;-1.28617;-1.37066;-1.42214;-1.43943;-1.43943;-1.42214;-1.37066;-1.28617;-1.17059;-1.02658;-0.857417;-0.666967;-0.459582;-0.24;-0.127628;-0.0140362;-1.04083e-17;-1.21431e-17;0.0998478;0.213095;0.324781;0.433995;0.539845;0.641468;0.738035;0.870683;0.991579;1.09933;1.1927;1.2706;1.33214;1.37661;1.4035;1.4125</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_11ID"> + <name>Profile_Fuselage_11</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.170215;-0.338336;-0.502295;-0.660075;-0.809738;-0.949443;-1.07747;-1.19226;-1.29239;-1.34981;-1.39871;-1.43873;-1.46958;-1.49103;-1.50292;-1.50517;-1.49775;-1.48073;-1.41929;-1.32466;-1.19904;-1.04538;-0.867254;-0.668842;-0.454782;-0.230083;-1.84815e-16;1.84815e-16;0.230083;0.454782;0.668842;0.867254;1.04538;1.19904;1.32466;1.41929;1.48073;1.49775;1.50517;1.50292;1.49103;1.46958;1.43873;1.39871;1.34981;1.29239;1.19226;1.07747;0.949443;0.809738;0.660075;0.502295;0.338336;0.170215;0</y> <z mapType="vector">1.44226;1.43282;1.40459;1.35794;1.29343;1.21187;1.11425;1.00179;0.875866;0.738035;0.640312;0.538033;0.431945;0.322822;0.211459;0.09867;-0.0147213;-0.127887;-0.24;-0.462387;-0.672814;-0.866355;-1.03848;-1.18517;-1.30298;-1.38915;-1.44168;-1.45932;-1.45932;-1.44168;-1.38915;-1.30298;-1.18517;-1.03848;-0.866355;-0.672814;-0.462387;-0.24;-0.127887;-0.0147213;0.09867;0.211459;0.322822;0.431945;0.538033;0.640312;0.738035;0.875866;1.00179;1.11425;1.21187;1.29343;1.35794;1.40459;1.43282;1.44226</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_12ID"> + <name>Profile_Fuselage_12</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.175211;-0.348035;-0.516116;-0.677163;-0.828981;-0.969502;-1.09681;-1.20917;-1.30506;-1.35719;-1.40161;-1.43805;-1.4663;-1.4862;-1.49763;-1.50053;-1.49489;-1.48073;-1.4245;-1.33355;-1.21009;-1.05713;-0.878398;-0.67825;-0.461567;-0.233631;-1.83808e-16;1.83808e-16;0.233631;0.461567;0.67825;0.878398;1.05713;1.21009;1.33355;1.4245;1.48073;1.49489;1.50053;1.49763;1.4862;1.4663;1.43805;1.40161;1.35719;1.30506;1.20917;1.09681;0.969502;0.828981;0.677163;0.516116;0.348035;0.175211;0</y> <z mapType="vector">1.49503;1.48478;1.45419;1.40366;1.33389;1.24583;1.14068;1.01986;0.885037;0.738035;0.638276;0.534848;0.428346;0.319386;0.208596;0.0966149;-0.0159107;-0.128332;-0.24;-0.467501;-0.683478;-0.882665;-1.06021;-1.21177;-1.33367;-1.42293;-1.47737;-1.49566;-1.49566;-1.47737;-1.42293;-1.33367;-1.21177;-1.06021;-0.882665;-0.683478;-0.467501;-0.24;-0.128332;-0.0159107;0.0966149;0.208596;0.319386;0.428346;0.534848;0.638276;0.738035;0.885037;1.01986;1.14068;1.24583;1.33389;1.40366;1.45419;1.48478;1.49503</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_13ID"> + <name>Profile_Fuselage_13</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0</y> <z mapType="vector">1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_14ID"> + <name>Profile_Fuselage_14</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0</y> <z mapType="vector">1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_15ID"> + <name>Profile_Fuselage_15</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.175669;-0.34892;-0.51737;-0.6787;-0.830689;-0.971247;-1.09844;-1.21051;-1.30593;-1.35757;-1.40157;-1.43768;-1.46572;-1.48551;-1.49695;-1.49996;-1.49455;-1.48073;-1.42514;-1.33464;-1.21144;-1.05857;-0.879761;-0.679402;-0.462398;-0.234066;-1.83703e-16;1.83703e-16;0.234066;0.462398;0.679402;0.879761;1.05857;1.21144;1.33464;1.42514;1.48073;1.49455;1.49996;1.49695;1.48551;1.46572;1.43768;1.40157;1.35757;1.30593;1.21051;1.09844;0.971247;0.830689;0.6787;0.51737;0.34892;0.175669;0</y> <z mapType="vector">1.50005;1.48973;1.45891;1.40801;1.33773;1.24904;1.14317;1.02156;0.885893;0.738035;0.638095;0.534567;0.428033;0.319092;0.208356;0.0964481;-0.0160019;-0.128362;-0.24;-0.468111;-0.684754;-0.884622;-1.06282;-1.21498;-1.33737;-1.427;-1.48168;-1.50005;-1.50005;-1.48168;-1.427;-1.33737;-1.21498;-1.06282;-0.884622;-0.684754;-0.468111;-0.24;-0.128362;-0.0160019;0.0964481;0.208356;0.319092;0.428033;0.534567;0.638095;0.738035;0.885893;1.02156;1.14317;1.24904;1.33773;1.40801;1.45891;1.48973;1.50005</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_16ID"> + <name>Profile_Fuselage_16</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.175662;-0.348914;-0.517377;-0.678739;-0.830787;-0.971432;-1.09875;-1.21098;-1.3066;-1.35836;-1.40244;-1.43859;-1.46661;-1.48633;-1.49764;-1.50048;-1.49483;-1.48073;-1.42463;-1.33377;-1.21036;-1.05741;-0.878664;-0.678474;-0.461729;-0.233716;-1.83786e-16;1.83786e-16;0.233716;0.461729;0.678474;0.878664;1.05741;1.21036;1.33377;1.42463;1.48073;1.49483;1.50048;1.49764;1.48633;1.46661;1.43859;1.40244;1.35836;1.3066;1.21098;1.09875;0.971432;0.830787;0.678739;0.517377;0.348914;0.175662;0</y> <z mapType="vector">1.49917;1.48886;1.45808;1.40725;1.33707;1.2485;1.14275;1.02128;0.885755;0.738035;0.638146;0.534639;0.428102;0.319142;0.20838;0.0964462;-0.016022;-0.128384;-0.24;-0.467621;-0.683729;-0.883049;-1.06072;-1.2124;-1.3344;-1.42372;-1.47821;-1.49652;-1.49652;-1.47821;-1.42372;-1.3344;-1.2124;-1.06072;-0.883049;-0.683729;-0.467621;-0.24;-0.128384;-0.016022;0.0964462;0.20838;0.319142;0.428102;0.534639;0.638146;0.738035;0.885755;1.02128;1.14275;1.2485;1.33707;1.40725;1.45808;1.48886;1.49917</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_17ID"> + <name>Profile_Fuselage_17</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.175611;-0.348904;-0.517594;-0.679454;-0.83235;-0.974263;-1.10332;-1.21782;-1.31626;-1.36984;-1.4151;-1.45173;-1.47948;-1.49818;-1.50768;-1.50793;-1.49892;-1.48073;-1.4175;-1.3216;-1.19524;-1.04133;-0.863417;-0.665603;-0.452447;-0.228861;-1.8517e-16;1.8517e-16;0.228861;0.452447;0.665603;0.863417;1.04133;1.19524;1.3216;1.4175;1.48073;1.49892;1.50793;1.50768;1.49818;1.47948;1.45173;1.4151;1.36984;1.31626;1.21782;1.10332;0.974263;0.83235;0.679454;0.517594;0.348904;0.175611;0</y> <z mapType="vector">1.48673;1.47663;1.44646;1.39661;1.32775;1.24078;1.13685;1.01734;0.88381;0.738035;0.638866;0.535631;0.429028;0.319778;0.208619;0.0963014;-0.0164149;-0.128768;-0.24;-0.460619;-0.669129;-0.860722;-1.03098;-1.17598;-1.29238;-1.3775;-1.42936;-1.44679;-1.44679;-1.42936;-1.3775;-1.29238;-1.17598;-1.03098;-0.860722;-0.669129;-0.460619;-0.24;-0.128768;-0.0164149;0.0963014;0.208619;0.319778;0.429028;0.535631;0.638866;0.738035;0.88381;1.01734;1.13685;1.24078;1.32775;1.39661;1.44646;1.47663;1.48673</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_18ID"> + <name>Profile_Fuselage_18</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.175832;-0.349588;-0.519218;-0.68272;-0.838165;-0.983716;-1.11766;-1.23841;-1.34455;-1.40314;-1.45163;-1.48952;-1.51644;-1.53209;-1.53633;-1.52912;-1.51052;-1.48073;-1.39918;-1.29045;-1.15666;-1.00039;-0.824688;-0.632961;-0.428934;-0.216571;-1.90889e-16;1.90889e-16;0.216571;0.428934;0.632961;0.824688;1.00039;1.15666;1.29045;1.39918;1.48073;1.51052;1.52912;1.53633;1.53209;1.51644;1.48952;1.45163;1.40314;1.34455;1.23841;1.11766;0.983716;0.838165;0.68272;0.519218;0.349588;0.175832;0</y> <z mapType="vector">1.45358;1.44401;1.41543;1.36818;1.3028;1.22007;1.12097;1.00667;0.878524;0.738035;0.640777;0.538103;0.431062;0.320746;0.208282;0.0948189;-0.0184848;-0.130472;-0.24;-0.4411;-0.628928;-0.799831;-0.950485;-1.07796;-1.17977;-1.25394;-1.29903;-1.31416;-1.31416;-1.29903;-1.25394;-1.17977;-1.07796;-0.950485;-0.799831;-0.628928;-0.4411;-0.24;-0.130472;-0.0184848;0.0948189;0.208282;0.320746;0.431062;0.538103;0.640777;0.738035;0.878524;1.00667;1.12097;1.22007;1.3028;1.36818;1.41543;1.44401;1.45358</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_19ID"> + <name>Profile_Fuselage_19</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.171561;-0.341303;-0.507426;-0.668169;-0.821826;-0.96677;-1.10146;-1.22447;-1.3345;-1.39767;-1.44857;-1.48644;-1.5107;-1.52099;-1.51716;-1.49926;-1.46758;-1.42259;-1.3248;-1.20692;-1.07074;-0.918311;-0.751952;-0.574183;-0.3877;-0.195332;-1.95014e-16;1.95014e-16;0.195332;0.3877;0.574183;0.751952;0.918311;1.07074;1.20692;1.3248;1.42259;1.46758;1.49926;1.51716;1.52099;1.5107;1.48644;1.44857;1.39767;1.3345;1.22447;1.10146;0.96677;0.821826;0.668169;0.507426;0.341303;0.171561;0</y> <z mapType="vector">1.40515;1.39631;1.36987;1.32611;1.26551;1.18869;1.09649;0.989864;0.869956;0.738035;0.642103;0.539138;0.430703;0.318445;0.204066;0.089304;-0.0241001;-0.134426;-0.24;-0.409315;-0.565362;-0.705768;-0.828395;-0.931378;-1.01315;-1.07246;-1.10842;-1.12046;-1.12046;-1.10842;-1.07246;-1.01315;-0.931378;-0.828395;-0.705768;-0.565362;-0.409315;-0.24;-0.134426;-0.0241001;0.089304;0.204066;0.318445;0.430703;0.539138;0.642103;0.738035;0.869956;0.989864;1.09649;1.18869;1.26551;1.32611;1.36987;1.39631;1.40515</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_20ID"> + <name>Profile_Fuselage_20</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.162522;-0.323372;-0.480897;-0.633477;-0.779541;-0.917589;-1.0462;-1.16405;-1.26993;-1.33438;-1.38495;-1.42069;-1.44093;-1.44527;-1.43364;-1.40628;-1.3637;-1.30674;-1.20499;-1.08859;-0.958951;-0.817648;-0.666394;-0.507027;-0.341488;-0.17179;-1.91908e-16;1.91908e-16;0.17179;0.341488;0.507027;0.666394;0.817648;0.958951;1.08859;1.20499;1.30674;1.3637;1.40628;1.43364;1.44527;1.44093;1.42069;1.38495;1.33438;1.26993;1.16405;1.0462;0.917589;0.779541;0.633477;0.480897;0.323372;0.162522;0</y> <z mapType="vector">1.36175;1.3535;1.32883;1.288;1.23142;1.15969;1.07352;0.973821;0.861608;0.738035;0.641563;0.537151;0.426787;0.31257;0.196675;0.0813069;-0.0313402;-0.139125;-0.24;-0.378415;-0.504841;-0.617728;-0.715696;-0.797543;-0.862267;-0.909073;-0.937388;-0.946866;-0.946866;-0.937388;-0.909073;-0.862267;-0.797543;-0.715696;-0.617728;-0.504841;-0.378415;-0.24;-0.139125;-0.0313402;0.0813069;0.196675;0.31257;0.426787;0.537151;0.641563;0.738035;0.861608;0.973821;1.07352;1.15969;1.23142;1.288;1.32883;1.3535;1.36175</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_21ID"> + <name>Profile_Fuselage_21</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.158809;-0.315997;-0.469962;-0.619133;-0.761988;-0.89707;-1.023;-1.1385;-1.24238;-1.30717;-1.35747;-1.39225;-1.4108;-1.41273;-1.39801;-1.37646;-1.37646;-1.36694;-1.32016;-1.25862;-1.15615;-1.04101;-0.914462;-0.777892;-0.632797;-0.480768;-0.323469;-0.162626;-1.90505e-16;1.90505e-16;0.162626;0.323469;0.480768;0.632797;0.777892;0.914462;1.04101;1.15615;1.25862;1.32016;1.36694;1.37646;1.37646;1.39801;1.41273;1.4108;1.39225;1.35747;1.30717;1.24238;1.1385;1.023;0.89707;0.761988;0.619133;0.469962;0.315997;0.158809;0</y> <z mapType="vector">1.34539;1.33736;1.31335;1.27361;1.21854;1.1487;1.06481;0.967721;0.858424;0.738035;0.641215;0.536136;0.42495;0.309937;0.193454;0.0778887;-4.51028e-17;1.38778e-16;-0.0343905;-0.141082;-0.24;-0.36657;-0.481734;-0.58423;-0.672935;-0.746877;-0.805244;-0.847398;-0.872877;-0.881401;-0.881401;-0.872877;-0.847398;-0.805244;-0.746877;-0.672935;-0.58423;-0.481734;-0.36657;-0.24;-0.141082;-0.0343905;1.38778e-16;-4.51028e-17;0.0778887;0.193454;0.309937;0.42495;0.536136;0.641215;0.738035;0.858424;0.967721;1.06481;1.1487;1.21854;1.27361;1.31335;1.33736;1.34539</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_22ID"> + <name>Profile_Fuselage_22</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.138612;-0.275811;-0.410195;-0.540395;-0.665083;-0.782986;-0.892901;-0.993708;-1.08438;-1.14093;-1.18483;-1.21519;-1.23138;-1.23307;-1.22022;-1.1931;-1.15227;-1.09855;-1.00912;-0.90862;-0.798166;-0.678964;-0.552322;-0.419626;-0.282332;-0.141944;-1.66277e-16;1.66277e-16;0.141944;0.282332;0.419626;0.552322;0.678964;0.798166;0.90862;1.00912;1.09855;1.15227;1.1931;1.22022;1.23307;1.23138;1.21519;1.18483;1.14093;1.08438;0.993708;0.892901;0.782986;0.665083;0.540395;0.410195;0.275811;0.138612;0</y> <z mapType="vector">1.29468;1.28756;1.26629;1.23107;1.18227;1.12038;1.04605;0.960013;0.863162;0.756481;0.670685;0.577571;0.479045;0.377129;0.273909;0.171503;0.0720081;-0.0225352;-0.110189;-0.222348;-0.324398;-0.415224;-0.493828;-0.55935;-0.611072;-0.648426;-0.671003;-0.678557;-0.678557;-0.671003;-0.648426;-0.611072;-0.55935;-0.493828;-0.415224;-0.324398;-0.222348;-0.110189;-0.0225352;0.0720081;0.171503;0.273909;0.377129;0.479045;0.577571;0.670685;0.756481;0.863162;0.960013;1.04605;1.12038;1.18227;1.23107;1.26629;1.28756;1.29468</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_23ID"> + <name>Profile_Fuselage_23</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.115885;-0.230588;-0.342939;-0.451791;-0.556034;-0.654606;-0.746499;-0.830777;-0.90658;-0.95386;-0.990566;-1.01595;-1.02948;-1.03089;-1.02015;-0.99748;-0.96334;-0.918432;-0.843659;-0.75964;-0.667297;-0.56764;-0.461762;-0.350824;-0.23604;-0.11867;-1.39014e-16;1.39014e-16;0.11867;0.23604;0.350824;0.461762;0.56764;0.667297;0.75964;0.843659;0.918432;0.96334;0.99748;1.02015;1.03089;1.02948;1.01595;0.990566;0.95386;0.90658;0.830777;0.746499;0.654606;0.556034;0.451791;0.342939;0.230588;0.115885;0</y> <z mapType="vector">1.23706;1.23098;1.21281;1.18273;1.14106;1.08821;1.02473;0.951255;0.868545;0.77744;0.704172;0.624653;0.540513;0.453476;0.365328;0.277873;0.192906;0.112167;0.0373106;-0.0584715;-0.145622;-0.223186;-0.290314;-0.346269;-0.390439;-0.422339;-0.44162;-0.448071;-0.448071;-0.44162;-0.422339;-0.390439;-0.346269;-0.290314;-0.223186;-0.145622;-0.0584715;0.0373106;0.112167;0.192906;0.277873;0.365328;0.453476;0.540513;0.624653;0.704172;0.77744;0.868545;0.951255;1.02473;1.08821;1.14106;1.18273;1.21281;1.23098;1.23706</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_24ID"> + <name>Profile_Fuselage_24</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.0920396;-0.18314;-0.272373;-0.358827;-0.44162;-0.519908;-0.592893;-0.659829;-0.720034;-0.757585;-0.786739;-0.806897;-0.817646;-0.818767;-0.810237;-0.79223;-0.765115;-0.729448;-0.670061;-0.60333;-0.529988;-0.450837;-0.366746;-0.278635;-0.187471;-0.0942518;-1.10409e-16;1.10409e-16;0.0942518;0.187471;0.278635;0.366746;0.450837;0.529988;0.60333;0.670061;0.729448;0.765115;0.79223;0.810237;0.818767;0.817646;0.806897;0.786739;0.757585;0.720034;0.659829;0.592893;0.519908;0.44162;0.358827;0.272373;0.18314;0.0920396;0</y> <z mapType="vector">1.17298;1.16806;1.15334;1.12899;1.09524;1.05243;1.00102;0.941516;0.874531;0.800747;0.741408;0.677007;0.608864;0.538375;0.466986;0.396158;0.327345;0.261956;0.201331;0.12376;0.053178;-0.00963954;-0.0640047;-0.109322;-0.145094;-0.170929;-0.186544;-0.191769;-0.191769;-0.186544;-0.170929;-0.145094;-0.109322;-0.0640047;-0.00963954;0.053178;0.12376;0.201331;0.261956;0.327345;0.396158;0.466986;0.538375;0.608864;0.677007;0.741408;0.800747;0.874531;0.941516;1.00102;1.05243;1.09524;1.12899;1.15334;1.16806;1.17298</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_25ID"> + <name>Profile_Fuselage_25</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.0693292;-0.137951;-0.205166;-0.270288;-0.332652;-0.391623;-0.446599;-0.497019;-0.542369;-0.570654;-0.592614;-0.607798;-0.615895;-0.61674;-0.610314;-0.59675;-0.576326;-0.549459;-0.504726;-0.454461;-0.399215;-0.339595;-0.276253;-0.209883;-0.141213;-0.0709956;-8.31663e-17;8.31663e-17;0.0709956;0.141213;0.209883;0.276253;0.339595;0.399215;0.454461;0.504726;0.549459;0.576326;0.59675;0.610314;0.61674;0.615895;0.607798;0.592614;0.570654;0.542369;0.497019;0.446599;0.391623;0.332652;0.270288;0.205166;0.137951;0.0693292;0</y> <z mapType="vector">1.10741;1.10367;1.09249;1.07399;1.04834;1.01582;0.976759;0.93155;0.880656;0.824597;0.779513;0.730583;0.67881;0.625254;0.571014;0.517201;0.464918;0.415237;0.369176;0.310239;0.256613;0.208886;0.167581;0.13315;0.105971;0.0863423;0.0744781;0.0705089;0.0705089;0.0744781;0.0863423;0.105971;0.13315;0.167581;0.208886;0.256613;0.310239;0.369176;0.415237;0.464918;0.517201;0.571014;0.625254;0.67881;0.730583;0.779513;0.824597;0.880656;0.93155;0.976759;1.01582;1.04834;1.07399;1.09249;1.10367;1.10741</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_26ID"> + <name>Profile_Fuselage_26</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.049198;-0.0978941;-0.145592;-0.191804;-0.236059;-0.277907;-0.31692;-0.352699;-0.384881;-0.404953;-0.420536;-0.431311;-0.437057;-0.437656;-0.433097;-0.423471;-0.408977;-0.389912;-0.358168;-0.322499;-0.283295;-0.240986;-0.196037;-0.148939;-0.100209;-0.0503805;-5.90172e-17;5.90172e-17;0.0503805;0.100209;0.148939;0.196037;0.240986;0.283295;0.322499;0.358168;0.389912;0.408977;0.423471;0.433097;0.437656;0.437057;0.431311;0.420536;0.404953;0.384881;0.352699;0.31692;0.277907;0.236059;0.191804;0.145592;0.0978941;0.049198;0</y> <z mapType="vector">1.04425;1.04165;1.03388;1.02101;1.00317;0.980557;0.953391;0.92195;0.886557;0.847571;0.816218;0.78219;0.746185;0.70894;0.671219;0.633796;0.597436;0.562886;0.530853;0.489866;0.452573;0.419381;0.390656;0.366711;0.34781;0.334159;0.325909;0.323148;0.323148;0.325909;0.334159;0.34781;0.366711;0.390656;0.419381;0.452573;0.489866;0.530853;0.562886;0.597436;0.633796;0.671219;0.70894;0.746185;0.78219;0.816218;0.847571;0.886557;0.92195;0.953391;0.980557;1.00317;1.02101;1.03388;1.04165;1.04425</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_27ID"> + <name>Profile_Fuselage_27</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.0327759;-0.0652174;-0.0969936;-0.12778;-0.157264;-0.185143;-0.211133;-0.234969;-0.256409;-0.269781;-0.280162;-0.287341;-0.291169;-0.291568;-0.28853;-0.282118;-0.272462;-0.259761;-0.238613;-0.21485;-0.188732;-0.160546;-0.1306;-0.0992237;-0.0667595;-0.0335637;-3.93175e-17;3.93175e-17;0.0335637;0.0667595;0.0992237;0.1306;0.160546;0.188732;0.21485;0.238613;0.259761;0.272462;0.282118;0.28853;0.291568;0.291169;0.287341;0.280162;0.269781;0.256409;0.234969;0.211133;0.185143;0.157264;0.12778;0.0969936;0.0652174;0.0327759;0</y> <z mapType="vector">0.988024;0.986438;0.981694;0.973842;0.962961;0.949162;0.932587;0.913404;0.891809;0.868023;0.848893;0.828131;0.806163;0.783439;0.760424;0.737591;0.715406;0.694326;0.674782;0.649774;0.62702;0.606769;0.589242;0.574633;0.563101;0.554772;0.549738;0.548053;0.548053;0.549738;0.554772;0.563101;0.574633;0.589242;0.606769;0.62702;0.649774;0.674782;0.694326;0.715406;0.737591;0.760424;0.783439;0.806163;0.828131;0.848893;0.868023;0.891809;0.913404;0.932587;0.949162;0.962961;0.973842;0.981694;0.986438;0.988024</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_28ID"> + <name>Profile_Fuselage_28</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.0207606;-0.0413094;-0.0614368;-0.0809375;-0.0996125;-0.117271;-0.133734;-0.148832;-0.162412;-0.170882;-0.177458;-0.182005;-0.18443;-0.184682;-0.182758;-0.178696;-0.17258;-0.164535;-0.15114;-0.136088;-0.119545;-0.101692;-0.0827237;-0.0628493;-0.0422862;-0.0212596;-2.49041e-17;2.49041e-17;0.0212596;0.0422862;0.0628493;0.0827237;0.101692;0.119545;0.136088;0.15114;0.164535;0.17258;0.178696;0.182758;0.184682;0.18443;0.182005;0.177458;0.170882;0.162412;0.148832;0.133734;0.117271;0.0996125;0.0809375;0.0614368;0.0413094;0.0207606;0</y> <z mapType="vector">0.943811;0.943021;0.940661;0.936754;0.931341;0.924475;0.916229;0.906684;0.89594;0.884105;0.874587;0.864258;0.853328;0.842021;0.83057;0.81921;0.808172;0.797684;0.78796;0.775518;0.764196;0.754121;0.745401;0.738132;0.732394;0.72825;0.725745;0.724907;0.724907;0.725745;0.72825;0.732394;0.738132;0.745401;0.754121;0.764196;0.775518;0.78796;0.797684;0.808172;0.81921;0.83057;0.842021;0.853328;0.864258;0.874587;0.884105;0.89594;0.906684;0.916229;0.924475;0.931341;0.936754;0.940661;0.943021;0.943811</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_29ID"> + <name>Profile_Fuselage_29</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.0134438;-0.0267504;-0.0397841;-0.052412;-0.0645053;-0.0759405;-0.086601;-0.096378;-0.105172;-0.110657;-0.114915;-0.117859;-0.11943;-0.119593;-0.118347;-0.115717;-0.111757;-0.106547;-0.0978725;-0.0881255;-0.0774127;-0.0658516;-0.0535688;-0.0406989;-0.0273829;-0.0137669;-1.6127e-17;1.6127e-17;0.0137669;0.0273829;0.0406989;0.0535688;0.0658516;0.0774127;0.0881255;0.0978725;0.106547;0.111757;0.115717;0.118347;0.119593;0.11943;0.117859;0.114915;0.110657;0.105172;0.096378;0.086601;0.0759405;0.0645053;0.052412;0.0397841;0.0267504;0.0134438;0</y> <z mapType="vector">0.915758;0.915474;0.914626;0.913223;0.911278;0.908812;0.905849;0.90242;0.898561;0.894309;0.89089;0.887179;0.883253;0.879191;0.875078;0.870996;0.867031;0.863264;0.85977;0.855301;0.851234;0.847614;0.844481;0.84187;0.839809;0.83832;0.837421;0.83712;0.83712;0.837421;0.83832;0.839809;0.84187;0.844481;0.847614;0.851234;0.855301;0.85977;0.863264;0.867031;0.870996;0.875078;0.879191;0.883253;0.887179;0.89089;0.894309;0.898561;0.90242;0.905849;0.908812;0.911278;0.913223;0.914626;0.915474;0.915758</z> + </pointList> + </fuselageProfile> + <fuselageProfile uID="Profile_Fuselage_30ID"> + <name>Profile_Fuselage_30</name> + <pointList> + <x mapType="vector">0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0</x> <y mapType="vector">0;-0.0109799;-0.0218478;-0.0324928;-0.0428063;-0.0526831;-0.0620226;-0.0707293;-0.0787144;-0.0858966;-0.0903763;-0.0938541;-0.0962589;-0.0975413;-0.097675;-0.0966574;-0.0945092;-0.0912745;-0.0870196;-0.079935;-0.0719744;-0.063225;-0.0537827;-0.043751;-0.0332398;-0.0223644;-0.0112438;-1.31713e-17;1.31713e-17;0.0112438;0.0223644;0.0332398;0.043751;0.0537827;0.063225;0.0719744;0.079935;0.0870196;0.0912745;0.0945092;0.0966574;0.097675;0.0975413;0.0962589;0.0938541;0.0903763;0.0858966;0.0787144;0.0707293;0.0620226;0.0526831;0.0428063;0.0324928;0.0218478;0.0109799;0</y> <z mapType="vector">0.906311;0.906198;0.905859;0.905299;0.904522;0.903537;0.902354;0.900985;0.899443;0.897745;0.89638;0.894898;0.89333;0.891708;0.890065;0.888435;0.886852;0.885347;0.883952;0.882167;0.880543;0.879097;0.877846;0.876804;0.87598;0.875386;0.875027;0.874906;0.874906;0.875027;0.875386;0.87598;0.876804;0.877846;0.879097;0.880543;0.882167;0.883952;0.885347;0.886852;0.888435;0.890065;0.891708;0.89333;0.894898;0.89638;0.897745;0.899443;0.900985;0.902354;0.903537;0.904522;0.905299;0.905859;0.906198;0.906311</z> + </pointList> + </fuselageProfile> + </fuselageProfiles> + </profiles> + <engines> + <engine uID="engine"> + <description>AGILE DC-1 Reference Engine 1</description> + <analysis> + <bpr00>4.4</bpr00> + <thrust00>61367.6832837</thrust00> + </analysis> + <geometry> + <diameter>1.40118975114</diameter> + <length>2.41986362808</length> + </geometry> + </engine> + </engines> + </vehicles> + <toolspecific> + <q3D> + <cases> + <case modes="APM" uID="APM"> + <typeOfRun>aeroPerformanceMap</typeOfRun> + <modelUID>agile_v13_modelID</modelUID> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + </case> + <case modes="FLC" uID="FLC"> + <typeOfRun>flightLoadCase</typeOfRun> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + <flightLoadCaseUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m</flightLoadCaseUID> + </case> + <case modes="VDE" uID="VDE"> + <typeOfRun>flightLoadCase</typeOfRun> + <wingUID>MainWing_wingID</wingUID> + <n_afp>100</n_afp> + <AVL.nchord>8</AVL.nchord> + <AVL.nspan>20</AVL.nspan> + <Q3D.n_wing>8</Q3D.n_wing> + <flightLoadCaseUID>Design-maneuver-speed_2.5g_F0_MTOM_max_fuel_12000m</flightLoadCaseUID> + </case> + </cases> + </q3D> + <hANGAR> + <loadCpacsFile>AGILE_DC1_L0_MDA.xml</loadCpacsFile> + <mode>AGILE_DC1_L0_MDA</mode> + </hANGAR> + </toolspecific> +</cpacs> diff --git a/pyKADMOS/scripts/Andreas_development_scripts/KB_mapping_test.py b/pyKADMOS/scripts/Andreas_development_scripts/KB_mapping_test.py index f4be855db78060abcc109a7ce2d46aceb221992d..aea667ceb5bafec8d08cee7d84946ad1cc1e14d8 100644 --- a/pyKADMOS/scripts/Andreas_development_scripts/KB_mapping_test.py +++ b/pyKADMOS/scripts/Andreas_development_scripts/KB_mapping_test.py @@ -4,7 +4,7 @@ from pyKADMOS.sample.exec_utilities import execute_FPG_combination ####################################### SETTINGS ############################################## # INIT -working_dir = r'C:\Users\aMakus\Programming\KADMOS\KADMOS_kb_repo\KNOWLEDGE_BASE' # use raw string +working_dir = r'C:\Users\aMakus\Programming\Repositories\kadmos\pyKADMOS\scripts\Andreas_development_scripts\DEMO_KNOWLEDGE_BASE' # use raw string schema_dir = "MDO_DEMO_BLUEPRINTS" kb_dir = "MY_TEST_KB" contractionLevel = None # None or integer @@ -30,7 +30,7 @@ for node in FPG.nodes(): # (write simple function, maybe ask user) # TODO: define execution order of FPG -ExecFuncs = ['HANGAR']#, 'Q3D[FLC]', "EMWET", 'Q3D[APM]']#, 'Q3D[FLC]', 'EMWET', 'Q3D[APM]'] # TODO: DEMO +ExecFuncs = ['HANGAR', 'Q3D[FLC]', "EMWET"]# 'Q3D[APM]'] # TODO: DEMO # visDir = 'Andreas__Visualization' # FPG.create_visualization_package(visDir, order=ExecFuncs, no_circleView_variables_data=True) # TODO: check why not works!