From 028511c7ef9e413a02c173c925a98dd21b6765ba Mon Sep 17 00:00:00 2001 From: GBenedett Date: Mon, 5 Feb 2024 14:41:48 +0100 Subject: [PATCH 01/55] ThermoData branch --- ceasiompy/SU2Run/func/su2config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceasiompy/SU2Run/func/su2config.py b/ceasiompy/SU2Run/func/su2config.py index 7b77a9bc6..20bb061af 100644 --- a/ceasiompy/SU2Run/func/su2config.py +++ b/ceasiompy/SU2Run/func/su2config.py @@ -341,7 +341,7 @@ def generate_su2_cfd_config(cpacs_path, cpacs_out_path, wkdir): if aeromap_list: aeromap_default = aeromap_list[0] - log.info(f'The aeromap is {aeromap_default}') + log.info(f"The aeromap is {aeromap_default}") aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, aeromap_default) From 43beb2fb9ff9f66d3f7c5abddc6cd58da2cf188b Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 10:08:55 +0100 Subject: [PATCH 02/55] test commit --- ceasiompy/SU2Run/su2run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceasiompy/SU2Run/su2run.py b/ceasiompy/SU2Run/su2run.py index 4b103b22c..132a0a17f 100644 --- a/ceasiompy/SU2Run/su2run.py +++ b/ceasiompy/SU2Run/su2run.py @@ -16,7 +16,7 @@ * complete input/output in __specs__ * Check platform with-> sys.platform * Move run_SU2_fsi to /SU2Run/func/su2fsi.py - +test """ # ================================================================================================= From af40f2b19ae7301fd2461006119fd5a3626ccca9 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 10:11:59 +0100 Subject: [PATCH 03/55] new commit --- ceasiompy/SU2Run/func/su2config.py | 29 ++ ceasiompy/SU2Run/func/su2configrans.py | 564 +++++++++++++++++++++++++ ceasiompy/SU2Run/su2run.py | 2 +- ceasiompy/utils/commonnames.py | 3 + ceasiompy/utils/commonxpath.py | 4 + 5 files changed, 601 insertions(+), 1 deletion(-) create mode 100644 ceasiompy/SU2Run/func/su2configrans.py diff --git a/ceasiompy/SU2Run/func/su2config.py b/ceasiompy/SU2Run/func/su2config.py index 20bb061af..07ba8b606 100644 --- a/ceasiompy/SU2Run/func/su2config.py +++ b/ceasiompy/SU2Run/func/su2config.py @@ -20,6 +20,7 @@ # IMPORTS # ================================================================================================= +import numpy as np from pathlib import Path from shutil import copyfile @@ -64,6 +65,8 @@ SU2_ROTATION_RATE_XPATH, SU2_TARGET_CL_XPATH, SU2MESH_XPATH, + ENGINE_TYPE_XPATH, + ENGINE_BC, ) from ceasiompy.utils.configfiles import ConfigFile from cpacspy.cpacsfunctions import ( @@ -294,6 +297,29 @@ def add_actuator_disk(cfg, cpacs, case_dir_path, actuator_disk_file, mesh_marker f.close() +# adding the results of ThermoData to the config file of su2 + + +def add_thermodata(cfg, cpacs, alt, case_nb, alt_list): + + if cpacs.tixi.checkElement(ENGINE_TYPE_XPATH): + log.info("adding engine BC to the SU2 config file") + engine_type = get_value(cpacs.tixi, ENGINE_TYPE_XPATH) + log.info(f"engine type {engine_type}") + alt = alt_list[case_nb] + Atm = Atmosphere(alt) + tot_temp_in = Atm.temperature[0] + tot_pressure_in = Atm.pressure[0] + tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet").split(";") + tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet").split(";") + tot_temp_out = tot_temp_out[case_nb] + tot_pressure_out = tot_pressure_out[case_nb] + cfg["INLET_TYPE"] = "TOTAL_CONDITIONS" + cfg[ + "MARKER_INLET" + ] = f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, OUTLET_ENGINE,{tot_temp_out}, {tot_pressure_out}, {1},{0},{0} )" + + def generate_su2_cfd_config(cpacs_path, cpacs_out_path, wkdir): """Function to create SU2 config file. @@ -448,6 +474,7 @@ def generate_su2_cfd_config(cpacs_path, cpacs_out_path, wkdir): cfg["HISTORY_OUTPUT"] = "(INNER_ITER, RMS_RES, AERO_COEFF)" # Parameters which will vary for the different cases (alt,mach,aoa,aos) + for case_nb in range(len(alt_list)): cfg["MESH_FILENAME"] = str(su2_mesh) @@ -470,6 +497,8 @@ def generate_su2_cfd_config(cpacs_path, cpacs_out_path, wkdir): f"_aoa{round(aoa, 1)}_aos{round(aos, 1)}" ) + add_thermodata(cfg, cpacs, alt, case_nb, alt_list) + case_dir_path = Path(wkdir, case_dir_name) if not case_dir_path.exists(): case_dir_path.mkdir() diff --git a/ceasiompy/SU2Run/func/su2configrans.py b/ceasiompy/SU2Run/func/su2configrans.py new file mode 100644 index 000000000..09e141fb3 --- /dev/null +++ b/ceasiompy/SU2Run/func/su2configrans.py @@ -0,0 +1,564 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Function generate or modify SU2 configuration files + +Python version: >=3.8 + +| Author: Aidan Jungo +| Creation: 2020-02-24 + +TODO: + + * add and test control surface functions + +""" + +# ================================================================================================= +# IMPORTS +# ================================================================================================= + +from pathlib import Path +from shutil import copyfile + +from ambiance import Atmosphere +from ceasiompy.SU2Run.func.su2actuatordiskfile import ( + get_advanced_ratio, + get_radial_stations, + save_plots, + thrust_calculator, + write_actuator_disk_data, + write_header, +) +from ceasiompy.SU2Run.func.su2utils import get_mesh_markers, get_su2_config_template +from ceasiompy.utils.ceasiomlogger import get_logger +from ceasiompy.utils.commonnames import ( + ACTUATOR_DISK_FILE_NAME, + ACTUATOR_DISK_INLET_SUFFIX, + ACTUATOR_DISK_OUTLET_SUFFIX, + CONFIG_CFD_NAME, + SU2_FORCES_BREAKDOWN_NAME, +) +from ceasiompy.utils.commonxpath import ( + GMSH_SYMMETRY_XPATH, + PROP_XPATH, + RANGE_XPATH, + SU2_ACTUATOR_DISK_XPATH, + SU2_AEROMAP_UID_XPATH, + SU2_BC_FARFIELD_XPATH, + SU2_BC_WALL_XPATH, + SU2_CFL_NB_XPATH, + SU2_CFL_ADAPT_XPATH, + SU2_CFL_ADAPT_PARAM_DOWN_XPATH, + SU2_CFL_ADAPT_PARAM_UP_XPATH, + SU2_CFL_MAX_XPATH, + SU2_CFL_MIN_XPATH, + SU2_CONTROL_SURF_XPATH, + SU2_DAMPING_DER_XPATH, + SU2_DEF_MESH_XPATH, + SU2_FIXED_CL_XPATH, + SU2_MAX_ITER_XPATH, + SU2_MG_LEVEL_XPATH, + SU2_ROTATION_RATE_XPATH, + SU2_TARGET_CL_XPATH, + SU2MESH_XPATH, + ENGINE_TYPE_XPATH, + ENGINE_BC, +) +from ceasiompy.utils.configfiles import ConfigFile +from cpacspy.cpacsfunctions import ( + create_branch, + get_string_vector, + get_value, + get_value_or_default, +) +from cpacspy.cpacspy import CPACS + +log = get_logger() + +MODULE_DIR = Path(__file__).parent + + +# ================================================================================================= +# CLASSES +# ================================================================================================= + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +def add_damping_derivatives(cfg, wkdir, case_dir_name, rotation_rate): + """Add damping derivatives parameter to the config file and save them to their respective + directory. + + Args: + cfg (ConfigFile): ConfigFile object. + wkdir (Path): Path to the working directory + case_dir_name (str): Name of the case directory + rotation_rate (float): Rotation rate that will be impose to calculate damping derivatives + """ + + cfg["GRID_MOVEMENT"] = "ROTATING_FRAME" + + cfg["ROTATION_RATE"] = f"{rotation_rate} 0.0 0.0" + case_dir = Path(wkdir, f"{case_dir_name}_dp") + case_dir.mkdir() + cfg.write_file(Path(case_dir, CONFIG_CFD_NAME), overwrite=True) + + cfg["ROTATION_RATE"] = f"0.0 {rotation_rate} 0.0" + case_dir = Path(wkdir, f"{case_dir_name}_dq") + case_dir.mkdir() + cfg.write_file(Path(case_dir, CONFIG_CFD_NAME), overwrite=True) + + cfg["ROTATION_RATE"] = f"0.0 0.0 {rotation_rate}" + case_dir = Path(wkdir, f"{case_dir_name}_dr") + case_dir.mkdir() + cfg.write_file(Path(case_dir, CONFIG_CFD_NAME), overwrite=True) + + log.info("Damping derivatives cases directories has been created.") + + +def add_actuator_disk(cfg, cpacs, case_dir_path, actuator_disk_file, mesh_markers, alt, mach): + """Add actuator disk parameter to the config file. + + Args: + cfg (ConfigFile): ConfigFile object. + cpacs (CPACS): CPACS object from cpacspy library + case_dir_path (Path): Path object to the current case directory + actuator_disk_file (Path): Path to the actuator disk file + mesh_markers (dict): Dictionary containing all the mesh markers + + Returns: + cfg (ConfigFile): ConfigFile object. + """ + + ad_inlet_marker = sorted(mesh_markers["actuator_disk_inlet"]) + ad_outlet_marker = sorted(mesh_markers["actuator_disk_outlet"]) + + if "None" in ad_inlet_marker or "None" in ad_outlet_marker: + return + + if len(ad_inlet_marker) != len(ad_outlet_marker): + raise ValueError( + "The number of inlet and outlet markers of the actuator disk must be the same." + ) + + # Get rotorcraft configuration (propeller) + try: + rotorcraft_config = cpacs.rotorcraft.configuration + except AttributeError: + raise ValueError( + "The actuator disk is defined but no rotorcraft configuration is defined in " + "the CPACS file." + ) + + rotor_uid_pos = {} + for i in range(1, rotorcraft_config.get_rotor_count() + 1): + rotor = rotorcraft_config.get_rotor(i) + + rotor_uid = rotor.get_uid() + pos_x = rotor.get_translation().x + pos_y = rotor.get_translation().y + pos_z = rotor.get_translation().z + radius = rotor.get_radius() + hub_radius = 0.0 # TODO: get correctly from CPACS + + rotor_xpath = cpacs.tixi.uIDGetXPath(rotor_uid) + + number_of_blades_xpath = ( + rotor_xpath + "/rotorHub/rotorBladeAttachments/rotorBladeAttachment/numberOfBlades" + ) + number_of_blades = get_value_or_default(cpacs.tixi, number_of_blades_xpath, 3) + + # TODO: this is the nominal speed, how to get a speed which correspond to each flight cond. + rotational_velocity_xpath = rotor_xpath + "/nominalRotationsPerMinute" + rotational_velocity = ( + get_value_or_default(cpacs.tixi, rotational_velocity_xpath, 3000) / 60.0 + ) + + rotor_uid_pos[rotor_uid] = ( + pos_x, + pos_y, + pos_z, + radius, + hub_radius, + number_of_blades, + rotational_velocity, + ) + + cfg["ACTDISK_DOUBLE_SURFACE"] = "YES" + cfg["ACTDISK_TYPE"] = "VARIABLE_LOAD" + cfg["ACTDISK_FILENAME"] = ACTUATOR_DISK_FILE_NAME + cfg["MGLEVEL"] = 0 # Calculation diverges if multigrid is used with a disk actuator + + actdisk_markers = [] + + f = open(actuator_disk_file, "w") + f = write_header(f) + + for maker_inlet, marker_outlet in zip(ad_inlet_marker, ad_outlet_marker): + inlet_uid = maker_inlet.split(ACTUATOR_DISK_INLET_SUFFIX)[0] + outlet_uid = marker_outlet.split(ACTUATOR_DISK_OUTLET_SUFFIX)[0] + + if inlet_uid != outlet_uid: + raise ValueError("The inlet and outlet markers of the actuator disk must be the same.") + + if "_mirrored" in maker_inlet: + uid = inlet_uid.split("_mirrored")[0] + sym = -1 + else: + uid = inlet_uid + sym = 1 + + center = [] + center.append(round(rotor_uid_pos[uid][0], 5)) + center.append(round(sym * rotor_uid_pos[uid][1], 5)) + center.append(round(rotor_uid_pos[uid][2], 5)) + + axis = (1.0, 0.0, 0.0) # TODO: get the axis by applying the rotation matrix + radius = round(rotor_uid_pos[uid][3], 5) + hub_radius = round(rotor_uid_pos[uid][4], 5) + number_of_blades = round(rotor_uid_pos[uid][5], 5) + rotational_velocity = round(rotor_uid_pos[uid][6], 5) + + actdisk_markers.append(maker_inlet) + actdisk_markers.append(marker_outlet) + actdisk_markers.append(str(center[0])) + actdisk_markers.append(str(center[1])) + actdisk_markers.append(str(center[2])) + actdisk_markers.append(str(center[0])) + actdisk_markers.append(str(center[1])) + actdisk_markers.append(str(center[2])) + + Atm = Atmosphere(alt) + free_stream_velocity = mach * Atm.speed_of_sound[0] + + radial_stations = get_radial_stations(radius, hub_radius) + advanced_ratio = get_advanced_ratio(free_stream_velocity, rotational_velocity, radius) + + prandtl_correction_xpath = PROP_XPATH + "/propeller/blade/loss" + prandtl_correction = get_value_or_default(cpacs.tixi, prandtl_correction_xpath, True) + + thrust_xpath = PROP_XPATH + "/propeller/thrust" + thrust = get_value_or_default(cpacs.tixi, thrust_xpath, 3000) + total_thrust_coefficient = float( + thrust / (Atm.density * rotational_velocity**2 * (radius * 2) ** 4) + ) + + ( + radial_thrust_coefs, + radial_power_coefs, + non_dimensional_radius, + optimal_axial_interference_factor, + optimal_rotational_interference_factor, + prandtl_correction_values, + ) = thrust_calculator( + radial_stations, + total_thrust_coefficient, + radius, + free_stream_velocity, + prandtl_correction, + number_of_blades, + rotational_velocity, + ) + + save_plots( + radial_stations, + radial_thrust_coefs, + radial_power_coefs, + non_dimensional_radius, + optimal_axial_interference_factor, + optimal_rotational_interference_factor, + prandtl_correction_values, + case_dir_path, + inlet_uid, + ) + + f = write_actuator_disk_data( + file=f, + inlet_marker=maker_inlet, + outlet_marker=marker_outlet, + center=center, + axis=axis, + radius=radius, + advanced_ratio=advanced_ratio, + radial_stations=radial_stations, + radial_thrust_coefs=radial_thrust_coefs, + radial_power_coefs=radial_power_coefs, + ) + + cfg["MARKER_ACTDISK"] = " (" + ", ".join(actdisk_markers) + " )" + + f.close() + + +def generate_su2_cfd_config(cpacs_path, cpacs_out_path, wkdir): + """Function to create SU2 config file. + + Function 'generate_su2_cfd_config' reads data in the CPACS file and generate configuration + files for one or multiple flight conditions (alt,mach,aoa,aos) + + Source: + * SU2 config template: https://github.com/su2code/SU2/blob/master/config_template.cfg + + Args: + cpacs_path (Path): Path to CPACS file + cpacs_out_path (Path):Path to CPACS output file + wkdir (Path): Path to the working directory + + """ + + cpacs = CPACS(cpacs_path) + + su2_mesh = Path(get_value(cpacs.tixi, SU2MESH_XPATH)) + if not su2_mesh.is_file(): + raise FileNotFoundError(f"SU2 mesh file {su2_mesh} not found") + + mesh_markers = get_mesh_markers(su2_mesh) + + create_branch(cpacs.tixi, SU2_BC_WALL_XPATH) + bc_wall_str = ";".join(mesh_markers["wall"]) + cpacs.tixi.updateTextElement(SU2_BC_WALL_XPATH, bc_wall_str) + + create_branch(cpacs.tixi, SU2_BC_FARFIELD_XPATH) + bc_farfiled_str = ";".join(mesh_markers["engine_intake"] + mesh_markers["engine_exhaust"]) + cpacs.tixi.updateTextElement(SU2_BC_FARFIELD_XPATH, bc_farfiled_str) + + create_branch(cpacs.tixi, SU2_ACTUATOR_DISK_XPATH) + bc_actuator_disk_str = ";".join( + mesh_markers["actuator_disk_inlet"] + mesh_markers["actuator_disk_outlet"] + ) + cpacs.tixi.updateTextElement(SU2_ACTUATOR_DISK_XPATH, bc_actuator_disk_str) + + fixed_cl = get_value_or_default(cpacs.tixi, SU2_FIXED_CL_XPATH, "NO") + target_cl = get_value_or_default(cpacs.tixi, SU2_TARGET_CL_XPATH, 1.0) + + if fixed_cl == "NO": + # Get the first aeroMap as default one or create automatically one + aeromap_list = cpacs.get_aeromap_uid_list() + + if aeromap_list: + aeromap_default = aeromap_list[0] + log.info(f"The aeromap is {aeromap_default}") + + aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, aeromap_default) + + activate_aeromap = cpacs.get_aeromap_by_uid(aeromap_uid) + alt_list = activate_aeromap.get("altitude").tolist() + mach_list = activate_aeromap.get("machNumber").tolist() + aoa_list = activate_aeromap.get("angleOfAttack").tolist() + aos_list = activate_aeromap.get("angleOfSideslip").tolist() + + else: + default_aeromap = cpacs.create_aeromap("DefaultAeromap") + default_aeromap.description = "AeroMap created automatically" + + mach = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseMach", 0.3) + alt = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseAltitude", 10000) + + default_aeromap.add_row(alt=alt, mach=mach, aos=0.0, aoa=0.0) + default_aeromap.save() + + alt_list = [alt] + mach_list = [mach] + aoa_list = [0.0] + aos_list = [0.0] + + aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, "DefaultAeromap") + log.info(f"{aeromap_uid} has been created") + + else: # if fixed_cl == 'YES': + log.info("Configuration file for fixed CL calculation will be created.") + + fixed_cl_aeromap = cpacs.create_aeromap("aeroMap_fixedCL_SU2") + fixed_cl_aeromap.description = f"AeroMap created for SU2 fixed CL value of {target_cl}" + + mach = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseMach", 0.78) + alt = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseAltitude", 12000) + + fixed_cl_aeromap.add_row(alt=alt, mach=mach, aos=0.0, aoa=0.0) + fixed_cl_aeromap.save() + + alt_list = [alt] + mach_list = [mach] + aoa_list = [0.0] + aos_list = [0.0] + + cfg = ConfigFile(get_su2_config_template()) + + # Check if symmetry plane is defined (Default: False) + sym_factor = 1.0 + if get_value_or_default(cpacs.tixi, GMSH_SYMMETRY_XPATH, False): + log.info("Symmetry plane is defined. The reference area will be divided by 2.") + sym_factor = 2.0 + + # General parameters + cfg["RESTART_SOL"] = "NO" + cfg["REF_LENGTH"] = cpacs.aircraft.ref_length + cfg["REF_AREA"] = cpacs.aircraft.ref_area / sym_factor + cfg["REF_ORIGIN_MOMENT_X"] = cpacs.aircraft.ref_point_x + cfg["REF_ORIGIN_MOMENT_Y"] = cpacs.aircraft.ref_point_y + cfg["REF_ORIGIN_MOMENT_Z"] = cpacs.aircraft.ref_point_z + + # Settings + + cfl_down = get_value_or_default(cpacs.tixi, SU2_CFL_ADAPT_PARAM_DOWN_XPATH, 0.5) + cfl_up = get_value_or_default(cpacs.tixi, SU2_CFL_ADAPT_PARAM_UP_XPATH, 1.5) + cfl_min = get_value_or_default(cpacs.tixi, SU2_CFL_MIN_XPATH, 0.5) + cfl_max = get_value_or_default(cpacs.tixi, SU2_CFL_MAX_XPATH, 100) + + if get_value_or_default(cpacs.tixi, SU2_CFL_ADAPT_XPATH, True): + cfg["CFL_ADAPT"] = "YES" + + else: + cfg["CFL_ADAPT"] = "NO" + + cfg["INNER_ITER"] = int(get_value_or_default(cpacs.tixi, SU2_MAX_ITER_XPATH, 200)) + cfg["CFL_NUMBER"] = get_value_or_default(cpacs.tixi, SU2_CFL_NB_XPATH, 1.0) + cfg["CFL_ADAPT_PARAM"] = f"( {cfl_down}, {cfl_up}, {cfl_min}, {cfl_max} )" + cfg["MGLEVEL"] = int(get_value_or_default(cpacs.tixi, SU2_MG_LEVEL_XPATH, 3)) + + # Fixed CL mode (AOA will not be taken into account) + cfg["FIXED_CL_MODE"] = fixed_cl + cfg["TARGET_CL"] = target_cl + cfg["DCL_DALPHA"] = "0.1" + cfg["UPDATE_AOA_ITER_LIMIT"] = "50" + cfg["ITER_DCL_DALPHA"] = "80" + + # Mesh Marker + bc_wall_str = f"( {','.join(mesh_markers['wall'])} )" + + # ThermoData config file adding for engine BC + + if cpacs.tixi.checkElement(ENGINE_TYPE_XPATH): + log.info("adding engine BC to the SU2 config file") + engine_type = get_value(cpacs.tixi, ENGINE_TYPE_XPATH) + log.info(f"engine type {engine_type}") + alt = alt_list[0] + Atm = Atmosphere(alt) + tot_temp_in = Atm.temperature[0] + tot_pressure_in = Atm.pressure[0] + print(tot_pressure_in) + + if engine_type == 0: + log.info("turbojet boundary conditions") + tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet") + tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet") + cfg["INLET_TYPE"] = "TOTAL_CONDITIONS" + cfg[ + "MARKER_INLET" + ] = f"(INLET_ENGINE,{tot_temp_in}, {tot_pressure_in}, {1},{0},{0},OUTLET_ENGINE, {tot_temp_out}, {tot_pressure_out}, {1},{0},{0} )" + + elif engine_type == 1: + log.info("turbofan boundary conditions") + tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet") + tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet") + cfg["INLET_TYPE"] = "TOTAL_CONDITIONS" + cfg[ + "MARKER_INLET" + ] = f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, OUTLET_ENGINE,{tot_temp_out}, {tot_pressure_out}, {1},{0},{0} )" + + cfg["MARKER_EULER"] = bc_wall_str + farfield_bc = ( + mesh_markers["farfield"] + mesh_markers["engine_intake"] + mesh_markers["engine_exhaust"] + ) + cfg["MARKER_FAR"] = f"( {','.join(farfield_bc)} )" + cfg["MARKER_SYM"] = f"( {','.join(mesh_markers['symmetry'])} )" + cfg["MARKER_PLOTTING"] = bc_wall_str + cfg["MARKER_MONITORING"] = bc_wall_str + cfg["MARKER_MOVING"] = "( NONE )" # TODO: when do we need to define MARKER_MOVING? + cfg["DV_MARKER"] = bc_wall_str + + # Output + cfg["WRT_FORCES_BREAKDOWN"] = "YES" + cfg["BREAKDOWN_FILENAME"] = SU2_FORCES_BREAKDOWN_NAME + cfg["OUTPUT_FILES"] = "(RESTART, PARAVIEW, SURFACE_PARAVIEW)" + cfg["HISTORY_OUTPUT"] = "(INNER_ITER, RMS_RES, AERO_COEFF)" + + # Parameters which will vary for the different cases (alt,mach,aoa,aos) + for case_nb in range(len(alt_list)): + cfg["MESH_FILENAME"] = str(su2_mesh) + + alt = alt_list[case_nb] + mach = mach_list[case_nb] + aoa = aoa_list[case_nb] + aos = aos_list[case_nb] + + Atm = Atmosphere(alt) + + cfg["MACH_NUMBER"] = mach + cfg["AOA"] = aoa + cfg["SIDESLIP_ANGLE"] = aos + cfg["FREESTREAM_PRESSURE"] = Atm.pressure[0] + cfg["FREESTREAM_TEMPERATURE"] = Atm.temperature[0] + cfg["ROTATION_RATE"] = "0.0 0.0 0.0" + + case_dir_name = ( + f"Case{str(case_nb).zfill(2)}_alt{alt}_mach{round(mach, 2)}" + f"_aoa{round(aoa, 1)}_aos{round(aos, 1)}" + ) + + case_dir_path = Path(wkdir, case_dir_name) + if not case_dir_path.exists(): + case_dir_path.mkdir() + + if get_value_or_default(cpacs.tixi, SU2_ACTUATOR_DISK_XPATH, False): + actuator_disk_file = Path(wkdir, ACTUATOR_DISK_FILE_NAME) + add_actuator_disk( + cfg, cpacs, case_dir_path, actuator_disk_file, mesh_markers, alt, mach + ) + + if actuator_disk_file.exists(): + case_actuator_disk_file = Path(case_dir_path, ACTUATOR_DISK_FILE_NAME) + copyfile(actuator_disk_file, case_actuator_disk_file) + + bc_wall_str = ( + "(" + + ",".join( + mesh_markers["wall"] + + mesh_markers["actuator_disk_inlet"] + + mesh_markers["actuator_disk_outlet"] + ) + + ")" + ) + + cfg["MARKER_PLOTTING"] = bc_wall_str + cfg["MARKER_MONITORING"] = bc_wall_str + + config_output_path = Path(case_dir_path, CONFIG_CFD_NAME) + cfg.write_file(config_output_path, overwrite=True) + + if get_value_or_default(cpacs.tixi, SU2_DAMPING_DER_XPATH, False): + rotation_rate = get_value_or_default(cpacs.tixi, SU2_ROTATION_RATE_XPATH, 1.0) + add_damping_derivatives(cfg, wkdir, case_dir_name, rotation_rate) + + # Control surfaces deflections (TODO: create a subfunctions) + if get_value_or_default(cpacs.tixi, SU2_CONTROL_SURF_XPATH, False): + # Get deformed mesh list + if cpacs.tixi.checkElement(SU2_DEF_MESH_XPATH): + su2_def_mesh_list = get_string_vector(cpacs.tixi, SU2_DEF_MESH_XPATH) + else: + log.warning("No SU2 deformed mesh has been found!") + su2_def_mesh_list = [] + + for su2_def_mesh in su2_def_mesh_list: + mesh_path = Path(wkdir, "MESH", su2_def_mesh) + config_dir_path = Path(wkdir, case_dir_name + "_" + su2_def_mesh.split(".")[0]) + config_dir_path.mkdir() + cfg["MESH_FILENAME"] = mesh_path + + cfg.write_file(Path(config_dir_path, CONFIG_CFD_NAME), overwrite=True) + + cpacs.save_cpacs(cpacs_out_path, overwrite=True) + + +# ================================================================================================= +# MAIN +# ================================================================================================= + +if __name__ == "__main__": + log.info("Nothing to execute!") diff --git a/ceasiompy/SU2Run/su2run.py b/ceasiompy/SU2Run/su2run.py index 132a0a17f..4b103b22c 100644 --- a/ceasiompy/SU2Run/su2run.py +++ b/ceasiompy/SU2Run/su2run.py @@ -16,7 +16,7 @@ * complete input/output in __specs__ * Check platform with-> sys.platform * Move run_SU2_fsi to /SU2Run/func/su2fsi.py -test + """ # ================================================================================================= diff --git a/ceasiompy/utils/commonnames.py b/ceasiompy/utils/commonnames.py index 2fcdabd97..0de79f1c1 100644 --- a/ceasiompy/utils/commonnames.py +++ b/ceasiompy/utils/commonnames.py @@ -43,3 +43,6 @@ # WEIGHT & BALANCE MTOM_FIGURE_NAME = "MTOM_Prediction.png" + +# PYCYCLE +ENGINE_BOUNDARY_CONDITIONS = "EngineBC.dat" diff --git a/ceasiompy/utils/commonxpath.py b/ceasiompy/utils/commonxpath.py index 0b9e28a57..19e0b646f 100644 --- a/ceasiompy/utils/commonxpath.py +++ b/ceasiompy/utils/commonxpath.py @@ -180,3 +180,7 @@ CHECK_LONGITUDINAL_STABILITY_XPATH = STABILITY_XPATH + "/stabilityToCheck/longitudinal" CHECK_DIRECTIONAL_STABILITY_XPATH = STABILITY_XPATH + "/stabilityToCheck/directional" CHECK_LATERAL_STABILITY_XPATH = STABILITY_XPATH + "/stabilityToCheck/lateral" + +# PYCYCLE +ENGINE_TYPE_XPATH = CEASIOMPY_XPATH + "/ThermoData" +ENGINE_BC = CEASIOMPY_XPATH + "/BC" From b97865babf6cfa87bc52ca8da86809fa78a952b3 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 10:16:39 +0100 Subject: [PATCH 04/55] new commit --- ceasiompy/ThermoData | 1 + 1 file changed, 1 insertion(+) create mode 160000 ceasiompy/ThermoData diff --git a/ceasiompy/ThermoData b/ceasiompy/ThermoData new file mode 160000 index 000000000..d806eea42 --- /dev/null +++ b/ceasiompy/ThermoData @@ -0,0 +1 @@ +Subproject commit d806eea4242e779fbd66a6a7e8a674e6d0c9b4ff From a968071d0fa72e46742012417c7315d73557b739 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 10:31:42 +0100 Subject: [PATCH 05/55] new commit --- ceasiompy/ThermoData | 1 - 1 file changed, 1 deletion(-) delete mode 160000 ceasiompy/ThermoData diff --git a/ceasiompy/ThermoData b/ceasiompy/ThermoData deleted file mode 160000 index d806eea42..000000000 --- a/ceasiompy/ThermoData +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d806eea4242e779fbd66a6a7e8a674e6d0c9b4ff From c0decca227de2f6516d2b63f203c8ef93494f057 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 10:32:48 +0100 Subject: [PATCH 06/55] new commit --- ceasiompy/ThermoData/README.md | 1 + ceasiompy/ThermoData/__specs__.py | 69 +++ ceasiompy/ThermoData/func/run_func.py | 162 +++++++ ceasiompy/ThermoData/func/turbofan_func.py | 436 ++++++++++++++++++ ceasiompy/ThermoData/func/turbojet_func.py | 228 +++++++++ .../testing_pycycle/des_hbtf_func_test.py | 390 ++++++++++++++++ .../testing_pycycle/des_turbojet_func.py | 173 +++++++ ceasiompy/ThermoData/thermodata.py | 89 ++++ 8 files changed, 1548 insertions(+) create mode 100644 ceasiompy/ThermoData/README.md create mode 100644 ceasiompy/ThermoData/__specs__.py create mode 100644 ceasiompy/ThermoData/func/run_func.py create mode 100644 ceasiompy/ThermoData/func/turbofan_func.py create mode 100644 ceasiompy/ThermoData/func/turbojet_func.py create mode 100644 ceasiompy/ThermoData/testing_pycycle/des_hbtf_func_test.py create mode 100644 ceasiompy/ThermoData/testing_pycycle/des_turbojet_func.py create mode 100644 ceasiompy/ThermoData/thermodata.py diff --git a/ceasiompy/ThermoData/README.md b/ceasiompy/ThermoData/README.md new file mode 100644 index 000000000..77e55d5ff --- /dev/null +++ b/ceasiompy/ThermoData/README.md @@ -0,0 +1 @@ +# Thermo_Data \ No newline at end of file diff --git a/ceasiompy/ThermoData/__specs__.py b/ceasiompy/ThermoData/__specs__.py new file mode 100644 index 000000000..86c68fb89 --- /dev/null +++ b/ceasiompy/ThermoData/__specs__.py @@ -0,0 +1,69 @@ +from pathlib import Path +from ceasiompy.utils.moduleinterfaces import CPACSInOut +from ceasiompy.utils.commonxpath import ( + REF_XPATH, + CLCALC_XPATH, + SU2_FIXED_CL_XPATH, + SU2_TARGET_CL_XPATH, + ENGINE_TYPE_XPATH, + RANGE_XPATH, +) + +# ===== Module Status ===== +# True if the module is active +# False if the module is disabled (not working or not ready) +module_status = True + +# ===== Results directory path ===== + +RESULTS_DIR = Path("Results", "Thermodata") + +# ===== CPACS inputs and outputs ===== + +cpacs_inout = CPACSInOut() + +# ===== Input ===== + + +cpacs_inout.add_input( + var_name="net_force", + var_type=float, + default_value=2000, + unit="1", # AGGIUNGERE UNITA DI MISURA + descr="Engine net force", + xpath=RANGE_XPATH + "/NetForce", + gui=True, + gui_name="NetForce", + gui_group="Cruise", +) + +cpacs_inout.add_input( + var_name="engine type", + var_type=list, + default_value=[0, 1], + unit=None, + descr="0: TBJ, 1: TBF ", + xpath=ENGINE_TYPE_XPATH, + gui=True, + gui_name="0 for Turbojet 1 for Turbofan", + gui_group="User inputs", +) + + +# ===== Output ===== + +cpacs_inout.add_output( + var_name="target_cl", + default_value=None, + unit="1", + descr="Value of CL to achieve to have a level flight with the given conditions", + xpath=SU2_TARGET_CL_XPATH, +) + +cpacs_inout.add_output( + var_name="fixed_cl", + default_value=None, + unit="-", + descr="FIXED_CL_MODE parameter for SU2", + xpath=SU2_FIXED_CL_XPATH, +) diff --git a/ceasiompy/ThermoData/func/run_func.py b/ceasiompy/ThermoData/func/run_func.py new file mode 100644 index 000000000..eb0a6b58a --- /dev/null +++ b/ceasiompy/ThermoData/func/run_func.py @@ -0,0 +1,162 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Function to run the PyCycle code in order to obtain turbojet and turbofan boundary conditions +at given altitude, mach number and net force = thrust of the engine + +Python version: >=3.8 + +| Author: Giacomo Benedetti and Francesco Marcucci +| Creation: 2023-12-12 + +""" + +from pathlib import Path + +from ceasiompy.ThermoData.func.turbofan_func import ( + turbofan_analysis, + write_hbtf_file, +) + +from ceasiompy.ThermoData.func.turbojet_func import ( + turbojet_analysis, + write_turbojet_file, +) + +from ceasiompy.utils.ceasiomlogger import get_logger + +from ceasiompy.utils.commonxpath import ( + ENGINE_TYPE_XPATH, + ENGINE_BC, + RANGE_XPATH, + SU2_AEROMAP_UID_XPATH, +) +from ceasiompy.utils.commonnames import ( + ENGINE_BOUNDARY_CONDITIONS, +) +from cpacspy.cpacsfunctions import ( + get_value_or_default, + add_float_vector, +) +from cpacspy.cpacsfunctions import create_branch, get_value_or_default +from cpacspy.cpacspy import CPACS + +log = get_logger() + +MODULE_DIR = Path(__file__).parent +MODULE_NAME = MODULE_DIR.name + + +def thermo_data_run(cpacs_path, cpacs_out_path, wkdir): + """Running the PyCycle code by choosing between turbojet or turbofan engine + + Args + cpacs_path (Path): Path to CPACS file + cpacs_out_path (Path):Path to CPACS output file + wkdir (str): Path to the working directory + """ + + if not wkdir.exists(): + raise OSError(f"The working directory : {wkdir} does not exit!") + + cpacs = CPACS(cpacs_path) + tixi = cpacs.tixi + + Fn = get_value_or_default(tixi, RANGE_XPATH + "/NetForce", 2000) + + aeromap_list = cpacs.get_aeromap_uid_list() + + if aeromap_list: + aeromap_default = aeromap_list[0] + log.info(f"The aeromap is {aeromap_default}") + aeromap_uid = get_value_or_default( + cpacs.tixi, SU2_AEROMAP_UID_XPATH, aeromap_default + ) + activate_aeromap = cpacs.get_aeromap_by_uid(aeromap_uid) + alt_list = activate_aeromap.get("altitude").tolist() + mach_list = activate_aeromap.get("machNumber").tolist() + T_tot_out_array = [] + P_tot_out_array = [] + + for case_nb in range(len(alt_list)): + alt = alt_list[case_nb] + MN = mach_list[case_nb] + case_dir_name = f"Case{str(case_nb).zfill(2)}_alt{alt}_mach{round(MN, 2)}" + case_dir_path = Path(wkdir, case_dir_name) + + if not case_dir_path.exists(): + case_dir_path.mkdir() + + EngineBC = Path(case_dir_path, ENGINE_BOUNDARY_CONDITIONS) + + f = open(EngineBC, "w") + + engine_type = get_value_or_default(tixi, ENGINE_TYPE_XPATH, 0) + create_branch(cpacs.tixi, ENGINE_BC) + + if engine_type == 0: + ( + T_tot_out, + V_stat_out, + MN_out, + P_tot_out, + massflow_stat_out, + T_stat_out, + P_stat_out, + ) = turbojet_analysis(alt, MN, Fn) + + T_tot_out_array.append(T_tot_out) + P_tot_out_array.append(P_tot_out) + + f = write_turbojet_file( + file=f, + T_tot_out=T_tot_out, + V_stat_out=V_stat_out, + MN_out=MN_out, + P_tot_out=P_tot_out, + massflow_stat_out=massflow_stat_out, + T_stat_out=T_stat_out, + P_stat_out=P_stat_out, + ) + + else: + + ( + T_tot_out_byp, + V_stat_out_byp, + MN_out_byp, + P_tot_out_byp, + massflow_stat_out_byp, + T_stat_out_byp, + T_tot_out_core, + V_stat_out_core, + MN_out_core, + P_tot_out_core, + massflow_stat_out_core, + T_stat_out_core, + ) = turbofan_analysis(alt, MN, Fn) + + T_tot_out_array.append(T_tot_out_core) + P_tot_out_array.append(P_tot_out_core) + + f = write_hbtf_file( + file=f, + T_tot_out_byp=T_tot_out_byp, + V_stat_out_byp=V_stat_out_byp, + MN_out_byp=MN_out_byp, + P_tot_out_byp=P_tot_out_byp, + massflow_stat_out_byp=massflow_stat_out_byp, + T_stat_out_byp=T_stat_out_byp, + T_tot_out_core=T_tot_out_core, + V_stat_out_core=V_stat_out_core, + MN_out_core=MN_out_core, + P_tot_out_core=P_tot_out_core, + massflow_stat_out_core=massflow_stat_out_core, + T_stat_out_core=T_stat_out_core, + ) + add_float_vector(tixi, ENGINE_BC + "/temperatureOutlet", T_tot_out_array) + add_float_vector(tixi, ENGINE_BC + "/pressureOutlet", P_tot_out_array) + + cpacs.save_cpacs(cpacs_out_path, overwrite=True) diff --git a/ceasiompy/ThermoData/func/turbofan_func.py b/ceasiompy/ThermoData/func/turbofan_func.py new file mode 100644 index 000000000..52521c47f --- /dev/null +++ b/ceasiompy/ThermoData/func/turbofan_func.py @@ -0,0 +1,436 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Function to run the PyCycle code for the turbofan engine + +Python version: >=3.8 + +| Author: Giacomo Benedetti and Francesco Marcucci +| Creation: 2023-12-12 + +""" +import sys + +import openmdao.api as om + +import pycycle.api as pyc + +from scipy.constants import convert_temperature + +from ceasiompy.utils.ceasiomlogger import get_logger + +log = get_logger() + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +def turbofan_analysis(alt, MN, Fn): + class HBTF(pyc.Cycle): + def setup(self): + + # Setup the problem by including all the relevant components here - comp, burner, turbine etc + + # Create any relevant short hands here: + + design = self.options["design"] + + USE_TABULAR = False + if USE_TABULAR: + self.options["thermo_method"] = "TABULAR" + self.options["thermo_data"] = pyc.AIR_JETA_TAB_SPEC + FUEL_TYPE = "FAR" + else: + self.options["thermo_method"] = "CEA" + self.options["thermo_data"] = pyc.species_data.janaf + FUEL_TYPE = "Jet-A(g)" + + # Add subsystems to build the engine deck: + self.add_subsystem("fc", pyc.FlightConditions()) + self.add_subsystem("inlet", pyc.Inlet()) + + self.add_subsystem( + "fan", + pyc.Compressor(map_data=pyc.FanMap, bleed_names=[], map_extrap=True), + promotes_inputs=[("Nmech", "LP_Nmech")], + ) + self.add_subsystem("splitter", pyc.Splitter()) + self.add_subsystem("duct4", pyc.Duct()) + self.add_subsystem( + "lpc", + pyc.Compressor(map_data=pyc.LPCMap, map_extrap=True), + promotes_inputs=[("Nmech", "LP_Nmech")], + ) + self.add_subsystem("duct6", pyc.Duct()) + self.add_subsystem( + "hpc", + pyc.Compressor( + map_data=pyc.HPCMap, + bleed_names=["cool1", "cool2", "cust"], + map_extrap=True, + ), + promotes_inputs=[("Nmech", "HP_Nmech")], + ) + self.add_subsystem("bld3", pyc.BleedOut(bleed_names=["cool3", "cool4"])) + self.add_subsystem("burner", pyc.Combustor(fuel_type=FUEL_TYPE)) + self.add_subsystem( + "hpt", + pyc.Turbine( + map_data=pyc.HPTMap, bleed_names=["cool3", "cool4"], map_extrap=True + ), + promotes_inputs=[("Nmech", "HP_Nmech")], + ) + self.add_subsystem("duct11", pyc.Duct()) + self.add_subsystem( + "lpt", + pyc.Turbine( + map_data=pyc.LPTMap, bleed_names=["cool1", "cool2"], map_extrap=True + ), + promotes_inputs=[("Nmech", "LP_Nmech")], + ) + self.add_subsystem("duct13", pyc.Duct()) + self.add_subsystem("core_nozz", pyc.Nozzle(nozzType="CV", lossCoef="Cv")) + + self.add_subsystem("byp_bld", pyc.BleedOut(bleed_names=["bypBld"])) + self.add_subsystem("duct15", pyc.Duct()) + self.add_subsystem("byp_nozz", pyc.Nozzle(nozzType="CV", lossCoef="Cv")) + + # Create shaft instances. Note that LP shaft has 3 ports! => no gearbox + self.add_subsystem( + "lp_shaft", + pyc.Shaft(num_ports=3), + promotes_inputs=[("Nmech", "LP_Nmech")], + ) + self.add_subsystem( + "hp_shaft", + pyc.Shaft(num_ports=2), + promotes_inputs=[("Nmech", "HP_Nmech")], + ) + self.add_subsystem("perf", pyc.Performance(num_nozzles=2, num_burners=1)) + + # Now use the explicit connect method to make connections -- connect(, ) + + # Connect the inputs to perf group + self.connect("inlet.Fl_O:tot:P", "perf.Pt2") + self.connect("hpc.Fl_O:tot:P", "perf.Pt3") + self.connect("burner.Wfuel", "perf.Wfuel_0") + self.connect("inlet.F_ram", "perf.ram_drag") + self.connect("core_nozz.Fg", "perf.Fg_0") + self.connect("byp_nozz.Fg", "perf.Fg_1") + + # LP-shaft connections + self.connect("fan.trq", "lp_shaft.trq_0") + self.connect("lpc.trq", "lp_shaft.trq_1") + self.connect("lpt.trq", "lp_shaft.trq_2") + # HP-shaft connections + self.connect("hpc.trq", "hp_shaft.trq_0") + self.connect("hpt.trq", "hp_shaft.trq_1") + # Ideally expanding flow by conneting flight condition static pressure to nozzle exhaust pressure + self.connect("fc.Fl_O:stat:P", "core_nozz.Ps_exhaust") + self.connect("fc.Fl_O:stat:P", "byp_nozz.Ps_exhaust") + + balance = self.add_subsystem("balance", om.BalanceComp()) + if design: + balance.add_balance("W", units="lbm/s", eq_units="lbf") + # Here balance.W is implicit state variable that is the OUTPUT of balance object + self.connect( + "balance.W", "fc.W" + ) # Connect the output of balance to the relevant input + self.connect( + "perf.Fn", "balance.lhs:W" + ) # This statement makes perf.Fn the LHS of the balance eqn. + self.promotes("balance", inputs=[("rhs:W", "Fn_DES")]) + + balance.add_balance("FAR", eq_units="degR", lower=1e-4, val=0.017) + self.connect("balance.FAR", "burner.Fl_I:FAR") + self.connect("burner.Fl_O:tot:T", "balance.lhs:FAR") + self.promotes("balance", inputs=[("rhs:FAR", "T4_MAX")]) + + # Note that for the following two balances the mult val is set to -1 so that the NET torque is zero + balance.add_balance( + "lpt_PR", + val=1.5, + lower=1.001, + upper=8, + eq_units="hp", + use_mult=True, + mult_val=-1, + ) + self.connect("balance.lpt_PR", "lpt.PR") + self.connect("lp_shaft.pwr_in_real", "balance.lhs:lpt_PR") + self.connect("lp_shaft.pwr_out_real", "balance.rhs:lpt_PR") + + balance.add_balance( + "hpt_PR", + val=1.5, + lower=1.001, + upper=8, + eq_units="hp", + use_mult=True, + mult_val=-1, + ) + self.connect("balance.hpt_PR", "hpt.PR") + self.connect("hp_shaft.pwr_in_real", "balance.lhs:hpt_PR") + self.connect("hp_shaft.pwr_out_real", "balance.rhs:hpt_PR") + + # Set up all the flow connections: + self.pyc_connect_flow("fc.Fl_O", "inlet.Fl_I") + self.pyc_connect_flow("inlet.Fl_O", "fan.Fl_I") + self.pyc_connect_flow("fan.Fl_O", "splitter.Fl_I") + self.pyc_connect_flow("splitter.Fl_O1", "duct4.Fl_I") + self.pyc_connect_flow("duct4.Fl_O", "lpc.Fl_I") + self.pyc_connect_flow("lpc.Fl_O", "duct6.Fl_I") + self.pyc_connect_flow("duct6.Fl_O", "hpc.Fl_I") + self.pyc_connect_flow("hpc.Fl_O", "bld3.Fl_I") + self.pyc_connect_flow("bld3.Fl_O", "burner.Fl_I") + self.pyc_connect_flow("burner.Fl_O", "hpt.Fl_I") + self.pyc_connect_flow("hpt.Fl_O", "duct11.Fl_I") + self.pyc_connect_flow("duct11.Fl_O", "lpt.Fl_I") + self.pyc_connect_flow("lpt.Fl_O", "duct13.Fl_I") + self.pyc_connect_flow("duct13.Fl_O", "core_nozz.Fl_I") + self.pyc_connect_flow("splitter.Fl_O2", "byp_bld.Fl_I") + self.pyc_connect_flow("byp_bld.Fl_O", "duct15.Fl_I") + self.pyc_connect_flow("duct15.Fl_O", "byp_nozz.Fl_I") + + # Bleed flows: + self.pyc_connect_flow("hpc.cool1", "lpt.cool1", connect_stat=False) + self.pyc_connect_flow("hpc.cool2", "lpt.cool2", connect_stat=False) + self.pyc_connect_flow("bld3.cool3", "hpt.cool3", connect_stat=False) + self.pyc_connect_flow("bld3.cool4", "hpt.cool4", connect_stat=False) + + # Specify solver settings: + newton = self.nonlinear_solver = om.NewtonSolver() + newton.options["atol"] = 1e-8 + + # set this very small, so it never activates and we rely on atol + newton.options["rtol"] = 1e-99 + newton.options["iprint"] = 2 + newton.options["maxiter"] = 50 + newton.options["solve_subsystems"] = True + newton.options["max_sub_solves"] = 1000 + newton.options["reraise_child_analysiserror"] = False + # ls = newton.linesearch = BoundsEnforceLS() + ls = newton.linesearch = om.ArmijoGoldsteinLS() + ls.options["maxiter"] = 3 + ls.options["rho"] = 0.75 + # ls.options['print_bound_enforce'] = True + + self.linear_solver = om.DirectSolver() + + super().setup() + + class MPhbtf(pyc.MPCycle): + def setup(self): + + self.pyc_add_pnt( + "DESIGN", HBTF(thermo_method="CEA") + ) # Create an instance of the High Bypass ratio Turbofan + + super().setup() + + def viewer(prob, pt, file=sys.stdout): + """ + print a report of all the relevant cycle properties + """ + + if pt == "DESIGN": + MN = prob["DESIGN.fc.Fl_O:stat:MN"] + LPT_PR = prob["DESIGN.balance.lpt_PR"] + HPT_PR = prob["DESIGN.balance.hpt_PR"] + FAR = prob["DESIGN.balance.FAR"] + else: + MN = prob[pt + ".fc.Fl_O:stat:MN"] + LPT_PR = prob[pt + ".lpt.PR"] + HPT_PR = prob[pt + ".hpt.PR"] + FAR = prob[pt + ".balance.FAR"] + + summary_data = ( + MN, + prob[pt + ".fc.alt"], + prob[pt + ".inlet.Fl_O:stat:W"], + prob[pt + ".perf.Fn"], + prob[pt + ".perf.Fg"], + prob[pt + ".inlet.F_ram"], + prob[pt + ".perf.OPR"], + prob[pt + ".perf.TSFC"], + prob[pt + ".splitter.BPR"], + ) + + print(file=file, flush=True) + print(file=file, flush=True) + print(file=file, flush=True) + print( + "----------------------------------------------------------------------------", + file=file, + flush=True, + ) + print(" POINT:", pt, file=file, flush=True) + print( + "----------------------------------------------------------------------------", + file=file, + flush=True, + ) + print( + " PERFORMANCE CHARACTERISTICS", file=file, flush=True + ) + print( + " Mach Alt W Fn Fg Fram OPR TSFC BPR ", + file=file, + flush=True, + ) + print( + " %7.5f %7.1f %7.3f %7.1f %7.1f %7.1f %7.3f %7.5f %7.3f" % summary_data, + file=file, + flush=True, + ) + + fs_names = [ + "fc.Fl_O", + "core_nozz.Fl_O", + "byp_nozz.Fl_O", + ] + fs_full_names = [f"{pt}.{fs}" for fs in fs_names] + pyc.print_flow_station(prob, fs_full_names, file=file) + + import time + + prob = om.Problem() + + prob.model = mp_hbtf = MPhbtf() + + prob.setup() + + prob.set_val("DESIGN.fan.PR", 1.685) + prob.set_val("DESIGN.fan.eff", 0.8948) + + prob.set_val("DESIGN.lpc.PR", 1.935) + prob.set_val("DESIGN.lpc.eff", 0.9243) + + prob.set_val("DESIGN.hpc.PR", 9.369) + prob.set_val("DESIGN.hpc.eff", 0.8707) + + prob.set_val("DESIGN.hpt.eff", 0.8888) + prob.set_val("DESIGN.lpt.eff", 0.8996) + + prob.set_val("DESIGN.fc.alt", alt, units="ft") + prob.set_val("DESIGN.fc.MN", MN) + + prob.set_val("DESIGN.T4_MAX", 2857, units="degR") + prob.set_val("DESIGN.Fn_DES", Fn, units="lbf") + + # Set initial guesses for balances + prob["DESIGN.balance.FAR"] = 0.1 + prob["DESIGN.balance.W"] = 10.0 + prob["DESIGN.balance.lpt_PR"] = 2 + prob["DESIGN.balance.hpt_PR"] = 2.0 + prob["DESIGN.fc.balance.Pt"] = 2 + prob["DESIGN.fc.balance.Tt"] = 500.0 + + prob.set_solver_print(level=-1) + prob.set_solver_print(level=2, depth=1) + + flight_env = [(0.9, 6000)] + + viewer_file = open("hbtf_des_view.out", "w") + + for PC in [1, 0.9]: + viewer(prob, "DESIGN", file=viewer_file) + prob.run_model() + + print() + + # Obtaining variables names + + # variable_names = open("variables_hptf.txt", "w") + # print( + # prob.model.list_outputs(val=True, units=True, implicit=False), + # file=variable_names, + # ) + + # BYPASS VARIABLES + T_tot_out_byp = convert_temperature( + (prob.get_val("DESIGN.byp_nozz.throat_total.flow.Fl_O:tot:T")), + "Rankine", + "Celsius", + ) + V_stat_out_byp = prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:V") * 0.3048 + MN_out_byp = prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:MN") + P_tot_out_byp = ( + prob.get_val("DESIGN.byp_nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 + ) # Pa + massflow_stat_out_byp = ( + prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:W") * 0.45359237 + ) # kg/s + T_stat_out_byp = convert_temperature( + (prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:T")), "Rankine", "Celsius" + ) # celsius + + # CORE VARIABLES + T_tot_out_core = convert_temperature( + (prob.get_val("DESIGN.core_nozz.throat_total.flow.Fl_O:tot:T")), + "Rankine", + "Kelvin", + ) + V_stat_out_core = prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:V") * 0.3048 + MN_out_core = prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:MN") + P_tot_out_core = ( + prob.get_val("DESIGN.core_nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 + ) # Pa + massflow_stat_out_core = ( + prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:W") * 0.45359237 + ) # kg/s + T_stat_out_core = convert_temperature( + (prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:T")), "Rankine", "Kelvin" + ) # celsius + + return ( + T_tot_out_byp, + V_stat_out_byp, + MN_out_byp, + P_tot_out_byp, + massflow_stat_out_byp, + T_stat_out_byp, + T_tot_out_core, + V_stat_out_core, + MN_out_core, + P_tot_out_core, + massflow_stat_out_core, + T_stat_out_core, + ) + + +def write_hbtf_file( + file, + T_tot_out_byp, + V_stat_out_byp, + MN_out_byp, + P_tot_out_byp, + massflow_stat_out_byp, + T_stat_out_byp, + T_tot_out_core, + V_stat_out_core, + MN_out_core, + P_tot_out_core, + massflow_stat_out_core, + T_stat_out_core, +): + + file.write(f"T_tot_out_core = {T_tot_out_core} [K]\n") + file.write(f"V_stat_out_core = {V_stat_out_core} [m/s]\n") + file.write(f"MN_out_core = {MN_out_core} [adim]\n") + file.write(f"P_tot_out_core = {P_tot_out_core} [Pa]\n") + file.write(f"massflow_out_core = {massflow_stat_out_core} [kg/s]\n") + file.write(f"T_stat_out_core = {T_stat_out_core} [K]\n") + file.write(f"T_tot_out_byp = {T_tot_out_byp} [K]\n") + file.write(f"V_stat_out_byp = {V_stat_out_byp} [m/s]\n") + file.write(f"MN_out_byp = {MN_out_byp} [adim]\n") + file.write(f"P_tot_out_byp = {P_tot_out_byp} [Pa]\n") + file.write(f"massflow_stat_out_byp = {massflow_stat_out_byp} [kg/s]\n") + file.write(f"T_stat_out_byp = {T_stat_out_byp} [K]\n") + + log.info("hbtf.dat file generated!") + + return file diff --git a/ceasiompy/ThermoData/func/turbojet_func.py b/ceasiompy/ThermoData/func/turbojet_func.py new file mode 100644 index 000000000..371195bad --- /dev/null +++ b/ceasiompy/ThermoData/func/turbojet_func.py @@ -0,0 +1,228 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Function to run the PyCycle code for the turbojet engine + +Python version: >=3.8 + +| Author: Giacomo Benedetti and Francesco Marcucci +| Creation: 2023-12-12 + +""" + +import openmdao.api as om + +import pycycle.api as pyc + +from scipy.constants import convert_temperature + +from ceasiompy.utils.ceasiomlogger import get_logger + +log = get_logger() + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +def turbojet_analysis(alt, MN, Fn): + class Turbojet(pyc.Cycle): + def setup(self): + + USE_TABULAR = True + + if USE_TABULAR: + self.options["thermo_method"] = "TABULAR" + self.options["thermo_data"] = pyc.AIR_JETA_TAB_SPEC + FUEL_TYPE = "FAR" + + design = self.options["design"] + + # Add engine elements + self.add_subsystem("fc", pyc.FlightConditions()) + self.add_subsystem("inlet", pyc.Inlet()) + self.add_subsystem( + "comp", + pyc.Compressor(map_data=pyc.AXI5, map_extrap=True), + promotes_inputs=["Nmech"], + ) + self.add_subsystem("burner", pyc.Combustor(fuel_type=FUEL_TYPE)) + self.add_subsystem( + "turb", pyc.Turbine(map_data=pyc.LPT2269), promotes_inputs=["Nmech"] + ) + self.add_subsystem("nozz", pyc.Nozzle(nozzType="CD", lossCoef="Cv")) + self.add_subsystem( + "shaft", pyc.Shaft(num_ports=2), promotes_inputs=["Nmech"] + ) + self.add_subsystem("perf", pyc.Performance(num_nozzles=1, num_burners=1)) + + # Connect flow stations + self.pyc_connect_flow("fc.Fl_O", "inlet.Fl_I", connect_w=False) + self.pyc_connect_flow("inlet.Fl_O", "comp.Fl_I") + self.pyc_connect_flow("comp.Fl_O", "burner.Fl_I") + self.pyc_connect_flow("burner.Fl_O", "turb.Fl_I") + self.pyc_connect_flow("turb.Fl_O", "nozz.Fl_I") + + # Make other non-flow connections + # Connect turbomachinery elements to shaft + self.connect("comp.trq", "shaft.trq_0") + self.connect("turb.trq", "shaft.trq_1") + + # Connnect nozzle exhaust to freestream static conditions + self.connect("fc.Fl_O:stat:P", "nozz.Ps_exhaust") + + # Connect outputs to perfomance element + self.connect("inlet.Fl_O:tot:P", "perf.Pt2") + self.connect("comp.Fl_O:tot:P", "perf.Pt3") + self.connect("burner.Wfuel", "perf.Wfuel_0") + self.connect("inlet.F_ram", "perf.ram_drag") + self.connect("nozz.Fg", "perf.Fg_0") + + # Add balances for design and off-design + balance = self.add_subsystem("balance", om.BalanceComp()) + if design: + + balance.add_balance( + "W", units="lbm/s", eq_units="lbf", rhs_name="Fn_target" + ) + self.connect("balance.W", "inlet.Fl_I:stat:W") + self.connect("perf.Fn", "balance.lhs:W") + + balance.add_balance( + "FAR", eq_units="degR", lower=1e-4, val=0.017, rhs_name="T4_target" + ) + self.connect("balance.FAR", "burner.Fl_I:FAR") + self.connect("burner.Fl_O:tot:T", "balance.lhs:FAR") + + balance.add_balance( + "turb_PR", val=1.5, lower=1.001, upper=8, eq_units="hp", rhs_val=0.0 + ) + self.connect("balance.turb_PR", "turb.PR") + self.connect("shaft.pwr_net", "balance.lhs:turb_PR") + + newton = self.nonlinear_solver = om.NewtonSolver() + newton.options["atol"] = 1e-6 + newton.options["rtol"] = 1e-6 + newton.options["iprint"] = 2 + newton.options["maxiter"] = 15 + newton.options["solve_subsystems"] = True + newton.options["max_sub_solves"] = 100 + newton.options["reraise_child_analysiserror"] = False + + self.linear_solver = om.DirectSolver() + + super().setup() + + class MPTurbojet(pyc.MPCycle): + def setup(self): + self.pyc_add_pnt("DESIGN", Turbojet()) + + self.set_input_defaults("DESIGN.Nmech", 8070.0, units="rpm") + self.set_input_defaults("DESIGN.inlet.MN", 0.60) + self.set_input_defaults("DESIGN.comp.MN", 0.020) # .2 + self.set_input_defaults("DESIGN.burner.MN", 0.020) # .2 + self.set_input_defaults("DESIGN.turb.MN", 0.4) + + self.pyc_add_cycle_param("burner.dPqP", 0.03) + self.pyc_add_cycle_param("nozz.Cv", 0.99) + + super().setup() + + import time + + # defining the optimization problem + + prob = om.Problem() + + mp_turbojet = prob.model = MPTurbojet() + prob.setup(check=False) + + # define input values + prob.set_val("DESIGN.fc.alt", alt, units="ft") + prob.set_val("DESIGN.fc.MN", MN) + prob.set_val("DESIGN.balance.Fn_target", Fn, units="lbf") + prob.set_val("DESIGN.balance.T4_target", 2370.0, units="degR") + prob.set_val("DESIGN.comp.PR", 13.5) + prob.set_val("DESIGN.comp.eff", 0.83) + prob.set_val("DESIGN.turb.eff", 0.86) + + if Fn > 2700: + prob["DESIGN.balance.FAR"] = 0.0175506829934 + prob["DESIGN.balance.W"] = 75.453135137 + prob["DESIGN.balance.turb_PR"] = 4.46138725662 + prob["DESIGN.fc.balance.Pt"] = 14.6955113159 + prob["DESIGN.fc.balance.Tt"] = 518.665288153 + + elif 2700 <= Fn < 850: + prob["DESIGN.balance.FAR"] = 0.0175506829934 + prob["DESIGN.balance.W"] = 50.453135137 + prob["DESIGN.balance.turb_PR"] = 4.46138725662 + prob["DESIGN.fc.balance.Pt"] = 14.6955113159 + prob["DESIGN.fc.balance.Tt"] = 518.665288153 + + else: + prob["DESIGN.balance.FAR"] = 0.0175506829934 + prob["DESIGN.balance.W"] = 10.453135137 + prob["DESIGN.balance.turb_PR"] = 4.46138725662 + prob["DESIGN.fc.balance.Pt"] = 14.6955113159 + prob["DESIGN.fc.balance.Tt"] = 518.665288153 + + prob.set_solver_print(level=-1) + # prob.set_solver_print(level=2, depth=1) + + prob.run_model() + + print() + + # command to visualize all the output of the system + # a = prob.model.list_outputs(val=True, units=True) + + T_tot_out = convert_temperature( + (prob.get_val("DESIGN.nozz.throat_total.flow.Fl_O:tot:T")), "Rankine", "Kelvin" + ) + V_stat_out = (prob.get_val("DESIGN.nozz.mux.Fl_O:stat:V")) * 0.3048 + MN_out = prob.get_val("DESIGN.nozz.mux.Fl_O:stat:MN") + T_stat_out = convert_temperature( + prob.get_val("DESIGN.nozz.mux.Fl_O:stat:T"), "Rankine", "Kelvin" + ) # celsius + massflow_stat_out = prob.get_val("DESIGN.nozz.mux.Fl_O:stat:W") * 0.45359237 # kg/s + P_tot_out = ( + prob.get_val("DESIGN.nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 + ) # Pa + P_stat_out = prob.get_val("DESIGN.nozz.mux.Fl_O:stat:P") * 6894.7573 # Pa + + return ( + T_tot_out, + V_stat_out, + MN_out, + P_tot_out, + massflow_stat_out, + T_stat_out, + P_stat_out, + ) + + +def write_turbojet_file( + file, + T_tot_out, + V_stat_out, + MN_out, + P_tot_out, + massflow_stat_out, + T_stat_out, + P_stat_out, +): + + file.write(f"T_tot_out = {T_tot_out} [K]\n") + file.write(f"V_stat_out = {V_stat_out} [m/s]\n") + file.write(f"MN_out = {MN_out} [adim]\n") + file.write(f"P_tot_out = {P_tot_out} [Pa]\n") + file.write(f"massflow_out = {massflow_stat_out} [kg/s]\n") + file.write(f"T_stat_out = {T_stat_out} [K]\n") + file.write(f"P_stat_out = {P_stat_out} [Pa]\n") + + log.info("turbojet.dat file generated!") + + return file diff --git a/ceasiompy/ThermoData/testing_pycycle/des_hbtf_func_test.py b/ceasiompy/ThermoData/testing_pycycle/des_hbtf_func_test.py new file mode 100644 index 000000000..dbc960816 --- /dev/null +++ b/ceasiompy/ThermoData/testing_pycycle/des_hbtf_func_test.py @@ -0,0 +1,390 @@ +import sys + +import numpy as np + +import openmdao.api as om + +import pycycle.api as pyc + +import re + +from scipy.constants import convert_temperature + + +def run_turbofan_analysis_test(alt, MN): + class HBTF(pyc.Cycle): + def setup(self): + + # Setup the problem by including all the relevant components here - comp, burner, turbine etc + + # Create any relevant short hands here: + + design = self.options["design"] + + USE_TABULAR = False + if USE_TABULAR: + self.options["thermo_method"] = "TABULAR" + self.options["thermo_data"] = pyc.AIR_JETA_TAB_SPEC + FUEL_TYPE = "FAR" + else: + self.options["thermo_method"] = "CEA" + self.options["thermo_data"] = pyc.species_data.janaf + FUEL_TYPE = "Jet-A(g)" + + # Add subsystems to build the engine deck: + self.add_subsystem("fc", pyc.FlightConditions()) + self.add_subsystem("inlet", pyc.Inlet()) + + self.add_subsystem( + "fan", + pyc.Compressor(map_data=pyc.FanMap, bleed_names=[], map_extrap=True), + promotes_inputs=[("Nmech", "LP_Nmech")], + ) + self.add_subsystem("splitter", pyc.Splitter()) + self.add_subsystem("duct4", pyc.Duct()) + self.add_subsystem( + "lpc", + pyc.Compressor(map_data=pyc.LPCMap, map_extrap=True), + promotes_inputs=[("Nmech", "LP_Nmech")], + ) + self.add_subsystem("duct6", pyc.Duct()) + self.add_subsystem( + "hpc", + pyc.Compressor( + map_data=pyc.HPCMap, + bleed_names=["cool1", "cool2", "cust"], + map_extrap=True, + ), + promotes_inputs=[("Nmech", "HP_Nmech")], + ) + self.add_subsystem("bld3", pyc.BleedOut(bleed_names=["cool3", "cool4"])) + self.add_subsystem("burner", pyc.Combustor(fuel_type=FUEL_TYPE)) + self.add_subsystem( + "hpt", + pyc.Turbine( + map_data=pyc.HPTMap, bleed_names=["cool3", "cool4"], map_extrap=True + ), + promotes_inputs=[("Nmech", "HP_Nmech")], + ) + self.add_subsystem("duct11", pyc.Duct()) + self.add_subsystem( + "lpt", + pyc.Turbine( + map_data=pyc.LPTMap, bleed_names=["cool1", "cool2"], map_extrap=True + ), + promotes_inputs=[("Nmech", "LP_Nmech")], + ) + self.add_subsystem("duct13", pyc.Duct()) + self.add_subsystem("core_nozz", pyc.Nozzle(nozzType="CV", lossCoef="Cv")) + + self.add_subsystem("byp_bld", pyc.BleedOut(bleed_names=["bypBld"])) + self.add_subsystem("duct15", pyc.Duct()) + self.add_subsystem("byp_nozz", pyc.Nozzle(nozzType="CV", lossCoef="Cv")) + + # Create shaft instances. Note that LP shaft has 3 ports! => no gearbox + self.add_subsystem( + "lp_shaft", + pyc.Shaft(num_ports=3), + promotes_inputs=[("Nmech", "LP_Nmech")], + ) + self.add_subsystem( + "hp_shaft", + pyc.Shaft(num_ports=2), + promotes_inputs=[("Nmech", "HP_Nmech")], + ) + self.add_subsystem("perf", pyc.Performance(num_nozzles=2, num_burners=1)) + + # Now use the explicit connect method to make connections -- connect(, ) + + # Connect the inputs to perf group + self.connect("inlet.Fl_O:tot:P", "perf.Pt2") + self.connect("hpc.Fl_O:tot:P", "perf.Pt3") + self.connect("burner.Wfuel", "perf.Wfuel_0") + self.connect("inlet.F_ram", "perf.ram_drag") + self.connect("core_nozz.Fg", "perf.Fg_0") + self.connect("byp_nozz.Fg", "perf.Fg_1") + + # LP-shaft connections + self.connect("fan.trq", "lp_shaft.trq_0") + self.connect("lpc.trq", "lp_shaft.trq_1") + self.connect("lpt.trq", "lp_shaft.trq_2") + # HP-shaft connections + self.connect("hpc.trq", "hp_shaft.trq_0") + self.connect("hpt.trq", "hp_shaft.trq_1") + # Ideally expanding flow by conneting flight condition static pressure to nozzle exhaust pressure + self.connect("fc.Fl_O:stat:P", "core_nozz.Ps_exhaust") + self.connect("fc.Fl_O:stat:P", "byp_nozz.Ps_exhaust") + + balance = self.add_subsystem("balance", om.BalanceComp()) + if design: + balance.add_balance("W", units="lbm/s", eq_units="lbf") + # Here balance.W is implicit state variable that is the OUTPUT of balance object + self.connect( + "balance.W", "fc.W" + ) # Connect the output of balance to the relevant input + self.connect( + "perf.Fn", "balance.lhs:W" + ) # This statement makes perf.Fn the LHS of the balance eqn. + self.promotes("balance", inputs=[("rhs:W", "Fn_DES")]) + + balance.add_balance("FAR", eq_units="degR", lower=1e-4, val=0.017) + self.connect("balance.FAR", "burner.Fl_I:FAR") + self.connect("burner.Fl_O:tot:T", "balance.lhs:FAR") + self.promotes("balance", inputs=[("rhs:FAR", "T4_MAX")]) + + # Note that for the following two balances the mult val is set to -1 so that the NET torque is zero + balance.add_balance( + "lpt_PR", + val=1.5, + lower=1.001, + upper=8, + eq_units="hp", + use_mult=True, + mult_val=-1, + ) + self.connect("balance.lpt_PR", "lpt.PR") + self.connect("lp_shaft.pwr_in_real", "balance.lhs:lpt_PR") + self.connect("lp_shaft.pwr_out_real", "balance.rhs:lpt_PR") + + balance.add_balance( + "hpt_PR", + val=1.5, + lower=1.001, + upper=8, + eq_units="hp", + use_mult=True, + mult_val=-1, + ) + self.connect("balance.hpt_PR", "hpt.PR") + self.connect("hp_shaft.pwr_in_real", "balance.lhs:hpt_PR") + self.connect("hp_shaft.pwr_out_real", "balance.rhs:hpt_PR") + + # Set up all the flow connections: + self.pyc_connect_flow("fc.Fl_O", "inlet.Fl_I") + self.pyc_connect_flow("inlet.Fl_O", "fan.Fl_I") + self.pyc_connect_flow("fan.Fl_O", "splitter.Fl_I") + self.pyc_connect_flow("splitter.Fl_O1", "duct4.Fl_I") + self.pyc_connect_flow("duct4.Fl_O", "lpc.Fl_I") + self.pyc_connect_flow("lpc.Fl_O", "duct6.Fl_I") + self.pyc_connect_flow("duct6.Fl_O", "hpc.Fl_I") + self.pyc_connect_flow("hpc.Fl_O", "bld3.Fl_I") + self.pyc_connect_flow("bld3.Fl_O", "burner.Fl_I") + self.pyc_connect_flow("burner.Fl_O", "hpt.Fl_I") + self.pyc_connect_flow("hpt.Fl_O", "duct11.Fl_I") + self.pyc_connect_flow("duct11.Fl_O", "lpt.Fl_I") + self.pyc_connect_flow("lpt.Fl_O", "duct13.Fl_I") + self.pyc_connect_flow("duct13.Fl_O", "core_nozz.Fl_I") + self.pyc_connect_flow("splitter.Fl_O2", "byp_bld.Fl_I") + self.pyc_connect_flow("byp_bld.Fl_O", "duct15.Fl_I") + self.pyc_connect_flow("duct15.Fl_O", "byp_nozz.Fl_I") + + # Bleed flows: + self.pyc_connect_flow("hpc.cool1", "lpt.cool1", connect_stat=False) + self.pyc_connect_flow("hpc.cool2", "lpt.cool2", connect_stat=False) + self.pyc_connect_flow("bld3.cool3", "hpt.cool3", connect_stat=False) + self.pyc_connect_flow("bld3.cool4", "hpt.cool4", connect_stat=False) + + # Specify solver settings: + newton = self.nonlinear_solver = om.NewtonSolver() + newton.options["atol"] = 1e-8 + + # set this very small, so it never activates and we rely on atol + newton.options["rtol"] = 1e-99 + newton.options["iprint"] = 2 + newton.options["maxiter"] = 50 + newton.options["solve_subsystems"] = True + newton.options["max_sub_solves"] = 1000 + newton.options["reraise_child_analysiserror"] = False + # ls = newton.linesearch = BoundsEnforceLS() + ls = newton.linesearch = om.ArmijoGoldsteinLS() + ls.options["maxiter"] = 3 + ls.options["rho"] = 0.75 + # ls.options['print_bound_enforce'] = True + + self.linear_solver = om.DirectSolver() + + super().setup() + + class MPhbtf(pyc.MPCycle): + def setup(self): + + self.pyc_add_pnt( + "DESIGN", HBTF(thermo_method="CEA") + ) # Create an instance of the High Bypass ratio Turbofan + + self.set_input_defaults("DESIGN.inlet.MN", 0.751) + self.set_input_defaults("DESIGN.fan.MN", 0.4578) + self.set_input_defaults("DESIGN.splitter.BPR", 5.105) + self.set_input_defaults("DESIGN.splitter.MN1", 0.3104) + self.set_input_defaults("DESIGN.splitter.MN2", 0.4518) + self.set_input_defaults("DESIGN.duct4.MN", 0.3121) + self.set_input_defaults("DESIGN.lpc.MN", 0.3059) + self.set_input_defaults("DESIGN.duct6.MN", 0.3563) + self.set_input_defaults("DESIGN.hpc.MN", 0.2442) + self.set_input_defaults("DESIGN.bld3.MN", 0.3000) + self.set_input_defaults("DESIGN.burner.MN", 0.1025) + self.set_input_defaults("DESIGN.hpt.MN", 0.3650) + self.set_input_defaults("DESIGN.duct11.MN", 0.3063) + self.set_input_defaults("DESIGN.lpt.MN", 0.4127) + self.set_input_defaults("DESIGN.duct13.MN", 0.4463) + self.set_input_defaults("DESIGN.byp_bld.MN", 0.4489) + self.set_input_defaults("DESIGN.duct15.MN", 0.4589) + self.set_input_defaults("DESIGN.LP_Nmech", 4666.1, units="rpm") + self.set_input_defaults("DESIGN.HP_Nmech", 14705.7, units="rpm") + + # --- Set up bleed values ----- + + self.pyc_add_cycle_param("inlet.ram_recovery", 0.9990) + self.pyc_add_cycle_param("duct4.dPqP", 0.0048) + self.pyc_add_cycle_param("duct6.dPqP", 0.0101) + self.pyc_add_cycle_param("burner.dPqP", 0.0540) + self.pyc_add_cycle_param("duct11.dPqP", 0.0051) + self.pyc_add_cycle_param("duct13.dPqP", 0.0107) + self.pyc_add_cycle_param("duct15.dPqP", 0.0149) + self.pyc_add_cycle_param("core_nozz.Cv", 0.9933) + self.pyc_add_cycle_param("byp_bld.bypBld:frac_W", 0.005) + self.pyc_add_cycle_param("byp_nozz.Cv", 0.9939) + self.pyc_add_cycle_param("hpc.cool1:frac_W", 0.050708) + self.pyc_add_cycle_param("hpc.cool1:frac_P", 0.5) + self.pyc_add_cycle_param("hpc.cool1:frac_work", 0.5) + self.pyc_add_cycle_param("hpc.cool2:frac_W", 0.020274) + self.pyc_add_cycle_param("hpc.cool2:frac_P", 0.55) + self.pyc_add_cycle_param("hpc.cool2:frac_work", 0.5) + self.pyc_add_cycle_param("bld3.cool3:frac_W", 0.067214) + self.pyc_add_cycle_param("bld3.cool4:frac_W", 0.101256) + self.pyc_add_cycle_param("hpc.cust:frac_P", 0.5) + self.pyc_add_cycle_param("hpc.cust:frac_work", 0.5) + self.pyc_add_cycle_param("hpc.cust:frac_W", 0.0445) + self.pyc_add_cycle_param("hpt.cool3:frac_P", 1.0) + self.pyc_add_cycle_param("hpt.cool4:frac_P", 0.0) + self.pyc_add_cycle_param("lpt.cool1:frac_P", 1.0) + self.pyc_add_cycle_param("lpt.cool2:frac_P", 0.0) + self.pyc_add_cycle_param("hp_shaft.HPX", 250.0, units="hp") + + super().setup() + + import time + + prob = om.Problem() + + prob.model = mp_hbtf = MPhbtf() + + prob.setup() + + prob.set_val("DESIGN.fan.PR", 1.685) + prob.set_val("DESIGN.fan.eff", 0.8948) + + prob.set_val("DESIGN.lpc.PR", 1.935) + prob.set_val("DESIGN.lpc.eff", 0.9243) + + prob.set_val("DESIGN.hpc.PR", 9.369) + prob.set_val("DESIGN.hpc.eff", 0.8707) + + prob.set_val("DESIGN.hpt.eff", 0.8888) + prob.set_val("DESIGN.lpt.eff", 0.8996) + + prob.set_val("DESIGN.fc.alt", alt, units="ft") + prob.set_val("DESIGN.fc.MN", MN) + + prob.set_val("DESIGN.T4_MAX", 2857, units="degR") + prob.set_val("DESIGN.Fn_DES", 5900.0, units="lbf") + + # Set initial guesses for balances + prob["DESIGN.balance.FAR"] = 0.025 + prob["DESIGN.balance.W"] = 100.0 + prob["DESIGN.balance.lpt_PR"] = 4.0 + prob["DESIGN.balance.hpt_PR"] = 3.0 + prob["DESIGN.fc.balance.Pt"] = 5.2 + prob["DESIGN.fc.balance.Tt"] = 440.0 + + prob.set_solver_print(level=-1) + # prob.set_solver_print(level=2, depth=1) + + prob.run_model() + + print() + + # Obtaining variables names + + # variable_names = open("variables_hptf.txt", "w") + # print( + # prob.model.list_outputs(val=True, units=True, implicit=False), + # file=variable_names, + # ) + + # BYPASS VARIABLES + T_tot_out_byp = convert_temperature( + (prob.get_val("DESIGN.byp_nozz.throat_total.flow.Fl_O:tot:T")), + "Rankine", + "Celsius", + ) + V_stat_out_byp = prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:V") * 0.3048 + MN_out_byp = prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:MN") + P_tot_out_byp = ( + prob.get_val("DESIGN.byp_nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 + ) # Pa + massflow_stat_out_byp = ( + prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:W") * 0.45359237 + ) # kg/s + T_stat_out_byp = convert_temperature( + (prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:T")), "Rankine", "Celsius" + ) # celsius + + # CORE VARIABLES + T_tot_out_core = convert_temperature( + (prob.get_val("DESIGN.core_nozz.throat_total.flow.Fl_O:tot:T")), + "Rankine", + "Kelvin", + ) + V_stat_out_core = prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:V") * 0.3048 + MN_out_core = prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:MN") + P_tot_out_core = ( + prob.get_val("DESIGN.core_nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 + ) # Pa + massflow_stat_out_core = ( + prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:W") * 0.45359237 + ) # kg/s + T_stat_out_core = convert_temperature( + (prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:T")), "Rankine", "Kelvin" + ) # celsius + + res = np.array( + [ + T_tot_out_byp, + V_stat_out_byp, + MN_out_byp, + P_tot_out_byp, + massflow_stat_out_byp, + T_stat_out_byp, + T_tot_out_core, + V_stat_out_core, + MN_out_core, + P_tot_out_core, + massflow_stat_out_core, + T_stat_out_core, + ] + ) + print(f"T_tot_out_core = {T_tot_out_core} [K]") + print(f"V_stat_out_core = {V_stat_out_core} [m/s]") + print(f"MN_out_core = {MN_out_core} [adim]") + print(f"P_tot_out_core = {P_tot_out_core} [Pa]") + print(f"massflow_out_core = {massflow_stat_out_core} [kg/s]") + print(f"T_stat_out_core = {T_stat_out_core} [K]") + print(f"T_tot_out_byp = {T_tot_out_byp} [K]") + print(f"V_stat_out_byp = {V_stat_out_byp} [m/s]") + print(f"MN_out_byp = {MN_out_byp} [adim]") + print(f"P_tot_out_byp = {P_tot_out_byp} [Pa]") + print(f"massflow_stat_out_byp = {massflow_stat_out_byp} [kg/s]") + print(f"T_stat_out_core = {T_stat_out_core} [K]") + + return res + + +if __name__ == "__main__": + + alt = float(input("insert altitude [ft]: ")) + + MN = float(input("insert mach number[adim]: ")) + + run_turbofan_analysis_test(alt, MN) + print("temperature [celsius], stat velocity [m/s], MN for bypass and core") diff --git a/ceasiompy/ThermoData/testing_pycycle/des_turbojet_func.py b/ceasiompy/ThermoData/testing_pycycle/des_turbojet_func.py new file mode 100644 index 000000000..d36447fef --- /dev/null +++ b/ceasiompy/ThermoData/testing_pycycle/des_turbojet_func.py @@ -0,0 +1,173 @@ +import sys + +import openmdao.api as om + +import pycycle.api as pyc + +import numpy as np + +import re + +from scipy.constants import convert_temperature + + +def run_turbojet_analysis(alt, MN, Fn): + class Turbojet(pyc.Cycle): + def setup(self): + + USE_TABULAR = True + + if USE_TABULAR: + self.options["thermo_method"] = "TABULAR" + self.options["thermo_data"] = pyc.AIR_JETA_TAB_SPEC + FUEL_TYPE = "FAR" + + design = self.options["design"] + + # Add engine elements + self.add_subsystem("fc", pyc.FlightConditions()) + self.add_subsystem("inlet", pyc.Inlet()) + self.add_subsystem( + "comp", + pyc.Compressor(map_data=pyc.AXI5, map_extrap=True), + promotes_inputs=["Nmech"], + ) + self.add_subsystem("burner", pyc.Combustor(fuel_type=FUEL_TYPE)) + self.add_subsystem( + "turb", pyc.Turbine(map_data=pyc.LPT2269), promotes_inputs=["Nmech"] + ) + self.add_subsystem("nozz", pyc.Nozzle(nozzType="CD", lossCoef="Cv")) + self.add_subsystem( + "shaft", pyc.Shaft(num_ports=2), promotes_inputs=["Nmech"] + ) + self.add_subsystem("perf", pyc.Performance(num_nozzles=1, num_burners=1)) + + # Connect flow stations + self.pyc_connect_flow("fc.Fl_O", "inlet.Fl_I", connect_w=False) + self.pyc_connect_flow("inlet.Fl_O", "comp.Fl_I") + self.pyc_connect_flow("comp.Fl_O", "burner.Fl_I") + self.pyc_connect_flow("burner.Fl_O", "turb.Fl_I") + self.pyc_connect_flow("turb.Fl_O", "nozz.Fl_I") + + # Make other non-flow connections + # Connect turbomachinery elements to shaft + self.connect("comp.trq", "shaft.trq_0") + self.connect("turb.trq", "shaft.trq_1") + + # Connnect nozzle exhaust to freestream static conditions + self.connect("fc.Fl_O:stat:P", "nozz.Ps_exhaust") + + # Connect outputs to perfomance element + self.connect("inlet.Fl_O:tot:P", "perf.Pt2") + self.connect("comp.Fl_O:tot:P", "perf.Pt3") + self.connect("burner.Wfuel", "perf.Wfuel_0") + self.connect("inlet.F_ram", "perf.ram_drag") + self.connect("nozz.Fg", "perf.Fg_0") + + # Add balances for design and off-design + balance = self.add_subsystem("balance", om.BalanceComp()) + if design: + + balance.add_balance( + "W", units="lbm/s", eq_units="lbf", rhs_name="Fn_target" + ) + self.connect("balance.W", "inlet.Fl_I:stat:W") + self.connect("perf.Fn", "balance.lhs:W") + + balance.add_balance( + "FAR", eq_units="degR", lower=1e-4, val=0.017, rhs_name="T4_target" + ) + self.connect("balance.FAR", "burner.Fl_I:FAR") + self.connect("burner.Fl_O:tot:T", "balance.lhs:FAR") + + balance.add_balance( + "turb_PR", val=1.5, lower=1.001, upper=8, eq_units="hp", rhs_val=0.0 + ) + self.connect("balance.turb_PR", "turb.PR") + self.connect("shaft.pwr_net", "balance.lhs:turb_PR") + + newton = self.nonlinear_solver = om.NewtonSolver() + newton.options["atol"] = 1e-6 + newton.options["rtol"] = 1e-6 + newton.options["iprint"] = 2 + newton.options["maxiter"] = 15 + newton.options["solve_subsystems"] = True + newton.options["max_sub_solves"] = 100 + newton.options["reraise_child_analysiserror"] = False + + self.linear_solver = om.DirectSolver() + + super().setup() + + class MPTurbojet(pyc.MPCycle): + def setup(self): + self.pyc_add_pnt("DESIGN", Turbojet()) + + self.set_input_defaults("DESIGN.Nmech", 8070.0, units="rpm") + self.set_input_defaults("DESIGN.inlet.MN", 0.60) + self.set_input_defaults("DESIGN.comp.MN", 0.020) # .2 + self.set_input_defaults("DESIGN.burner.MN", 0.020) # .2 + self.set_input_defaults("DESIGN.turb.MN", 0.4) + + self.pyc_add_cycle_param("burner.dPqP", 0.03) + self.pyc_add_cycle_param("nozz.Cv", 0.99) + + super().setup() + + import time + + # defining the optimization problem + + prob = om.Problem() + mp_turbojet = prob.model = MPTurbojet() + prob.setup(check=False) + + # define input values + prob.set_val("DESIGN.fc.alt", alt, units="ft") + prob.set_val("DESIGN.fc.MN", MN) + prob.set_val("DESIGN.balance.Fn_target", Fn, units="lbf") + prob.set_val("DESIGN.balance.T4_target", 2370.0, units="degR") + prob.set_val("DESIGN.comp.PR", 13.5) + prob.set_val("DESIGN.comp.eff", 0.83) + prob.set_val("DESIGN.turb.eff", 0.86) + + # define initial guesses for the balances + prob["DESIGN.balance.FAR"] = 0.0175506829934 + prob["DESIGN.balance.W"] = 168.453135137 + prob["DESIGN.balance.turb_PR"] = 4.46138725662 + prob["DESIGN.fc.balance.Pt"] = 14.6955113159 + prob["DESIGN.fc.balance.Tt"] = 518.665288153 + + prob.set_solver_print(level=-1) + # prob.set_solver_print(level=2, depth=1) + + prob.run_model() + + print() + + # command to visualize all the output of the system + # a = prob.model.list_outputs(val=True, units=True) + + T_tot_out = convert_temperature( + (prob.get_val("DESIGN.nozz.throat_total.flow.Fl_O:tot:T")), "Rankine", "Kelvin" + ) + V_stat_out = (prob.get_val("DESIGN.nozz.mux.Fl_O:stat:V")) * 0.3048 + MN_out = prob.get_val("DESIGN.nozz.mux.Fl_O:stat:MN") + T_stat_out = convert_temperature( + prob.get_val("DESIGN.nozz.mux.Fl_O:stat:T"), "Rankine", "Kelvin" + ) # celsius + massflow_stat_out = prob.get_val("DESIGN.nozz.mux.Fl_O:stat:W") * 0.45359237 # kg/s + P_tot_out = ( + prob.get_val("DESIGN.nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 + ) # Pa + + res = np.array( + [T_tot_out, V_stat_out, MN_out, P_tot_out, massflow_stat_out, T_stat_out] + ) + print(f"T_tot_out = {T_tot_out} [K]") + print(f"V_stat_out = {V_stat_out} [m/s]") + print(f"MN_out = {MN_out} [adim]") + print(f"P_tot_out = {P_tot_out} [Pa]") + print(f"massflow_out = {massflow_stat_out} [kg/s]") + print(f"T_stat_out = {T_stat_out} [K]") + return res diff --git a/ceasiompy/ThermoData/thermodata.py b/ceasiompy/ThermoData/thermodata.py new file mode 100644 index 000000000..b7b621fde --- /dev/null +++ b/ceasiompy/ThermoData/thermodata.py @@ -0,0 +1,89 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Calculate outlet conditions fot turbojet and turbofan engines by using the open source code PyCycle +and saving those conditions in a text file + +| Author: Giacomo Benedetti and Francesco Marcucci +| Creation: 2023-12-12 +""" + +# ================================================================================================= +# IMPORTS +# ================================================================================================= + +import shutil +from pathlib import Path + +from ceasiompy.ThermoData.func.run_func import ( + thermo_data_run, +) + +from ceasiompy.utils.ceasiomlogger import get_logger + +from ceasiompy.utils.moduleinterfaces import ( + check_cpacs_input_requirements, + get_toolinput_file_path, + get_tooloutput_file_path, +) +from ceasiompy.utils.commonxpath import ( + REF_XPATH, + CLCALC_XPATH, + ENGINE_TYPE_XPATH, +) +from ceasiompy.utils.commonnames import ( + ENGINE_BOUNDARY_CONDITIONS, +) +from cpacspy.cpacsfunctions import ( + get_value_or_default, +) +from cpacspy.cpacsfunctions import create_branch, get_value, get_value_or_default +from cpacspy.cpacspy import CPACS +from markdownpy.markdownpy import MarkdownDoc +from ceasiompy.utils.ceasiompyutils import get_results_directory + + +log = get_logger() + +MODULE_DIR = Path(__file__).parent +MODULE_NAME = MODULE_DIR.name + + +# ================================================================================================= +# CLASSES +# ================================================================================================= + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +# ================================================================================================= +# MAIN +# ================================================================================================= + + +def main(cpacs_path, cpacs_out_path): + + log.info("----- Start of " + MODULE_NAME + " -----") + + results_dir = get_results_directory("ThermoData") + + thermo_data_run(cpacs_path, cpacs_out_path, results_dir) + + folder_name = "reports" + + shutil.rmtree(folder_name) + + log.info("----- End of " + MODULE_NAME + " -----") + + +if __name__ == "__main__": + + cpacs_path = get_toolinput_file_path(MODULE_NAME) + cpacs_out_path = get_tooloutput_file_path(MODULE_NAME) + + main(cpacs_path, cpacs_out_path) From 97271970667ad8018d59b2e2dc461ff155219d4d Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 10:46:04 +0100 Subject: [PATCH 07/55] new commit --- "src/streamlit/pages/01_ \342\236\241_Workflow.py" | 1 + 1 file changed, 1 insertion(+) diff --git "a/src/streamlit/pages/01_ \342\236\241_Workflow.py" "b/src/streamlit/pages/01_ \342\236\241_Workflow.py" index 27ac8306e..ac987512f 100644 --- "a/src/streamlit/pages/01_ \342\236\241_Workflow.py" +++ "b/src/streamlit/pages/01_ \342\236\241_Workflow.py" @@ -66,6 +66,7 @@ def section_predefined_workflow(): predefine_workflows = [ ["PyTornado", "WeightConventional"], ["CPACS2GMSH", "SU2Run", "SkinFriction"], + ["CPACS2GMSH", "ThermoData", "SU2Run"], ["CPACS2SUMO", "SUMOAutoMesh", "SU2Run", "ExportCSV"], ] From 4162727beb063bd254e0675309800ad1230951fa Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 11:58:35 +0100 Subject: [PATCH 08/55] fixing some problems for merging --- ceasiompy/SU2Run/func/su2config.py | 7 +- ceasiompy/SU2Run/func/su2configrans.py | 14 +- ceasiompy/ThermoData/func/run_func.py | 8 +- ceasiompy/ThermoData/func/turbofan_func.py | 32 +- .../testing_pycycle/des_hbtf_func_test.py | 390 ------------------ .../testing_pycycle/des_turbojet_func.py | 173 -------- 6 files changed, 26 insertions(+), 598 deletions(-) delete mode 100644 ceasiompy/ThermoData/testing_pycycle/des_hbtf_func_test.py delete mode 100644 ceasiompy/ThermoData/testing_pycycle/des_turbojet_func.py diff --git a/ceasiompy/SU2Run/func/su2config.py b/ceasiompy/SU2Run/func/su2config.py index 07ba8b606..e8e4ee232 100644 --- a/ceasiompy/SU2Run/func/su2config.py +++ b/ceasiompy/SU2Run/func/su2config.py @@ -315,9 +315,10 @@ def add_thermodata(cfg, cpacs, alt, case_nb, alt_list): tot_temp_out = tot_temp_out[case_nb] tot_pressure_out = tot_pressure_out[case_nb] cfg["INLET_TYPE"] = "TOTAL_CONDITIONS" - cfg[ - "MARKER_INLET" - ] = f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, OUTLET_ENGINE,{tot_temp_out}, {tot_pressure_out}, {1},{0},{0} )" + cfg["MARKER_INLET"] = ( + f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, " + f"OUTLET_ENGINE,{tot_temp_out},{tot_pressure_out}, {1},{0},{0})" + ) def generate_su2_cfd_config(cpacs_path, cpacs_out_path, wkdir): diff --git a/ceasiompy/SU2Run/func/su2configrans.py b/ceasiompy/SU2Run/func/su2configrans.py index 09e141fb3..a1feee3cd 100644 --- a/ceasiompy/SU2Run/func/su2configrans.py +++ b/ceasiompy/SU2Run/func/su2configrans.py @@ -449,18 +449,20 @@ def generate_su2_cfd_config(cpacs_path, cpacs_out_path, wkdir): tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet") tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet") cfg["INLET_TYPE"] = "TOTAL_CONDITIONS" - cfg[ - "MARKER_INLET" - ] = f"(INLET_ENGINE,{tot_temp_in}, {tot_pressure_in}, {1},{0},{0},OUTLET_ENGINE, {tot_temp_out}, {tot_pressure_out}, {1},{0},{0} )" + cfg["MARKER_INLET"] = ( + f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, " + f"OUTLET_ENGINE,{tot_temp_out},{tot_pressure_out}, {1},{0},{0})" + ) elif engine_type == 1: log.info("turbofan boundary conditions") tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet") tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet") cfg["INLET_TYPE"] = "TOTAL_CONDITIONS" - cfg[ - "MARKER_INLET" - ] = f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, OUTLET_ENGINE,{tot_temp_out}, {tot_pressure_out}, {1},{0},{0} )" + cfg["MARKER_INLET"] = ( + f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, " + f"OUTLET_ENGINE,{tot_temp_out},{tot_pressure_out}, {1},{0},{0})" + ) cfg["MARKER_EULER"] = bc_wall_str farfield_bc = ( diff --git a/ceasiompy/ThermoData/func/run_func.py b/ceasiompy/ThermoData/func/run_func.py index eb0a6b58a..45bf617bf 100644 --- a/ceasiompy/ThermoData/func/run_func.py +++ b/ceasiompy/ThermoData/func/run_func.py @@ -4,7 +4,7 @@ Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland Function to run the PyCycle code in order to obtain turbojet and turbofan boundary conditions -at given altitude, mach number and net force = thrust of the engine +at given altitude, mach number and net force = thrust of the engine Python version: >=3.8 @@ -39,8 +39,8 @@ from cpacspy.cpacsfunctions import ( get_value_or_default, add_float_vector, + create_branch, ) -from cpacspy.cpacsfunctions import create_branch, get_value_or_default from cpacspy.cpacspy import CPACS log = get_logger() @@ -71,9 +71,7 @@ def thermo_data_run(cpacs_path, cpacs_out_path, wkdir): if aeromap_list: aeromap_default = aeromap_list[0] log.info(f"The aeromap is {aeromap_default}") - aeromap_uid = get_value_or_default( - cpacs.tixi, SU2_AEROMAP_UID_XPATH, aeromap_default - ) + aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, aeromap_default) activate_aeromap = cpacs.get_aeromap_by_uid(aeromap_uid) alt_list = activate_aeromap.get("altitude").tolist() mach_list = activate_aeromap.get("machNumber").tolist() diff --git a/ceasiompy/ThermoData/func/turbofan_func.py b/ceasiompy/ThermoData/func/turbofan_func.py index 52521c47f..1cb944b38 100644 --- a/ceasiompy/ThermoData/func/turbofan_func.py +++ b/ceasiompy/ThermoData/func/turbofan_func.py @@ -32,7 +32,7 @@ def turbofan_analysis(alt, MN, Fn): class HBTF(pyc.Cycle): def setup(self): - # Setup the problem by including all the relevant components here - comp, burner, turbine etc + # Setup the problem by including all the relevant components here # Create any relevant short hands here: @@ -78,17 +78,13 @@ def setup(self): self.add_subsystem("burner", pyc.Combustor(fuel_type=FUEL_TYPE)) self.add_subsystem( "hpt", - pyc.Turbine( - map_data=pyc.HPTMap, bleed_names=["cool3", "cool4"], map_extrap=True - ), + pyc.Turbine(map_data=pyc.HPTMap, bleed_names=["cool3", "cool4"], map_extrap=True), promotes_inputs=[("Nmech", "HP_Nmech")], ) self.add_subsystem("duct11", pyc.Duct()) self.add_subsystem( "lpt", - pyc.Turbine( - map_data=pyc.LPTMap, bleed_names=["cool1", "cool2"], map_extrap=True - ), + pyc.Turbine(map_data=pyc.LPTMap, bleed_names=["cool1", "cool2"], map_extrap=True), promotes_inputs=[("Nmech", "LP_Nmech")], ) self.add_subsystem("duct13", pyc.Duct()) @@ -128,7 +124,8 @@ def setup(self): # HP-shaft connections self.connect("hpc.trq", "hp_shaft.trq_0") self.connect("hpt.trq", "hp_shaft.trq_1") - # Ideally expanding flow by conneting flight condition static pressure to nozzle exhaust pressure + # Ideally expanding flow by conneting flight condition static + # pressure to nozzle exhaust pressure self.connect("fc.Fl_O:stat:P", "core_nozz.Ps_exhaust") self.connect("fc.Fl_O:stat:P", "byp_nozz.Ps_exhaust") @@ -149,7 +146,8 @@ def setup(self): self.connect("burner.Fl_O:tot:T", "balance.lhs:FAR") self.promotes("balance", inputs=[("rhs:FAR", "T4_MAX")]) - # Note that for the following two balances the mult val is set to -1 so that the NET torque is zero + # Note that for the following two balances + # the mult val is set to -1 so that the NET torque is zero balance.add_balance( "lpt_PR", val=1.5, @@ -273,9 +271,7 @@ def viewer(prob, pt, file=sys.stdout): file=file, flush=True, ) - print( - " PERFORMANCE CHARACTERISTICS", file=file, flush=True - ) + print(" PERFORMANCE CHARACTERISTICS", file=file, flush=True) print( " Mach Alt W Fn Fg Fram OPR TSFC BPR ", file=file, @@ -358,12 +354,8 @@ def viewer(prob, pt, file=sys.stdout): ) V_stat_out_byp = prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:V") * 0.3048 MN_out_byp = prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:MN") - P_tot_out_byp = ( - prob.get_val("DESIGN.byp_nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 - ) # Pa - massflow_stat_out_byp = ( - prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:W") * 0.45359237 - ) # kg/s + P_tot_out_byp = prob.get_val("DESIGN.byp_nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 # Pa + massflow_stat_out_byp = prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:W") * 0.45359237 # kg/s T_stat_out_byp = convert_temperature( (prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:T")), "Rankine", "Celsius" ) # celsius @@ -379,9 +371,7 @@ def viewer(prob, pt, file=sys.stdout): P_tot_out_core = ( prob.get_val("DESIGN.core_nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 ) # Pa - massflow_stat_out_core = ( - prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:W") * 0.45359237 - ) # kg/s + massflow_stat_out_core = prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:W") * 0.45359237 # kg/s T_stat_out_core = convert_temperature( (prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:T")), "Rankine", "Kelvin" ) # celsius diff --git a/ceasiompy/ThermoData/testing_pycycle/des_hbtf_func_test.py b/ceasiompy/ThermoData/testing_pycycle/des_hbtf_func_test.py deleted file mode 100644 index dbc960816..000000000 --- a/ceasiompy/ThermoData/testing_pycycle/des_hbtf_func_test.py +++ /dev/null @@ -1,390 +0,0 @@ -import sys - -import numpy as np - -import openmdao.api as om - -import pycycle.api as pyc - -import re - -from scipy.constants import convert_temperature - - -def run_turbofan_analysis_test(alt, MN): - class HBTF(pyc.Cycle): - def setup(self): - - # Setup the problem by including all the relevant components here - comp, burner, turbine etc - - # Create any relevant short hands here: - - design = self.options["design"] - - USE_TABULAR = False - if USE_TABULAR: - self.options["thermo_method"] = "TABULAR" - self.options["thermo_data"] = pyc.AIR_JETA_TAB_SPEC - FUEL_TYPE = "FAR" - else: - self.options["thermo_method"] = "CEA" - self.options["thermo_data"] = pyc.species_data.janaf - FUEL_TYPE = "Jet-A(g)" - - # Add subsystems to build the engine deck: - self.add_subsystem("fc", pyc.FlightConditions()) - self.add_subsystem("inlet", pyc.Inlet()) - - self.add_subsystem( - "fan", - pyc.Compressor(map_data=pyc.FanMap, bleed_names=[], map_extrap=True), - promotes_inputs=[("Nmech", "LP_Nmech")], - ) - self.add_subsystem("splitter", pyc.Splitter()) - self.add_subsystem("duct4", pyc.Duct()) - self.add_subsystem( - "lpc", - pyc.Compressor(map_data=pyc.LPCMap, map_extrap=True), - promotes_inputs=[("Nmech", "LP_Nmech")], - ) - self.add_subsystem("duct6", pyc.Duct()) - self.add_subsystem( - "hpc", - pyc.Compressor( - map_data=pyc.HPCMap, - bleed_names=["cool1", "cool2", "cust"], - map_extrap=True, - ), - promotes_inputs=[("Nmech", "HP_Nmech")], - ) - self.add_subsystem("bld3", pyc.BleedOut(bleed_names=["cool3", "cool4"])) - self.add_subsystem("burner", pyc.Combustor(fuel_type=FUEL_TYPE)) - self.add_subsystem( - "hpt", - pyc.Turbine( - map_data=pyc.HPTMap, bleed_names=["cool3", "cool4"], map_extrap=True - ), - promotes_inputs=[("Nmech", "HP_Nmech")], - ) - self.add_subsystem("duct11", pyc.Duct()) - self.add_subsystem( - "lpt", - pyc.Turbine( - map_data=pyc.LPTMap, bleed_names=["cool1", "cool2"], map_extrap=True - ), - promotes_inputs=[("Nmech", "LP_Nmech")], - ) - self.add_subsystem("duct13", pyc.Duct()) - self.add_subsystem("core_nozz", pyc.Nozzle(nozzType="CV", lossCoef="Cv")) - - self.add_subsystem("byp_bld", pyc.BleedOut(bleed_names=["bypBld"])) - self.add_subsystem("duct15", pyc.Duct()) - self.add_subsystem("byp_nozz", pyc.Nozzle(nozzType="CV", lossCoef="Cv")) - - # Create shaft instances. Note that LP shaft has 3 ports! => no gearbox - self.add_subsystem( - "lp_shaft", - pyc.Shaft(num_ports=3), - promotes_inputs=[("Nmech", "LP_Nmech")], - ) - self.add_subsystem( - "hp_shaft", - pyc.Shaft(num_ports=2), - promotes_inputs=[("Nmech", "HP_Nmech")], - ) - self.add_subsystem("perf", pyc.Performance(num_nozzles=2, num_burners=1)) - - # Now use the explicit connect method to make connections -- connect(, ) - - # Connect the inputs to perf group - self.connect("inlet.Fl_O:tot:P", "perf.Pt2") - self.connect("hpc.Fl_O:tot:P", "perf.Pt3") - self.connect("burner.Wfuel", "perf.Wfuel_0") - self.connect("inlet.F_ram", "perf.ram_drag") - self.connect("core_nozz.Fg", "perf.Fg_0") - self.connect("byp_nozz.Fg", "perf.Fg_1") - - # LP-shaft connections - self.connect("fan.trq", "lp_shaft.trq_0") - self.connect("lpc.trq", "lp_shaft.trq_1") - self.connect("lpt.trq", "lp_shaft.trq_2") - # HP-shaft connections - self.connect("hpc.trq", "hp_shaft.trq_0") - self.connect("hpt.trq", "hp_shaft.trq_1") - # Ideally expanding flow by conneting flight condition static pressure to nozzle exhaust pressure - self.connect("fc.Fl_O:stat:P", "core_nozz.Ps_exhaust") - self.connect("fc.Fl_O:stat:P", "byp_nozz.Ps_exhaust") - - balance = self.add_subsystem("balance", om.BalanceComp()) - if design: - balance.add_balance("W", units="lbm/s", eq_units="lbf") - # Here balance.W is implicit state variable that is the OUTPUT of balance object - self.connect( - "balance.W", "fc.W" - ) # Connect the output of balance to the relevant input - self.connect( - "perf.Fn", "balance.lhs:W" - ) # This statement makes perf.Fn the LHS of the balance eqn. - self.promotes("balance", inputs=[("rhs:W", "Fn_DES")]) - - balance.add_balance("FAR", eq_units="degR", lower=1e-4, val=0.017) - self.connect("balance.FAR", "burner.Fl_I:FAR") - self.connect("burner.Fl_O:tot:T", "balance.lhs:FAR") - self.promotes("balance", inputs=[("rhs:FAR", "T4_MAX")]) - - # Note that for the following two balances the mult val is set to -1 so that the NET torque is zero - balance.add_balance( - "lpt_PR", - val=1.5, - lower=1.001, - upper=8, - eq_units="hp", - use_mult=True, - mult_val=-1, - ) - self.connect("balance.lpt_PR", "lpt.PR") - self.connect("lp_shaft.pwr_in_real", "balance.lhs:lpt_PR") - self.connect("lp_shaft.pwr_out_real", "balance.rhs:lpt_PR") - - balance.add_balance( - "hpt_PR", - val=1.5, - lower=1.001, - upper=8, - eq_units="hp", - use_mult=True, - mult_val=-1, - ) - self.connect("balance.hpt_PR", "hpt.PR") - self.connect("hp_shaft.pwr_in_real", "balance.lhs:hpt_PR") - self.connect("hp_shaft.pwr_out_real", "balance.rhs:hpt_PR") - - # Set up all the flow connections: - self.pyc_connect_flow("fc.Fl_O", "inlet.Fl_I") - self.pyc_connect_flow("inlet.Fl_O", "fan.Fl_I") - self.pyc_connect_flow("fan.Fl_O", "splitter.Fl_I") - self.pyc_connect_flow("splitter.Fl_O1", "duct4.Fl_I") - self.pyc_connect_flow("duct4.Fl_O", "lpc.Fl_I") - self.pyc_connect_flow("lpc.Fl_O", "duct6.Fl_I") - self.pyc_connect_flow("duct6.Fl_O", "hpc.Fl_I") - self.pyc_connect_flow("hpc.Fl_O", "bld3.Fl_I") - self.pyc_connect_flow("bld3.Fl_O", "burner.Fl_I") - self.pyc_connect_flow("burner.Fl_O", "hpt.Fl_I") - self.pyc_connect_flow("hpt.Fl_O", "duct11.Fl_I") - self.pyc_connect_flow("duct11.Fl_O", "lpt.Fl_I") - self.pyc_connect_flow("lpt.Fl_O", "duct13.Fl_I") - self.pyc_connect_flow("duct13.Fl_O", "core_nozz.Fl_I") - self.pyc_connect_flow("splitter.Fl_O2", "byp_bld.Fl_I") - self.pyc_connect_flow("byp_bld.Fl_O", "duct15.Fl_I") - self.pyc_connect_flow("duct15.Fl_O", "byp_nozz.Fl_I") - - # Bleed flows: - self.pyc_connect_flow("hpc.cool1", "lpt.cool1", connect_stat=False) - self.pyc_connect_flow("hpc.cool2", "lpt.cool2", connect_stat=False) - self.pyc_connect_flow("bld3.cool3", "hpt.cool3", connect_stat=False) - self.pyc_connect_flow("bld3.cool4", "hpt.cool4", connect_stat=False) - - # Specify solver settings: - newton = self.nonlinear_solver = om.NewtonSolver() - newton.options["atol"] = 1e-8 - - # set this very small, so it never activates and we rely on atol - newton.options["rtol"] = 1e-99 - newton.options["iprint"] = 2 - newton.options["maxiter"] = 50 - newton.options["solve_subsystems"] = True - newton.options["max_sub_solves"] = 1000 - newton.options["reraise_child_analysiserror"] = False - # ls = newton.linesearch = BoundsEnforceLS() - ls = newton.linesearch = om.ArmijoGoldsteinLS() - ls.options["maxiter"] = 3 - ls.options["rho"] = 0.75 - # ls.options['print_bound_enforce'] = True - - self.linear_solver = om.DirectSolver() - - super().setup() - - class MPhbtf(pyc.MPCycle): - def setup(self): - - self.pyc_add_pnt( - "DESIGN", HBTF(thermo_method="CEA") - ) # Create an instance of the High Bypass ratio Turbofan - - self.set_input_defaults("DESIGN.inlet.MN", 0.751) - self.set_input_defaults("DESIGN.fan.MN", 0.4578) - self.set_input_defaults("DESIGN.splitter.BPR", 5.105) - self.set_input_defaults("DESIGN.splitter.MN1", 0.3104) - self.set_input_defaults("DESIGN.splitter.MN2", 0.4518) - self.set_input_defaults("DESIGN.duct4.MN", 0.3121) - self.set_input_defaults("DESIGN.lpc.MN", 0.3059) - self.set_input_defaults("DESIGN.duct6.MN", 0.3563) - self.set_input_defaults("DESIGN.hpc.MN", 0.2442) - self.set_input_defaults("DESIGN.bld3.MN", 0.3000) - self.set_input_defaults("DESIGN.burner.MN", 0.1025) - self.set_input_defaults("DESIGN.hpt.MN", 0.3650) - self.set_input_defaults("DESIGN.duct11.MN", 0.3063) - self.set_input_defaults("DESIGN.lpt.MN", 0.4127) - self.set_input_defaults("DESIGN.duct13.MN", 0.4463) - self.set_input_defaults("DESIGN.byp_bld.MN", 0.4489) - self.set_input_defaults("DESIGN.duct15.MN", 0.4589) - self.set_input_defaults("DESIGN.LP_Nmech", 4666.1, units="rpm") - self.set_input_defaults("DESIGN.HP_Nmech", 14705.7, units="rpm") - - # --- Set up bleed values ----- - - self.pyc_add_cycle_param("inlet.ram_recovery", 0.9990) - self.pyc_add_cycle_param("duct4.dPqP", 0.0048) - self.pyc_add_cycle_param("duct6.dPqP", 0.0101) - self.pyc_add_cycle_param("burner.dPqP", 0.0540) - self.pyc_add_cycle_param("duct11.dPqP", 0.0051) - self.pyc_add_cycle_param("duct13.dPqP", 0.0107) - self.pyc_add_cycle_param("duct15.dPqP", 0.0149) - self.pyc_add_cycle_param("core_nozz.Cv", 0.9933) - self.pyc_add_cycle_param("byp_bld.bypBld:frac_W", 0.005) - self.pyc_add_cycle_param("byp_nozz.Cv", 0.9939) - self.pyc_add_cycle_param("hpc.cool1:frac_W", 0.050708) - self.pyc_add_cycle_param("hpc.cool1:frac_P", 0.5) - self.pyc_add_cycle_param("hpc.cool1:frac_work", 0.5) - self.pyc_add_cycle_param("hpc.cool2:frac_W", 0.020274) - self.pyc_add_cycle_param("hpc.cool2:frac_P", 0.55) - self.pyc_add_cycle_param("hpc.cool2:frac_work", 0.5) - self.pyc_add_cycle_param("bld3.cool3:frac_W", 0.067214) - self.pyc_add_cycle_param("bld3.cool4:frac_W", 0.101256) - self.pyc_add_cycle_param("hpc.cust:frac_P", 0.5) - self.pyc_add_cycle_param("hpc.cust:frac_work", 0.5) - self.pyc_add_cycle_param("hpc.cust:frac_W", 0.0445) - self.pyc_add_cycle_param("hpt.cool3:frac_P", 1.0) - self.pyc_add_cycle_param("hpt.cool4:frac_P", 0.0) - self.pyc_add_cycle_param("lpt.cool1:frac_P", 1.0) - self.pyc_add_cycle_param("lpt.cool2:frac_P", 0.0) - self.pyc_add_cycle_param("hp_shaft.HPX", 250.0, units="hp") - - super().setup() - - import time - - prob = om.Problem() - - prob.model = mp_hbtf = MPhbtf() - - prob.setup() - - prob.set_val("DESIGN.fan.PR", 1.685) - prob.set_val("DESIGN.fan.eff", 0.8948) - - prob.set_val("DESIGN.lpc.PR", 1.935) - prob.set_val("DESIGN.lpc.eff", 0.9243) - - prob.set_val("DESIGN.hpc.PR", 9.369) - prob.set_val("DESIGN.hpc.eff", 0.8707) - - prob.set_val("DESIGN.hpt.eff", 0.8888) - prob.set_val("DESIGN.lpt.eff", 0.8996) - - prob.set_val("DESIGN.fc.alt", alt, units="ft") - prob.set_val("DESIGN.fc.MN", MN) - - prob.set_val("DESIGN.T4_MAX", 2857, units="degR") - prob.set_val("DESIGN.Fn_DES", 5900.0, units="lbf") - - # Set initial guesses for balances - prob["DESIGN.balance.FAR"] = 0.025 - prob["DESIGN.balance.W"] = 100.0 - prob["DESIGN.balance.lpt_PR"] = 4.0 - prob["DESIGN.balance.hpt_PR"] = 3.0 - prob["DESIGN.fc.balance.Pt"] = 5.2 - prob["DESIGN.fc.balance.Tt"] = 440.0 - - prob.set_solver_print(level=-1) - # prob.set_solver_print(level=2, depth=1) - - prob.run_model() - - print() - - # Obtaining variables names - - # variable_names = open("variables_hptf.txt", "w") - # print( - # prob.model.list_outputs(val=True, units=True, implicit=False), - # file=variable_names, - # ) - - # BYPASS VARIABLES - T_tot_out_byp = convert_temperature( - (prob.get_val("DESIGN.byp_nozz.throat_total.flow.Fl_O:tot:T")), - "Rankine", - "Celsius", - ) - V_stat_out_byp = prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:V") * 0.3048 - MN_out_byp = prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:MN") - P_tot_out_byp = ( - prob.get_val("DESIGN.byp_nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 - ) # Pa - massflow_stat_out_byp = ( - prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:W") * 0.45359237 - ) # kg/s - T_stat_out_byp = convert_temperature( - (prob.get_val("DESIGN.byp_nozz.mux.Fl_O:stat:T")), "Rankine", "Celsius" - ) # celsius - - # CORE VARIABLES - T_tot_out_core = convert_temperature( - (prob.get_val("DESIGN.core_nozz.throat_total.flow.Fl_O:tot:T")), - "Rankine", - "Kelvin", - ) - V_stat_out_core = prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:V") * 0.3048 - MN_out_core = prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:MN") - P_tot_out_core = ( - prob.get_val("DESIGN.core_nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 - ) # Pa - massflow_stat_out_core = ( - prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:W") * 0.45359237 - ) # kg/s - T_stat_out_core = convert_temperature( - (prob.get_val("DESIGN.core_nozz.mux.Fl_O:stat:T")), "Rankine", "Kelvin" - ) # celsius - - res = np.array( - [ - T_tot_out_byp, - V_stat_out_byp, - MN_out_byp, - P_tot_out_byp, - massflow_stat_out_byp, - T_stat_out_byp, - T_tot_out_core, - V_stat_out_core, - MN_out_core, - P_tot_out_core, - massflow_stat_out_core, - T_stat_out_core, - ] - ) - print(f"T_tot_out_core = {T_tot_out_core} [K]") - print(f"V_stat_out_core = {V_stat_out_core} [m/s]") - print(f"MN_out_core = {MN_out_core} [adim]") - print(f"P_tot_out_core = {P_tot_out_core} [Pa]") - print(f"massflow_out_core = {massflow_stat_out_core} [kg/s]") - print(f"T_stat_out_core = {T_stat_out_core} [K]") - print(f"T_tot_out_byp = {T_tot_out_byp} [K]") - print(f"V_stat_out_byp = {V_stat_out_byp} [m/s]") - print(f"MN_out_byp = {MN_out_byp} [adim]") - print(f"P_tot_out_byp = {P_tot_out_byp} [Pa]") - print(f"massflow_stat_out_byp = {massflow_stat_out_byp} [kg/s]") - print(f"T_stat_out_core = {T_stat_out_core} [K]") - - return res - - -if __name__ == "__main__": - - alt = float(input("insert altitude [ft]: ")) - - MN = float(input("insert mach number[adim]: ")) - - run_turbofan_analysis_test(alt, MN) - print("temperature [celsius], stat velocity [m/s], MN for bypass and core") diff --git a/ceasiompy/ThermoData/testing_pycycle/des_turbojet_func.py b/ceasiompy/ThermoData/testing_pycycle/des_turbojet_func.py deleted file mode 100644 index d36447fef..000000000 --- a/ceasiompy/ThermoData/testing_pycycle/des_turbojet_func.py +++ /dev/null @@ -1,173 +0,0 @@ -import sys - -import openmdao.api as om - -import pycycle.api as pyc - -import numpy as np - -import re - -from scipy.constants import convert_temperature - - -def run_turbojet_analysis(alt, MN, Fn): - class Turbojet(pyc.Cycle): - def setup(self): - - USE_TABULAR = True - - if USE_TABULAR: - self.options["thermo_method"] = "TABULAR" - self.options["thermo_data"] = pyc.AIR_JETA_TAB_SPEC - FUEL_TYPE = "FAR" - - design = self.options["design"] - - # Add engine elements - self.add_subsystem("fc", pyc.FlightConditions()) - self.add_subsystem("inlet", pyc.Inlet()) - self.add_subsystem( - "comp", - pyc.Compressor(map_data=pyc.AXI5, map_extrap=True), - promotes_inputs=["Nmech"], - ) - self.add_subsystem("burner", pyc.Combustor(fuel_type=FUEL_TYPE)) - self.add_subsystem( - "turb", pyc.Turbine(map_data=pyc.LPT2269), promotes_inputs=["Nmech"] - ) - self.add_subsystem("nozz", pyc.Nozzle(nozzType="CD", lossCoef="Cv")) - self.add_subsystem( - "shaft", pyc.Shaft(num_ports=2), promotes_inputs=["Nmech"] - ) - self.add_subsystem("perf", pyc.Performance(num_nozzles=1, num_burners=1)) - - # Connect flow stations - self.pyc_connect_flow("fc.Fl_O", "inlet.Fl_I", connect_w=False) - self.pyc_connect_flow("inlet.Fl_O", "comp.Fl_I") - self.pyc_connect_flow("comp.Fl_O", "burner.Fl_I") - self.pyc_connect_flow("burner.Fl_O", "turb.Fl_I") - self.pyc_connect_flow("turb.Fl_O", "nozz.Fl_I") - - # Make other non-flow connections - # Connect turbomachinery elements to shaft - self.connect("comp.trq", "shaft.trq_0") - self.connect("turb.trq", "shaft.trq_1") - - # Connnect nozzle exhaust to freestream static conditions - self.connect("fc.Fl_O:stat:P", "nozz.Ps_exhaust") - - # Connect outputs to perfomance element - self.connect("inlet.Fl_O:tot:P", "perf.Pt2") - self.connect("comp.Fl_O:tot:P", "perf.Pt3") - self.connect("burner.Wfuel", "perf.Wfuel_0") - self.connect("inlet.F_ram", "perf.ram_drag") - self.connect("nozz.Fg", "perf.Fg_0") - - # Add balances for design and off-design - balance = self.add_subsystem("balance", om.BalanceComp()) - if design: - - balance.add_balance( - "W", units="lbm/s", eq_units="lbf", rhs_name="Fn_target" - ) - self.connect("balance.W", "inlet.Fl_I:stat:W") - self.connect("perf.Fn", "balance.lhs:W") - - balance.add_balance( - "FAR", eq_units="degR", lower=1e-4, val=0.017, rhs_name="T4_target" - ) - self.connect("balance.FAR", "burner.Fl_I:FAR") - self.connect("burner.Fl_O:tot:T", "balance.lhs:FAR") - - balance.add_balance( - "turb_PR", val=1.5, lower=1.001, upper=8, eq_units="hp", rhs_val=0.0 - ) - self.connect("balance.turb_PR", "turb.PR") - self.connect("shaft.pwr_net", "balance.lhs:turb_PR") - - newton = self.nonlinear_solver = om.NewtonSolver() - newton.options["atol"] = 1e-6 - newton.options["rtol"] = 1e-6 - newton.options["iprint"] = 2 - newton.options["maxiter"] = 15 - newton.options["solve_subsystems"] = True - newton.options["max_sub_solves"] = 100 - newton.options["reraise_child_analysiserror"] = False - - self.linear_solver = om.DirectSolver() - - super().setup() - - class MPTurbojet(pyc.MPCycle): - def setup(self): - self.pyc_add_pnt("DESIGN", Turbojet()) - - self.set_input_defaults("DESIGN.Nmech", 8070.0, units="rpm") - self.set_input_defaults("DESIGN.inlet.MN", 0.60) - self.set_input_defaults("DESIGN.comp.MN", 0.020) # .2 - self.set_input_defaults("DESIGN.burner.MN", 0.020) # .2 - self.set_input_defaults("DESIGN.turb.MN", 0.4) - - self.pyc_add_cycle_param("burner.dPqP", 0.03) - self.pyc_add_cycle_param("nozz.Cv", 0.99) - - super().setup() - - import time - - # defining the optimization problem - - prob = om.Problem() - mp_turbojet = prob.model = MPTurbojet() - prob.setup(check=False) - - # define input values - prob.set_val("DESIGN.fc.alt", alt, units="ft") - prob.set_val("DESIGN.fc.MN", MN) - prob.set_val("DESIGN.balance.Fn_target", Fn, units="lbf") - prob.set_val("DESIGN.balance.T4_target", 2370.0, units="degR") - prob.set_val("DESIGN.comp.PR", 13.5) - prob.set_val("DESIGN.comp.eff", 0.83) - prob.set_val("DESIGN.turb.eff", 0.86) - - # define initial guesses for the balances - prob["DESIGN.balance.FAR"] = 0.0175506829934 - prob["DESIGN.balance.W"] = 168.453135137 - prob["DESIGN.balance.turb_PR"] = 4.46138725662 - prob["DESIGN.fc.balance.Pt"] = 14.6955113159 - prob["DESIGN.fc.balance.Tt"] = 518.665288153 - - prob.set_solver_print(level=-1) - # prob.set_solver_print(level=2, depth=1) - - prob.run_model() - - print() - - # command to visualize all the output of the system - # a = prob.model.list_outputs(val=True, units=True) - - T_tot_out = convert_temperature( - (prob.get_val("DESIGN.nozz.throat_total.flow.Fl_O:tot:T")), "Rankine", "Kelvin" - ) - V_stat_out = (prob.get_val("DESIGN.nozz.mux.Fl_O:stat:V")) * 0.3048 - MN_out = prob.get_val("DESIGN.nozz.mux.Fl_O:stat:MN") - T_stat_out = convert_temperature( - prob.get_val("DESIGN.nozz.mux.Fl_O:stat:T"), "Rankine", "Kelvin" - ) # celsius - massflow_stat_out = prob.get_val("DESIGN.nozz.mux.Fl_O:stat:W") * 0.45359237 # kg/s - P_tot_out = ( - prob.get_val("DESIGN.nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 - ) # Pa - - res = np.array( - [T_tot_out, V_stat_out, MN_out, P_tot_out, massflow_stat_out, T_stat_out] - ) - print(f"T_tot_out = {T_tot_out} [K]") - print(f"V_stat_out = {V_stat_out} [m/s]") - print(f"MN_out = {MN_out} [adim]") - print(f"P_tot_out = {P_tot_out} [Pa]") - print(f"massflow_out = {massflow_stat_out} [kg/s]") - print(f"T_stat_out = {T_stat_out} [K]") - return res From 204af4ab850c9a42bcac88fe871c2f828df5c373 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 12:18:17 +0100 Subject: [PATCH 09/55] solving some issue for merging --- ceasiompy/ThermoData/func/turbofan_func.py | 2 +- ceasiompy/ThermoData/thermodata.py | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/ceasiompy/ThermoData/func/turbofan_func.py b/ceasiompy/ThermoData/func/turbofan_func.py index 1cb944b38..7f6548b8a 100644 --- a/ceasiompy/ThermoData/func/turbofan_func.py +++ b/ceasiompy/ThermoData/func/turbofan_func.py @@ -295,7 +295,7 @@ def viewer(prob, pt, file=sys.stdout): prob = om.Problem() - prob.model = mp_hbtf = MPhbtf() + prob.model = MPhbtf() prob.setup() diff --git a/ceasiompy/ThermoData/thermodata.py b/ceasiompy/ThermoData/thermodata.py index b7b621fde..5c624caf6 100644 --- a/ceasiompy/ThermoData/thermodata.py +++ b/ceasiompy/ThermoData/thermodata.py @@ -3,7 +3,7 @@ Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland -Calculate outlet conditions fot turbojet and turbofan engines by using the open source code PyCycle +Calculate outlet conditions fot turbojet and turbofan engines by using the open source code PyCycle and saving those conditions in a text file | Author: Giacomo Benedetti and Francesco Marcucci @@ -24,7 +24,6 @@ from ceasiompy.utils.ceasiomlogger import get_logger from ceasiompy.utils.moduleinterfaces import ( - check_cpacs_input_requirements, get_toolinput_file_path, get_tooloutput_file_path, ) @@ -36,12 +35,6 @@ from ceasiompy.utils.commonnames import ( ENGINE_BOUNDARY_CONDITIONS, ) -from cpacspy.cpacsfunctions import ( - get_value_or_default, -) -from cpacspy.cpacsfunctions import create_branch, get_value, get_value_or_default -from cpacspy.cpacspy import CPACS -from markdownpy.markdownpy import MarkdownDoc from ceasiompy.utils.ceasiompyutils import get_results_directory From ed669c4ffa1bbce406f8e9a54b0c81bb6b249b76 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 12:30:41 +0100 Subject: [PATCH 10/55] solving config file generation single condition --- ceasiompy/SU2Run/func/su2config.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/ceasiompy/SU2Run/func/su2config.py b/ceasiompy/SU2Run/func/su2config.py index e8e4ee232..b1d5b1e0e 100644 --- a/ceasiompy/SU2Run/func/su2config.py +++ b/ceasiompy/SU2Run/func/su2config.py @@ -310,10 +310,14 @@ def add_thermodata(cfg, cpacs, alt, case_nb, alt_list): Atm = Atmosphere(alt) tot_temp_in = Atm.temperature[0] tot_pressure_in = Atm.pressure[0] - tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet").split(";") - tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet").split(";") - tot_temp_out = tot_temp_out[case_nb] - tot_pressure_out = tot_pressure_out[case_nb] + if len(alt_list) > 1: + tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet").split(";") + tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet").split(";") + tot_temp_out = tot_temp_out[case_nb] + tot_pressure_out = tot_pressure_out[case_nb] + else: + tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet") + tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet") cfg["INLET_TYPE"] = "TOTAL_CONDITIONS" cfg["MARKER_INLET"] = ( f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, " From 7495857dd5fc5e202a258b0524ec9f553cdc8f51 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 13:50:15 +0100 Subject: [PATCH 11/55] solving flake8 issues --- ceasiompy/ThermoData/func/turbofan_func.py | 8 +++----- ceasiompy/ThermoData/func/turbojet_func.py | 14 ++++---------- 2 files changed, 7 insertions(+), 15 deletions(-) diff --git a/ceasiompy/ThermoData/func/turbofan_func.py b/ceasiompy/ThermoData/func/turbofan_func.py index 7f6548b8a..187afd8eb 100644 --- a/ceasiompy/ThermoData/func/turbofan_func.py +++ b/ceasiompy/ThermoData/func/turbofan_func.py @@ -241,9 +241,9 @@ def viewer(prob, pt, file=sys.stdout): FAR = prob["DESIGN.balance.FAR"] else: MN = prob[pt + ".fc.Fl_O:stat:MN"] - LPT_PR = prob[pt + ".lpt.PR"] - HPT_PR = prob[pt + ".hpt.PR"] - FAR = prob[pt + ".balance.FAR"] + # LPT_PR = prob[pt + ".lpt.PR"] + # HPT_PR = prob[pt + ".hpt.PR"] + # FAR = prob[pt + ".balance.FAR"] summary_data = ( MN, @@ -328,8 +328,6 @@ def viewer(prob, pt, file=sys.stdout): prob.set_solver_print(level=-1) prob.set_solver_print(level=2, depth=1) - flight_env = [(0.9, 6000)] - viewer_file = open("hbtf_des_view.out", "w") for PC in [1, 0.9]: diff --git a/ceasiompy/ThermoData/func/turbojet_func.py b/ceasiompy/ThermoData/func/turbojet_func.py index 371195bad..d122f96fb 100644 --- a/ceasiompy/ThermoData/func/turbojet_func.py +++ b/ceasiompy/ThermoData/func/turbojet_func.py @@ -53,9 +53,7 @@ def setup(self): "turb", pyc.Turbine(map_data=pyc.LPT2269), promotes_inputs=["Nmech"] ) self.add_subsystem("nozz", pyc.Nozzle(nozzType="CD", lossCoef="Cv")) - self.add_subsystem( - "shaft", pyc.Shaft(num_ports=2), promotes_inputs=["Nmech"] - ) + self.add_subsystem("shaft", pyc.Shaft(num_ports=2), promotes_inputs=["Nmech"]) self.add_subsystem("perf", pyc.Performance(num_nozzles=1, num_burners=1)) # Connect flow stations @@ -84,9 +82,7 @@ def setup(self): balance = self.add_subsystem("balance", om.BalanceComp()) if design: - balance.add_balance( - "W", units="lbm/s", eq_units="lbf", rhs_name="Fn_target" - ) + balance.add_balance("W", units="lbm/s", eq_units="lbf", rhs_name="Fn_target") self.connect("balance.W", "inlet.Fl_I:stat:W") self.connect("perf.Fn", "balance.lhs:W") @@ -136,7 +132,7 @@ def setup(self): prob = om.Problem() - mp_turbojet = prob.model = MPTurbojet() + prob.model = MPTurbojet() prob.setup(check=False) # define input values @@ -188,9 +184,7 @@ def setup(self): prob.get_val("DESIGN.nozz.mux.Fl_O:stat:T"), "Rankine", "Kelvin" ) # celsius massflow_stat_out = prob.get_val("DESIGN.nozz.mux.Fl_O:stat:W") * 0.45359237 # kg/s - P_tot_out = ( - prob.get_val("DESIGN.nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 - ) # Pa + P_tot_out = prob.get_val("DESIGN.nozz.throat_total.flow.Fl_O:tot:P") * 6894.7573 # Pa P_stat_out = prob.get_val("DESIGN.nozz.mux.Fl_O:stat:P") * 6894.7573 # Pa return ( From a1f72a925263bfea7c5642c1d8751accc09aa95e Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 13:53:00 +0100 Subject: [PATCH 12/55] solving flake8 issues --- ceasiompy/ThermoData/func/turbofan_func.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ceasiompy/ThermoData/func/turbofan_func.py b/ceasiompy/ThermoData/func/turbofan_func.py index 187afd8eb..9a24727dc 100644 --- a/ceasiompy/ThermoData/func/turbofan_func.py +++ b/ceasiompy/ThermoData/func/turbofan_func.py @@ -236,9 +236,9 @@ def viewer(prob, pt, file=sys.stdout): if pt == "DESIGN": MN = prob["DESIGN.fc.Fl_O:stat:MN"] - LPT_PR = prob["DESIGN.balance.lpt_PR"] - HPT_PR = prob["DESIGN.balance.hpt_PR"] - FAR = prob["DESIGN.balance.FAR"] + # LPT_PR = prob["DESIGN.balance.lpt_PR"] + # HPT_PR = prob["DESIGN.balance.hpt_PR"] + # FAR = prob["DESIGN.balance.FAR"] else: MN = prob[pt + ".fc.Fl_O:stat:MN"] # LPT_PR = prob[pt + ".lpt.PR"] From 2a600624084ee23820616b8dc94f6c1cd4e618e8 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 14:10:32 +0100 Subject: [PATCH 13/55] solving Codacy issues --- ceasiompy/SU2Run/func/su2config.py | 1 - ceasiompy/SU2Run/func/su2configrans.py | 566 --------------------- ceasiompy/ThermoData/__specs__.py | 2 - ceasiompy/ThermoData/func/run_func.py | 2 +- ceasiompy/ThermoData/func/turbofan_func.py | 2 - ceasiompy/ThermoData/func/turbojet_func.py | 2 - ceasiompy/ThermoData/thermodata.py | 8 - 7 files changed, 1 insertion(+), 582 deletions(-) delete mode 100644 ceasiompy/SU2Run/func/su2configrans.py diff --git a/ceasiompy/SU2Run/func/su2config.py b/ceasiompy/SU2Run/func/su2config.py index b1d5b1e0e..8e08de5ed 100644 --- a/ceasiompy/SU2Run/func/su2config.py +++ b/ceasiompy/SU2Run/func/su2config.py @@ -20,7 +20,6 @@ # IMPORTS # ================================================================================================= -import numpy as np from pathlib import Path from shutil import copyfile diff --git a/ceasiompy/SU2Run/func/su2configrans.py b/ceasiompy/SU2Run/func/su2configrans.py deleted file mode 100644 index a1feee3cd..000000000 --- a/ceasiompy/SU2Run/func/su2configrans.py +++ /dev/null @@ -1,566 +0,0 @@ -""" -CEASIOMpy: Conceptual Aircraft Design Software - -Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland - -Function generate or modify SU2 configuration files - -Python version: >=3.8 - -| Author: Aidan Jungo -| Creation: 2020-02-24 - -TODO: - - * add and test control surface functions - -""" - -# ================================================================================================= -# IMPORTS -# ================================================================================================= - -from pathlib import Path -from shutil import copyfile - -from ambiance import Atmosphere -from ceasiompy.SU2Run.func.su2actuatordiskfile import ( - get_advanced_ratio, - get_radial_stations, - save_plots, - thrust_calculator, - write_actuator_disk_data, - write_header, -) -from ceasiompy.SU2Run.func.su2utils import get_mesh_markers, get_su2_config_template -from ceasiompy.utils.ceasiomlogger import get_logger -from ceasiompy.utils.commonnames import ( - ACTUATOR_DISK_FILE_NAME, - ACTUATOR_DISK_INLET_SUFFIX, - ACTUATOR_DISK_OUTLET_SUFFIX, - CONFIG_CFD_NAME, - SU2_FORCES_BREAKDOWN_NAME, -) -from ceasiompy.utils.commonxpath import ( - GMSH_SYMMETRY_XPATH, - PROP_XPATH, - RANGE_XPATH, - SU2_ACTUATOR_DISK_XPATH, - SU2_AEROMAP_UID_XPATH, - SU2_BC_FARFIELD_XPATH, - SU2_BC_WALL_XPATH, - SU2_CFL_NB_XPATH, - SU2_CFL_ADAPT_XPATH, - SU2_CFL_ADAPT_PARAM_DOWN_XPATH, - SU2_CFL_ADAPT_PARAM_UP_XPATH, - SU2_CFL_MAX_XPATH, - SU2_CFL_MIN_XPATH, - SU2_CONTROL_SURF_XPATH, - SU2_DAMPING_DER_XPATH, - SU2_DEF_MESH_XPATH, - SU2_FIXED_CL_XPATH, - SU2_MAX_ITER_XPATH, - SU2_MG_LEVEL_XPATH, - SU2_ROTATION_RATE_XPATH, - SU2_TARGET_CL_XPATH, - SU2MESH_XPATH, - ENGINE_TYPE_XPATH, - ENGINE_BC, -) -from ceasiompy.utils.configfiles import ConfigFile -from cpacspy.cpacsfunctions import ( - create_branch, - get_string_vector, - get_value, - get_value_or_default, -) -from cpacspy.cpacspy import CPACS - -log = get_logger() - -MODULE_DIR = Path(__file__).parent - - -# ================================================================================================= -# CLASSES -# ================================================================================================= - - -# ================================================================================================= -# FUNCTIONS -# ================================================================================================= - - -def add_damping_derivatives(cfg, wkdir, case_dir_name, rotation_rate): - """Add damping derivatives parameter to the config file and save them to their respective - directory. - - Args: - cfg (ConfigFile): ConfigFile object. - wkdir (Path): Path to the working directory - case_dir_name (str): Name of the case directory - rotation_rate (float): Rotation rate that will be impose to calculate damping derivatives - """ - - cfg["GRID_MOVEMENT"] = "ROTATING_FRAME" - - cfg["ROTATION_RATE"] = f"{rotation_rate} 0.0 0.0" - case_dir = Path(wkdir, f"{case_dir_name}_dp") - case_dir.mkdir() - cfg.write_file(Path(case_dir, CONFIG_CFD_NAME), overwrite=True) - - cfg["ROTATION_RATE"] = f"0.0 {rotation_rate} 0.0" - case_dir = Path(wkdir, f"{case_dir_name}_dq") - case_dir.mkdir() - cfg.write_file(Path(case_dir, CONFIG_CFD_NAME), overwrite=True) - - cfg["ROTATION_RATE"] = f"0.0 0.0 {rotation_rate}" - case_dir = Path(wkdir, f"{case_dir_name}_dr") - case_dir.mkdir() - cfg.write_file(Path(case_dir, CONFIG_CFD_NAME), overwrite=True) - - log.info("Damping derivatives cases directories has been created.") - - -def add_actuator_disk(cfg, cpacs, case_dir_path, actuator_disk_file, mesh_markers, alt, mach): - """Add actuator disk parameter to the config file. - - Args: - cfg (ConfigFile): ConfigFile object. - cpacs (CPACS): CPACS object from cpacspy library - case_dir_path (Path): Path object to the current case directory - actuator_disk_file (Path): Path to the actuator disk file - mesh_markers (dict): Dictionary containing all the mesh markers - - Returns: - cfg (ConfigFile): ConfigFile object. - """ - - ad_inlet_marker = sorted(mesh_markers["actuator_disk_inlet"]) - ad_outlet_marker = sorted(mesh_markers["actuator_disk_outlet"]) - - if "None" in ad_inlet_marker or "None" in ad_outlet_marker: - return - - if len(ad_inlet_marker) != len(ad_outlet_marker): - raise ValueError( - "The number of inlet and outlet markers of the actuator disk must be the same." - ) - - # Get rotorcraft configuration (propeller) - try: - rotorcraft_config = cpacs.rotorcraft.configuration - except AttributeError: - raise ValueError( - "The actuator disk is defined but no rotorcraft configuration is defined in " - "the CPACS file." - ) - - rotor_uid_pos = {} - for i in range(1, rotorcraft_config.get_rotor_count() + 1): - rotor = rotorcraft_config.get_rotor(i) - - rotor_uid = rotor.get_uid() - pos_x = rotor.get_translation().x - pos_y = rotor.get_translation().y - pos_z = rotor.get_translation().z - radius = rotor.get_radius() - hub_radius = 0.0 # TODO: get correctly from CPACS - - rotor_xpath = cpacs.tixi.uIDGetXPath(rotor_uid) - - number_of_blades_xpath = ( - rotor_xpath + "/rotorHub/rotorBladeAttachments/rotorBladeAttachment/numberOfBlades" - ) - number_of_blades = get_value_or_default(cpacs.tixi, number_of_blades_xpath, 3) - - # TODO: this is the nominal speed, how to get a speed which correspond to each flight cond. - rotational_velocity_xpath = rotor_xpath + "/nominalRotationsPerMinute" - rotational_velocity = ( - get_value_or_default(cpacs.tixi, rotational_velocity_xpath, 3000) / 60.0 - ) - - rotor_uid_pos[rotor_uid] = ( - pos_x, - pos_y, - pos_z, - radius, - hub_radius, - number_of_blades, - rotational_velocity, - ) - - cfg["ACTDISK_DOUBLE_SURFACE"] = "YES" - cfg["ACTDISK_TYPE"] = "VARIABLE_LOAD" - cfg["ACTDISK_FILENAME"] = ACTUATOR_DISK_FILE_NAME - cfg["MGLEVEL"] = 0 # Calculation diverges if multigrid is used with a disk actuator - - actdisk_markers = [] - - f = open(actuator_disk_file, "w") - f = write_header(f) - - for maker_inlet, marker_outlet in zip(ad_inlet_marker, ad_outlet_marker): - inlet_uid = maker_inlet.split(ACTUATOR_DISK_INLET_SUFFIX)[0] - outlet_uid = marker_outlet.split(ACTUATOR_DISK_OUTLET_SUFFIX)[0] - - if inlet_uid != outlet_uid: - raise ValueError("The inlet and outlet markers of the actuator disk must be the same.") - - if "_mirrored" in maker_inlet: - uid = inlet_uid.split("_mirrored")[0] - sym = -1 - else: - uid = inlet_uid - sym = 1 - - center = [] - center.append(round(rotor_uid_pos[uid][0], 5)) - center.append(round(sym * rotor_uid_pos[uid][1], 5)) - center.append(round(rotor_uid_pos[uid][2], 5)) - - axis = (1.0, 0.0, 0.0) # TODO: get the axis by applying the rotation matrix - radius = round(rotor_uid_pos[uid][3], 5) - hub_radius = round(rotor_uid_pos[uid][4], 5) - number_of_blades = round(rotor_uid_pos[uid][5], 5) - rotational_velocity = round(rotor_uid_pos[uid][6], 5) - - actdisk_markers.append(maker_inlet) - actdisk_markers.append(marker_outlet) - actdisk_markers.append(str(center[0])) - actdisk_markers.append(str(center[1])) - actdisk_markers.append(str(center[2])) - actdisk_markers.append(str(center[0])) - actdisk_markers.append(str(center[1])) - actdisk_markers.append(str(center[2])) - - Atm = Atmosphere(alt) - free_stream_velocity = mach * Atm.speed_of_sound[0] - - radial_stations = get_radial_stations(radius, hub_radius) - advanced_ratio = get_advanced_ratio(free_stream_velocity, rotational_velocity, radius) - - prandtl_correction_xpath = PROP_XPATH + "/propeller/blade/loss" - prandtl_correction = get_value_or_default(cpacs.tixi, prandtl_correction_xpath, True) - - thrust_xpath = PROP_XPATH + "/propeller/thrust" - thrust = get_value_or_default(cpacs.tixi, thrust_xpath, 3000) - total_thrust_coefficient = float( - thrust / (Atm.density * rotational_velocity**2 * (radius * 2) ** 4) - ) - - ( - radial_thrust_coefs, - radial_power_coefs, - non_dimensional_radius, - optimal_axial_interference_factor, - optimal_rotational_interference_factor, - prandtl_correction_values, - ) = thrust_calculator( - radial_stations, - total_thrust_coefficient, - radius, - free_stream_velocity, - prandtl_correction, - number_of_blades, - rotational_velocity, - ) - - save_plots( - radial_stations, - radial_thrust_coefs, - radial_power_coefs, - non_dimensional_radius, - optimal_axial_interference_factor, - optimal_rotational_interference_factor, - prandtl_correction_values, - case_dir_path, - inlet_uid, - ) - - f = write_actuator_disk_data( - file=f, - inlet_marker=maker_inlet, - outlet_marker=marker_outlet, - center=center, - axis=axis, - radius=radius, - advanced_ratio=advanced_ratio, - radial_stations=radial_stations, - radial_thrust_coefs=radial_thrust_coefs, - radial_power_coefs=radial_power_coefs, - ) - - cfg["MARKER_ACTDISK"] = " (" + ", ".join(actdisk_markers) + " )" - - f.close() - - -def generate_su2_cfd_config(cpacs_path, cpacs_out_path, wkdir): - """Function to create SU2 config file. - - Function 'generate_su2_cfd_config' reads data in the CPACS file and generate configuration - files for one or multiple flight conditions (alt,mach,aoa,aos) - - Source: - * SU2 config template: https://github.com/su2code/SU2/blob/master/config_template.cfg - - Args: - cpacs_path (Path): Path to CPACS file - cpacs_out_path (Path):Path to CPACS output file - wkdir (Path): Path to the working directory - - """ - - cpacs = CPACS(cpacs_path) - - su2_mesh = Path(get_value(cpacs.tixi, SU2MESH_XPATH)) - if not su2_mesh.is_file(): - raise FileNotFoundError(f"SU2 mesh file {su2_mesh} not found") - - mesh_markers = get_mesh_markers(su2_mesh) - - create_branch(cpacs.tixi, SU2_BC_WALL_XPATH) - bc_wall_str = ";".join(mesh_markers["wall"]) - cpacs.tixi.updateTextElement(SU2_BC_WALL_XPATH, bc_wall_str) - - create_branch(cpacs.tixi, SU2_BC_FARFIELD_XPATH) - bc_farfiled_str = ";".join(mesh_markers["engine_intake"] + mesh_markers["engine_exhaust"]) - cpacs.tixi.updateTextElement(SU2_BC_FARFIELD_XPATH, bc_farfiled_str) - - create_branch(cpacs.tixi, SU2_ACTUATOR_DISK_XPATH) - bc_actuator_disk_str = ";".join( - mesh_markers["actuator_disk_inlet"] + mesh_markers["actuator_disk_outlet"] - ) - cpacs.tixi.updateTextElement(SU2_ACTUATOR_DISK_XPATH, bc_actuator_disk_str) - - fixed_cl = get_value_or_default(cpacs.tixi, SU2_FIXED_CL_XPATH, "NO") - target_cl = get_value_or_default(cpacs.tixi, SU2_TARGET_CL_XPATH, 1.0) - - if fixed_cl == "NO": - # Get the first aeroMap as default one or create automatically one - aeromap_list = cpacs.get_aeromap_uid_list() - - if aeromap_list: - aeromap_default = aeromap_list[0] - log.info(f"The aeromap is {aeromap_default}") - - aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, aeromap_default) - - activate_aeromap = cpacs.get_aeromap_by_uid(aeromap_uid) - alt_list = activate_aeromap.get("altitude").tolist() - mach_list = activate_aeromap.get("machNumber").tolist() - aoa_list = activate_aeromap.get("angleOfAttack").tolist() - aos_list = activate_aeromap.get("angleOfSideslip").tolist() - - else: - default_aeromap = cpacs.create_aeromap("DefaultAeromap") - default_aeromap.description = "AeroMap created automatically" - - mach = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseMach", 0.3) - alt = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseAltitude", 10000) - - default_aeromap.add_row(alt=alt, mach=mach, aos=0.0, aoa=0.0) - default_aeromap.save() - - alt_list = [alt] - mach_list = [mach] - aoa_list = [0.0] - aos_list = [0.0] - - aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, "DefaultAeromap") - log.info(f"{aeromap_uid} has been created") - - else: # if fixed_cl == 'YES': - log.info("Configuration file for fixed CL calculation will be created.") - - fixed_cl_aeromap = cpacs.create_aeromap("aeroMap_fixedCL_SU2") - fixed_cl_aeromap.description = f"AeroMap created for SU2 fixed CL value of {target_cl}" - - mach = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseMach", 0.78) - alt = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseAltitude", 12000) - - fixed_cl_aeromap.add_row(alt=alt, mach=mach, aos=0.0, aoa=0.0) - fixed_cl_aeromap.save() - - alt_list = [alt] - mach_list = [mach] - aoa_list = [0.0] - aos_list = [0.0] - - cfg = ConfigFile(get_su2_config_template()) - - # Check if symmetry plane is defined (Default: False) - sym_factor = 1.0 - if get_value_or_default(cpacs.tixi, GMSH_SYMMETRY_XPATH, False): - log.info("Symmetry plane is defined. The reference area will be divided by 2.") - sym_factor = 2.0 - - # General parameters - cfg["RESTART_SOL"] = "NO" - cfg["REF_LENGTH"] = cpacs.aircraft.ref_length - cfg["REF_AREA"] = cpacs.aircraft.ref_area / sym_factor - cfg["REF_ORIGIN_MOMENT_X"] = cpacs.aircraft.ref_point_x - cfg["REF_ORIGIN_MOMENT_Y"] = cpacs.aircraft.ref_point_y - cfg["REF_ORIGIN_MOMENT_Z"] = cpacs.aircraft.ref_point_z - - # Settings - - cfl_down = get_value_or_default(cpacs.tixi, SU2_CFL_ADAPT_PARAM_DOWN_XPATH, 0.5) - cfl_up = get_value_or_default(cpacs.tixi, SU2_CFL_ADAPT_PARAM_UP_XPATH, 1.5) - cfl_min = get_value_or_default(cpacs.tixi, SU2_CFL_MIN_XPATH, 0.5) - cfl_max = get_value_or_default(cpacs.tixi, SU2_CFL_MAX_XPATH, 100) - - if get_value_or_default(cpacs.tixi, SU2_CFL_ADAPT_XPATH, True): - cfg["CFL_ADAPT"] = "YES" - - else: - cfg["CFL_ADAPT"] = "NO" - - cfg["INNER_ITER"] = int(get_value_or_default(cpacs.tixi, SU2_MAX_ITER_XPATH, 200)) - cfg["CFL_NUMBER"] = get_value_or_default(cpacs.tixi, SU2_CFL_NB_XPATH, 1.0) - cfg["CFL_ADAPT_PARAM"] = f"( {cfl_down}, {cfl_up}, {cfl_min}, {cfl_max} )" - cfg["MGLEVEL"] = int(get_value_or_default(cpacs.tixi, SU2_MG_LEVEL_XPATH, 3)) - - # Fixed CL mode (AOA will not be taken into account) - cfg["FIXED_CL_MODE"] = fixed_cl - cfg["TARGET_CL"] = target_cl - cfg["DCL_DALPHA"] = "0.1" - cfg["UPDATE_AOA_ITER_LIMIT"] = "50" - cfg["ITER_DCL_DALPHA"] = "80" - - # Mesh Marker - bc_wall_str = f"( {','.join(mesh_markers['wall'])} )" - - # ThermoData config file adding for engine BC - - if cpacs.tixi.checkElement(ENGINE_TYPE_XPATH): - log.info("adding engine BC to the SU2 config file") - engine_type = get_value(cpacs.tixi, ENGINE_TYPE_XPATH) - log.info(f"engine type {engine_type}") - alt = alt_list[0] - Atm = Atmosphere(alt) - tot_temp_in = Atm.temperature[0] - tot_pressure_in = Atm.pressure[0] - print(tot_pressure_in) - - if engine_type == 0: - log.info("turbojet boundary conditions") - tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet") - tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet") - cfg["INLET_TYPE"] = "TOTAL_CONDITIONS" - cfg["MARKER_INLET"] = ( - f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, " - f"OUTLET_ENGINE,{tot_temp_out},{tot_pressure_out}, {1},{0},{0})" - ) - - elif engine_type == 1: - log.info("turbofan boundary conditions") - tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet") - tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet") - cfg["INLET_TYPE"] = "TOTAL_CONDITIONS" - cfg["MARKER_INLET"] = ( - f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, " - f"OUTLET_ENGINE,{tot_temp_out},{tot_pressure_out}, {1},{0},{0})" - ) - - cfg["MARKER_EULER"] = bc_wall_str - farfield_bc = ( - mesh_markers["farfield"] + mesh_markers["engine_intake"] + mesh_markers["engine_exhaust"] - ) - cfg["MARKER_FAR"] = f"( {','.join(farfield_bc)} )" - cfg["MARKER_SYM"] = f"( {','.join(mesh_markers['symmetry'])} )" - cfg["MARKER_PLOTTING"] = bc_wall_str - cfg["MARKER_MONITORING"] = bc_wall_str - cfg["MARKER_MOVING"] = "( NONE )" # TODO: when do we need to define MARKER_MOVING? - cfg["DV_MARKER"] = bc_wall_str - - # Output - cfg["WRT_FORCES_BREAKDOWN"] = "YES" - cfg["BREAKDOWN_FILENAME"] = SU2_FORCES_BREAKDOWN_NAME - cfg["OUTPUT_FILES"] = "(RESTART, PARAVIEW, SURFACE_PARAVIEW)" - cfg["HISTORY_OUTPUT"] = "(INNER_ITER, RMS_RES, AERO_COEFF)" - - # Parameters which will vary for the different cases (alt,mach,aoa,aos) - for case_nb in range(len(alt_list)): - cfg["MESH_FILENAME"] = str(su2_mesh) - - alt = alt_list[case_nb] - mach = mach_list[case_nb] - aoa = aoa_list[case_nb] - aos = aos_list[case_nb] - - Atm = Atmosphere(alt) - - cfg["MACH_NUMBER"] = mach - cfg["AOA"] = aoa - cfg["SIDESLIP_ANGLE"] = aos - cfg["FREESTREAM_PRESSURE"] = Atm.pressure[0] - cfg["FREESTREAM_TEMPERATURE"] = Atm.temperature[0] - cfg["ROTATION_RATE"] = "0.0 0.0 0.0" - - case_dir_name = ( - f"Case{str(case_nb).zfill(2)}_alt{alt}_mach{round(mach, 2)}" - f"_aoa{round(aoa, 1)}_aos{round(aos, 1)}" - ) - - case_dir_path = Path(wkdir, case_dir_name) - if not case_dir_path.exists(): - case_dir_path.mkdir() - - if get_value_or_default(cpacs.tixi, SU2_ACTUATOR_DISK_XPATH, False): - actuator_disk_file = Path(wkdir, ACTUATOR_DISK_FILE_NAME) - add_actuator_disk( - cfg, cpacs, case_dir_path, actuator_disk_file, mesh_markers, alt, mach - ) - - if actuator_disk_file.exists(): - case_actuator_disk_file = Path(case_dir_path, ACTUATOR_DISK_FILE_NAME) - copyfile(actuator_disk_file, case_actuator_disk_file) - - bc_wall_str = ( - "(" - + ",".join( - mesh_markers["wall"] - + mesh_markers["actuator_disk_inlet"] - + mesh_markers["actuator_disk_outlet"] - ) - + ")" - ) - - cfg["MARKER_PLOTTING"] = bc_wall_str - cfg["MARKER_MONITORING"] = bc_wall_str - - config_output_path = Path(case_dir_path, CONFIG_CFD_NAME) - cfg.write_file(config_output_path, overwrite=True) - - if get_value_or_default(cpacs.tixi, SU2_DAMPING_DER_XPATH, False): - rotation_rate = get_value_or_default(cpacs.tixi, SU2_ROTATION_RATE_XPATH, 1.0) - add_damping_derivatives(cfg, wkdir, case_dir_name, rotation_rate) - - # Control surfaces deflections (TODO: create a subfunctions) - if get_value_or_default(cpacs.tixi, SU2_CONTROL_SURF_XPATH, False): - # Get deformed mesh list - if cpacs.tixi.checkElement(SU2_DEF_MESH_XPATH): - su2_def_mesh_list = get_string_vector(cpacs.tixi, SU2_DEF_MESH_XPATH) - else: - log.warning("No SU2 deformed mesh has been found!") - su2_def_mesh_list = [] - - for su2_def_mesh in su2_def_mesh_list: - mesh_path = Path(wkdir, "MESH", su2_def_mesh) - config_dir_path = Path(wkdir, case_dir_name + "_" + su2_def_mesh.split(".")[0]) - config_dir_path.mkdir() - cfg["MESH_FILENAME"] = mesh_path - - cfg.write_file(Path(config_dir_path, CONFIG_CFD_NAME), overwrite=True) - - cpacs.save_cpacs(cpacs_out_path, overwrite=True) - - -# ================================================================================================= -# MAIN -# ================================================================================================= - -if __name__ == "__main__": - log.info("Nothing to execute!") diff --git a/ceasiompy/ThermoData/__specs__.py b/ceasiompy/ThermoData/__specs__.py index 86c68fb89..09a5cfa02 100644 --- a/ceasiompy/ThermoData/__specs__.py +++ b/ceasiompy/ThermoData/__specs__.py @@ -1,8 +1,6 @@ from pathlib import Path from ceasiompy.utils.moduleinterfaces import CPACSInOut from ceasiompy.utils.commonxpath import ( - REF_XPATH, - CLCALC_XPATH, SU2_FIXED_CL_XPATH, SU2_TARGET_CL_XPATH, ENGINE_TYPE_XPATH, diff --git a/ceasiompy/ThermoData/func/run_func.py b/ceasiompy/ThermoData/func/run_func.py index 45bf617bf..0a5aea6b4 100644 --- a/ceasiompy/ThermoData/func/run_func.py +++ b/ceasiompy/ThermoData/func/run_func.py @@ -78,7 +78,7 @@ def thermo_data_run(cpacs_path, cpacs_out_path, wkdir): T_tot_out_array = [] P_tot_out_array = [] - for case_nb in range(len(alt_list)): + for case_nb, alt in enumerate(alt_list): alt = alt_list[case_nb] MN = mach_list[case_nb] case_dir_name = f"Case{str(case_nb).zfill(2)}_alt{alt}_mach{round(MN, 2)}" diff --git a/ceasiompy/ThermoData/func/turbofan_func.py b/ceasiompy/ThermoData/func/turbofan_func.py index 9a24727dc..90fc36fc4 100644 --- a/ceasiompy/ThermoData/func/turbofan_func.py +++ b/ceasiompy/ThermoData/func/turbofan_func.py @@ -291,8 +291,6 @@ def viewer(prob, pt, file=sys.stdout): fs_full_names = [f"{pt}.{fs}" for fs in fs_names] pyc.print_flow_station(prob, fs_full_names, file=file) - import time - prob = om.Problem() prob.model = MPhbtf() diff --git a/ceasiompy/ThermoData/func/turbojet_func.py b/ceasiompy/ThermoData/func/turbojet_func.py index d122f96fb..630cfd343 100644 --- a/ceasiompy/ThermoData/func/turbojet_func.py +++ b/ceasiompy/ThermoData/func/turbojet_func.py @@ -126,8 +126,6 @@ def setup(self): super().setup() - import time - # defining the optimization problem prob = om.Problem() diff --git a/ceasiompy/ThermoData/thermodata.py b/ceasiompy/ThermoData/thermodata.py index 5c624caf6..613cab2e6 100644 --- a/ceasiompy/ThermoData/thermodata.py +++ b/ceasiompy/ThermoData/thermodata.py @@ -27,14 +27,6 @@ get_toolinput_file_path, get_tooloutput_file_path, ) -from ceasiompy.utils.commonxpath import ( - REF_XPATH, - CLCALC_XPATH, - ENGINE_TYPE_XPATH, -) -from ceasiompy.utils.commonnames import ( - ENGINE_BOUNDARY_CONDITIONS, -) from ceasiompy.utils.ceasiompyutils import get_results_directory From 59c640d17e5f1959b350190d8e122fd3d8d3663a Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 14:48:47 +0100 Subject: [PATCH 14/55] solving Codacy issues --- ceasiompy/ThermoData/func/turbofan_func.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ceasiompy/ThermoData/func/turbofan_func.py b/ceasiompy/ThermoData/func/turbofan_func.py index 90fc36fc4..5973e42b0 100644 --- a/ceasiompy/ThermoData/func/turbofan_func.py +++ b/ceasiompy/ThermoData/func/turbofan_func.py @@ -328,11 +328,13 @@ def viewer(prob, pt, file=sys.stdout): viewer_file = open("hbtf_des_view.out", "w") - for PC in [1, 0.9]: - viewer(prob, "DESIGN", file=viewer_file) - prob.run_model() + # for PC in [1, 0.9]: + # viewer(prob, "DESIGN", file=viewer_file) + # prob.run_model() + # print() - print() + viewer(prob, "DESIGN", file=viewer_file) + prob.run_model() # Obtaining variables names From 46472dc558c38f4aa0376d20ec299632bdc5c6c9 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 7 Feb 2024 16:40:22 +0100 Subject: [PATCH 15/55] removing complexity from the code --- ceasiompy/ThermoData/func/run_func.py | 160 -------------------------- ceasiompy/ThermoData/thermodata.py | 136 +++++++++++++++++++++- 2 files changed, 134 insertions(+), 162 deletions(-) delete mode 100644 ceasiompy/ThermoData/func/run_func.py diff --git a/ceasiompy/ThermoData/func/run_func.py b/ceasiompy/ThermoData/func/run_func.py deleted file mode 100644 index 0a5aea6b4..000000000 --- a/ceasiompy/ThermoData/func/run_func.py +++ /dev/null @@ -1,160 +0,0 @@ -""" -CEASIOMpy: Conceptual Aircraft Design Software - -Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland - -Function to run the PyCycle code in order to obtain turbojet and turbofan boundary conditions -at given altitude, mach number and net force = thrust of the engine - -Python version: >=3.8 - -| Author: Giacomo Benedetti and Francesco Marcucci -| Creation: 2023-12-12 - -""" - -from pathlib import Path - -from ceasiompy.ThermoData.func.turbofan_func import ( - turbofan_analysis, - write_hbtf_file, -) - -from ceasiompy.ThermoData.func.turbojet_func import ( - turbojet_analysis, - write_turbojet_file, -) - -from ceasiompy.utils.ceasiomlogger import get_logger - -from ceasiompy.utils.commonxpath import ( - ENGINE_TYPE_XPATH, - ENGINE_BC, - RANGE_XPATH, - SU2_AEROMAP_UID_XPATH, -) -from ceasiompy.utils.commonnames import ( - ENGINE_BOUNDARY_CONDITIONS, -) -from cpacspy.cpacsfunctions import ( - get_value_or_default, - add_float_vector, - create_branch, -) -from cpacspy.cpacspy import CPACS - -log = get_logger() - -MODULE_DIR = Path(__file__).parent -MODULE_NAME = MODULE_DIR.name - - -def thermo_data_run(cpacs_path, cpacs_out_path, wkdir): - """Running the PyCycle code by choosing between turbojet or turbofan engine - - Args - cpacs_path (Path): Path to CPACS file - cpacs_out_path (Path):Path to CPACS output file - wkdir (str): Path to the working directory - """ - - if not wkdir.exists(): - raise OSError(f"The working directory : {wkdir} does not exit!") - - cpacs = CPACS(cpacs_path) - tixi = cpacs.tixi - - Fn = get_value_or_default(tixi, RANGE_XPATH + "/NetForce", 2000) - - aeromap_list = cpacs.get_aeromap_uid_list() - - if aeromap_list: - aeromap_default = aeromap_list[0] - log.info(f"The aeromap is {aeromap_default}") - aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, aeromap_default) - activate_aeromap = cpacs.get_aeromap_by_uid(aeromap_uid) - alt_list = activate_aeromap.get("altitude").tolist() - mach_list = activate_aeromap.get("machNumber").tolist() - T_tot_out_array = [] - P_tot_out_array = [] - - for case_nb, alt in enumerate(alt_list): - alt = alt_list[case_nb] - MN = mach_list[case_nb] - case_dir_name = f"Case{str(case_nb).zfill(2)}_alt{alt}_mach{round(MN, 2)}" - case_dir_path = Path(wkdir, case_dir_name) - - if not case_dir_path.exists(): - case_dir_path.mkdir() - - EngineBC = Path(case_dir_path, ENGINE_BOUNDARY_CONDITIONS) - - f = open(EngineBC, "w") - - engine_type = get_value_or_default(tixi, ENGINE_TYPE_XPATH, 0) - create_branch(cpacs.tixi, ENGINE_BC) - - if engine_type == 0: - ( - T_tot_out, - V_stat_out, - MN_out, - P_tot_out, - massflow_stat_out, - T_stat_out, - P_stat_out, - ) = turbojet_analysis(alt, MN, Fn) - - T_tot_out_array.append(T_tot_out) - P_tot_out_array.append(P_tot_out) - - f = write_turbojet_file( - file=f, - T_tot_out=T_tot_out, - V_stat_out=V_stat_out, - MN_out=MN_out, - P_tot_out=P_tot_out, - massflow_stat_out=massflow_stat_out, - T_stat_out=T_stat_out, - P_stat_out=P_stat_out, - ) - - else: - - ( - T_tot_out_byp, - V_stat_out_byp, - MN_out_byp, - P_tot_out_byp, - massflow_stat_out_byp, - T_stat_out_byp, - T_tot_out_core, - V_stat_out_core, - MN_out_core, - P_tot_out_core, - massflow_stat_out_core, - T_stat_out_core, - ) = turbofan_analysis(alt, MN, Fn) - - T_tot_out_array.append(T_tot_out_core) - P_tot_out_array.append(P_tot_out_core) - - f = write_hbtf_file( - file=f, - T_tot_out_byp=T_tot_out_byp, - V_stat_out_byp=V_stat_out_byp, - MN_out_byp=MN_out_byp, - P_tot_out_byp=P_tot_out_byp, - massflow_stat_out_byp=massflow_stat_out_byp, - T_stat_out_byp=T_stat_out_byp, - T_tot_out_core=T_tot_out_core, - V_stat_out_core=V_stat_out_core, - MN_out_core=MN_out_core, - P_tot_out_core=P_tot_out_core, - massflow_stat_out_core=massflow_stat_out_core, - T_stat_out_core=T_stat_out_core, - ) - add_float_vector(tixi, ENGINE_BC + "/temperatureOutlet", T_tot_out_array) - add_float_vector(tixi, ENGINE_BC + "/pressureOutlet", P_tot_out_array) - - cpacs.save_cpacs(cpacs_out_path, overwrite=True) diff --git a/ceasiompy/ThermoData/thermodata.py b/ceasiompy/ThermoData/thermodata.py index 613cab2e6..32eff3efc 100644 --- a/ceasiompy/ThermoData/thermodata.py +++ b/ceasiompy/ThermoData/thermodata.py @@ -17,8 +17,14 @@ import shutil from pathlib import Path -from ceasiompy.ThermoData.func.run_func import ( - thermo_data_run, +from ceasiompy.ThermoData.func.turbofan_func import ( + turbofan_analysis, + write_hbtf_file, +) + +from ceasiompy.ThermoData.func.turbojet_func import ( + turbojet_analysis, + write_turbojet_file, ) from ceasiompy.utils.ceasiomlogger import get_logger @@ -28,6 +34,21 @@ get_tooloutput_file_path, ) from ceasiompy.utils.ceasiompyutils import get_results_directory +from ceasiompy.utils.commonxpath import ( + ENGINE_TYPE_XPATH, + ENGINE_BC, + RANGE_XPATH, + SU2_AEROMAP_UID_XPATH, +) +from ceasiompy.utils.commonnames import ( + ENGINE_BOUNDARY_CONDITIONS, +) +from cpacspy.cpacsfunctions import ( + get_value_or_default, + add_float_vector, + create_branch, +) +from cpacspy.cpacspy import CPACS log = get_logger() @@ -46,6 +67,117 @@ # ================================================================================================= +def thermo_data_run(cpacs_path, cpacs_out_path, wkdir): + """Running the PyCycle code by choosing between turbojet or turbofan engine + + Args + cpacs_path (Path): Path to CPACS file + cpacs_out_path (Path):Path to CPACS output file + wkdir (str): Path to the working directory + """ + + if not wkdir.exists(): + raise OSError(f"The working directory : {wkdir} does not exit!") + + cpacs = CPACS(cpacs_path) + tixi = cpacs.tixi + + Fn = get_value_or_default(tixi, RANGE_XPATH + "/NetForce", 2000) + + aeromap_list = cpacs.get_aeromap_uid_list() + + if aeromap_list: + aeromap_default = aeromap_list[0] + log.info(f"The aeromap is {aeromap_default}") + aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, aeromap_default) + activate_aeromap = cpacs.get_aeromap_by_uid(aeromap_uid) + alt_list = activate_aeromap.get("altitude").tolist() + mach_list = activate_aeromap.get("machNumber").tolist() + T_tot_out_array = [] + P_tot_out_array = [] + + for case_nb, alt in enumerate(alt_list): + alt = alt_list[case_nb] + MN = mach_list[case_nb] + case_dir_name = f"Case{str(case_nb).zfill(2)}_alt{alt}_mach{round(MN, 2)}" + case_dir_path = Path(wkdir, case_dir_name) + + if not case_dir_path.exists(): + case_dir_path.mkdir() + + EngineBC = Path(case_dir_path, ENGINE_BOUNDARY_CONDITIONS) + + f = open(EngineBC, "w") + + engine_type = get_value_or_default(tixi, ENGINE_TYPE_XPATH, 0) + create_branch(cpacs.tixi, ENGINE_BC) + + if engine_type == 0: + ( + T_tot_out, + V_stat_out, + MN_out, + P_tot_out, + massflow_stat_out, + T_stat_out, + P_stat_out, + ) = turbojet_analysis(alt, MN, Fn) + + T_tot_out_array.append(T_tot_out) + P_tot_out_array.append(P_tot_out) + + f = write_turbojet_file( + file=f, + T_tot_out=T_tot_out, + V_stat_out=V_stat_out, + MN_out=MN_out, + P_tot_out=P_tot_out, + massflow_stat_out=massflow_stat_out, + T_stat_out=T_stat_out, + P_stat_out=P_stat_out, + ) + + else: + + ( + T_tot_out_byp, + V_stat_out_byp, + MN_out_byp, + P_tot_out_byp, + massflow_stat_out_byp, + T_stat_out_byp, + T_tot_out_core, + V_stat_out_core, + MN_out_core, + P_tot_out_core, + massflow_stat_out_core, + T_stat_out_core, + ) = turbofan_analysis(alt, MN, Fn) + + T_tot_out_array.append(T_tot_out_core) + P_tot_out_array.append(P_tot_out_core) + + f = write_hbtf_file( + file=f, + T_tot_out_byp=T_tot_out_byp, + V_stat_out_byp=V_stat_out_byp, + MN_out_byp=MN_out_byp, + P_tot_out_byp=P_tot_out_byp, + massflow_stat_out_byp=massflow_stat_out_byp, + T_stat_out_byp=T_stat_out_byp, + T_tot_out_core=T_tot_out_core, + V_stat_out_core=V_stat_out_core, + MN_out_core=MN_out_core, + P_tot_out_core=P_tot_out_core, + massflow_stat_out_core=massflow_stat_out_core, + T_stat_out_core=T_stat_out_core, + ) + add_float_vector(tixi, ENGINE_BC + "/temperatureOutlet", T_tot_out_array) + add_float_vector(tixi, ENGINE_BC + "/pressureOutlet", P_tot_out_array) + + cpacs.save_cpacs(cpacs_out_path, overwrite=True) + + # ================================================================================================= # MAIN # ================================================================================================= From 1b96559d6fe46219411acbb1f4f1d29a11855609 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 8 Feb 2024 10:05:04 +0100 Subject: [PATCH 16/55] start adding rans cfg file --- .../SU2Run/files/config_template_rans.cfg | 198 ++++++ ceasiompy/SU2Run/func/su2configrans.py | 564 ++++++++++++++++++ ceasiompy/SU2Run/func/su2utils.py | 8 + ceasiompy/SU2Run/su2run.py | 3 +- 4 files changed, 772 insertions(+), 1 deletion(-) create mode 100644 ceasiompy/SU2Run/files/config_template_rans.cfg create mode 100644 ceasiompy/SU2Run/func/su2configrans.py diff --git a/ceasiompy/SU2Run/files/config_template_rans.cfg b/ceasiompy/SU2Run/files/config_template_rans.cfg new file mode 100644 index 000000000..3da3b4d9e --- /dev/null +++ b/ceasiompy/SU2Run/files/config_template_rans.cfg @@ -0,0 +1,198 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% % +% SU2 configuration file % +% Case description: VKI turbine % +% Author: Francisco Palacios, Thomas D. Economon % +% Institution: Stanford University % +% Date: Feb 18th, 2013 % +% File Version 8.0.0 "Harrier" % +% % +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +% ------------- DIRECT, ADJOINT, AND LINEARIZED PROBLEM DEFINITION ------------% +% +SOLVER= RANS +% +KIND_TURB_MODEL= SA +% +MATH_PROBLEM= DIRECT +% +RESTART_SOL= NO +% +SYSTEM_MEASUREMENTS= SI + +% -------------------- COMPRESSIBLE FREE-STREAM DEFINITION --------------------% +% +MACH_NUMBER= 0.3 +% +AOA= 0.0 +% +FREESTREAM_PRESSURE= 1.013E5 +% +FREESTREAM_OPTION= DENSITY_FS +% +FREESTREAM_DENSITY = 1.255 +% +FREESTREAM_TEMPERATURE =288.15 +% +REYNOLDS_NUMBER= 4E6 +% +REYNOLDS_LENGTH= 1.0 + +% ---------------------- REFERENCE VALUE DEFINITION ---------------------------% +% +REF_ORIGIN_MOMENT_X = 0.00 +% +REF_ORIGIN_MOMENT_Y = 0.00 +% +REF_ORIGIN_MOMENT_Z = 0.00 +% +REF_LENGTH= 45.0 +% +REF_AREA= 1 +% Compressible flow non-dimensionalization (DIMENSIONAL, FREESTREAM_PRESS_EQ_ONE, +% FREESTREAM_VEL_EQ_MACH, FREESTREAM_VEL_EQ_ONE) +REF_DIMENSIONALIZATION= FREESTREAM_PRESS_EQ_ONE +% +% ----------------------- BOUNDARY CONDITION DEFINITION -----------------------% +% +MARKER_HEATFLUX = (S4CreatedbyGmsh, 0.0) +% +MARKER_FAR= (S3Farfield) +% +%MARKER_SYM =() +% +% ------------------------ SURFACES IDENTIFICATION ----------------------------% +% +% Marker(s) of the surface to be plotted or designed +MARKER_PLOTTING= (S4CreatedbyGmsh) +% +% Marker(s) of the surface where the functional (Cd, Cl, etc.) will be evaluated +MARKER_MONITORING= (S4CreatedbyGmsh) + +% ------------- COMMON PARAMETERS DEFINING THE NUMERICAL METHOD ---------------% +% +NUM_METHOD_GRAD= GREEN_GAUSS +% +CFL_NUMBER= 20 +% +CFL_ADAPT= NO +% +CFL_ADAPT_PARAM= ( 0.5, 1, 1.0, 100.0 ) +% +ITER = 10000 + +% Objective function in gradient evaluation (DRAG, LIFT, SIDEFORCE, MOMENT_X, +% MOMENT_Y, MOMENT_Z, EFFICIENCY, BUFFET, +% EQUIVALENT_AREA, NEARFIELD_PRESSURE, +% FORCE_X, FORCE_Y, FORCE_Z, THRUST, +% TORQUE, TOTAL_HEATFLUX, +% MAXIMUM_HEATFLUX, INVERSE_DESIGN_PRESSURE, +% INVERSE_DESIGN_HEATFLUX, SURFACE_TOTAL_PRESSURE, +% SURFACE_MASSFLOW, SURFACE_STATIC_PRESSURE, SURFACE_MACH) +% For a weighted sum of objectives: separate by commas, add OBJECTIVE_WEIGHT and MARKER_MONITORING in matching order. +OBJECTIVE_FUNCTION= DRAG + +% ------------------------ LINEAR SOLVER DEFINITION ---------------------------% +% Linear solver or smoother for implicit formulations: +% BCGSTAB, FGMRES, RESTARTED_FGMRES, CONJUGATE_GRADIENT (self-adjoint problems only), SMOOTHER. +LINEAR_SOLVER= FGMRES +% +% Preconditioner of the Krylov linear solver or type of smoother (ILU, LU_SGS, LINELET, JACOBI) +LINEAR_SOLVER_PREC= ILU +% +% Minimum error of the linear solver for implicit formulations +LINEAR_SOLVER_ERROR= 1E-12 +% +% Max number of iterations of the linear solver for the implicit formulation +LINEAR_SOLVER_ITER= 3 +% +% Number of elements to apply the criteria +CONV_CAUCHY_ELEMS= 1000 +% +% Epsilon to control the series convergence +CONV_CAUCHY_EPS= 1E-10 +% -------------------- FLOW NUMERICAL METHOD DEFINITION -----------------------% +% Convective numerical method (JST, LAX-FRIEDRICH, CUSP, ROE, AUSM, AUSMPLUSUP, +% AUSMPLUSUP2, HLLC, TURKEL_PREC, MSW, FDS, SLAU, SLAU2) +CONV_NUM_METHOD_FLOW= JST +% +% Time discretization (RUNGE-KUTTA_EXPLICIT, EULER_IMPLICIT, EULER_EXPLICIT) +TIME_DISCRE_FLOW= EULER_IMPLICIT +% +% -------------------- TURBULENT NUMERICAL METHOD DEFINITION ------------------% +% Convective numerical method (SCALAR_UPWIND) +CONV_NUM_METHOD_TURB= SCALAR_UPWIND +% +% Monotonic Upwind Scheme for Conservation Laws (TVD) in the turbulence equations. +% Required for 2nd order upwind schemes (NO, YES) +MUSCL_TURB= NO +% +% Slope limiter (NONE, VENKATAKRISHNAN, VENKATAKRISHNAN_WANG, +% BARTH_JESPERSEN, VAN_ALBADA_EDGE) +SLOPE_LIMITER_TURB= VENKATAKRISHNAN +% +% Time discretization (EULER_IMPLICIT) +TIME_DISCRE_TURB= EULER_IMPLICIT +% -------------------------- MULTIGRID PARAMETERS -----------------------------% +% +% Multi-Grid Levels (0 = no multi-grid) +MGLEVEL = 3 +% +% Multi-grid cycle (V_CYCLE, W_CYCLE, FULLMG_CYCLE) +MGCYCLE = W_CYCLE +% +% Multi-Grid PreSmoothing Level +MG_PRE_SMOOTH = ( 1.0, 2.0, 3.0, 3.0 ) +% +% Multi-Grid PostSmoothing Level +MG_POST_SMOOTH = ( 0.0, 0.0, 0.0, 0.0 ) +% +% Jacobi implicit smoothing of the correction +MG_CORRECTION_SMOOTH = ( 0.0, 0.0, 0.0, 0.0 ) +% +% Damping factor for the residual restriction +MG_DAMP_RESTRICTION = 0.9 +% +% Damping factor for the correction prolongation +MG_DAMP_PROLONGATION = 0.9 +% --------------------------- CONVERGENCE PARAMETERS --------------------------% +% +% Min value of the residual (log10 of the residual) +CONV_RESIDUAL_MINVAL= -12 +% +% Start convergence criteria at iteration number +CONV_STARTITER= 10 +% + +% ------------------------- INPUT/OUTPUT INFORMATION --------------------------% +% +MESH_FILENAME= labair_penta.cgns +% +MESH_FORMAT= CGNS +% +MESH_OUT_FILENAME= mesh_out.su2 +% +SOLUTION_FILENAME= solution_flow.dat +% +HISTORY_OUTPUT = (INNER_ITER, RMS_RES, AERO_COEFF) +% +TABULAR_FORMAT= CSV +% +CONV_FILENAME= history +% +RESTART_FILENAME= restart_flow.dat +% +RESTART_ADJ_FILENAME= restart_adj.dat +% +VOLUME_FILENAME= flow +% +SURFACE_FILENAME= surface_flow_mesh +% +OUTPUT_WRT_FREQ= 100 +% +BREAKDOWN_FILENAME = forces_breakdown_def.dat +% +WRT_FORCES_BREAKDOWN = YES +% +SCREEN_OUTPUT= (INNER_ITER, RMS_DENSITY, RMS_ENERGY, LIFT, DRAG) \ No newline at end of file diff --git a/ceasiompy/SU2Run/func/su2configrans.py b/ceasiompy/SU2Run/func/su2configrans.py new file mode 100644 index 000000000..52f15ea22 --- /dev/null +++ b/ceasiompy/SU2Run/func/su2configrans.py @@ -0,0 +1,564 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Function generate or modify SU2 configuration files + +Python version: >=3.8 + +| Author: Aidan Jungo +| Creation: 2020-02-24 + +TODO: + + * add and test control surface functions + +""" + +# ================================================================================================= +# IMPORTS +# ================================================================================================= + +from pathlib import Path +from shutil import copyfile + +from ambiance import Atmosphere +from ceasiompy.SU2Run.func.su2actuatordiskfile import ( + get_advanced_ratio, + get_radial_stations, + save_plots, + thrust_calculator, + write_actuator_disk_data, + write_header, +) +from ceasiompy.SU2Run.func.su2utils import get_mesh_markers, get_cgns_config_template +from ceasiompy.utils.ceasiomlogger import get_logger +from ceasiompy.utils.commonnames import ( + ACTUATOR_DISK_FILE_NAME, + ACTUATOR_DISK_INLET_SUFFIX, + ACTUATOR_DISK_OUTLET_SUFFIX, + CONFIG_CFD_NAME, + SU2_FORCES_BREAKDOWN_NAME, +) +from ceasiompy.utils.commonxpath import ( + GMSH_SYMMETRY_XPATH, + PROP_XPATH, + RANGE_XPATH, + SU2_ACTUATOR_DISK_XPATH, + SU2_AEROMAP_UID_XPATH, + SU2_BC_FARFIELD_XPATH, + SU2_BC_WALL_XPATH, + SU2_CFL_NB_XPATH, + SU2_CFL_ADAPT_XPATH, + SU2_CFL_ADAPT_PARAM_DOWN_XPATH, + SU2_CFL_ADAPT_PARAM_UP_XPATH, + SU2_CFL_MAX_XPATH, + SU2_CFL_MIN_XPATH, + SU2_CONTROL_SURF_XPATH, + SU2_DAMPING_DER_XPATH, + SU2_DEF_MESH_XPATH, + SU2_FIXED_CL_XPATH, + SU2_MAX_ITER_XPATH, + SU2_MG_LEVEL_XPATH, + SU2_ROTATION_RATE_XPATH, + SU2_TARGET_CL_XPATH, + SU2MESH_XPATH, + ENGINE_TYPE_XPATH, + ENGINE_BC, +) +from ceasiompy.utils.configfiles import ConfigFile +from cpacspy.cpacsfunctions import ( + create_branch, + get_string_vector, + get_value, + get_value_or_default, +) +from cpacspy.cpacspy import CPACS + +log = get_logger() + +MODULE_DIR = Path(__file__).parent + + +# ================================================================================================= +# CLASSES +# ================================================================================================= + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +def add_damping_derivatives(cfg, wkdir, case_dir_name, rotation_rate): + """Add damping derivatives parameter to the config file and save them to their respective + directory. + + Args: + cfg (ConfigFile): ConfigFile object. + wkdir (Path): Path to the working directory + case_dir_name (str): Name of the case directory + rotation_rate (float): Rotation rate that will be impose to calculate damping derivatives + """ + + cfg["GRID_MOVEMENT"] = "ROTATING_FRAME" + + cfg["ROTATION_RATE"] = f"{rotation_rate} 0.0 0.0" + case_dir = Path(wkdir, f"{case_dir_name}_dp") + case_dir.mkdir() + cfg.write_file(Path(case_dir, CONFIG_CFD_NAME), overwrite=True) + + cfg["ROTATION_RATE"] = f"0.0 {rotation_rate} 0.0" + case_dir = Path(wkdir, f"{case_dir_name}_dq") + case_dir.mkdir() + cfg.write_file(Path(case_dir, CONFIG_CFD_NAME), overwrite=True) + + cfg["ROTATION_RATE"] = f"0.0 0.0 {rotation_rate}" + case_dir = Path(wkdir, f"{case_dir_name}_dr") + case_dir.mkdir() + cfg.write_file(Path(case_dir, CONFIG_CFD_NAME), overwrite=True) + + log.info("Damping derivatives cases directories has been created.") + + +def add_actuator_disk(cfg, cpacs, case_dir_path, actuator_disk_file, mesh_markers, alt, mach): + """Add actuator disk parameter to the config file. + + Args: + cfg (ConfigFile): ConfigFile object. + cpacs (CPACS): CPACS object from cpacspy library + case_dir_path (Path): Path object to the current case directory + actuator_disk_file (Path): Path to the actuator disk file + mesh_markers (dict): Dictionary containing all the mesh markers + + Returns: + cfg (ConfigFile): ConfigFile object. + """ + + ad_inlet_marker = sorted(mesh_markers["actuator_disk_inlet"]) + ad_outlet_marker = sorted(mesh_markers["actuator_disk_outlet"]) + + if "None" in ad_inlet_marker or "None" in ad_outlet_marker: + return + + if len(ad_inlet_marker) != len(ad_outlet_marker): + raise ValueError( + "The number of inlet and outlet markers of the actuator disk must be the same." + ) + + # Get rotorcraft configuration (propeller) + try: + rotorcraft_config = cpacs.rotorcraft.configuration + except AttributeError: + raise ValueError( + "The actuator disk is defined but no rotorcraft configuration is defined in " + "the CPACS file." + ) + + rotor_uid_pos = {} + for i in range(1, rotorcraft_config.get_rotor_count() + 1): + rotor = rotorcraft_config.get_rotor(i) + + rotor_uid = rotor.get_uid() + pos_x = rotor.get_translation().x + pos_y = rotor.get_translation().y + pos_z = rotor.get_translation().z + radius = rotor.get_radius() + hub_radius = 0.0 # TODO: get correctly from CPACS + + rotor_xpath = cpacs.tixi.uIDGetXPath(rotor_uid) + + number_of_blades_xpath = ( + rotor_xpath + "/rotorHub/rotorBladeAttachments/rotorBladeAttachment/numberOfBlades" + ) + number_of_blades = get_value_or_default(cpacs.tixi, number_of_blades_xpath, 3) + + # TODO: this is the nominal speed, how to get a speed which correspond to each flight cond. + rotational_velocity_xpath = rotor_xpath + "/nominalRotationsPerMinute" + rotational_velocity = ( + get_value_or_default(cpacs.tixi, rotational_velocity_xpath, 3000) / 60.0 + ) + + rotor_uid_pos[rotor_uid] = ( + pos_x, + pos_y, + pos_z, + radius, + hub_radius, + number_of_blades, + rotational_velocity, + ) + + cfg["ACTDISK_DOUBLE_SURFACE"] = "YES" + cfg["ACTDISK_TYPE"] = "VARIABLE_LOAD" + cfg["ACTDISK_FILENAME"] = ACTUATOR_DISK_FILE_NAME + cfg["MGLEVEL"] = 0 # Calculation diverges if multigrid is used with a disk actuator + + actdisk_markers = [] + + f = open(actuator_disk_file, "w") + f = write_header(f) + + for maker_inlet, marker_outlet in zip(ad_inlet_marker, ad_outlet_marker): + inlet_uid = maker_inlet.split(ACTUATOR_DISK_INLET_SUFFIX)[0] + outlet_uid = marker_outlet.split(ACTUATOR_DISK_OUTLET_SUFFIX)[0] + + if inlet_uid != outlet_uid: + raise ValueError("The inlet and outlet markers of the actuator disk must be the same.") + + if "_mirrored" in maker_inlet: + uid = inlet_uid.split("_mirrored")[0] + sym = -1 + else: + uid = inlet_uid + sym = 1 + + center = [] + center.append(round(rotor_uid_pos[uid][0], 5)) + center.append(round(sym * rotor_uid_pos[uid][1], 5)) + center.append(round(rotor_uid_pos[uid][2], 5)) + + axis = (1.0, 0.0, 0.0) # TODO: get the axis by applying the rotation matrix + radius = round(rotor_uid_pos[uid][3], 5) + hub_radius = round(rotor_uid_pos[uid][4], 5) + number_of_blades = round(rotor_uid_pos[uid][5], 5) + rotational_velocity = round(rotor_uid_pos[uid][6], 5) + + actdisk_markers.append(maker_inlet) + actdisk_markers.append(marker_outlet) + actdisk_markers.append(str(center[0])) + actdisk_markers.append(str(center[1])) + actdisk_markers.append(str(center[2])) + actdisk_markers.append(str(center[0])) + actdisk_markers.append(str(center[1])) + actdisk_markers.append(str(center[2])) + + Atm = Atmosphere(alt) + free_stream_velocity = mach * Atm.speed_of_sound[0] + + radial_stations = get_radial_stations(radius, hub_radius) + advanced_ratio = get_advanced_ratio(free_stream_velocity, rotational_velocity, radius) + + prandtl_correction_xpath = PROP_XPATH + "/propeller/blade/loss" + prandtl_correction = get_value_or_default(cpacs.tixi, prandtl_correction_xpath, True) + + thrust_xpath = PROP_XPATH + "/propeller/thrust" + thrust = get_value_or_default(cpacs.tixi, thrust_xpath, 3000) + total_thrust_coefficient = float( + thrust / (Atm.density * rotational_velocity**2 * (radius * 2) ** 4) + ) + + ( + radial_thrust_coefs, + radial_power_coefs, + non_dimensional_radius, + optimal_axial_interference_factor, + optimal_rotational_interference_factor, + prandtl_correction_values, + ) = thrust_calculator( + radial_stations, + total_thrust_coefficient, + radius, + free_stream_velocity, + prandtl_correction, + number_of_blades, + rotational_velocity, + ) + + save_plots( + radial_stations, + radial_thrust_coefs, + radial_power_coefs, + non_dimensional_radius, + optimal_axial_interference_factor, + optimal_rotational_interference_factor, + prandtl_correction_values, + case_dir_path, + inlet_uid, + ) + + f = write_actuator_disk_data( + file=f, + inlet_marker=maker_inlet, + outlet_marker=marker_outlet, + center=center, + axis=axis, + radius=radius, + advanced_ratio=advanced_ratio, + radial_stations=radial_stations, + radial_thrust_coefs=radial_thrust_coefs, + radial_power_coefs=radial_power_coefs, + ) + + cfg["MARKER_ACTDISK"] = " (" + ", ".join(actdisk_markers) + " )" + + f.close() + + +def add_thermodata(cfg, cpacs, alt, case_nb, alt_list): + + if cpacs.tixi.checkElement(ENGINE_TYPE_XPATH): + log.info("adding engine BC to the SU2 config file") + engine_type = get_value(cpacs.tixi, ENGINE_TYPE_XPATH) + log.info(f"engine type {engine_type}") + alt = alt_list[case_nb] + Atm = Atmosphere(alt) + tot_temp_in = Atm.temperature[0] + tot_pressure_in = Atm.pressure[0] + if len(alt_list) > 1: + tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet").split(";") + tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet").split(";") + tot_temp_out = tot_temp_out[case_nb] + tot_pressure_out = tot_pressure_out[case_nb] + else: + tot_temp_out = get_value(cpacs.tixi, ENGINE_BC + "/temperatureOutlet") + tot_pressure_out = get_value(cpacs.tixi, ENGINE_BC + "/pressureOutlet") + cfg["INLET_TYPE"] = "TOTAL_CONDITIONS" + cfg["MARKER_INLET"] = ( + f"(INLET_ENGINE, {tot_temp_in}, {tot_pressure_in}, {1},{0},{0}, " + f"OUTLET_ENGINE,{tot_temp_out},{tot_pressure_out}, {1},{0},{0})" + ) + + +def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): + """Function to create SU2 config file. + + Function 'generate_su2_cfd_config' reads data in the CPACS file and generate configuration + files for one or multiple flight conditions (alt,mach,aoa,aos) + + Source: + * SU2 config template: https://github.com/su2code/SU2/blob/master/config_template.cfg + + Args: + cpacs_path (Path): Path to CPACS file + cpacs_out_path (Path):Path to CPACS output file + wkdir (Path): Path to the working directory + + """ + + cpacs = CPACS(cpacs_path) + + # creare delle nuove xpath per la mesh cgns + + cgns_mesh = Path(get_value(cpacs.tixi, SU2MESH_XPATH)) + if not cgns_mesh.is_file(): + raise FileNotFoundError(f"CGNS mesh file {cgns_mesh} not found") + + mesh_markers = get_mesh_markers(cgns_mesh) + + create_branch(cpacs.tixi, SU2_BC_WALL_XPATH) + bc_wall_str = ";".join(mesh_markers["wall"]) + cpacs.tixi.updateTextElement(SU2_BC_WALL_XPATH, bc_wall_str) + + create_branch(cpacs.tixi, SU2_BC_FARFIELD_XPATH) + bc_farfiled_str = ";".join(mesh_markers["engine_intake"] + mesh_markers["engine_exhaust"]) + cpacs.tixi.updateTextElement(SU2_BC_FARFIELD_XPATH, bc_farfiled_str) + + create_branch(cpacs.tixi, SU2_ACTUATOR_DISK_XPATH) + bc_actuator_disk_str = ";".join( + mesh_markers["actuator_disk_inlet"] + mesh_markers["actuator_disk_outlet"] + ) + cpacs.tixi.updateTextElement(SU2_ACTUATOR_DISK_XPATH, bc_actuator_disk_str) + + fixed_cl = get_value_or_default(cpacs.tixi, SU2_FIXED_CL_XPATH, "NO") + target_cl = get_value_or_default(cpacs.tixi, SU2_TARGET_CL_XPATH, 1.0) + + if fixed_cl == "NO": + # Get the first aeroMap as default one or create automatically one + aeromap_list = cpacs.get_aeromap_uid_list() + + if aeromap_list: + aeromap_default = aeromap_list[0] + log.info(f"The aeromap is {aeromap_default}") + + aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, aeromap_default) + + activate_aeromap = cpacs.get_aeromap_by_uid(aeromap_uid) + alt_list = activate_aeromap.get("altitude").tolist() + mach_list = activate_aeromap.get("machNumber").tolist() + aoa_list = activate_aeromap.get("angleOfAttack").tolist() + aos_list = activate_aeromap.get("angleOfSideslip").tolist() + + else: + default_aeromap = cpacs.create_aeromap("DefaultAeromap") + default_aeromap.description = "AeroMap created automatically" + + mach = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseMach", 0.3) + alt = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseAltitude", 10000) + + default_aeromap.add_row(alt=alt, mach=mach, aos=0.0, aoa=0.0) + default_aeromap.save() + + alt_list = [alt] + mach_list = [mach] + aoa_list = [0.0] + aos_list = [0.0] + + aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, "DefaultAeromap") + log.info(f"{aeromap_uid} has been created") + + else: # if fixed_cl == 'YES': + log.info("Configuration file for fixed CL calculation will be created.") + + fixed_cl_aeromap = cpacs.create_aeromap("aeroMap_fixedCL_SU2") + fixed_cl_aeromap.description = f"AeroMap created for SU2 fixed CL value of {target_cl}" + + mach = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseMach", 0.78) + alt = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseAltitude", 12000) + + fixed_cl_aeromap.add_row(alt=alt, mach=mach, aos=0.0, aoa=0.0) + fixed_cl_aeromap.save() + + alt_list = [alt] + mach_list = [mach] + aoa_list = [0.0] + aos_list = [0.0] + + cfg = ConfigFile(get_cgns_config_template()) + + # Check if symmetry plane is defined (Default: False) + sym_factor = 1.0 + if get_value_or_default(cpacs.tixi, GMSH_SYMMETRY_XPATH, False): + log.info("Symmetry plane is defined. The reference area will be divided by 2.") + sym_factor = 2.0 + + # General parameters + cfg["RESTART_SOL"] = "NO" + cfg["REF_LENGTH"] = cpacs.aircraft.ref_length + cfg["REF_AREA"] = cpacs.aircraft.ref_area / sym_factor + cfg["REF_ORIGIN_MOMENT_X"] = cpacs.aircraft.ref_point_x + cfg["REF_ORIGIN_MOMENT_Y"] = cpacs.aircraft.ref_point_y + cfg["REF_ORIGIN_MOMENT_Z"] = cpacs.aircraft.ref_point_z + + # Settings + + cfl_down = get_value_or_default(cpacs.tixi, SU2_CFL_ADAPT_PARAM_DOWN_XPATH, 0.5) + cfl_up = get_value_or_default(cpacs.tixi, SU2_CFL_ADAPT_PARAM_UP_XPATH, 1.5) + cfl_min = get_value_or_default(cpacs.tixi, SU2_CFL_MIN_XPATH, 0.5) + cfl_max = get_value_or_default(cpacs.tixi, SU2_CFL_MAX_XPATH, 100) + + if get_value_or_default(cpacs.tixi, SU2_CFL_ADAPT_XPATH, True): + cfg["CFL_ADAPT"] = "YES" + + else: + cfg["CFL_ADAPT"] = "NO" + + cfg["INNER_ITER"] = int(get_value_or_default(cpacs.tixi, SU2_MAX_ITER_XPATH, 200)) + cfg["CFL_NUMBER"] = get_value_or_default(cpacs.tixi, SU2_CFL_NB_XPATH, 1.0) + cfg["CFL_ADAPT_PARAM"] = f"( {cfl_down}, {cfl_up}, {cfl_min}, {cfl_max} )" + cfg["MGLEVEL"] = int(get_value_or_default(cpacs.tixi, SU2_MG_LEVEL_XPATH, 3)) + + # Fixed CL mode (AOA will not be taken into account) + cfg["FIXED_CL_MODE"] = fixed_cl + cfg["TARGET_CL"] = target_cl + cfg["DCL_DALPHA"] = "0.1" + cfg["UPDATE_AOA_ITER_LIMIT"] = "50" + cfg["ITER_DCL_DALPHA"] = "80" + + # Mesh Marker + bc_wall_str = f"( {','.join(mesh_markers['wall'])} )" + + cfg["MARKER_EULER"] = bc_wall_str + farfield_bc = ( + mesh_markers["farfield"] + mesh_markers["engine_intake"] + mesh_markers["engine_exhaust"] + ) + cfg["MARKER_FAR"] = f"( {','.join(farfield_bc)} )" + cfg["MARKER_SYM"] = f"( {','.join(mesh_markers['symmetry'])} )" + cfg["MARKER_PLOTTING"] = bc_wall_str + cfg["MARKER_MONITORING"] = bc_wall_str + cfg["MARKER_MOVING"] = "( NONE )" # TODO: when do we need to define MARKER_MOVING? + cfg["DV_MARKER"] = bc_wall_str + + # Output + cfg["WRT_FORCES_BREAKDOWN"] = "YES" + cfg["BREAKDOWN_FILENAME"] = SU2_FORCES_BREAKDOWN_NAME + cfg["OUTPUT_FILES"] = "(RESTART, PARAVIEW, SURFACE_PARAVIEW)" + cfg["HISTORY_OUTPUT"] = "(INNER_ITER, RMS_RES, AERO_COEFF)" + + # Parameters which will vary for the different cases (alt,mach,aoa,aos) + + for case_nb in range(len(alt_list)): + cfg["MESH_FILENAME"] = str(cgns_mesh) + + alt = alt_list[case_nb] + mach = mach_list[case_nb] + aoa = aoa_list[case_nb] + aos = aos_list[case_nb] + + Atm = Atmosphere(alt) + + cfg["MACH_NUMBER"] = mach + cfg["AOA"] = aoa + cfg["SIDESLIP_ANGLE"] = aos + cfg["FREESTREAM_PRESSURE"] = Atm.pressure[0] + cfg["FREESTREAM_TEMPERATURE"] = Atm.temperature[0] + cfg["ROTATION_RATE"] = "0.0 0.0 0.0" + + case_dir_name = ( + f"Case{str(case_nb).zfill(2)}_alt{alt}_mach{round(mach, 2)}" + f"_aoa{round(aoa, 1)}_aos{round(aos, 1)}" + ) + + add_thermodata(cfg, cpacs, alt, case_nb, alt_list) + + case_dir_path = Path(wkdir, case_dir_name) + if not case_dir_path.exists(): + case_dir_path.mkdir() + + if get_value_or_default(cpacs.tixi, SU2_ACTUATOR_DISK_XPATH, False): + actuator_disk_file = Path(wkdir, ACTUATOR_DISK_FILE_NAME) + add_actuator_disk( + cfg, cpacs, case_dir_path, actuator_disk_file, mesh_markers, alt, mach + ) + + if actuator_disk_file.exists(): + case_actuator_disk_file = Path(case_dir_path, ACTUATOR_DISK_FILE_NAME) + copyfile(actuator_disk_file, case_actuator_disk_file) + + bc_wall_str = ( + "(" + + ",".join( + mesh_markers["wall"] + + mesh_markers["actuator_disk_inlet"] + + mesh_markers["actuator_disk_outlet"] + ) + + ")" + ) + + cfg["MARKER_PLOTTING"] = bc_wall_str + cfg["MARKER_MONITORING"] = bc_wall_str + + config_output_path = Path(case_dir_path, CONFIG_CFD_NAME) + cfg.write_file(config_output_path, overwrite=True) + + if get_value_or_default(cpacs.tixi, SU2_DAMPING_DER_XPATH, False): + rotation_rate = get_value_or_default(cpacs.tixi, SU2_ROTATION_RATE_XPATH, 1.0) + add_damping_derivatives(cfg, wkdir, case_dir_name, rotation_rate) + + # Control surfaces deflections (TODO: create a subfunctions) + if get_value_or_default(cpacs.tixi, SU2_CONTROL_SURF_XPATH, False): + # Get deformed mesh list + if cpacs.tixi.checkElement(SU2_DEF_MESH_XPATH): + su2_def_mesh_list = get_string_vector(cpacs.tixi, SU2_DEF_MESH_XPATH) + else: + log.warning("No SU2 deformed mesh has been found!") + su2_def_mesh_list = [] + + for su2_def_mesh in su2_def_mesh_list: + mesh_path = Path(wkdir, "MESH", su2_def_mesh) + config_dir_path = Path(wkdir, case_dir_name + "_" + su2_def_mesh.split(".")[0]) + config_dir_path.mkdir() + cfg["MESH_FILENAME"] = mesh_path + + cfg.write_file(Path(config_dir_path, CONFIG_CFD_NAME), overwrite=True) + + cpacs.save_cpacs(cpacs_out_path, overwrite=True) + + +# ================================================================================================= +# MAIN +# ================================================================================================= + +if __name__ == "__main__": + log.info("Nothing to execute!") diff --git a/ceasiompy/SU2Run/func/su2utils.py b/ceasiompy/SU2Run/func/su2utils.py index ab08a43ef..96878d67f 100644 --- a/ceasiompy/SU2Run/func/su2utils.py +++ b/ceasiompy/SU2Run/func/su2utils.py @@ -170,6 +170,14 @@ def get_su2_config_template(): return su2_config_template_path +def get_cgns_config_template(): + + su2_dir = get_module_path("SU2Run") + su2_config_template_path_rans = Path(su2_dir, "files", f"config_template_rans.cfg") + + return su2_config_template_path_rans + + def get_su2_aerocoefs(force_file): """Get aerodynamic coefficients and velocity from SU2 forces file (forces_breakdown.dat) diff --git a/ceasiompy/SU2Run/su2run.py b/ceasiompy/SU2Run/su2run.py index 4b103b22c..46971f117 100644 --- a/ceasiompy/SU2Run/su2run.py +++ b/ceasiompy/SU2Run/su2run.py @@ -26,6 +26,7 @@ from pathlib import Path from ceasiompy.SU2Run.func.su2config import generate_su2_cfd_config +from ceasiompy.SU2Run.func.su2configrans import generate_su2_cfd_config_rans from ceasiompy.SU2Run.func.su2results import get_su2_results from ceasiompy.utils.ceasiomlogger import get_logger from ceasiompy.utils.ceasiompyutils import ( @@ -114,7 +115,7 @@ def main(cpacs_path, cpacs_out_path): # Temporary CPACS to be stored after "generate_su2_cfd_config" cpacs_tmp_cfg = Path(cpacs_out_path.parent, "ConfigTMP.xml") - generate_su2_cfd_config(cpacs_path, cpacs_tmp_cfg, results_dir) + generate_su2_cfd_config_rans(cpacs_path, cpacs_tmp_cfg, results_dir) run_SU2_multi(results_dir, nb_proc) get_su2_results(cpacs_tmp_cfg, cpacs_out_path, results_dir) From ef7afb1823bf6dcd7aa088ee658729a65a65f47b Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 8 Feb 2024 10:50:08 +0100 Subject: [PATCH 17/55] working on the rans config file --- ceasiompy/SU2Run/files/config_template_rans.cfg | 8 ++++---- ceasiompy/SU2Run/func/su2configrans.py | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ceasiompy/SU2Run/files/config_template_rans.cfg b/ceasiompy/SU2Run/files/config_template_rans.cfg index 3da3b4d9e..a0b92f31b 100644 --- a/ceasiompy/SU2Run/files/config_template_rans.cfg +++ b/ceasiompy/SU2Run/files/config_template_rans.cfg @@ -74,13 +74,13 @@ MARKER_MONITORING= (S4CreatedbyGmsh) % NUM_METHOD_GRAD= GREEN_GAUSS % -CFL_NUMBER= 20 +CFL_NUMBER= 1 % CFL_ADAPT= NO % CFL_ADAPT_PARAM= ( 0.5, 1, 1.0, 100.0 ) % -ITER = 10000 +ITER = 5000 % Objective function in gradient evaluation (DRAG, LIFT, SIDEFORCE, MOMENT_X, % MOMENT_Y, MOMENT_Z, EFFICIENCY, BUFFET, @@ -167,9 +167,9 @@ CONV_STARTITER= 10 % ------------------------- INPUT/OUTPUT INFORMATION --------------------------% % -MESH_FILENAME= labair_penta.cgns +MESH_FILENAME= labair_penta.su2 % -MESH_FORMAT= CGNS +MESH_FORMAT= SU2 % MESH_OUT_FILENAME= mesh_out.su2 % diff --git a/ceasiompy/SU2Run/func/su2configrans.py b/ceasiompy/SU2Run/func/su2configrans.py index 52f15ea22..ebe9d4b0c 100644 --- a/ceasiompy/SU2Run/func/su2configrans.py +++ b/ceasiompy/SU2Run/func/su2configrans.py @@ -341,11 +341,11 @@ def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): # creare delle nuove xpath per la mesh cgns - cgns_mesh = Path(get_value(cpacs.tixi, SU2MESH_XPATH)) - if not cgns_mesh.is_file(): - raise FileNotFoundError(f"CGNS mesh file {cgns_mesh} not found") + su2_mesh = Path(get_value(cpacs.tixi, SU2MESH_XPATH)) + if not su2_mesh.is_file(): + raise FileNotFoundError(f"CGNS mesh file {su2_mesh} not found") - mesh_markers = get_mesh_markers(cgns_mesh) + mesh_markers = get_mesh_markers(su2_mesh) create_branch(cpacs.tixi, SU2_BC_WALL_XPATH) bc_wall_str = ";".join(mesh_markers["wall"]) @@ -479,7 +479,7 @@ def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): # Parameters which will vary for the different cases (alt,mach,aoa,aos) for case_nb in range(len(alt_list)): - cfg["MESH_FILENAME"] = str(cgns_mesh) + cfg["MESH_FILENAME"] = str(su2_mesh) alt = alt_list[case_nb] mach = mach_list[case_nb] From 166182c4cdbd7f0376a9c9f270bd6913fbd5d094 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 8 Feb 2024 10:55:43 +0100 Subject: [PATCH 18/55] trying to solve issues with flake8 --- ceasiompy/SU2Run/func/su2utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceasiompy/SU2Run/func/su2utils.py b/ceasiompy/SU2Run/func/su2utils.py index 96878d67f..63b8d633c 100644 --- a/ceasiompy/SU2Run/func/su2utils.py +++ b/ceasiompy/SU2Run/func/su2utils.py @@ -173,7 +173,7 @@ def get_su2_config_template(): def get_cgns_config_template(): su2_dir = get_module_path("SU2Run") - su2_config_template_path_rans = Path(su2_dir, "files", f"config_template_rans.cfg") + su2_config_template_path_rans = Path(su2_dir, "files", "config_template_rans.cfg") return su2_config_template_path_rans From 24123539554c6f54a02635b45ee58bcbaffaff03 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 8 Feb 2024 13:58:50 +0100 Subject: [PATCH 19/55] adding rans simulation --- ceasiompy/SU2Run/__specs__.py | 13 +++++++++++++ ceasiompy/SU2Run/files/config_template_rans.cfg | 2 +- ceasiompy/SU2Run/su2run.py | 10 ++++++++-- ceasiompy/utils/commonxpath.py | 1 + 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/ceasiompy/SU2Run/__specs__.py b/ceasiompy/SU2Run/__specs__.py index ecd05f417..f4fde02fe 100644 --- a/ceasiompy/SU2Run/__specs__.py +++ b/ceasiompy/SU2Run/__specs__.py @@ -28,6 +28,7 @@ SU2_TARGET_CL_XPATH, SU2_UPDATE_WETTED_AREA_XPATH, SU2MESH_XPATH, + SU2_RANS_XPATH, ) from ceasiompy.utils.moduleinterfaces import CPACSInOut @@ -167,6 +168,18 @@ gui_group="Aeromap Options", ) +cpacs_inout.add_input( + var_name="RANS calculation", + var_type=bool, + default_value=False, + unit="1", + descr="To check if is needed to run a RANS simulation or a normal EULER", + xpath=SU2_RANS_XPATH, + gui=True, + gui_name="Rans simulation", + gui_group="Aeromap Options", +) + cpacs_inout.add_input( var_name="rotation_rate", var_type=float, diff --git a/ceasiompy/SU2Run/files/config_template_rans.cfg b/ceasiompy/SU2Run/files/config_template_rans.cfg index a0b92f31b..1af0ceee0 100644 --- a/ceasiompy/SU2Run/files/config_template_rans.cfg +++ b/ceasiompy/SU2Run/files/config_template_rans.cfg @@ -187,7 +187,7 @@ RESTART_ADJ_FILENAME= restart_adj.dat % VOLUME_FILENAME= flow % -SURFACE_FILENAME= surface_flow_mesh +SURFACE_FILENAME= surface_flow % OUTPUT_WRT_FREQ= 100 % diff --git a/ceasiompy/SU2Run/su2run.py b/ceasiompy/SU2Run/su2run.py index 46971f117..52e49e14e 100644 --- a/ceasiompy/SU2Run/su2run.py +++ b/ceasiompy/SU2Run/su2run.py @@ -35,7 +35,7 @@ run_software, ) from ceasiompy.utils.commonnames import CONFIG_CFD_NAME, SU2_FORCES_BREAKDOWN_NAME -from ceasiompy.utils.commonxpath import SU2_NB_CPU_XPATH +from ceasiompy.utils.commonxpath import SU2_NB_CPU_XPATH, SU2_RANS_XPATH from ceasiompy.utils.moduleinterfaces import get_toolinput_file_path, get_tooloutput_file_path from cpacspy.cpacsfunctions import get_value_or_default, open_tixi @@ -115,7 +115,13 @@ def main(cpacs_path, cpacs_out_path): # Temporary CPACS to be stored after "generate_su2_cfd_config" cpacs_tmp_cfg = Path(cpacs_out_path.parent, "ConfigTMP.xml") - generate_su2_cfd_config_rans(cpacs_path, cpacs_tmp_cfg, results_dir) + if tixi.getTextElement(SU2_RANS_XPATH) == "True": + print("hello rans") + generate_su2_cfd_config_rans(cpacs_path, cpacs_tmp_cfg, results_dir) + else: + print("hello euler") + generate_su2_cfd_config(cpacs_path, cpacs_tmp_cfg, results_dir) + run_SU2_multi(results_dir, nb_proc) get_su2_results(cpacs_tmp_cfg, cpacs_out_path, results_dir) diff --git a/ceasiompy/utils/commonxpath.py b/ceasiompy/utils/commonxpath.py index 19e0b646f..2164f36d8 100644 --- a/ceasiompy/utils/commonxpath.py +++ b/ceasiompy/utils/commonxpath.py @@ -138,6 +138,7 @@ SU2_DEF_MESH_XPATH = SU2_XPATH + "/availableDeformedMesh" SU2_ACTUATOR_DISK_XPATH = SU2_XPATH + "/options/includeActuatorDisk" +SU2_RANS_XPATH = SU2_XPATH + "/options/ransRun" # RANGE RANGE_LD_RATIO_XPATH = CEASIOMPY_XPATH + "/ranges/lDRatio" From 7f1ce4ddf5b830926cd67ea0d007be14df8279e1 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 8 Feb 2024 14:30:40 +0100 Subject: [PATCH 20/55] improving rans su2run --- ceasiompy/SU2Run/su2run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceasiompy/SU2Run/su2run.py b/ceasiompy/SU2Run/su2run.py index 52e49e14e..05e2ed32a 100644 --- a/ceasiompy/SU2Run/su2run.py +++ b/ceasiompy/SU2Run/su2run.py @@ -115,7 +115,7 @@ def main(cpacs_path, cpacs_out_path): # Temporary CPACS to be stored after "generate_su2_cfd_config" cpacs_tmp_cfg = Path(cpacs_out_path.parent, "ConfigTMP.xml") - if tixi.getTextElement(SU2_RANS_XPATH) == "True": + if get_value_or_default(tixi, SU2_RANS_XPATH, False): print("hello rans") generate_su2_cfd_config_rans(cpacs_path, cpacs_tmp_cfg, results_dir) else: From c045d2a51cea6554468a817ba8934418925de2e3 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 8 Feb 2024 14:53:54 +0100 Subject: [PATCH 21/55] improving rans simulations --- ceasiompy/SU2Run/__specs__.py | 8 ++++---- ceasiompy/SU2Run/su2run.py | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/ceasiompy/SU2Run/__specs__.py b/ceasiompy/SU2Run/__specs__.py index f4fde02fe..c5ed84fab 100644 --- a/ceasiompy/SU2Run/__specs__.py +++ b/ceasiompy/SU2Run/__specs__.py @@ -170,13 +170,13 @@ cpacs_inout.add_input( var_name="RANS calculation", - var_type=bool, - default_value=False, + var_type=list, + default_value=["EULER", "RANS"], unit="1", - descr="To check if is needed to run a RANS simulation or a normal EULER", + descr="Running a Rans or an Euler calculation", xpath=SU2_RANS_XPATH, gui=True, - gui_name="Rans simulation", + gui_name="Choosing between Rans or Euler simulation", gui_group="Aeromap Options", ) diff --git a/ceasiompy/SU2Run/su2run.py b/ceasiompy/SU2Run/su2run.py index 05e2ed32a..ce0e1d769 100644 --- a/ceasiompy/SU2Run/su2run.py +++ b/ceasiompy/SU2Run/su2run.py @@ -115,11 +115,11 @@ def main(cpacs_path, cpacs_out_path): # Temporary CPACS to be stored after "generate_su2_cfd_config" cpacs_tmp_cfg = Path(cpacs_out_path.parent, "ConfigTMP.xml") - if get_value_or_default(tixi, SU2_RANS_XPATH, False): - print("hello rans") + if get_value_or_default(tixi, SU2_RANS_XPATH, "EULER") == "RANS": + log.info("Rans simulation") generate_su2_cfd_config_rans(cpacs_path, cpacs_tmp_cfg, results_dir) else: - print("hello euler") + log.info("Euler simulation") generate_su2_cfd_config(cpacs_path, cpacs_tmp_cfg, results_dir) run_SU2_multi(results_dir, nb_proc) From 345627f2997bbb0eea50a3d793467831041bd49a Mon Sep 17 00:00:00 2001 From: Giacomo Benedetti Date: Thu, 8 Feb 2024 15:25:08 +0100 Subject: [PATCH 22/55] reordered --- ceasiompy/SU2Run/__specs__.py | 26 +++++++++++++------------- ceasiompy/SU2Run/su2run.py | 8 +++++--- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/ceasiompy/SU2Run/__specs__.py b/ceasiompy/SU2Run/__specs__.py index c5ed84fab..68f3f64ee 100644 --- a/ceasiompy/SU2Run/__specs__.py +++ b/ceasiompy/SU2Run/__specs__.py @@ -28,7 +28,7 @@ SU2_TARGET_CL_XPATH, SU2_UPDATE_WETTED_AREA_XPATH, SU2MESH_XPATH, - SU2_RANS_XPATH, + SU2_CONFIG_RANS_XPATH, ) from ceasiompy.utils.moduleinterfaces import CPACSInOut @@ -168,18 +168,6 @@ gui_group="Aeromap Options", ) -cpacs_inout.add_input( - var_name="RANS calculation", - var_type=list, - default_value=["EULER", "RANS"], - unit="1", - descr="Running a Rans or an Euler calculation", - xpath=SU2_RANS_XPATH, - gui=True, - gui_name="Choosing between Rans or Euler simulation", - gui_group="Aeromap Options", -) - cpacs_inout.add_input( var_name="rotation_rate", var_type=float, @@ -216,6 +204,18 @@ gui_group="CPU", ) +cpacs_inout.add_input( + var_name="RANS calculation", + var_type=list, + default_value=["Euler", "RANS"], + unit="1", + descr="Running an Euler or a RANS calculation", + xpath=SU2_CONFIG_RANS_XPATH, + gui=True, + gui_name="Choosing between Euler or RANS simulation", + gui_group="SU2 Parameters", +) + cpacs_inout.add_input( var_name="max_iter", var_type=int, diff --git a/ceasiompy/SU2Run/su2run.py b/ceasiompy/SU2Run/su2run.py index ce0e1d769..a7deada1a 100644 --- a/ceasiompy/SU2Run/su2run.py +++ b/ceasiompy/SU2Run/su2run.py @@ -35,7 +35,7 @@ run_software, ) from ceasiompy.utils.commonnames import CONFIG_CFD_NAME, SU2_FORCES_BREAKDOWN_NAME -from ceasiompy.utils.commonxpath import SU2_NB_CPU_XPATH, SU2_RANS_XPATH +from ceasiompy.utils.commonxpath import SU2_NB_CPU_XPATH, SU2_CONFIG_RANS_XPATH from ceasiompy.utils.moduleinterfaces import get_toolinput_file_path, get_tooloutput_file_path from cpacspy.cpacsfunctions import get_value_or_default, open_tixi @@ -115,8 +115,10 @@ def main(cpacs_path, cpacs_out_path): # Temporary CPACS to be stored after "generate_su2_cfd_config" cpacs_tmp_cfg = Path(cpacs_out_path.parent, "ConfigTMP.xml") - if get_value_or_default(tixi, SU2_RANS_XPATH, "EULER") == "RANS": - log.info("Rans simulation") + config_file_type = get_value_or_default(tixi, SU2_CONFIG_RANS_XPATH, "Euler") + + if config_file_type == "RANS": + log.info("RANS simulation") generate_su2_cfd_config_rans(cpacs_path, cpacs_tmp_cfg, results_dir) else: log.info("Euler simulation") From 28bf2a1e47d19fe162ccf79a0650eae7dd8b7ac6 Mon Sep 17 00:00:00 2001 From: Giacomo Benedetti Date: Thu, 8 Feb 2024 15:31:15 +0100 Subject: [PATCH 23/55] fix tests --- ceasiompy/utils/commonxpath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceasiompy/utils/commonxpath.py b/ceasiompy/utils/commonxpath.py index 2164f36d8..a297e734e 100644 --- a/ceasiompy/utils/commonxpath.py +++ b/ceasiompy/utils/commonxpath.py @@ -138,7 +138,7 @@ SU2_DEF_MESH_XPATH = SU2_XPATH + "/availableDeformedMesh" SU2_ACTUATOR_DISK_XPATH = SU2_XPATH + "/options/includeActuatorDisk" -SU2_RANS_XPATH = SU2_XPATH + "/options/ransRun" +SU2_CONFIG_RANS_XPATH = SU2_XPATH + "/options/config_type" # RANGE RANGE_LD_RATIO_XPATH = CEASIOMPY_XPATH + "/ranges/lDRatio" From c22ed030b1cb98cbc37d76d17eea18f6a119eef6 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Fri, 9 Feb 2024 10:35:04 +0100 Subject: [PATCH 24/55] start adding tests --- .../tests/test_turbofan/test_turbofan.py | 59 +++++++++++++++++++ .../ThermoData/tests/test_turbojet/test1.py | 44 ++++++++++++++ .../tests/test_turbojet/test_turbojet.py | 59 +++++++++++++++++++ 3 files changed, 162 insertions(+) create mode 100644 ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py create mode 100644 ceasiompy/ThermoData/tests/test_turbojet/test1.py create mode 100644 ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py diff --git a/ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py b/ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py new file mode 100644 index 000000000..88dea37cb --- /dev/null +++ b/ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py @@ -0,0 +1,59 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Test functions of 'ceasiompy/ThermoData/func/turbofan_func.py' + +Python version: >=3.8 + + +| Author : Giacomo Benedetti and Francesco Marcucci +| Creation: 2024-02-09 + +""" +# ================================================================================================= +# IMPORTS +# ================================================================================================= + +import os +from pathlib import Path + +import pytest +from ceasiompy.SU2Run.func.su2results import save_screenshot +from ceasiompy.utils.commonpaths import TEST_RESULTS_FILES_PATH + +MODULE_DIR = Path(__file__).parent + + +# ================================================================================================= +# CLASSES +# ================================================================================================= + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +@pytest.mark.skipif("DISPLAY" not in os.environ, reason="requires display") +def test_save_screenshot(): + """Test the function 'save_screenshot'""" + + surface_flow_file = Path(TEST_RESULTS_FILES_PATH, "surface_flow.vtu") + screenshot_file = save_screenshot(surface_flow_file, "Mach") + assert screenshot_file.exists() + + if screenshot_file.exists(): + screenshot_file.unlink() + + +# ================================================================================================= +# MAIN +# ================================================================================================= + +if __name__ == "__main__": + + print("Test configfile.py") + print("To run test use the following command:") + print(">> pytest -v") diff --git a/ceasiompy/ThermoData/tests/test_turbojet/test1.py b/ceasiompy/ThermoData/tests/test_turbojet/test1.py new file mode 100644 index 000000000..36db907dd --- /dev/null +++ b/ceasiompy/ThermoData/tests/test_turbojet/test1.py @@ -0,0 +1,44 @@ +from pathlib import Path + +import sys + +sys.path.append("/home/cfse/Stage_Francesco/Thermodata") + +from ceasiompy.ThermoData.func.turbofan_func import ( + turbofan_analysis, +) + +from ceasiompy.ThermoData.func.turbojet_func import ( + turbojet_analysis, +) + +import pytest + +import numpy as np + + +def test_turbojet(): + alt = 4000 # [ft] + MN = 0.6 + Fn = 11800 # [lbf] + new_sol = turbojet_analysis(alt, MN, Fn) + correct_sol = np.array([717.59577021, 818.40663844, 1.57394908]).reshape((3, 1)) + np.testing.assert_almost_equal(new_sol, correct_sol, 5) + + +def test_turbofan(): + alt = 4000 # [ft] + MN = 0.6 + Fn = 11800 # [lbf] + new_sol_tf = turbofan_analysis(alt, MN) + correct_sol_tf = np.array( + [ + 8.11328662e01, + 3.44500820e02, + 1.00000000e00, + 4.19439630e02, + 5.64233274e01, + 1.08865912e-01, + ] + ).reshape((6, 1)) + np.testing.assert_almost_equal(new_sol_tf, correct_sol_tf, 5) diff --git a/ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py b/ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py new file mode 100644 index 000000000..a2c1e76c4 --- /dev/null +++ b/ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py @@ -0,0 +1,59 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Test functions of 'ceasiompy/ThermoData/func/turbojet_func.py' + +Python version: >=3.8 + + +| Author : Giacomo Benedetti and Francesco Marcucci +| Creation: 2024-02-09 + +""" +# ================================================================================================= +# IMPORTS +# ================================================================================================= + +import os +from pathlib import Path + +import pytest +from ceasiompy.SU2Run.func.su2results import save_screenshot +from ceasiompy.utils.commonpaths import TEST_RESULTS_FILES_PATH + +MODULE_DIR = Path(__file__).parent + + +# ================================================================================================= +# CLASSES +# ================================================================================================= + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +@pytest.mark.skipif("DISPLAY" not in os.environ, reason="requires display") +def test_save_screenshot(): + """Test the function 'save_screenshot'""" + + surface_flow_file = Path(TEST_RESULTS_FILES_PATH, "surface_flow.vtu") + screenshot_file = save_screenshot(surface_flow_file, "Mach") + assert screenshot_file.exists() + + if screenshot_file.exists(): + screenshot_file.unlink() + + +# ================================================================================================= +# MAIN +# ================================================================================================= + +if __name__ == "__main__": + + print("Test configfile.py") + print("To run test use the following command:") + print(">> pytest -v") From 543e5c7ad41c00e96a74c41e5528dcede0a8ab57 Mon Sep 17 00:00:00 2001 From: Giacomo Benedetti Date: Fri, 9 Feb 2024 10:58:16 +0100 Subject: [PATCH 25/55] mod --- ceasiompy/SU2Run/__specs__.py | 2 +- ceasiompy/ThermoData/func/turbofan_func.py | 2 +- ceasiompy/ThermoData/func/turbojet_func.py | 2 +- ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py | 2 +- ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py | 2 +- ceasiompy/ThermoData/thermodata.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ceasiompy/SU2Run/__specs__.py b/ceasiompy/SU2Run/__specs__.py index 68f3f64ee..243ad926b 100644 --- a/ceasiompy/SU2Run/__specs__.py +++ b/ceasiompy/SU2Run/__specs__.py @@ -212,7 +212,7 @@ descr="Running an Euler or a RANS calculation", xpath=SU2_CONFIG_RANS_XPATH, gui=True, - gui_name="Choosing between Euler or RANS simulation", + gui_name="Euler or RANS simulation", gui_group="SU2 Parameters", ) diff --git a/ceasiompy/ThermoData/func/turbofan_func.py b/ceasiompy/ThermoData/func/turbofan_func.py index 5973e42b0..fa5fa6fcc 100644 --- a/ceasiompy/ThermoData/func/turbofan_func.py +++ b/ceasiompy/ThermoData/func/turbofan_func.py @@ -7,7 +7,7 @@ Python version: >=3.8 -| Author: Giacomo Benedetti and Francesco Marcucci +| Author: Francesco Marcucci | Creation: 2023-12-12 """ diff --git a/ceasiompy/ThermoData/func/turbojet_func.py b/ceasiompy/ThermoData/func/turbojet_func.py index 630cfd343..4562cb6b3 100644 --- a/ceasiompy/ThermoData/func/turbojet_func.py +++ b/ceasiompy/ThermoData/func/turbojet_func.py @@ -7,7 +7,7 @@ Python version: >=3.8 -| Author: Giacomo Benedetti and Francesco Marcucci +| Author: Francesco Marcucci | Creation: 2023-12-12 """ diff --git a/ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py b/ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py index 88dea37cb..7b6469285 100644 --- a/ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py +++ b/ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py @@ -8,7 +8,7 @@ Python version: >=3.8 -| Author : Giacomo Benedetti and Francesco Marcucci +| Author : Francesco Marcucci | Creation: 2024-02-09 """ diff --git a/ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py b/ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py index a2c1e76c4..c216e8855 100644 --- a/ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py +++ b/ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py @@ -8,7 +8,7 @@ Python version: >=3.8 -| Author : Giacomo Benedetti and Francesco Marcucci +| Author : Francesco Marcucci | Creation: 2024-02-09 """ diff --git a/ceasiompy/ThermoData/thermodata.py b/ceasiompy/ThermoData/thermodata.py index 32eff3efc..e69e1f594 100644 --- a/ceasiompy/ThermoData/thermodata.py +++ b/ceasiompy/ThermoData/thermodata.py @@ -6,7 +6,7 @@ Calculate outlet conditions fot turbojet and turbofan engines by using the open source code PyCycle and saving those conditions in a text file -| Author: Giacomo Benedetti and Francesco Marcucci +| Author: Francesco Marcucci | Creation: 2023-12-12 """ From da5397344b08d094af0728e6ee5605ecae5fffd1 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Fri, 9 Feb 2024 12:07:02 +0100 Subject: [PATCH 26/55] solving test issues --- ceasiompy/ThermoData/tests/test_turbojet/test1.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ceasiompy/ThermoData/tests/test_turbojet/test1.py b/ceasiompy/ThermoData/tests/test_turbojet/test1.py index 36db907dd..75c42b259 100644 --- a/ceasiompy/ThermoData/tests/test_turbojet/test1.py +++ b/ceasiompy/ThermoData/tests/test_turbojet/test1.py @@ -2,6 +2,10 @@ import sys +import pytest + +import numpy as np + sys.path.append("/home/cfse/Stage_Francesco/Thermodata") from ceasiompy.ThermoData.func.turbofan_func import ( @@ -12,10 +16,6 @@ turbojet_analysis, ) -import pytest - -import numpy as np - def test_turbojet(): alt = 4000 # [ft] @@ -29,7 +29,7 @@ def test_turbojet(): def test_turbofan(): alt = 4000 # [ft] MN = 0.6 - Fn = 11800 # [lbf] + # Fn = 11800 # [lbf] new_sol_tf = turbofan_analysis(alt, MN) correct_sol_tf = np.array( [ From e77a3611b78dc9992171ac64e7faf1b84132a9d0 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Fri, 9 Feb 2024 12:13:45 +0100 Subject: [PATCH 27/55] solving flake8 issues --- ceasiompy/ThermoData/tests/test_turbojet/test1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ceasiompy/ThermoData/tests/test_turbojet/test1.py b/ceasiompy/ThermoData/tests/test_turbojet/test1.py index 75c42b259..96495a0e9 100644 --- a/ceasiompy/ThermoData/tests/test_turbojet/test1.py +++ b/ceasiompy/ThermoData/tests/test_turbojet/test1.py @@ -6,8 +6,6 @@ import numpy as np -sys.path.append("/home/cfse/Stage_Francesco/Thermodata") - from ceasiompy.ThermoData.func.turbofan_func import ( turbofan_analysis, ) @@ -16,6 +14,8 @@ turbojet_analysis, ) +sys.path.append("/home/cfse/Stage_Francesco/Thermodata") + def test_turbojet(): alt = 4000 # [ft] From 01eb338952213c2aa202c3a3663eae39e1b85ec7 Mon Sep 17 00:00:00 2001 From: GBenedett Date: Tue, 13 Feb 2024 13:31:25 +0100 Subject: [PATCH 28/55] codacy and names --- .../SU2Run/func/{su2configrans.py => su2config_rans.py} | 3 +-- ceasiompy/SU2Run/su2run.py | 5 +---- 2 files changed, 2 insertions(+), 6 deletions(-) rename ceasiompy/SU2Run/func/{su2configrans.py => su2config_rans.py} (99%) diff --git a/ceasiompy/SU2Run/func/su2configrans.py b/ceasiompy/SU2Run/func/su2config_rans.py similarity index 99% rename from ceasiompy/SU2Run/func/su2configrans.py rename to ceasiompy/SU2Run/func/su2config_rans.py index ebe9d4b0c..45b095e4d 100644 --- a/ceasiompy/SU2Run/func/su2configrans.py +++ b/ceasiompy/SU2Run/func/su2config_rans.py @@ -297,7 +297,6 @@ def add_actuator_disk(cfg, cpacs, case_dir_path, actuator_disk_file, mesh_marker def add_thermodata(cfg, cpacs, alt, case_nb, alt_list): - if cpacs.tixi.checkElement(ENGINE_TYPE_XPATH): log.info("adding engine BC to the SU2 config file") engine_type = get_value(cpacs.tixi, ENGINE_TYPE_XPATH) @@ -478,7 +477,7 @@ def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): # Parameters which will vary for the different cases (alt,mach,aoa,aos) - for case_nb in range(len(alt_list)): + for case_nb, alt_value in enumerate(alt_list): cfg["MESH_FILENAME"] = str(su2_mesh) alt = alt_list[case_nb] diff --git a/ceasiompy/SU2Run/su2run.py b/ceasiompy/SU2Run/su2run.py index a7deada1a..ea8499714 100644 --- a/ceasiompy/SU2Run/su2run.py +++ b/ceasiompy/SU2Run/su2run.py @@ -26,7 +26,7 @@ from pathlib import Path from ceasiompy.SU2Run.func.su2config import generate_su2_cfd_config -from ceasiompy.SU2Run.func.su2configrans import generate_su2_cfd_config_rans +from ceasiompy.SU2Run.func.su2config_rans import generate_su2_cfd_config_rans from ceasiompy.SU2Run.func.su2results import get_su2_results from ceasiompy.utils.ceasiomlogger import get_logger from ceasiompy.utils.ceasiompyutils import ( @@ -73,7 +73,6 @@ def run_SU2_multi(wkdir, nb_proc=1): raise OSError(f"No Case directory has been found in the working directory: {wkdir}") for config_dir in sorted(case_dir_list): - config_cfd = [c for c in config_dir.iterdir() if c.name == CONFIG_CFD_NAME] if not config_cfd: @@ -104,7 +103,6 @@ def run_SU2_multi(wkdir, nb_proc=1): def main(cpacs_path, cpacs_out_path): - log.info("----- Start of " + MODULE_NAME + " -----") tixi = open_tixi(cpacs_path) @@ -131,7 +129,6 @@ def main(cpacs_path, cpacs_out_path): if __name__ == "__main__": - cpacs_path = get_toolinput_file_path(MODULE_NAME) cpacs_out_path = get_tooloutput_file_path(MODULE_NAME) From ae393713028d3b47e2c9f3b19dc86d0a26e90e11 Mon Sep 17 00:00:00 2001 From: GBenedett Date: Tue, 13 Feb 2024 13:35:58 +0100 Subject: [PATCH 29/55] codacy enumerate --- ceasiompy/SU2Run/func/su2config_rans.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceasiompy/SU2Run/func/su2config_rans.py b/ceasiompy/SU2Run/func/su2config_rans.py index 45b095e4d..513d23abb 100644 --- a/ceasiompy/SU2Run/func/su2config_rans.py +++ b/ceasiompy/SU2Run/func/su2config_rans.py @@ -477,7 +477,7 @@ def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): # Parameters which will vary for the different cases (alt,mach,aoa,aos) - for case_nb, alt_value in enumerate(alt_list): + for case_nb in enumerate(alt_list): cfg["MESH_FILENAME"] = str(su2_mesh) alt = alt_list[case_nb] From c20d387931991106e31c1987bef034de6df647a7 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 14 Feb 2024 15:11:44 +0100 Subject: [PATCH 30/55] adding correct unit to net force --- ceasiompy/ThermoData/__specs__.py | 4 ++-- ceasiompy/ThermoData/func/turbofan_func.py | 2 +- ceasiompy/ThermoData/func/turbojet_func.py | 4 +++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ceasiompy/ThermoData/__specs__.py b/ceasiompy/ThermoData/__specs__.py index 09a5cfa02..2d526d86f 100644 --- a/ceasiompy/ThermoData/__specs__.py +++ b/ceasiompy/ThermoData/__specs__.py @@ -26,8 +26,8 @@ cpacs_inout.add_input( var_name="net_force", var_type=float, - default_value=2000, - unit="1", # AGGIUNGERE UNITA DI MISURA + default_value=5000, + unit="[N]", descr="Engine net force", xpath=RANGE_XPATH + "/NetForce", gui=True, diff --git a/ceasiompy/ThermoData/func/turbofan_func.py b/ceasiompy/ThermoData/func/turbofan_func.py index fa5fa6fcc..8d3a3f491 100644 --- a/ceasiompy/ThermoData/func/turbofan_func.py +++ b/ceasiompy/ThermoData/func/turbofan_func.py @@ -313,7 +313,7 @@ def viewer(prob, pt, file=sys.stdout): prob.set_val("DESIGN.fc.MN", MN) prob.set_val("DESIGN.T4_MAX", 2857, units="degR") - prob.set_val("DESIGN.Fn_DES", Fn, units="lbf") + prob.set_val("DESIGN.Fn_DES", Fn * 0.2248089431, units="lbf") # 1 N = 0.2248089431 lbf # Set initial guesses for balances prob["DESIGN.balance.FAR"] = 0.1 diff --git a/ceasiompy/ThermoData/func/turbojet_func.py b/ceasiompy/ThermoData/func/turbojet_func.py index 4562cb6b3..0e0337de3 100644 --- a/ceasiompy/ThermoData/func/turbojet_func.py +++ b/ceasiompy/ThermoData/func/turbojet_func.py @@ -136,7 +136,9 @@ def setup(self): # define input values prob.set_val("DESIGN.fc.alt", alt, units="ft") prob.set_val("DESIGN.fc.MN", MN) - prob.set_val("DESIGN.balance.Fn_target", Fn, units="lbf") + prob.set_val( + "DESIGN.balance.Fn_target", Fn * 0.2248089431, units="lbf" + ) # 1 N = 0.2248089431 lbf prob.set_val("DESIGN.balance.T4_target", 2370.0, units="degR") prob.set_val("DESIGN.comp.PR", 13.5) prob.set_val("DESIGN.comp.eff", 0.83) From 2751a67761834559532761f678ec6d209385e728 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 15 Feb 2024 14:05:53 +0100 Subject: [PATCH 31/55] setting correct units --- ceasiompy/ThermoData/func/turbofan_func.py | 2 +- ceasiompy/ThermoData/func/turbojet_func.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ceasiompy/ThermoData/func/turbofan_func.py b/ceasiompy/ThermoData/func/turbofan_func.py index 8d3a3f491..27481771f 100644 --- a/ceasiompy/ThermoData/func/turbofan_func.py +++ b/ceasiompy/ThermoData/func/turbofan_func.py @@ -309,7 +309,7 @@ def viewer(prob, pt, file=sys.stdout): prob.set_val("DESIGN.hpt.eff", 0.8888) prob.set_val("DESIGN.lpt.eff", 0.8996) - prob.set_val("DESIGN.fc.alt", alt, units="ft") + prob.set_val("DESIGN.fc.alt", alt * 3.2808399, units="ft") prob.set_val("DESIGN.fc.MN", MN) prob.set_val("DESIGN.T4_MAX", 2857, units="degR") diff --git a/ceasiompy/ThermoData/func/turbojet_func.py b/ceasiompy/ThermoData/func/turbojet_func.py index 0e0337de3..1e02b3550 100644 --- a/ceasiompy/ThermoData/func/turbojet_func.py +++ b/ceasiompy/ThermoData/func/turbojet_func.py @@ -134,7 +134,7 @@ def setup(self): prob.setup(check=False) # define input values - prob.set_val("DESIGN.fc.alt", alt, units="ft") + prob.set_val("DESIGN.fc.alt", alt * 3.2808399, units="ft") prob.set_val("DESIGN.fc.MN", MN) prob.set_val( "DESIGN.balance.Fn_target", Fn * 0.2248089431, units="lbf" From f7322425c0ac714e6c9151d8a2b8b68be25a1c8c Mon Sep 17 00:00:00 2001 From: GBenedett Date: Mon, 19 Feb 2024 11:43:40 +0100 Subject: [PATCH 32/55] pycycle module added to python environment --- environment.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/environment.yml b/environment.yml index b191c3297..d798c246f 100644 --- a/environment.yml +++ b/environment.yml @@ -47,3 +47,4 @@ dependencies: - smt==1.2.0 - streamlit==1.14.0 - streamlit-autorefresh + - om-pycycle From b3d896418673d96614850bc905a2b377c87c237b Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Mon, 19 Feb 2024 14:37:17 +0100 Subject: [PATCH 33/55] fixing pycycle issues --- ceasiompy/ThermoData/__specs__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ceasiompy/ThermoData/__specs__.py b/ceasiompy/ThermoData/__specs__.py index 2d526d86f..7fe6bb9b5 100644 --- a/ceasiompy/ThermoData/__specs__.py +++ b/ceasiompy/ThermoData/__specs__.py @@ -26,8 +26,8 @@ cpacs_inout.add_input( var_name="net_force", var_type=float, - default_value=5000, - unit="[N]", + default_value=2000, + unit="N", descr="Engine net force", xpath=RANGE_XPATH + "/NetForce", gui=True, From bc998d1550556c9b3c918ffe3c913aec85ff1a18 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Mon, 19 Feb 2024 14:42:53 +0100 Subject: [PATCH 34/55] cpacs files --- test_files/CPACSfiles/busjet0903mod.xml | 2975 +++++++ test_files/CPACSfiles/concorde1014.xml | 2263 ++++++ test_files/CPACSfiles/j280904scaled.xml | 3096 +++++++ test_files/CPACSfiles/j35vort0903cfscaled.xml | 7140 +++++++++++++++++ test_files/CPACSfiles/labARscaled.xml | 933 +++ 5 files changed, 16407 insertions(+) create mode 100644 test_files/CPACSfiles/busjet0903mod.xml create mode 100644 test_files/CPACSfiles/concorde1014.xml create mode 100644 test_files/CPACSfiles/j280904scaled.xml create mode 100644 test_files/CPACSfiles/j35vort0903cfscaled.xml create mode 100644 test_files/CPACSfiles/labARscaled.xml diff --git a/test_files/CPACSfiles/busjet0903mod.xml b/test_files/CPACSfiles/busjet0903mod.xml new file mode 100644 index 000000000..4dddaa07e --- /dev/null +++ b/test_files/CPACSfiles/busjet0903mod.xml @@ -0,0 +1,2975 @@ + + +
+ busjet0903mod + Simple Wing for unit testing + Martin Siggel + 2012-10-09T15:12:47 + 0.2 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 - does not include structure update + cpacs2to3 + 2018-01-15T09:22:57 + 0.2 + 3.0 + + + Add this update + Aidan + 2018-10-03T09:00:01 + 0.3 + 3.0 + + +
+ + + + busjv0 + + 16.5 + 1.4907 + + 6.4047 + 0 + -0.9 + + + + +Fuselage +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + +
+FuselageFrameX0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + -0.4 + + + + + ... + fuseprof_1_1 + + + 1 + 0.015 + 0.015 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX64 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.44555 + 0 + -0.37941 + + + + + ... + fuseprof_1_2 + + + 1 + 0.4 + 0.26253 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX61 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.4169 + 0 + -0.31804 + + + + + ... + fuseprof_1_3 + + + 1 + 0.69132 + 0.48198 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX238 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.3832 + 0 + -0.052979 + + + + + ... + fuseprof_1_4 + + + 1 + 0.8061 + 0.77088 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX184 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.94 + 0 + 0 + + + + + ... + fuseprof_1_5 + + + 1 + 0.825 + 0.825 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX383 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 5.5 + 0 + 0 + + + + + ... + fuseprof_1_6 + + + 1 + 0.825 + 0.825 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX845 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.03 + 0 + 0 + + + + + ... + fuseprof_1_7 + + + 1 + 0.825 + 0.825 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX815 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 9.65 + 0 + 0.117 + + + + + ... + fuseprof_1_8 + + + 1 + 0.665 + 0.675 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX938 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 11.3 + 0 + 0.354 + + + + + ... + fuseprof_1_9 + + + 1 + 0.34776 + 0.387 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFrameX1000 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 12.4 + 0 + 0.5732 + + + + + ... + fuseprof_1_10 + + + 1 + 0.034906 + 0.090805 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FuselageFrameX0 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX64 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX61 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX238 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX184 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX383 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX845 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX815 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX938 + 0 + + + + ... + description + 0 + 0 + FuselageFrameX1000 + 0 + + + + + + ... + FuselageFrameX0elem1 + FuselageFrameX64elem1 + + + + ... + FuselageFrameX64elem1 + FuselageFrameX61elem1 + + + + ... + FuselageFrameX61elem1 + FuselageFrameX238elem1 + + + + ... + FuselageFrameX238elem1 + FuselageFrameX184elem1 + + + + ... + FuselageFrameX184elem1 + FuselageFrameX383elem1 + + + + ... + FuselageFrameX383elem1 + FuselageFrameX845elem1 + + + + ... + FuselageFrameX845elem1 + FuselageFrameX815elem1 + + + + ... + FuselageFrameX815elem1 + FuselageFrameX938elem1 + + + + ... + FuselageFrameX938elem1 + FuselageFrameX1000elem1 + + + +
+ +Fairing +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4 + 0 + -0.84 + + + +
+FairingFrameX0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.00537 + 0 + 0.182 + + + + + ... + fuseprof_2_1 + + + 1 + 0.2875 + 0.096528 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX61 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.312 + 0 + 0.178 + + + + + ... + fuseprof_2_2 + + + 1 + 0.51 + 0.2185 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX184 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.93 + 0 + 0.137 + + + + + ... + fuseprof_2_3 + + + 1 + 0.64 + 0.371 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX383 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.93 + 0 + 0.149 + + + + + ... + fuseprof_2_4 + + + 1 + 0.735 + 0.4495 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX616 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.95 + 0 + 0.158 + + + + + ... + fuseprof_2_5 + + + 1 + 0.68 + 0.4335 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX815 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 3.88 + 0 + 0.222 + + + + + ... + fuseprof_2_6 + + + 1 + 0.4525 + 0.3025 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FairingFrameX1000 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4.7297 + 0 + 0.33627 + + + + + ... + fuseprof_2_7 + + + 1 + 0.189 + 0.022006 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FairingFrameX0 + 0 + + + + ... + description + 0 + 0 + FairingFrameX61 + 0 + + + + ... + description + 0 + 0 + FairingFrameX184 + 0 + + + + ... + description + 0 + 0 + FairingFrameX383 + 0 + + + + ... + description + 0 + 0 + FairingFrameX616 + 0 + + + + ... + description + 0 + 0 + FairingFrameX815 + 0 + + + + ... + description + 0 + 0 + FairingFrameX1000 + 0 + + + + + + ... + FairingFrameX0elem1 + FairingFrameX61elem1 + + + + ... + FairingFrameX61elem1 + FairingFrameX184elem1 + + + + ... + FairingFrameX184elem1 + FairingFrameX383elem1 + + + + ... + FairingFrameX383elem1 + FairingFrameX616elem1 + + + + ... + FairingFrameX616elem1 + FairingFrameX815elem1 + + + + ... + FairingFrameX815elem1 + FairingFrameX1000elem1 + + + +
+ +LeftNacelle +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 7.4 + -1.3 + 0.45 + + + +
+LeftNacelleFrameX0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + + ... + fuseprof_3_1 + + + 1 + 0.305 + 0.305 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+LeftNacelleFrameX184 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.242 + -0 + 0 + + + + + ... + fuseprof_3_2 + + + 1 + 0.3695 + 0.3695 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+LeftNacelleFrameX53 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.6 + -0 + 0 + + + + + ... + fuseprof_3_3 + + + 1 + 0.42 + 0.42 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+LeftNacelleFrameX383 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.03 + -0 + 0 + + + + + ... + fuseprof_3_4 + + + 1 + 0.42 + 0.42 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+LeftNacelleFrameX616 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.39 + -0 + 0 + + + + + ... + fuseprof_3_5 + + + 1 + 0.372 + 0.372 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+LeftNacelleFrameX1000 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.25 + -0 + 0 + + + + + ... + fuseprof_3_6 + + + 1 + 0.21 + 0.21 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + LeftNacelleFrameX0 + 0 + + + + ... + description + 0 + 0 + LeftNacelleFrameX184 + 0 + + + + ... + description + 0 + 0 + LeftNacelleFrameX53 + 0 + + + + ... + description + 0 + 0 + LeftNacelleFrameX383 + 0 + + + + ... + description + 0 + 0 + LeftNacelleFrameX616 + 0 + + + + ... + description + 0 + 0 + LeftNacelleFrameX1000 + 0 + + + + + + ... + LeftNacelleFrameX0elem1 + LeftNacelleFrameX184elem1 + + + + ... + LeftNacelleFrameX184elem1 + LeftNacelleFrameX53elem1 + + + + ... + LeftNacelleFrameX53elem1 + LeftNacelleFrameX383elem1 + + + + ... + LeftNacelleFrameX383elem1 + LeftNacelleFrameX616elem1 + + + + ... + LeftNacelleFrameX616elem1 + LeftNacelleFrameX1000elem1 + + + +
+ +RightNacelle +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 7.4 + 1.3 + 0.45 + + + +
+RightNacelleFrameX0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + -0 + 0 + + + + + ... + fuseprof_4_1 + + + 1 + 0.305 + 0.305 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+RightNacelleFrameX184 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.242 + 0 + 0 + + + + + ... + fuseprof_4_2 + + + 1 + 0.3695 + 0.3695 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+RightNacelleFrameX53 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.6 + 0 + 0 + + + + + ... + fuseprof_4_3 + + + 1 + 0.42 + 0.42 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+RightNacelleFrameX383 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.03 + 0 + 0 + + + + + ... + fuseprof_4_4 + + + 1 + 0.42 + 0.42 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+RightNacelleFrameX616 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.39 + 0 + 0 + + + + + ... + fuseprof_4_5 + + + 1 + 0.372 + 0.372 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+RightNacelleFrameX1000 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.25 + 0 + 0 + + + + + ... + fuseprof_4_6 + + + 1 + 0.21 + 0.21 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + RightNacelleFrameX0 + 0 + + + + ... + description + 0 + 0 + RightNacelleFrameX184 + 0 + + + + ... + description + 0 + 0 + RightNacelleFrameX53 + 0 + + + + ... + description + 0 + 0 + RightNacelleFrameX383 + 0 + + + + ... + description + 0 + 0 + RightNacelleFrameX616 + 0 + + + + ... + description + 0 + 0 + RightNacelleFrameX1000 + 0 + + + + + + ... + RightNacelleFrameX0elem1 + RightNacelleFrameX184elem1 + + + + ... + RightNacelleFrameX184elem1 + RightNacelleFrameX53elem1 + + + + ... + RightNacelleFrameX53elem1 + RightNacelleFrameX383elem1 + + + + ... + RightNacelleFrameX383elem1 + RightNacelleFrameX616elem1 + + + + ... + RightNacelleFrameX616elem1 + RightNacelleFrameX1000elem1 + + + +
+
+ + + Wing + Fuselage + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 4.8 + 0 + -0.9 + + + +
+WingCenterline +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + -0.06 + + + + + ... + foil_1_4 + + + + 2.2 + 2.2 + 2.2 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingRightWingTip +description + + + 1 + 1 + 1 + + + -0 + 1 + -0 + + + 2.2 + 6.1 + 0.5 + + + + + ... + foil_1_3 + + + + 0.9 + 0.9 + 0.9 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingRightWLRoot +description + + + 1 + 1 + 1 + + + 85 + 0 + -0 + + + 2.75 + 6.5 + 0.8 + + + + + ... + foil_1_2 + + + + 0.52 + 0.52 + 0.52 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingRightWLTip +description + + + 1 + 1 + 1 + + + 85 + 0 + -0 + + + 3.3 + 6.6 + 1.5 + + + + + ... + foil_1_1 + + + + 0.3 + 0.3 + 0.3 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + WingRightWLTip + 0 + + + + ... + description + 0 + 0 + WingRightWLRoot + 0 + + + + ... + description + 0 + 0 + WingRightWingTip + 0 + + + + ... + description + 0 + 0 + WingCenterline + 0 + + + + + + ... + WingRightWLTipelem1 + WingRightWLRootelem1 + + + + ... + WingRightWLRootelem1 + WingRightWingTipelem1 + + + + ... + WingRightWingTipelem1 + WingCenterlineelem1 + + + +
+ + Fin + Fuselage + description + + + 1 + 1 + 1 + + + 90.0002 + 0 + -0 + + + 7.3 + 0 + 0.6 + + + +
+FinFinRoot +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + -0.4 + 0 + 0 + + + + + ... + foil_2_3 + + + + 5.4 + 5.4 + 5.4 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinFinKink +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 3.1 + 0.8 + 0 + + + + + ... + foil_2_2 + + + + 2.27 + 2.27 + 2.27 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinFinTip +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 4.9 + 2.7 + 0 + + + + + ... + foil_2_1 + + + + 1.4 + 1.4 + 1.4 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FinFinTip + 0 + + + + ... + description + 0 + 0 + FinFinKink + 0 + + + + ... + description + 0 + 0 + FinFinRoot + 0 + + + + + + ... + FinFinTipelem1 + FinFinKinkelem1 + + + + ... + FinFinKinkelem1 + FinFinRootelem1 + + + +
+ + WingStabilizer + Fuselage + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 12.2 + 0 + 3.2 + + + +
+WingStabilizerStabRoot +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_3_2 + + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingStabilizerStabTip +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0.837 + 2.3 + 0 + + + + + ... + foil_3_1 + + + + 0.45 + 0.45 + 0.45 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + WingStabilizerStabTip + 0 + + + + ... + description + 0 + 0 + WingStabilizerStabRoot + 0 + + + + + + ... + WingStabilizerStabTipelem1 + WingStabilizerStabRootelem1 + + + +
+ + WingPylon + Fuselage + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 7.6 + 0 + 0.1 + + + +
+WingPylonCentralSection +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_4_2 + + + + 2.1 + 2.1 + 2.1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingPylonPylonTip +description + + + 1 + 1 + 1 + + + 15 + 0 + -0 + + + 0 + 1.3 + 0.35 + + + + + ... + foil_4_1 + + + + 1.9 + 1.9 + 1.9 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + WingPylonPylonTip + 0 + + + + ... + description + 0 + 0 + WingPylonCentralSection + 0 + + + + + + ... + WingPylonPylonTipelem1 + WingPylonCentralSectionelem1 + + + +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 0.0 + 0.3 + 0.0 + 0.0 + + + + + + +
+
+ + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.849871 ;0.520193 ;0.000000 ;-0.520193 ;-0.849871 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.487693 ;0.884485 ;1.000000 ;0.884485 ;0.487693 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.642919 ;0.000000 ;-0.642919 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.461956 ;0.826095 ;1.000000 ;0.912369 ;0.549315 ;0.000000 ;-0.549315 ;-0.912369 ;-1.000000 ;-0.826095 ;-0.461956 ;-0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.433053 ;0.793116 ;1.000000 ;0.963624 ;0.612259 ;0.000000 ;-0.612259 ;-0.963624 ;-1.000000 ;-0.793116 ;-0.433053 ;-0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.457076 ;0.701691 ;0.868237 ;0.967099 ;1.000000 ;0.967099 ;0.868237 ;0.701691 ;0.457076 ;0.000000 ;-0.457076 ;-0.701691 ;-0.868237 ;-0.967099 ;-1.000000 ;-0.967099 ;-0.868237 ;-0.701691 ;-0.457076 ;0.000000 + -1.000000 ;-0.967099 ;-0.868237 ;-0.701691 ;-0.457076 ;-0.000000 ;0.457076 ;0.701691 ;0.868237 ;0.967099 ;1.000000 ;0.967099 ;0.868237 ;0.701691 ;0.457076 ;-0.000000 ;-0.457076 ;-0.701691 ;-0.868237 ;-0.967099 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;0.000000 + -1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;-0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;-0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;0.000000 + -1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;-0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;-0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;0.000000 + -1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;-0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;-0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;0.000000 + -1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;-0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;-0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.418995 ;0.674607 ;0.854713 ;0.963511 ;1.000000 ;0.963511 ;0.854713 ;0.674607 ;0.418995 ;0.000000 ;-0.418995 ;-0.674607 ;-0.854713 ;-0.963511 ;-1.000000 ;-0.963511 ;-0.854713 ;-0.674607 ;-0.418995 ;0.000000 + -1.000000 ;-0.963511 ;-0.854713 ;-0.674607 ;-0.418995 ;-0.000000 ;0.418995 ;0.674607 ;0.854713 ;0.963511 ;1.000000 ;0.963511 ;0.854713 ;0.674607 ;0.418995 ;-0.000000 ;-0.418995 ;-0.674607 ;-0.854713 ;-0.963511 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;0.000000 + -1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;-0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;-0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 + -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 + + + + + + ... + ... + + 0.999750 ;0.984920 ;0.968867 ;0.951505 ;0.932730 ;0.912425 ;0.890462 ;0.866719 ;0.841015 ;0.813216 ;0.783161 ;0.750652 ;0.715463 ;0.677360 ;0.636067 ;0.591289 ;0.542778 ;0.490257 ;0.433409 ;0.374254 ;0.319166 ;0.271452 ;0.230128 ;0.194344 ;0.163361 ;0.136538 ;0.113323 ;0.093231 ;0.075846 ;0.060809 ;0.047813 ;0.036585 ;0.026888 ;0.018532 ;0.011422 ;0.005623 ;0.001458 ;-0.000069 ;0.001194 ;0.004752 ;0.010054 ;0.016735 ;0.024716 ;0.034070 ;0.044985 ;0.057707 ;0.072513 ;0.089715 ;0.109673 ;0.132816 ;0.159639 ;0.190710 ;0.226679 ;0.268301 ;0.316443 ;0.372100 ;0.431925 ;0.489444 ;0.542585 ;0.591644 ;0.636875 ;0.678499 ;0.716817 ;0.752113 ;0.784621 ;0.814549 ;0.842110 ;0.867540 ;0.891079 ;0.912813 ;0.932930 ;0.951562 ;0.968834 ;0.984859 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000016 ;0.000342 ;0.000060 ;-0.000645 ;-0.001712 ;-0.003097 ;-0.004773 ;-0.006884 ;-0.009091 ;-0.011680 ;-0.014791 ;-0.018326 ;-0.022084 ;-0.025950 ;-0.029517 ;-0.032119 ;-0.033813 ;-0.034889 ;-0.035343 ;-0.035088 ;-0.034201 ;-0.032910 ;-0.031350 ;-0.029633 ;-0.027828 ;-0.025959 ;-0.024069 ;-0.022209 ;-0.020394 ;-0.018610 ;-0.016837 ;-0.015098 ;-0.013414 ;-0.011727 ;-0.009744 ;-0.007072 ;-0.003474 ;0.000999 ;0.005634 ;0.009929 ;0.013623 ;0.016962 ;0.020234 ;0.023651 ;0.027257 ;0.031036 ;0.034971 ;0.039083 ;0.043379 ;0.047832 ;0.052371 ;0.056921 ;0.061405 ;0.065680 ;0.069522 ;0.072634 ;0.074465 ;0.074746 ;0.073669 ;0.071371 ;0.067672 ;0.062579 ;0.056804 ;0.050783 ;0.044625 ;0.038381 ;0.032181 ;0.026290 ;0.021035 ;0.016103 ;0.011702 ;0.007846 ;0.004561 ;0.001895 ;0.000021 + + + + ... + ... + + 0.999750 ;0.984890 ;0.968819 ;0.951447 ;0.932667 ;0.912362 ;0.890404 ;0.866652 ;0.840955 ;0.813149 ;0.783055 ;0.750470 ;0.715178 ;0.676957 ;0.635546 ;0.590660 ;0.542051 ;0.489433 ;0.432485 ;0.373226 ;0.318042 ;0.270243 ;0.228846 ;0.192997 ;0.161957 ;0.135086 ;0.111829 ;0.091702 ;0.074287 ;0.059229 ;0.046218 ;0.034980 ;0.025280 ;0.016944 ;0.009950 ;0.004431 ;0.000853 ;-0.000219 ;0.000780 ;0.003787 ;0.008638 ;0.014960 ;0.022643 ;0.031722 ;0.042385 ;0.054880 ;0.069495 ;0.086541 ;0.106385 ;0.129460 ;0.156273 ;0.187403 ;0.223508 ;0.265355 ;0.313823 ;0.369918 ;0.430255 ;0.488279 ;0.541867 ;0.591287 ;0.636715 ;0.678351 ;0.716575 ;0.751738 ;0.784108 ;0.813941 ;0.841481 ;0.866933 ;0.890474 ;0.912265 ;0.932457 ;0.951182 ;0.968565 ;0.984718 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000011 ;0.000035 ;-0.000595 ;-0.001686 ;-0.003173 ;-0.005014 ;-0.007184 ;-0.009649 ;-0.012396 ;-0.015412 ;-0.018654 ;-0.022012 ;-0.025376 ;-0.028704 ;-0.031690 ;-0.033731 ;-0.035043 ;-0.035856 ;-0.036145 ;-0.035806 ;-0.034905 ;-0.033638 ;-0.032114 ;-0.030438 ;-0.028667 ;-0.026817 ;-0.024935 ;-0.023074 ;-0.021244 ;-0.019422 ;-0.017586 ;-0.015781 ;-0.014019 ;-0.012165 ;-0.009779 ;-0.006550 ;-0.002368 ;0.002278 ;0.007040 ;0.011798 ;0.016152 ;0.020250 ;0.024333 ;0.028631 ;0.033191 ;0.037997 ;0.043022 ;0.048286 ;0.053797 ;0.059520 ;0.065368 ;0.071236 ;0.077020 ;0.082527 ;0.087456 ;0.091396 ;0.093608 ;0.093726 ;0.091975 ;0.088480 ;0.082849 ;0.075372 ;0.067185 ;0.058922 ;0.050783 ;0.042965 ;0.035637 ;0.028886 ;0.022735 ;0.017204 ;0.012319 ;0.008101 ;0.004582 ;0.001820 ;0.000017 + + + + ... + ... + + 0.999750 ;0.984963 ;0.968912 ;0.951526 ;0.932708 ;0.912343 ;0.890309 ;0.866484 ;0.840689 ;0.812791 ;0.782648 ;0.750076 ;0.714844 ;0.676716 ;0.635410 ;0.590613 ;0.542072 ;0.489519 ;0.432635 ;0.373438 ;0.318304 ;0.270541 ;0.229167 ;0.193329 ;0.162290 ;0.135410 ;0.112134 ;0.091981 ;0.074535 ;0.059437 ;0.046379 ;0.035088 ;0.025328 ;0.016927 ;0.009856 ;0.004225 ;0.000616 ;-0.000388 ;0.000641 ;0.003615 ;0.008374 ;0.014575 ;0.022129 ;0.031082 ;0.041626 ;0.054013 ;0.068534 ;0.085504 ;0.105292 ;0.128336 ;0.155149 ;0.186317 ;0.222504 ;0.264484 ;0.313146 ;0.369503 ;0.430153 ;0.488502 ;0.542407 ;0.592138 ;0.637903 ;0.679894 ;0.718442 ;0.753851 ;0.786353 ;0.816146 ;0.843443 ;0.868561 ;0.891872 ;0.913344 ;0.933247 ;0.951714 ;0.968873 ;0.984842 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000034 ;0.001343 ;0.002042 ;0.002338 ;0.002299 ;0.001981 ;0.001411 ;0.000297 ;-0.000751 ;-0.002268 ;-0.004641 ;-0.007783 ;-0.011367 ;-0.015256 ;-0.019016 ;-0.021811 ;-0.023639 ;-0.024937 ;-0.025772 ;-0.026084 ;-0.025899 ;-0.025359 ;-0.024563 ;-0.023603 ;-0.022528 ;-0.021345 ;-0.020101 ;-0.018844 ;-0.017584 ;-0.016295 ;-0.014958 ;-0.013622 ;-0.012300 ;-0.010820 ;-0.008704 ;-0.005689 ;-0.001553 ;0.003104 ;0.007893 ;0.012708 ;0.017218 ;0.021572 ;0.025988 ;0.030667 ;0.035652 ;0.040926 ;0.046466 ;0.052290 ;0.058406 ;0.064778 ;0.071313 ;0.077905 ;0.084439 ;0.090711 ;0.096406 ;0.101093 ;0.103972 ;0.104634 ;0.103342 ;0.100304 ;0.095306 ;0.088490 ;0.080778 ;0.072671 ;0.064289 ;0.055673 ;0.046941 ;0.038553 ;0.031124 ;0.024044 ;0.017694 ;0.012074 ;0.007206 ;0.003133 ;0.000040 + + + + ... + ... + + 0.999750 ;0.984901 ;0.968817 ;0.951416 ;0.932594 ;0.912236 ;0.890215 ;0.866393 ;0.840618 ;0.812729 ;0.782549 ;0.749882 ;0.714515 ;0.676226 ;0.634766 ;0.589856 ;0.541236 ;0.488613 ;0.431662 ;0.372399 ;0.317204 ;0.269387 ;0.227965 ;0.192083 ;0.161003 ;0.134087 ;0.110777 ;0.090594 ;0.073120 ;0.057999 ;0.044920 ;0.033610 ;0.023836 ;0.015463 ;0.008546 ;0.003170 ;0.000037 ;-0.000847 ;-0.000139 ;0.002333 ;0.006607 ;0.012362 ;0.019509 ;0.028067 ;0.038232 ;0.050266 ;0.064476 ;0.081182 ;0.100758 ;0.123655 ;0.150403 ;0.181605 ;0.217942 ;0.260206 ;0.309305 ;0.366267 ;0.427639 ;0.486700 ;0.541228 ;0.591436 ;0.637398 ;0.679261 ;0.717513 ;0.752585 ;0.784784 ;0.814413 ;0.841747 ;0.867013 ;0.890399 ;0.912075 ;0.932198 ;0.950904 ;0.968322 ;0.984564 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000022 ;0.000622 ;0.000586 ;0.000126 ;-0.000696 ;-0.001829 ;-0.003246 ;-0.004916 ;-0.006821 ;-0.008959 ;-0.011304 ;-0.013763 ;-0.016231 ;-0.018699 ;-0.020971 ;-0.022468 ;-0.023433 ;-0.024125 ;-0.024576 ;-0.024705 ;-0.024512 ;-0.024069 ;-0.023420 ;-0.022636 ;-0.021737 ;-0.020718 ;-0.019629 ;-0.018514 ;-0.017372 ;-0.016164 ;-0.014887 ;-0.013606 ;-0.012309 ;-0.010644 ;-0.008058 ;-0.004625 ;-0.000094 ;0.004614 ;0.009533 ;0.014700 ;0.019777 ;0.024846 ;0.030077 ;0.035672 ;0.041674 ;0.048068 ;0.054817 ;0.061939 ;0.069438 ;0.077271 ;0.085327 ;0.093462 ;0.101521 ;0.109242 ;0.116204 ;0.121829 ;0.125078 ;0.125414 ;0.123135 ;0.118424 ;0.110793 ;0.100720 ;0.089762 ;0.078721 ;0.067879 ;0.057502 ;0.047786 ;0.038836 ;0.030680 ;0.023341 ;0.016841 ;0.011200 ;0.006451 ;0.002651 ;0.000028 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 + + + + ... + ... + + 0.999750 ;0.984959 ;0.968971 ;0.951687 ;0.932996 ;0.912781 ;0.890912 ;0.867250 ;0.841645 ;0.813933 ;0.783934 ;0.751451 ;0.716275 ;0.678179 ;0.636908 ;0.592195 ;0.543779 ;0.491371 ;0.434651 ;0.375633 ;0.320677 ;0.273079 ;0.231860 ;0.196168 ;0.165264 ;0.138511 ;0.115355 ;0.095314 ;0.077971 ;0.062967 ;0.049993 ;0.038779 ;0.029087 ;0.020719 ;0.013525 ;0.007431 ;0.002540 ;0.000000 ;0.002537 ;0.007428 ;0.013522 ;0.020716 ;0.029084 ;0.038776 ;0.049990 ;0.062964 ;0.077968 ;0.095311 ;0.115352 ;0.138509 ;0.165262 ;0.196165 ;0.231858 ;0.273077 ;0.320675 ;0.375631 ;0.434649 ;0.491370 ;0.543778 ;0.592194 ;0.636907 ;0.678178 ;0.716274 ;0.751450 ;0.783933 ;0.813933 ;0.841645 ;0.867250 ;0.890912 ;0.912781 ;0.932996 ;0.951687 ;0.968971 ;0.984959 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000002 ;-0.000529 ;-0.001530 ;-0.002875 ;-0.004519 ;-0.006439 ;-0.008610 ;-0.011017 ;-0.013646 ;-0.016478 ;-0.019460 ;-0.022510 ;-0.025567 ;-0.028545 ;-0.031142 ;-0.033008 ;-0.034219 ;-0.034886 ;-0.034946 ;-0.034311 ;-0.033083 ;-0.031501 ;-0.029701 ;-0.027784 ;-0.025819 ;-0.023838 ;-0.021874 ;-0.019965 ;-0.018129 ;-0.016360 ;-0.014646 ;-0.012990 ;-0.011407 ;-0.009881 ;-0.008295 ;-0.006412 ;-0.003870 ;-0.000002 ;0.003868 ;0.006411 ;0.008295 ;0.009880 ;0.011407 ;0.012989 ;0.014645 ;0.016360 ;0.018128 ;0.019965 ;0.021874 ;0.023838 ;0.025819 ;0.027784 ;0.029701 ;0.031501 ;0.033083 ;0.034311 ;0.034946 ;0.034886 ;0.034220 ;0.033008 ;0.031142 ;0.028545 ;0.025567 ;0.022510 ;0.019460 ;0.016478 ;0.013646 ;0.011017 ;0.008610 ;0.006439 ;0.004519 ;0.002875 ;0.001530 ;0.000529 ;0.000002 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000024 ;-0.000976 ;-0.001928 ;-0.002881 ;-0.003833 ;-0.004785 ;-0.005737 ;-0.006690 ;-0.007642 ;-0.008594 ;-0.009546 ;-0.010499 ;-0.011451 ;-0.012403 ;-0.013355 ;-0.014308 ;-0.015260 ;-0.016212 ;-0.017165 ;-0.018098 ;-0.019023 ;-0.019939 ;-0.020846 ;-0.021741 ;-0.022627 ;-0.023497 ;-0.024357 ;-0.025201 ;-0.026032 ;-0.026844 ;-0.027644 ;-0.028423 ;-0.029184 ;-0.029929 ;-0.030651 ;-0.031355 ;-0.032040 ;-0.032702 ;-0.033342 ;-0.033962 ;-0.034558 ;-0.035131 ;-0.035680 ;-0.036199 ;-0.036690 ;-0.037152 ;-0.037578 ;-0.037974 ;-0.038335 ;-0.038660 ;-0.038948 ;-0.039203 ;-0.039421 ;-0.039604 ;-0.039750 ;-0.039863 ;-0.039941 ;-0.039987 ;-0.040000 ;-0.039983 ;-0.039935 ;-0.039857 ;-0.039750 ;-0.039615 ;-0.039453 ;-0.039262 ;-0.039043 ;-0.038796 ;-0.038523 ;-0.038223 ;-0.037895 ;-0.037539 ;-0.037159 ;-0.036745 ;-0.036306 ;-0.035833 ;-0.035333 ;-0.034797 ;-0.034232 ;-0.033634 ;-0.033000 ;-0.032332 ;-0.031626 ;-0.030881 ;-0.030094 ;-0.029262 ;-0.028386 ;-0.027457 ;-0.026475 ;-0.025436 ;-0.024333 ;-0.024046 ;-0.023754 ;-0.023457 ;-0.023155 ;-0.022847 ;-0.022534 ;-0.022215 ;-0.021889 ;-0.021557 ;-0.021218 ;-0.020870 ;-0.020516 ;-0.020157 ;-0.019791 ;-0.019421 ;-0.019047 ;-0.018668 ;-0.018286 ;-0.017901 ;-0.017514 ;-0.017125 ;-0.016730 ;-0.016329 ;-0.015919 ;-0.015496 ;-0.015057 ;-0.014601 ;-0.014119 ;-0.013610 ;-0.013065 ;-0.012479 ;-0.011844 ;-0.011152 ;-0.010391 ;-0.009541 ;-0.009451 ;-0.009359 ;-0.009266 ;-0.009172 ;-0.009077 ;-0.008980 ;-0.008882 ;-0.008783 ;-0.008683 ;-0.008581 ;-0.008478 ;-0.008373 ;-0.008267 ;-0.008159 ;-0.008050 ;-0.007939 ;-0.007826 ;-0.007712 ;-0.007596 ;-0.007478 ;-0.007358 ;-0.007236 ;-0.007111 ;-0.006984 ;-0.006854 ;-0.006721 ;-0.006584 ;-0.006444 ;-0.006299 ;-0.006150 ;-0.005996 ;-0.005837 ;-0.005672 ;-0.005501 ;-0.005323 ;-0.005138 ;-0.004945 ;-0.004741 ;-0.004527 ;-0.004301 ;-0.004064 ;-0.003809 ;-0.003530 ;-0.003218 ;-0.002884 ;-0.002529 ;-0.002037 ;-0.001436 ;0.000000 ;0.001436 ;0.002037 ;0.002529 ;0.002884 ;0.003218 ;0.003530 ;0.003809 ;0.004064 ;0.004301 ;0.004527 ;0.004741 ;0.004945 ;0.005138 ;0.005323 ;0.005501 ;0.005672 ;0.005837 ;0.005996 ;0.006150 ;0.006299 ;0.006444 ;0.006584 ;0.006721 ;0.006854 ;0.006984 ;0.007111 ;0.007236 ;0.007358 ;0.007478 ;0.007596 ;0.007712 ;0.007826 ;0.007939 ;0.008050 ;0.008159 ;0.008267 ;0.008373 ;0.008478 ;0.008581 ;0.008683 ;0.008783 ;0.008882 ;0.008980 ;0.009077 ;0.009172 ;0.009266 ;0.009359 ;0.009451 ;0.009541 ;0.010391 ;0.011152 ;0.011844 ;0.012479 ;0.013065 ;0.013610 ;0.014119 ;0.014601 ;0.015057 ;0.015496 ;0.015919 ;0.016329 ;0.016730 ;0.017125 ;0.017514 ;0.017901 ;0.018286 ;0.018668 ;0.019047 ;0.019421 ;0.019791 ;0.020157 ;0.020516 ;0.020870 ;0.021218 ;0.021557 ;0.021889 ;0.022215 ;0.022534 ;0.022847 ;0.023155 ;0.023457 ;0.023754 ;0.024046 ;0.024333 ;0.025436 ;0.026475 ;0.027457 ;0.028386 ;0.029262 ;0.030094 ;0.030881 ;0.031626 ;0.032332 ;0.033000 ;0.033634 ;0.034232 ;0.034797 ;0.035333 ;0.035833 ;0.036306 ;0.036745 ;0.037159 ;0.037539 ;0.037895 ;0.038223 ;0.038523 ;0.038796 ;0.039043 ;0.039262 ;0.039453 ;0.039615 ;0.039750 ;0.039857 ;0.039935 ;0.039983 ;0.040000 ;0.039987 ;0.039941 ;0.039863 ;0.039750 ;0.039604 ;0.039421 ;0.039203 ;0.038948 ;0.038660 ;0.038335 ;0.037974 ;0.037578 ;0.037152 ;0.036690 ;0.036199 ;0.035680 ;0.035131 ;0.034558 ;0.033962 ;0.033342 ;0.032702 ;0.032040 ;0.031355 ;0.030651 ;0.029929 ;0.029184 ;0.028423 ;0.027644 ;0.026844 ;0.026032 ;0.025201 ;0.024357 ;0.023497 ;0.022627 ;0.021741 ;0.020846 ;0.019939 ;0.019023 ;0.018098 ;0.017165 ;0.016212 ;0.015260 ;0.014308 ;0.013355 ;0.012403 ;0.011451 ;0.010499 ;0.009546 ;0.008594 ;0.007642 ;0.006690 ;0.005737 ;0.004785 ;0.003833 ;0.002881 ;0.001928 ;0.000976 ;0.000024 + + + + ... + ... + + 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000024 ;-0.000976 ;-0.001928 ;-0.002881 ;-0.003833 ;-0.004785 ;-0.005737 ;-0.006690 ;-0.007642 ;-0.008594 ;-0.009546 ;-0.010499 ;-0.011451 ;-0.012403 ;-0.013355 ;-0.014308 ;-0.015260 ;-0.016212 ;-0.017165 ;-0.018098 ;-0.019023 ;-0.019939 ;-0.020846 ;-0.021741 ;-0.022627 ;-0.023497 ;-0.024357 ;-0.025201 ;-0.026032 ;-0.026844 ;-0.027644 ;-0.028423 ;-0.029184 ;-0.029929 ;-0.030651 ;-0.031355 ;-0.032040 ;-0.032702 ;-0.033342 ;-0.033962 ;-0.034558 ;-0.035131 ;-0.035680 ;-0.036199 ;-0.036690 ;-0.037152 ;-0.037578 ;-0.037974 ;-0.038335 ;-0.038660 ;-0.038948 ;-0.039203 ;-0.039421 ;-0.039604 ;-0.039750 ;-0.039863 ;-0.039941 ;-0.039987 ;-0.040000 ;-0.039983 ;-0.039935 ;-0.039857 ;-0.039750 ;-0.039615 ;-0.039453 ;-0.039262 ;-0.039043 ;-0.038796 ;-0.038523 ;-0.038223 ;-0.037895 ;-0.037539 ;-0.037159 ;-0.036745 ;-0.036306 ;-0.035833 ;-0.035333 ;-0.034797 ;-0.034232 ;-0.033634 ;-0.033000 ;-0.032332 ;-0.031626 ;-0.030881 ;-0.030094 ;-0.029262 ;-0.028386 ;-0.027457 ;-0.026475 ;-0.025436 ;-0.024333 ;-0.024046 ;-0.023754 ;-0.023457 ;-0.023155 ;-0.022847 ;-0.022534 ;-0.022215 ;-0.021889 ;-0.021557 ;-0.021218 ;-0.020870 ;-0.020516 ;-0.020157 ;-0.019791 ;-0.019421 ;-0.019047 ;-0.018668 ;-0.018286 ;-0.017901 ;-0.017514 ;-0.017125 ;-0.016730 ;-0.016329 ;-0.015919 ;-0.015496 ;-0.015057 ;-0.014601 ;-0.014119 ;-0.013610 ;-0.013065 ;-0.012479 ;-0.011844 ;-0.011152 ;-0.010391 ;-0.009541 ;-0.009451 ;-0.009359 ;-0.009266 ;-0.009172 ;-0.009077 ;-0.008980 ;-0.008882 ;-0.008783 ;-0.008683 ;-0.008581 ;-0.008478 ;-0.008373 ;-0.008267 ;-0.008159 ;-0.008050 ;-0.007939 ;-0.007826 ;-0.007712 ;-0.007596 ;-0.007478 ;-0.007358 ;-0.007236 ;-0.007111 ;-0.006984 ;-0.006854 ;-0.006721 ;-0.006584 ;-0.006444 ;-0.006299 ;-0.006150 ;-0.005996 ;-0.005837 ;-0.005672 ;-0.005501 ;-0.005323 ;-0.005138 ;-0.004945 ;-0.004741 ;-0.004527 ;-0.004301 ;-0.004064 ;-0.003809 ;-0.003530 ;-0.003218 ;-0.002884 ;-0.002529 ;-0.002037 ;-0.001436 ;0.000000 ;0.001436 ;0.002037 ;0.002529 ;0.002884 ;0.003218 ;0.003530 ;0.003809 ;0.004064 ;0.004301 ;0.004527 ;0.004741 ;0.004945 ;0.005138 ;0.005323 ;0.005501 ;0.005672 ;0.005837 ;0.005996 ;0.006150 ;0.006299 ;0.006444 ;0.006584 ;0.006721 ;0.006854 ;0.006984 ;0.007111 ;0.007236 ;0.007358 ;0.007478 ;0.007596 ;0.007712 ;0.007826 ;0.007939 ;0.008050 ;0.008159 ;0.008267 ;0.008373 ;0.008478 ;0.008581 ;0.008683 ;0.008783 ;0.008882 ;0.008980 ;0.009077 ;0.009172 ;0.009266 ;0.009359 ;0.009451 ;0.009541 ;0.010391 ;0.011152 ;0.011844 ;0.012479 ;0.013065 ;0.013610 ;0.014119 ;0.014601 ;0.015057 ;0.015496 ;0.015919 ;0.016329 ;0.016730 ;0.017125 ;0.017514 ;0.017901 ;0.018286 ;0.018668 ;0.019047 ;0.019421 ;0.019791 ;0.020157 ;0.020516 ;0.020870 ;0.021218 ;0.021557 ;0.021889 ;0.022215 ;0.022534 ;0.022847 ;0.023155 ;0.023457 ;0.023754 ;0.024046 ;0.024333 ;0.025436 ;0.026475 ;0.027457 ;0.028386 ;0.029262 ;0.030094 ;0.030881 ;0.031626 ;0.032332 ;0.033000 ;0.033634 ;0.034232 ;0.034797 ;0.035333 ;0.035833 ;0.036306 ;0.036745 ;0.037159 ;0.037539 ;0.037895 ;0.038223 ;0.038523 ;0.038796 ;0.039043 ;0.039262 ;0.039453 ;0.039615 ;0.039750 ;0.039857 ;0.039935 ;0.039983 ;0.040000 ;0.039987 ;0.039941 ;0.039863 ;0.039750 ;0.039604 ;0.039421 ;0.039203 ;0.038948 ;0.038660 ;0.038335 ;0.037974 ;0.037578 ;0.037152 ;0.036690 ;0.036199 ;0.035680 ;0.035131 ;0.034558 ;0.033962 ;0.033342 ;0.032702 ;0.032040 ;0.031355 ;0.030651 ;0.029929 ;0.029184 ;0.028423 ;0.027644 ;0.026844 ;0.026032 ;0.025201 ;0.024357 ;0.023497 ;0.022627 ;0.021741 ;0.020846 ;0.019939 ;0.019023 ;0.018098 ;0.017165 ;0.016212 ;0.015260 ;0.014308 ;0.013355 ;0.012403 ;0.011451 ;0.010499 ;0.009546 ;0.008594 ;0.007642 ;0.006690 ;0.005737 ;0.004785 ;0.003833 ;0.002881 ;0.001928 ;0.000976 ;0.000024 + + + + +
+
diff --git a/test_files/CPACSfiles/concorde1014.xml b/test_files/CPACSfiles/concorde1014.xml new file mode 100644 index 000000000..afd1e96cc --- /dev/null +++ b/test_files/CPACSfiles/concorde1014.xml @@ -0,0 +1,2263 @@ + + +
+ concorde1014 + Simple Wing for unit testing + Martin Siggel + 2012-10-09T15:12:47 + 0.2 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 - does not include structure update + cpacs2to3 + 2018-01-15T09:22:57 + 0.2 + 3.0 + + + Add this update + Aidan + 2018-10-03T09:00:01 + 0.3 + 3.0 + + +
+ + + + concv0 + + 499.8191 + 23.9332 + + 30.0246 + 0 + 0.50005 + + + + +Fuselage +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + +
+FuselageFuseFrame1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1 + 0 + 0.070208 + + + + + ... + fuseprof_1_1 + + + 1 + 0.13612 + 0.15746 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 5.2614 + 0 + 0.45897 + + + + + ... + fuseprof_1_2 + + + 1 + 0.78415 + 0.9071 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 9.5229 + 0 + 0.9153 + + + + + ... + fuseprof_1_3 + + + 1 + 1.2864 + 1.4881 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 13.7843 + 0 + 1.0901 + + + + + ... + fuseprof_1_4 + + + 1 + 1.4404 + 1.6662 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 18.0457 + 0 + 1.084 + + + + + ... + fuseprof_1_5 + + + 1 + 1.4331 + 1.6578 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 26.5686 + 0 + 1.0793 + + + + + ... + fuseprof_1_6 + + + 1 + 1.4246 + 1.648 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 35.0914 + 0 + 1.0907 + + + + + ... + fuseprof_1_7 + + + 1 + 1.445 + 1.6717 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame10 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 39.3529 + 0 + 1.1183 + + + + + ... + fuseprof_1_8 + + + 1 + 1.4203 + 1.6429 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 43.6143 + 0 + 1.1979 + + + + + ... + fuseprof_1_9 + + + 1 + 1.3315 + 1.5403 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame12 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 47.8757 + 0 + 1.2906 + + + + + ... + fuseprof_1_10 + + + 1 + 1.2099 + 1.3996 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 52.1371 + 0 + 1.5472 + + + + + ... + fuseprof_1_11 + + + 1 + 0.92955 + 1.0753 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame14 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 56.3986 + 0 + 1.8593 + + + + + ... + fuseprof_1_12 + + + 1 + 0.5894 + 0.6818 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuselageFuseFrame15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 60.66 + 0 + 2.3157 + + + + + ... + fuseprof_1_13 + + + 1 + 0.11801 + 0.13652 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FuselageFuseFrame1 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame2 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame3 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame4 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame5 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame7 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame9 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame10 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame11 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame12 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame13 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame14 + 0 + + + + ... + description + 0 + 0 + FuselageFuseFrame15 + 0 + + + + + + ... + FuselageFuseFrame1elem1 + FuselageFuseFrame2elem1 + + + + ... + FuselageFuseFrame2elem1 + FuselageFuseFrame3elem1 + + + + ... + FuselageFuseFrame3elem1 + FuselageFuseFrame4elem1 + + + + ... + FuselageFuseFrame4elem1 + FuselageFuseFrame5elem1 + + + + ... + FuselageFuseFrame5elem1 + FuselageFuseFrame7elem1 + + + + ... + FuselageFuseFrame7elem1 + FuselageFuseFrame9elem1 + + + + ... + FuselageFuseFrame9elem1 + FuselageFuseFrame10elem1 + + + + ... + FuselageFuseFrame10elem1 + FuselageFuseFrame11elem1 + + + + ... + FuselageFuseFrame11elem1 + FuselageFuseFrame12elem1 + + + + ... + FuselageFuseFrame12elem1 + FuselageFuseFrame13elem1 + + + + ... + FuselageFuseFrame13elem1 + FuselageFuseFrame14elem1 + + + + ... + FuselageFuseFrame14elem1 + FuselageFuseFrame15elem1 + + + +
+
+ + + Wing + Fuselage + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 13 + 0 + 0.5 + + + +
+WingWingSection1 +description + + + 1 + 1 + 1 + + + -0 + -0.00018026 + -0 + + + 0.0037595 + 0 + -8.8498e-05 + + + + + ... + foil_1_11 + + + + 35.588 + 35.588 + 35.588 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection2 +description + + + 1 + 1 + 1 + + + 0.32116 + -0.24216 + 0.0013574 + + + 4.8505 + 1.2799 + -0.095416 + + + + + ... + foil_1_10 + + + + 30.6015 + 30.6015 + 30.6015 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection3 +description + + + 1 + 1 + 1 + + + 0.40118 + -0.55268 + 0.0038698 + + + 9.8867 + 2.5588 + -0.16762 + + + + + ... + foil_1_9 + + + + 25.4255 + 25.4255 + 25.4255 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection4 +description + + + 1 + 1 + 1 + + + -0.00039544 + -1.0003 + -6.9033e-06 + + + 14.2746 + 3.8377 + -0.2377 + + + + + ... + foil_1_8 + + + + 20.8978 + 20.8978 + 20.8978 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection5 +description + + + 1 + 1 + 1 + + + -1.0427 + -1.6292 + -0.029648 + + + 17.5176 + 5.1166 + -0.32433 + + + + + ... + foil_1_7 + + + + 17.5151 + 17.5151 + 17.5151 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection6 +description + + + 1 + 1 + 1 + + + -2.5584 + -2.3868 + -0.10662 + + + 20.1708 + 6.3955 + -0.41832 + + + + + ... + foil_1_6 + + + + 14.722 + 14.722 + 14.722 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection7 +description + + + 1 + 1 + 1 + + + -4.2989 + -3.1954 + -0.24008 + + + 22.4811 + 7.6744 + -0.51325 + + + + + ... + foil_1_5 + + + + 12.272 + 12.272 + 12.272 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection8 +description + + + 1 + 1 + 1 + + + -6.0151 + -3.9782 + -0.41884 + + + 24.4417 + 8.9533 + -0.61273 + + + + + ... + foil_1_4 + + + + 10.1717 + 10.1717 + 10.1717 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection9 +description + + + 1 + 1 + 1 + + + -7.5132 + -4.6789 + -0.61637 + + + 26.1297 + 10.2322 + -0.72051 + + + + + ... + foil_1_3 + + + + 8.3439 + 8.3439 + 8.3439 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection10 +description + + + 1 + 1 + 1 + + + -8.8285 + -5.3121 + -0.82382 + + + 27.8087 + 11.5111 + -0.83598 + + + + + ... + foil_1_2 + + + + 6.5251 + 6.5251 + 6.5251 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection11 +description + + + 1 + 1 + 1 + + + -10.0538 + -5.9085 + -1.0456 + + + 30.4076 + 12.79 + -0.91742 + + + + + ... + foil_1_1 + + + + 3.4909 + 3.4909 + 3.4909 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + WingWingSection11 + 0 + + + + ... + description + 0 + 0 + WingWingSection10 + 0 + + + + ... + description + 0 + 0 + WingWingSection9 + 0 + + + + ... + description + 0 + 0 + WingWingSection8 + 0 + + + + ... + description + 0 + 0 + WingWingSection7 + 0 + + + + ... + description + 0 + 0 + WingWingSection6 + 0 + + + + ... + description + 0 + 0 + WingWingSection5 + 0 + + + + ... + description + 0 + 0 + WingWingSection4 + 0 + + + + ... + description + 0 + 0 + WingWingSection3 + 0 + + + + ... + description + 0 + 0 + WingWingSection2 + 0 + + + + ... + description + 0 + 0 + WingWingSection1 + 0 + + + + + + ... + WingWingSection11elem1 + WingWingSection10elem1 + + + + ... + WingWingSection10elem1 + WingWingSection9elem1 + + + + ... + WingWingSection9elem1 + WingWingSection8elem1 + + + + ... + WingWingSection8elem1 + WingWingSection7elem1 + + + + ... + WingWingSection7elem1 + WingWingSection6elem1 + + + + ... + WingWingSection6elem1 + WingWingSection5elem1 + + + + ... + WingWingSection5elem1 + WingWingSection4elem1 + + + + ... + WingWingSection4elem1 + WingWingSection3elem1 + + + + ... + WingWingSection3elem1 + WingWingSection2elem1 + + + + ... + WingWingSection2elem1 + WingWingSection1elem1 + + + +
+ + Fin + Fuselage + description + + + 1 + 1 + 1 + + + 90.0002 + 0 + -0 + + + 40 + 0 + 2.3 + + + +
+FinWingSection1 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_2_7 + + + + 16.7401 + 16.7401 + 16.7401 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection2 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 2.0781 + 0.59856 + 0 + + + + + ... + foil_2_6 + + + + 14.5472 + 14.5472 + 14.5472 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection3 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 5.1956 + 1.434 + 0 + + + + + ... + foil_2_5 + + + + 11.2695 + 11.2695 + 11.2695 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection4 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 8.3166 + 2.4451 + 0 + + + + + ... + foil_2_4 + + + + 7.9545 + 7.9545 + 7.9545 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection5 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 9.9171 + 3.456 + 0 + + + + + ... + foil_2_3 + + + + 6.1601 + 6.1601 + 6.1601 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection6 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 11.4305 + 4.8037 + 0 + + + + + ... + foil_2_2 + + + + 4.3881 + 4.3881 + 4.3881 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection7 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 12.9496 + 6.1477 + 0 + + + + + ... + foil_2_1 + + + + 2.6113 + 2.6113 + 2.6113 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FinWingSection7 + 0 + + + + ... + description + 0 + 0 + FinWingSection6 + 0 + + + + ... + description + 0 + 0 + FinWingSection5 + 0 + + + + ... + description + 0 + 0 + FinWingSection4 + 0 + + + + ... + description + 0 + 0 + FinWingSection3 + 0 + + + + ... + description + 0 + 0 + FinWingSection2 + 0 + + + + ... + description + 0 + 0 + FinWingSection1 + 0 + + + + + + ... + FinWingSection7elem1 + FinWingSection6elem1 + + + + ... + FinWingSection6elem1 + FinWingSection5elem1 + + + + ... + FinWingSection5elem1 + FinWingSection4elem1 + + + + ... + FinWingSection4elem1 + FinWingSection3elem1 + + + + ... + FinWingSection3elem1 + FinWingSection2elem1 + + + + ... + FinWingSection2elem1 + FinWingSection1elem1 + + + +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 0.0 + 0.3 + 0.0 + 0.0 + + + + + + +
+
+ + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 + -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 + + + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000328 ;0.000643 ;0.000948 ;0.001245 ;0.001530 ;0.001800 ;0.002054 ;0.002293 ;0.002517 ;0.002724 ;0.002916 ;0.003092 ;0.003254 ;0.003403 ;0.003541 ;0.003670 ;0.003792 ;0.003909 ;0.004023 ;0.004136 ;0.004249 ;0.004364 ;0.004480 ;0.004600 ;0.004724 ;0.004853 ;0.004991 ;0.005138 ;0.005297 ;0.005470 ;0.005658 ;0.005866 ;0.006098 ;0.006357 ;0.006638 ;0.006937 ;0.007250 ;0.007576 ;0.007916 ;0.008271 ;0.008640 ;0.009025 ;0.009428 ;0.009850 ;0.010295 ;0.010764 ;0.011260 ;0.011787 ;0.012356 ;0.012980 ;0.013459 ;0.012283 ;0.009213 ;0.004413 ;0.000000 ;0.010999 ;0.018360 ;0.023352 ;0.026116 ;0.027016 ;0.027607 ;0.028112 ;0.028544 ;0.028913 ;0.029224 ;0.029479 ;0.029681 ;0.029832 ;0.029933 ;0.029988 ;0.029997 ;0.029960 ;0.029878 ;0.029750 ;0.029578 ;0.029357 ;0.029082 ;0.028748 ;0.028359 ;0.027920 ;0.027434 ;0.026902 ;0.026328 ;0.025712 ;0.025057 ;0.024365 ;0.023638 ;0.022876 ;0.022081 ;0.021253 ;0.020394 ;0.019504 ;0.018586 ;0.017642 ;0.016674 ;0.015684 ;0.014673 ;0.013643 ;0.012597 ;0.011535 ;0.010458 ;0.009365 ;0.008256 ;0.007131 ;0.005991 ;0.004835 ;0.003658 ;0.002459 ;0.001239 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000195 ;0.000379 ;0.000556 ;0.000727 ;0.000889 ;0.001039 ;0.001175 ;0.001297 ;0.001406 ;0.001502 ;0.001585 ;0.001653 ;0.001710 ;0.001756 ;0.001794 ;0.001825 ;0.001852 ;0.001877 ;0.001901 ;0.001927 ;0.001957 ;0.001990 ;0.002029 ;0.002075 ;0.002127 ;0.002188 ;0.002261 ;0.002346 ;0.002448 ;0.002566 ;0.002704 ;0.002865 ;0.003054 ;0.003274 ;0.003521 ;0.003789 ;0.004074 ;0.004377 ;0.004697 ;0.005035 ;0.005392 ;0.005768 ;0.006165 ;0.006586 ;0.007033 ;0.007508 ;0.008015 ;0.008557 ;0.009146 ;0.009795 ;0.010336 ;0.009478 ;0.007030 ;0.003159 ;0.000000 ;0.010046 ;0.016594 ;0.021053 ;0.023571 ;0.024473 ;0.025094 ;0.025628 ;0.026088 ;0.026486 ;0.026827 ;0.027112 ;0.027343 ;0.027525 ;0.027658 ;0.027745 ;0.027786 ;0.027783 ;0.027736 ;0.027644 ;0.027509 ;0.027325 ;0.027087 ;0.026792 ;0.026442 ;0.026042 ;0.025596 ;0.025105 ;0.024573 ;0.024000 ;0.023389 ;0.022742 ;0.022062 ;0.021348 ;0.020603 ;0.019826 ;0.019019 ;0.018184 ;0.017322 ;0.016435 ;0.015527 ;0.014598 ;0.013650 ;0.012686 ;0.011707 ;0.010715 ;0.009710 ;0.008691 ;0.007659 ;0.006613 ;0.005554 ;0.004481 ;0.003390 ;0.002279 ;0.001148 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000092 ;0.000176 ;0.000254 ;0.000329 ;0.000396 ;0.000452 ;0.000496 ;0.000529 ;0.000550 ;0.000559 ;0.000557 ;0.000542 ;0.000517 ;0.000483 ;0.000443 ;0.000399 ;0.000352 ;0.000305 ;0.000260 ;0.000218 ;0.000183 ;0.000154 ;0.000133 ;0.000120 ;0.000117 ;0.000126 ;0.000148 ;0.000187 ;0.000243 ;0.000320 ;0.000419 ;0.000545 ;0.000702 ;0.000893 ;0.001114 ;0.001360 ;0.001625 ;0.001911 ;0.002217 ;0.002545 ;0.002893 ;0.003264 ;0.003659 ;0.004081 ;0.004532 ;0.005015 ;0.005533 ;0.006090 ;0.006697 ;0.007370 ;0.007962 ;0.007347 ;0.005369 ;0.002200 ;0.000000 ;0.009359 ;0.015311 ;0.019379 ;0.021720 ;0.022627 ;0.023275 ;0.023834 ;0.024320 ;0.024743 ;0.025107 ;0.025417 ;0.025673 ;0.025879 ;0.026038 ;0.026150 ;0.026218 ;0.026241 ;0.026221 ;0.026156 ;0.026048 ;0.025893 ;0.025683 ;0.025416 ;0.025094 ;0.024722 ;0.024305 ;0.023844 ;0.023341 ;0.022798 ;0.022218 ;0.021604 ;0.020956 ;0.020276 ;0.019565 ;0.018824 ;0.018053 ;0.017255 ;0.016432 ;0.015586 ;0.014718 ;0.013832 ;0.012929 ;0.012010 ;0.011078 ;0.010136 ;0.009181 ;0.008215 ;0.007236 ;0.006246 ;0.005245 ;0.004231 ;0.003200 ;0.002151 ;0.001083 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000042 ;0.000077 ;0.000107 ;0.000134 ;0.000154 ;0.000165 ;0.000164 ;0.000152 ;0.000129 ;0.000096 ;0.000051 ;-0.000005 ;-0.000072 ;-0.000145 ;-0.000224 ;-0.000307 ;-0.000391 ;-0.000475 ;-0.000555 ;-0.000631 ;-0.000699 ;-0.000759 ;-0.000811 ;-0.000852 ;-0.000883 ;-0.000900 ;-0.000903 ;-0.000888 ;-0.000852 ;-0.000795 ;-0.000714 ;-0.000605 ;-0.000463 ;-0.000283 ;-0.000072 ;0.000165 ;0.000424 ;0.000705 ;0.001008 ;0.001334 ;0.001682 ;0.002055 ;0.002454 ;0.002881 ;0.003340 ;0.003833 ;0.004362 ;0.004934 ;0.005557 ;0.006250 ;0.006874 ;0.006373 ;0.004605 ;0.001749 ;0.000000 ;0.009129 ;0.014855 ;0.018777 ;0.021057 ;0.021978 ;0.022648 ;0.023226 ;0.023730 ;0.024170 ;0.024551 ;0.024877 ;0.025149 ;0.025370 ;0.025542 ;0.025669 ;0.025750 ;0.025787 ;0.025780 ;0.025728 ;0.025633 ;0.025489 ;0.025292 ;0.025035 ;0.024723 ;0.024361 ;0.023953 ;0.023501 ;0.023007 ;0.022473 ;0.021901 ;0.021295 ;0.020656 ;0.019985 ;0.019282 ;0.018550 ;0.017788 ;0.017000 ;0.016186 ;0.015349 ;0.014492 ;0.013616 ;0.012724 ;0.011817 ;0.010898 ;0.009968 ;0.009028 ;0.008076 ;0.007113 ;0.006138 ;0.005154 ;0.004157 ;0.003144 ;0.002113 ;0.001063 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000032 ;0.000057 ;0.000078 ;0.000095 ;0.000106 ;0.000107 ;0.000096 ;0.000074 ;0.000042 ;-0.000001 ;-0.000056 ;-0.000122 ;-0.000198 ;-0.000282 ;-0.000371 ;-0.000463 ;-0.000557 ;-0.000650 ;-0.000739 ;-0.000823 ;-0.000900 ;-0.000968 ;-0.001027 ;-0.001075 ;-0.001112 ;-0.001135 ;-0.001143 ;-0.001133 ;-0.001101 ;-0.001048 ;-0.000969 ;-0.000861 ;-0.000719 ;-0.000539 ;-0.000326 ;-0.000087 ;0.000176 ;0.000461 ;0.000768 ;0.001099 ;0.001454 ;0.001834 ;0.002241 ;0.002677 ;0.003146 ;0.003650 ;0.004191 ;0.004776 ;0.005414 ;0.006123 ;0.006766 ;0.006280 ;0.004525 ;0.001684 ;0.000000 ;0.009244 ;0.015025 ;0.018986 ;0.021294 ;0.022235 ;0.022921 ;0.023514 ;0.024031 ;0.024482 ;0.024874 ;0.025209 ;0.025489 ;0.025717 ;0.025896 ;0.026028 ;0.026114 ;0.026154 ;0.026149 ;0.026100 ;0.026005 ;0.025862 ;0.025663 ;0.025404 ;0.025089 ;0.024722 ;0.024309 ;0.023850 ;0.023349 ;0.022807 ;0.022227 ;0.021612 ;0.020963 ;0.020282 ;0.019568 ;0.018825 ;0.018052 ;0.017251 ;0.016424 ;0.015575 ;0.014704 ;0.013815 ;0.012909 ;0.011988 ;0.011055 ;0.010112 ;0.009157 ;0.008191 ;0.007214 ;0.006226 ;0.005227 ;0.004215 ;0.003188 ;0.002142 ;0.001079 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000042 ;0.000075 ;0.000104 ;0.000130 ;0.000149 ;0.000157 ;0.000154 ;0.000139 ;0.000113 ;0.000076 ;0.000027 ;-0.000034 ;-0.000105 ;-0.000184 ;-0.000269 ;-0.000357 ;-0.000447 ;-0.000536 ;-0.000622 ;-0.000702 ;-0.000776 ;-0.000840 ;-0.000896 ;-0.000940 ;-0.000973 ;-0.000993 ;-0.000997 ;-0.000982 ;-0.000947 ;-0.000888 ;-0.000805 ;-0.000692 ;-0.000543 ;-0.000357 ;-0.000137 ;0.000110 ;0.000380 ;0.000673 ;0.000989 ;0.001329 ;0.001693 ;0.002082 ;0.002499 ;0.002945 ;0.003425 ;0.003940 ;0.004493 ;0.005090 ;0.005742 ;0.006465 ;0.007119 ;0.006602 ;0.004767 ;0.001802 ;0.000000 ;0.009517 ;0.015482 ;0.019569 ;0.021945 ;0.022908 ;0.023607 ;0.024212 ;0.024739 ;0.025200 ;0.025598 ;0.025939 ;0.026223 ;0.026455 ;0.026636 ;0.026769 ;0.026855 ;0.026894 ;0.026887 ;0.026834 ;0.026735 ;0.026585 ;0.026380 ;0.026113 ;0.025788 ;0.025410 ;0.024984 ;0.024513 ;0.023998 ;0.023441 ;0.022845 ;0.022212 ;0.021546 ;0.020845 ;0.020112 ;0.019348 ;0.018554 ;0.017731 ;0.016882 ;0.016009 ;0.015115 ;0.014202 ;0.013271 ;0.012325 ;0.011366 ;0.010396 ;0.009415 ;0.008423 ;0.007418 ;0.006402 ;0.005375 ;0.004335 ;0.003279 ;0.002203 ;0.001109 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000049 ;0.000089 ;0.000125 ;0.000157 ;0.000182 ;0.000197 ;0.000199 ;0.000189 ;0.000168 ;0.000135 ;0.000090 ;0.000033 ;-0.000035 ;-0.000110 ;-0.000192 ;-0.000278 ;-0.000365 ;-0.000452 ;-0.000535 ;-0.000613 ;-0.000683 ;-0.000746 ;-0.000799 ;-0.000841 ;-0.000871 ;-0.000888 ;-0.000889 ;-0.000871 ;-0.000832 ;-0.000770 ;-0.000682 ;-0.000564 ;-0.000411 ;-0.000219 ;0.000007 ;0.000261 ;0.000538 ;0.000838 ;0.001162 ;0.001510 ;0.001882 ;0.002279 ;0.002705 ;0.003161 ;0.003650 ;0.004176 ;0.004740 ;0.005349 ;0.006013 ;0.006751 ;0.007415 ;0.006872 ;0.004970 ;0.001899 ;0.000000 ;0.009761 ;0.015889 ;0.020086 ;0.022524 ;0.023506 ;0.024220 ;0.024836 ;0.025373 ;0.025841 ;0.026247 ;0.026593 ;0.026882 ;0.027117 ;0.027300 ;0.027434 ;0.027520 ;0.027559 ;0.027550 ;0.027494 ;0.027391 ;0.027237 ;0.027025 ;0.026751 ;0.026417 ;0.026030 ;0.025594 ;0.025110 ;0.024582 ;0.024011 ;0.023401 ;0.022753 ;0.022070 ;0.021353 ;0.020603 ;0.019820 ;0.019007 ;0.018164 ;0.017295 ;0.016401 ;0.015485 ;0.014550 ;0.013597 ;0.012628 ;0.011646 ;0.010652 ;0.009647 ;0.008630 ;0.007601 ;0.006560 ;0.005508 ;0.004442 ;0.003360 ;0.002258 ;0.001137 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.000033 ;0.000058 ;0.000078 ;0.000095 ;0.000105 ;0.000104 ;0.000092 ;0.000067 ;0.000032 ;-0.000015 ;-0.000075 ;-0.000146 ;-0.000228 ;-0.000318 ;-0.000413 ;-0.000512 ;-0.000613 ;-0.000712 ;-0.000808 ;-0.000898 ;-0.000980 ;-0.001053 ;-0.001117 ;-0.001169 ;-0.001208 ;-0.001234 ;-0.001243 ;-0.001233 ;-0.001200 ;-0.001144 ;-0.001061 ;-0.000947 ;-0.000797 ;-0.000607 ;-0.000382 ;-0.000128 ;0.000150 ;0.000452 ;0.000778 ;0.001128 ;0.001505 ;0.001907 ;0.002338 ;0.002801 ;0.003298 ;0.003832 ;0.004406 ;0.005026 ;0.005703 ;0.006455 ;0.007136 ;0.006625 ;0.004772 ;0.001771 ;0.000000 ;0.009789 ;0.015907 ;0.020101 ;0.022545 ;0.023542 ;0.024270 ;0.024899 ;0.025447 ;0.025926 ;0.026342 ;0.026697 ;0.026994 ;0.027236 ;0.027426 ;0.027567 ;0.027658 ;0.027701 ;0.027696 ;0.027644 ;0.027544 ;0.027393 ;0.027182 ;0.026909 ;0.026575 ;0.026187 ;0.025749 ;0.025263 ;0.024732 ;0.024158 ;0.023544 ;0.022893 ;0.022205 ;0.021483 ;0.020728 ;0.019940 ;0.019121 ;0.018272 ;0.017397 ;0.016497 ;0.015575 ;0.014633 ;0.013673 ;0.012698 ;0.011710 ;0.010710 ;0.009699 ;0.008676 ;0.007641 ;0.006594 ;0.005536 ;0.004465 ;0.003377 ;0.002269 ;0.001142 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.000021 ;-0.000049 ;-0.000081 ;-0.000116 ;-0.000155 ;-0.000205 ;-0.000266 ;-0.000338 ;-0.000421 ;-0.000514 ;-0.000618 ;-0.000734 ;-0.000859 ;-0.000991 ;-0.001128 ;-0.001268 ;-0.001407 ;-0.001545 ;-0.001678 ;-0.001804 ;-0.001921 ;-0.002027 ;-0.002123 ;-0.002206 ;-0.002275 ;-0.002329 ;-0.002364 ;-0.002378 ;-0.002369 ;-0.002335 ;-0.002272 ;-0.002177 ;-0.002043 ;-0.001867 ;-0.001655 ;-0.001412 ;-0.001143 ;-0.000849 ;-0.000529 ;-0.000183 ;0.000191 ;0.000592 ;0.001024 ;0.001489 ;0.001991 ;0.002531 ;0.003113 ;0.003743 ;0.004433 ;0.005201 ;0.005912 ;0.005527 ;0.003915 ;0.001272 ;0.000000 ;0.009466 ;0.015295 ;0.019300 ;0.021660 ;0.022665 ;0.023410 ;0.024055 ;0.024619 ;0.025113 ;0.025543 ;0.025912 ;0.026224 ;0.026480 ;0.026684 ;0.026839 ;0.026944 ;0.027001 ;0.027011 ;0.026973 ;0.026887 ;0.026750 ;0.026553 ;0.026293 ;0.025973 ;0.025598 ;0.025174 ;0.024702 ;0.024184 ;0.023624 ;0.023024 ;0.022386 ;0.021713 ;0.021006 ;0.020265 ;0.019493 ;0.018690 ;0.017858 ;0.016999 ;0.016117 ;0.015212 ;0.014289 ;0.013349 ;0.012394 ;0.011426 ;0.010448 ;0.009460 ;0.008460 ;0.007449 ;0.006428 ;0.005395 ;0.004351 ;0.003291 ;0.002211 ;0.001113 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.000105 ;-0.000215 ;-0.000327 ;-0.000440 ;-0.000557 ;-0.000682 ;-0.000818 ;-0.000963 ;-0.001117 ;-0.001280 ;-0.001453 ;-0.001636 ;-0.001827 ;-0.002024 ;-0.002224 ;-0.002425 ;-0.002624 ;-0.002820 ;-0.003009 ;-0.003190 ;-0.003359 ;-0.003516 ;-0.003660 ;-0.003790 ;-0.003904 ;-0.004000 ;-0.004076 ;-0.004129 ;-0.004156 ;-0.004156 ;-0.004125 ;-0.004059 ;-0.003952 ;-0.003800 ;-0.003609 ;-0.003386 ;-0.003134 ;-0.002854 ;-0.002547 ;-0.002210 ;-0.001845 ;-0.001449 ;-0.001020 ;-0.000555 ;-0.000052 ;0.000492 ;0.001082 ;0.001722 ;0.002425 ;0.003208 ;0.003959 ;0.003773 ;0.002549 ;0.000487 ;0.000000 ;0.008875 ;0.014199 ;0.017872 ;0.020079 ;0.021085 ;0.021849 ;0.022513 ;0.023095 ;0.023608 ;0.024056 ;0.024445 ;0.024775 ;0.025051 ;0.025275 ;0.025449 ;0.025576 ;0.025654 ;0.025686 ;0.025670 ;0.025607 ;0.025493 ;0.025320 ;0.025084 ;0.024788 ;0.024437 ;0.024037 ;0.023591 ;0.023099 ;0.022566 ;0.021993 ;0.021383 ;0.020739 ;0.020062 ;0.019352 ;0.018611 ;0.017840 ;0.017042 ;0.016217 ;0.015370 ;0.014503 ;0.013617 ;0.012716 ;0.011802 ;0.010876 ;0.009941 ;0.008997 ;0.008044 ;0.007080 ;0.006107 ;0.005125 ;0.004132 ;0.003125 ;0.002099 ;0.001056 ;0.000000 + + + + ... + ... + + 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.000203 ;-0.000409 ;-0.000616 ;-0.000821 ;-0.001029 ;-0.001243 ;-0.001466 ;-0.001697 ;-0.001935 ;-0.002180 ;-0.002434 ;-0.002696 ;-0.002965 ;-0.003237 ;-0.003510 ;-0.003783 ;-0.004052 ;-0.004316 ;-0.004571 ;-0.004815 ;-0.005045 ;-0.005262 ;-0.005463 ;-0.005647 ;-0.005814 ;-0.005960 ;-0.006084 ;-0.006183 ;-0.006253 ;-0.006292 ;-0.006299 ;-0.006268 ;-0.006193 ;-0.006070 ;-0.005905 ;-0.005704 ;-0.005474 ;-0.005212 ;-0.004920 ;-0.004597 ;-0.004241 ;-0.003853 ;-0.003429 ;-0.002967 ;-0.002463 ;-0.001915 ;-0.001319 ;-0.000670 ;0.000046 ;0.000847 ;0.001641 ;0.001691 ;0.000929 ;-0.000441 ;0.000000 ;0.008149 ;0.012859 ;0.016129 ;0.018150 ;0.019154 ;0.019939 ;0.020623 ;0.021225 ;0.021757 ;0.022226 ;0.022635 ;0.022987 ;0.023285 ;0.023532 ;0.023730 ;0.023880 ;0.023983 ;0.024040 ;0.024051 ;0.024016 ;0.023930 ;0.023785 ;0.023578 ;0.023311 ;0.022990 ;0.022621 ;0.022205 ;0.021746 ;0.021246 ;0.020707 ;0.020132 ;0.019524 ;0.018884 ;0.018213 ;0.017511 ;0.016781 ;0.016025 ;0.015243 ;0.014441 ;0.013620 ;0.012782 ;0.011929 ;0.011065 ;0.010192 ;0.009311 ;0.008423 ;0.007527 ;0.006622 ;0.005710 ;0.004790 ;0.003861 ;0.002919 ;0.001960 ;0.000986 ;0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 + + + + +
+
diff --git a/test_files/CPACSfiles/j280904scaled.xml b/test_files/CPACSfiles/j280904scaled.xml new file mode 100644 index 000000000..7dd304737 --- /dev/null +++ b/test_files/CPACSfiles/j280904scaled.xml @@ -0,0 +1,3096 @@ + + +
+ j280904scaled + Simple Wing for unit testing + Martin Siggel + 2012-10-09T15:12:47 + 0.2 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 - does not include structure update + cpacs2to3 + 2018-01-15T09:22:57 + 0.2 + 3.0 + + + Add this update + Aidan + 2018-10-03T09:00:01 + 0.3 + 3.0 + + +
+ + + + j280v0 + + 49.5353 + 3.6736 + + 3.9293 + 0 + 0 + + + + +Body1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + +
+Body1Frame1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + -0.254 + + + + + ... + fuseprof_1_1 + + + 1 + 0.0254 + 0.0254 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.16422 + 0 + -0.23764 + + + + + ... + fuseprof_1_2 + + + 1 + 0.32889 + 0.30382 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.52426 + 0 + -0.25839 + + + + + ... + fuseprof_1_3 + + + 1 + 0.49302 + 0.50145 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.3627 + 0 + -0.22552 + + + + + ... + fuseprof_1_4 + + + 1 + 0.7102 + 0.71115 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.9916 + 0 + -0.02667 + + + + + ... + fuseprof_1_5 + + + 1 + 0.77165 + 0.98425 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.5156 + 0 + 0.082745 + + + + + ... + fuseprof_1_6 + + + 1 + 0.856 + 1.1089 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4.2057 + 0 + -0.099441 + + + + + ... + fuseprof_1_7 + + + 1 + 0.86665 + 0.9163 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 6.538 + 0 + -0.089154 + + + + + ... + fuseprof_1_8 + + + 1 + 0.7262 + 0.7343 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame8 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.0576 + -0.0254 + -0.13716 + + + + + ... + fuseprof_1_9 + + + 1 + 0.4125 + 0.38227 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Body1Frame1 + 0 + + + + ... + description + 0 + 0 + Body1Frame27 + 0 + + + + ... + description + 0 + 0 + Body1Frame2 + 0 + + + + ... + description + 0 + 0 + Body1Frame3 + 0 + + + + ... + description + 0 + 0 + Body1Frame4 + 0 + + + + ... + description + 0 + 0 + Body1Frame5 + 0 + + + + ... + description + 0 + 0 + Body1Frame6 + 0 + + + + ... + description + 0 + 0 + Body1Frame7 + 0 + + + + ... + description + 0 + 0 + Body1Frame8 + 0 + + + + + + ... + Body1Frame1elem1 + Body1Frame27elem1 + + + + ... + Body1Frame27elem1 + Body1Frame2elem1 + + + + ... + Body1Frame2elem1 + Body1Frame3elem1 + + + + ... + Body1Frame3elem1 + Body1Frame4elem1 + + + + ... + Body1Frame4elem1 + Body1Frame5elem1 + + + + ... + Body1Frame5elem1 + Body1Frame6elem1 + + + + ... + Body1Frame6elem1 + Body1Frame7elem1 + + + + ... + Body1Frame7elem1 + Body1Frame8elem1 + + + +
+ +Body2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4.1402 + 1.9558 + 0.04572 + + + +
+Body2Frame1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + -0.00254 + + + + + ... + fuseprof_2_1 + + + 1 + 0.00127 + 0.00254 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.25171 + 0 + 0.0021791 + + + + + ... + fuseprof_2_2 + + + 1 + 0.10812 + 0.1683 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.2263 + 0 + 0.005969 + + + + + ... + fuseprof_2_3 + + + 1 + 0.20264 + 0.31966 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 5.9352 + 0 + 0.33617 + + + + + ... + fuseprof_2_4 + + + 1 + 0.1442 + 0.24574 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 6.5913 + 0 + 0.46647 + + + + + ... + fuseprof_2_5 + + + 1 + 0.13262 + 0.32144 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 7.9383 + 0 + 0.52629 + + + + + ... + fuseprof_2_6 + + + 1 + 0.10885 + 0.27407 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.398 + 0 + 0.53365 + + + + + ... + fuseprof_2_7 + + + 1 + 0.099125 + 0.17704 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body2Frame8 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.5707 + 0 + 0.58166 + + + + + ... + fuseprof_2_8 + + + 1 + 0.00127 + 0.00254 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Body2Frame1 + 0 + + + + ... + description + 0 + 0 + Body2Frame2 + 0 + + + + ... + description + 0 + 0 + Body2Frame3 + 0 + + + + ... + description + 0 + 0 + Body2Frame4 + 0 + + + + ... + description + 0 + 0 + Body2Frame5 + 0 + + + + ... + description + 0 + 0 + Body2Frame6 + 0 + + + + ... + description + 0 + 0 + Body2Frame7 + 0 + + + + ... + description + 0 + 0 + Body2Frame8 + 0 + + + + + + ... + Body2Frame1elem1 + Body2Frame2elem1 + + + + ... + Body2Frame2elem1 + Body2Frame3elem1 + + + + ... + Body2Frame3elem1 + Body2Frame4elem1 + + + + ... + Body2Frame4elem1 + Body2Frame5elem1 + + + + ... + Body2Frame5elem1 + Body2Frame6elem1 + + + + ... + Body2Frame6elem1 + Body2Frame7elem1 + + + + ... + Body2Frame7elem1 + Body2Frame8elem1 + + + +
+ +Body3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4.1402 + -1.9558 + 0.04572 + + + +
+Body3Frame1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + -0.00254 + + + + + ... + fuseprof_3_1 + + + 1 + 0.00127 + 0.00254 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.25171 + 0 + 0.004318 + + + + + ... + fuseprof_3_2 + + + 1 + 0.10812 + 0.17044 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 1.2263 + 0 + 0.005969 + + + + + ... + fuseprof_3_3 + + + 1 + 0.20264 + 0.31966 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 5.9352 + 0 + 0.33617 + + + + + ... + fuseprof_3_4 + + + 1 + 0.1442 + 0.24574 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 6.5913 + 0 + 0.46647 + + + + + ... + fuseprof_3_5 + + + 1 + 0.13262 + 0.32144 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 7.9383 + 0 + 0.52629 + + + + + ... + fuseprof_3_6 + + + 1 + 0.10885 + 0.27407 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.398 + 0 + 0.53365 + + + + + ... + fuseprof_3_7 + + + 1 + 0.099125 + 0.17704 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body3Frame8 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 8.5707 + 0 + 0.58166 + + + + + ... + fuseprof_3_8 + + + 1 + 0.00127 + 0.00254 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Body3Frame1 + 0 + + + + ... + description + 0 + 0 + Body3Frame2 + 0 + + + + ... + description + 0 + 0 + Body3Frame3 + 0 + + + + ... + description + 0 + 0 + Body3Frame4 + 0 + + + + ... + description + 0 + 0 + Body3Frame5 + 0 + + + + ... + description + 0 + 0 + Body3Frame6 + 0 + + + + ... + description + 0 + 0 + Body3Frame7 + 0 + + + + ... + description + 0 + 0 + Body3Frame8 + 0 + + + + + + ... + Body3Frame1elem1 + Body3Frame2elem1 + + + + ... + Body3Frame2elem1 + Body3Frame3elem1 + + + + ... + Body3Frame3elem1 + Body3Frame4elem1 + + + + ... + Body3Frame4elem1 + Body3Frame5elem1 + + + + ... + Body3Frame5elem1 + Body3Frame6elem1 + + + + ... + Body3Frame6elem1 + Body3Frame7elem1 + + + + ... + Body3Frame7elem1 + Body3Frame8elem1 + + + +
+
+ + + Wing1 + Body1 + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 2.0463 + 0 + 0 + + + +
+Wing1Section1 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0.23351 + + + 0 + 0 + 0 + + + + + ... + foil_1_5 + + + + 5.2974 + 5.2974 + 5.2974 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing1Section5 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0.254 + 0 + + + + + ... + foil_1_4 + + + + 5.2974 + 5.2974 + 5.2974 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing1Section2 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 1.1554 + 1.8412 + 0 + + + + + ... + foil_1_3 + + + + 3.6547 + 3.6547 + 3.6547 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing1Section3 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 1.6456 + 4.0434 + 0 + + + + + ... + foil_1_2 + + + + 2.5885 + 2.5885 + 2.5885 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing1Section4 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 2.4495 + 7.6545 + 0 + + + + + ... + foil_1_1 + + + + 1.174 + 1.174 + 1.174 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Wing1Section4 + 0 + + + + ... + description + 0 + 0 + Wing1Section3 + 0 + + + + ... + description + 0 + 0 + Wing1Section2 + 0 + + + + ... + description + 0 + 0 + Wing1Section5 + 0 + + + + ... + description + 0 + 0 + Wing1Section1 + 0 + + + + + + ... + Wing1Section4elem1 + Wing1Section3elem1 + + + + ... + Wing1Section3elem1 + Wing1Section2elem1 + + + + ... + Wing1Section2elem1 + Wing1Section5elem1 + + + + ... + Wing1Section5elem1 + Wing1Section1elem1 + + + +
+ + Wing2 + Body1 + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 10.8966 + 0 + 0.4572 + + + +
+Wing2Section2 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 1.905 + 0 + + + + + ... + foil_2_1 + + + + 1.5354 + 1.5354 + 1.5354 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing2Section1 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + -1.905 + 0 + + + + + ... + foil_2_2 + + + + 1.5354 + 1.5354 + 1.5354 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Wing2Section2 + 0 + + + + ... + description + 0 + 0 + Wing2Section1 + 0 + + + + + + ... + Wing2Section2elem1 + Wing2Section1elem1 + + + +
+ + Wing3 + Body1 + description + + + 1 + 1 + 1 + + + 90.0002 + 0 + -0 + + + 10.8712 + 1.9558 + 0.5588 + + + +
+Wing3Section1 +description + + + 1 + 1 + 1 + + + 3.5083e-15 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_3_5 + + + + 1.8034 + 1.8034 + 1.8034 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing3Section2 +description + + + 1 + 1 + 1 + + + 3.5083e-14 + 0 + -0 + + + 0.1524 + 0.254 + 1.5553e-17 + + + + + ... + foil_3_4 + + + + 1.7526 + 1.7526 + 1.7526 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing3Section3 +description + + + 1 + 1 + 1 + + + 1.2424e-13 + 0 + -0 + + + 0.6096 + 0.90932 + 5.568e-17 + + + + + ... + foil_3_3 + + + + 1.2954 + 1.2954 + 1.2954 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing3Section4 +description + + + 1 + 1 + 1 + + + 1.6167e-13 + 0 + -0 + + + 0.97561 + 1.2403 + 7.5945e-17 + + + + + ... + foil_3_2 + + + + 0.83972 + 0.83972 + 0.83972 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing3Section5 +description + + + 1 + 1 + 1 + + + 1.8752e-13 + 0 + -0 + + + 1.27 + 1.4859 + 9.0985e-17 + + + + + ... + foil_3_1 + + + + 0.381 + 0.381 + 0.381 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Wing3Section5 + 0 + + + + ... + description + 0 + 0 + Wing3Section4 + 0 + + + + ... + description + 0 + 0 + Wing3Section3 + 0 + + + + ... + description + 0 + 0 + Wing3Section2 + 0 + + + + ... + description + 0 + 0 + Wing3Section1 + 0 + + + + + + ... + Wing3Section5elem1 + Wing3Section4elem1 + + + + ... + Wing3Section4elem1 + Wing3Section3elem1 + + + + ... + Wing3Section3elem1 + Wing3Section2elem1 + + + + ... + Wing3Section2elem1 + Wing3Section1elem1 + + + +
+ + Wing4 + Body1 + description + + + 1 + 1 + 1 + + + 90.0002 + 0 + -0 + + + 10.8712 + -1.9558 + 0.5588 + + + +
+Wing4Section1 +description + + + 1 + 1 + 1 + + + 3.5083e-15 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_4_5 + + + + 1.8034 + 1.8034 + 1.8034 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing4Section2 +description + + + 1 + 1 + 1 + + + 3.5083e-14 + 0 + -0 + + + 0.1524 + 0.254 + 1.5553e-17 + + + + + ... + foil_4_4 + + + + 1.7526 + 1.7526 + 1.7526 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing4Section3 +description + + + 1 + 1 + 1 + + + 1.2424e-13 + 0 + -0 + + + 0.6096 + 0.90932 + 5.568e-17 + + + + + ... + foil_4_3 + + + + 1.2954 + 1.2954 + 1.2954 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing4Section4 +description + + + 1 + 1 + 1 + + + 1.6167e-13 + 0 + -0 + + + 0.97561 + 1.2403 + 7.5945e-17 + + + + + ... + foil_4_2 + + + + 0.83972 + 0.83972 + 0.83972 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Wing4Section5 +description + + + 1 + 1 + 1 + + + 1.8752e-13 + 0 + -0 + + + 1.27 + 1.4859 + 9.0985e-17 + + + + + ... + foil_4_1 + + + + 0.381 + 0.381 + 0.381 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Wing4Section5 + 0 + + + + ... + description + 0 + 0 + Wing4Section4 + 0 + + + + ... + description + 0 + 0 + Wing4Section3 + 0 + + + + ... + description + 0 + 0 + Wing4Section2 + 0 + + + + ... + description + 0 + 0 + Wing4Section1 + 0 + + + + + + ... + Wing4Section5elem1 + Wing4Section4elem1 + + + + ... + Wing4Section4elem1 + Wing4Section3elem1 + + + + ... + Wing4Section3elem1 + Wing4Section2elem1 + + + + ... + Wing4Section2elem1 + Wing4Section1elem1 + + + +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 0.0 + 0.3 + 0.0 + 0.0 + + + + + + +
+
+ + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.707000 ;1.000000 ;0.707000 ;0.000000 ;-0.707000 ;-1.000000 ;-0.707000 ;0.000000 + -1.000000 ;-0.707000 ;0.000000 ;0.707000 ;1.000000 ;0.707000 ;0.000000 ;-0.707000 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.654440 ;1.000000 ;0.980320 ;0.604370 ;0.000000 ;-0.604370 ;-0.980320 ;-1.000000 ;-0.654440 ;0.000000 + -1.000000 ;-0.759190 ;-0.274810 ;0.332180 ;0.805030 ;1.000000 ;0.805030 ;0.332180 ;-0.274810 ;-0.759190 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.343900 ;0.685200 ;0.920500 ;1.000000 ;0.909200 ;0.685200 ;0.396700 ;0.000000 ;-0.396700 ;-0.685200 ;-0.909200 ;-1.000000 ;-0.920500 ;-0.685200 ;-0.343900 ;0.000000 + -1.000000 ;-0.954300 ;-0.746000 ;-0.465700 ;-0.026200 ;0.380900 ;0.686000 ;0.920500 ;1.000000 ;0.920500 ;0.686000 ;0.380900 ;-0.026200 ;-0.465700 ;-0.746000 ;-0.954300 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.529300 ;0.882300 ;1.000000 ;0.929900 ;0.650900 ;0.348700 ;0.000000 ;-0.348700 ;-0.650900 ;-0.929900 ;-1.000000 ;-0.882300 ;-0.529300 ;0.000000 + -1.000000 ;-0.892900 ;-0.606300 ;-0.159300 ;0.187500 ;0.614300 ;0.988900 ;1.000000 ;0.988900 ;0.614300 ;0.187500 ;-0.159300 ;-0.606300 ;-0.892900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.545400 ;0.930200 ;1.000000 ;0.887400 ;0.572800 ;0.227100 ;0.000000 ;-0.227100 ;-0.572800 ;-0.887400 ;-1.000000 ;-0.930200 ;-0.545400 ;0.000000 + -1.000000 ;-0.881300 ;-0.566500 ;-0.295000 ;0.066600 ;0.560300 ;0.994800 ;1.000000 ;0.994800 ;0.560300 ;0.066600 ;-0.295000 ;-0.566500 ;-0.881300 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.441200 ;0.915400 ;1.000000 ;0.791100 ;0.542200 ;0.457800 ;0.254000 ;0.000000 ;-0.254000 ;-0.457800 ;-0.542200 ;-0.791100 ;-1.000000 ;-0.915400 ;-0.441200 ;0.000000 + -1.000000 ;-0.909100 ;-0.490400 ;-0.146800 ;0.193400 ;0.449100 ;0.692100 ;0.953800 ;1.000000 ;0.953800 ;0.692100 ;0.449100 ;0.193400 ;-0.146800 ;-0.490400 ;-0.909100 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.633900 ;1.000000 ;0.978900 ;0.937900 ;0.571500 ;0.000000 ;-0.571500 ;-0.937900 ;-0.978900 ;-1.000000 ;-0.633900 ;0.000000 + -1.000000 ;-0.799300 ;-0.315600 ;0.103000 ;0.434500 ;0.840300 ;1.000000 ;0.840300 ;0.434500 ;0.103000 ;-0.315600 ;-0.799300 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.633100 ;1.000000 ;0.599900 ;0.000000 ;-0.599900 ;-1.000000 ;-0.633100 ;0.000000 + -1.000000 ;-0.780000 ;0.114800 ;0.805600 ;1.000000 ;0.805600 ;0.114800 ;-0.780000 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.800500 ;1.000000 ;0.677300 ;0.000000 ;-0.677300 ;-1.000000 ;-0.800500 ;0.000000 + -1.000000 ;-0.606300 ;0.100000 ;0.787600 ;1.000000 ;0.787600 ;0.100000 ;-0.606300 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974581 ;-0.899742 ;-0.779027 ;-0.618715 ;-0.426705 ;-0.212618 ;0.012710 ;0.238037 ;0.452124 ;0.644134 ;0.804446 ;0.925161 ;1.000000 ;0.925161 ;0.804446 ;0.644134 ;0.452124 ;0.238037 ;0.012710 ;-0.212618 ;-0.426705 ;-0.618715 ;-0.779027 ;-0.899742 ;-0.974581 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222521 ;0.433884 ;0.623490 ;0.781831 ;0.900969 ;0.974928 ;1.000000 ;0.974928 ;0.900969 ;0.781831 ;0.623490 ;0.433884 ;0.222521 ;0.000000 ;-0.222521 ;-0.433884 ;-0.623490 ;-0.781831 ;-0.900969 ;-0.974928 ;-1.000000 ;-0.974928 ;-0.900969 ;-0.781831 ;-0.623490 ;-0.433884 ;-0.222521 ;0.000000 + 1.000000 ;0.974928 ;0.900969 ;0.781831 ;0.623490 ;0.433884 ;0.222521 ;0.000000 ;-0.222521 ;-0.433884 ;-0.623490 ;-0.781831 ;-0.900969 ;-0.974928 ;-1.000000 ;-0.974928 ;-0.900969 ;-0.781831 ;-0.623490 ;-0.433884 ;-0.222521 ;0.000000 ;0.222521 ;0.433884 ;0.623490 ;0.781831 ;0.900969 ;0.974928 ;1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 + -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 + + + + + + ... + ... + + 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.008003 ;-0.015248 ;-0.021667 ;-0.027225 ;-0.031883 ;-0.035580 ;-0.038288 ;-0.039938 ;-0.040500 ;-0.040493 ;-0.040335 ;-0.039727 ;-0.038265 ;-0.035595 ;-0.031448 ;-0.025703 ;-0.018375 ;-0.009675 ;0.000000 ;0.010110 ;0.020010 ;0.029025 ;0.036593 ;0.042345 ;0.046192 ;0.048345 ;0.049253 ;0.049485 ;0.049500 ;0.048825 ;0.046837 ;0.043583 ;0.039105 ;0.033450 ;0.026670 ;0.018802 ;0.009893 ;0.000000 + + + + ... + ... + + 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.010100 ;-0.019244 ;-0.027346 ;-0.034360 ;-0.040239 ;-0.044905 ;-0.048322 ;-0.050405 ;-0.051115 ;-0.051105 ;-0.050906 ;-0.050140 ;-0.048294 ;-0.044924 ;-0.039690 ;-0.032439 ;-0.023191 ;-0.012211 ;0.000000 ;0.012760 ;0.025254 ;0.036632 ;0.046183 ;0.053443 ;0.058299 ;0.061016 ;0.062161 ;0.062455 ;0.062473 ;0.061622 ;0.059113 ;0.055005 ;0.049354 ;0.042217 ;0.033660 ;0.023730 ;0.012485 ;0.000000 + + + + ... + ... + + 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.011379 ;-0.021681 ;-0.030809 ;-0.038712 ;-0.045334 ;-0.050592 ;-0.054442 ;-0.056788 ;-0.057588 ;-0.057577 ;-0.057353 ;-0.056489 ;-0.054410 ;-0.050613 ;-0.044716 ;-0.036547 ;-0.026128 ;-0.013757 ;0.000000 ;0.014376 ;0.028453 ;0.041271 ;0.052032 ;0.060211 ;0.065682 ;0.068743 ;0.070033 ;0.070364 ;0.070385 ;0.069425 ;0.066599 ;0.061971 ;0.055604 ;0.047563 ;0.037923 ;0.026736 ;0.014066 ;0.000000 + + + + ... + ... + + 1.000000 ;0.992815 ;0.984341 ;0.973346 ;0.958722 ;0.939532 ;0.915058 ;0.884835 ;0.848670 ;0.806651 ;0.759145 ;0.706772 ;0.650380 ;0.591004 ;0.529811 ;0.468049 ;0.406987 ;0.347858 ;0.292025 ;0.241431 ;0.195471 ;0.154655 ;0.119288 ;0.089456 ;0.065008 ;0.045550 ;0.030439 ;0.018790 ;0.009447 ;0.000000 ;0.004776 ;0.012217 ;0.022351 ;0.036229 ;0.054835 ;0.078971 ;0.109196 ;0.145776 ;0.188656 ;0.237455 ;0.291475 ;0.348443 ;0.408255 ;0.469936 ;0.532204 ;0.593754 ;0.653318 ;0.709729 ;0.761969 ;0.809221 ;0.850900 ;0.886681 ;0.916515 ;0.940625 ;0.959499 ;0.973864 ;0.984652 ;0.992961 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.000880 ;-0.001908 ;-0.003228 ;-0.004958 ;-0.007188 ;-0.009968 ;-0.013308 ;-0.017180 ;-0.021518 ;-0.026225 ;-0.031172 ;-0.036195 ;-0.041098 ;-0.045643 ;-0.049569 ;-0.052598 ;-0.054475 ;-0.055006 ;-0.054675 ;-0.053622 ;-0.051679 ;-0.048791 ;-0.045011 ;-0.040481 ;-0.035389 ;-0.029893 ;-0.023978 ;-0.017005 ;0.000000 ;0.018879 ;0.028005 ;0.036622 ;0.045550 ;0.054865 ;0.064316 ;0.073455 ;0.081708 ;0.088444 ;0.093045 ;0.094976 ;0.094286 ;0.091653 ;0.087237 ;0.081287 ;0.074119 ;0.066089 ;0.057566 ;0.048910 ;0.040457 ;0.032505 ;0.025299 ;0.019013 ;0.013743 ;0.009495 ;0.006188 ;0.003661 ;0.001688 ;0.000000 + + + + ... + ... + + 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.012448 ;-0.023718 ;-0.033705 ;-0.042350 ;-0.049595 ;-0.055347 ;-0.059558 ;-0.062125 ;-0.063000 ;-0.062988 ;-0.062743 ;-0.061798 ;-0.059523 ;-0.055370 ;-0.048918 ;-0.039982 ;-0.028583 ;-0.015050 ;0.000000 ;0.015727 ;0.031127 ;0.045150 ;0.056922 ;0.065870 ;0.071855 ;0.075203 ;0.076615 ;0.076977 ;0.077000 ;0.075950 ;0.072858 ;0.067795 ;0.060830 ;0.052033 ;0.041487 ;0.029248 ;0.015388 ;0.000000 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + ... + ... + + 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 + + + + +
+
diff --git a/test_files/CPACSfiles/j35vort0903cfscaled.xml b/test_files/CPACSfiles/j35vort0903cfscaled.xml new file mode 100644 index 000000000..8962530ab --- /dev/null +++ b/test_files/CPACSfiles/j35vort0903cfscaled.xml @@ -0,0 +1,7140 @@ + + +
+ j35vort0903cfscaled + Simple Wing for unit testing + Martin Siggel + 2012-10-09T15:12:47 + 0.2 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 - does not include structure update + cpacs2to3 + 2018-01-15T09:22:57 + 0.2 + 3.0 + + + Add this update + Aidan + 2018-10-03T09:00:01 + 0.3 + 3.0 + + +
+ + + + j35vv0 + + 50.9873 + 7.0347 + + 9.8178 + 0 + 0.019397 + + + + +Fuse +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + +
+FuseBodyframe8 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 2.1995 + 0 + -0.3131 + + + + + ... + fuseprof_1_1 + + + 1 + 0.0537 + 0.05405 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 3.211 + 0 + -0.21662 + + + + + ... + fuseprof_1_2 + + + 1 + 0.28397 + 0.30447 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe10 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 4.2225 + 0 + -0.095929 + + + + + ... + fuseprof_1_3 + + + 1 + 0.44106 + 0.5077 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 5.234 + 0 + 0.074182 + + + + + ... + fuseprof_1_4 + + + 1 + 0.55675 + 0.7218 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe12 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 6.2456 + 0 + 0.072816 + + + + + ... + fuseprof_1_5 + + + 1 + 0.6052 + 0.738 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 7.2571 + 0 + 0.087801 + + + + + ... + fuseprof_1_6 + + + 1 + 0.6088 + 0.7512 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 13.3262 + 0 + 0.26417 + + + + + ... + fuseprof_1_7 + + + 1 + 0.7755 + 0.75585 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 14.3378 + 0 + 0.26 + + + + + ... + fuseprof_1_8 + + + 1 + 0.68605 + 0.79 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 15.3493 + 0 + 0.2925 + + + + + ... + fuseprof_1_9 + + + 1 + 0.61695 + 0.5875 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FuseBodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 16.2727 + 0 + 0.36252 + + + + + ... + fuseprof_1_10 + + + 1 + 0.5197 + 0.45997 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FuseBodyframe8 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe9 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe10 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe11 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe12 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe13 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe4 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe5 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe6 + 0 + + + + ... + description + 0 + 0 + FuseBodyframe7 + 0 + + + + + + ... + FuseBodyframe8elem1 + FuseBodyframe9elem1 + + + + ... + FuseBodyframe9elem1 + FuseBodyframe10elem1 + + + + ... + FuseBodyframe10elem1 + FuseBodyframe11elem1 + + + + ... + FuseBodyframe11elem1 + FuseBodyframe12elem1 + + + + ... + FuseBodyframe12elem1 + FuseBodyframe13elem1 + + + + ... + FuseBodyframe13elem1 + FuseBodyframe4elem1 + + + + ... + FuseBodyframe4elem1 + FuseBodyframe5elem1 + + + + ... + FuseBodyframe5elem1 + FuseBodyframe6elem1 + + + + ... + FuseBodyframe6elem1 + FuseBodyframe7elem1 + + + +
+ +vortR0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 11.853 + 3.385 + 0 + + + +
+vortR0Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.0027132 + 1.8849e-10 + -0.05 + + + + + ... + fuseprof_2_1 + + + 1 + 0.0068485 + 0.011568 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.024214 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_2 + + + 1 + 0.01 + 0.032621 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.066138 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_3 + + + 1 + 0.01 + 0.047046 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.12638 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_4 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.20193 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_5 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.28899 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_6 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.38319 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_7 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.47981 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_8 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.57402 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_9 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe19 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.66107 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_10 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.73662 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_11 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.79686 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_12 + + + 1 + 0.01 + 0.047046 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.83879 + -8.352e-17 + -0.05 + + + + + ... + fuseprof_2_13 + + + 1 + 0.01 + 0.032621 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR0Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.86029 + 2.2302e-10 + -0.05 + + + + + ... + fuseprof_2_14 + + + 1 + 0.0068485 + 0.011568 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortR0Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe5 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe11 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe15 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe19 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortR0Bodyframe27 + 0 + + + + + + ... + vortR0Bodyframe1elem1 + vortR0Bodyframe3elem1 + + + + ... + vortR0Bodyframe3elem1 + vortR0Bodyframe5elem1 + + + + ... + vortR0Bodyframe5elem1 + vortR0Bodyframe7elem1 + + + + ... + vortR0Bodyframe7elem1 + vortR0Bodyframe9elem1 + + + + ... + vortR0Bodyframe9elem1 + vortR0Bodyframe11elem1 + + + + ... + vortR0Bodyframe11elem1 + vortR0Bodyframe13elem1 + + + + ... + vortR0Bodyframe13elem1 + vortR0Bodyframe15elem1 + + + + ... + vortR0Bodyframe15elem1 + vortR0Bodyframe17elem1 + + + + ... + vortR0Bodyframe17elem1 + vortR0Bodyframe19elem1 + + + + ... + vortR0Bodyframe19elem1 + vortR0Bodyframe21elem1 + + + + ... + vortR0Bodyframe21elem1 + vortR0Bodyframe23elem1 + + + + ... + vortR0Bodyframe23elem1 + vortR0Bodyframe25elem1 + + + + ... + vortR0Bodyframe25elem1 + vortR0Bodyframe27elem1 + + + +
+ +vortR1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 12.48 + 3.788 + 0 + + + +
+vortR1Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.0019587 + 1.46e-10 + -0.045 + + + + + ... + fuseprof_3_1 + + + 1 + 0.0059445 + 0.009337 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.01748 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_2 + + + 1 + 0.01 + 0.02665 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.047745 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_3 + + + 1 + 0.01 + 0.039732 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.091236 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_4 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.14577 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_5 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.20862 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_6 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.27662 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_7 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.34638 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_8 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.41438 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_9 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe19 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.47723 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_10 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.53176 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_11 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.57525 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_12 + + + 1 + 0.01 + 0.039732 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.60552 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_13 + + + 1 + 0.01 + 0.02665 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR1Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.62104 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_3_14 + + + 1 + 0.0059445 + 0.009337 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortR1Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe5 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe11 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe15 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe19 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortR1Bodyframe27 + 0 + + + + + + ... + vortR1Bodyframe1elem1 + vortR1Bodyframe3elem1 + + + + ... + vortR1Bodyframe3elem1 + vortR1Bodyframe5elem1 + + + + ... + vortR1Bodyframe5elem1 + vortR1Bodyframe7elem1 + + + + ... + vortR1Bodyframe7elem1 + vortR1Bodyframe9elem1 + + + + ... + vortR1Bodyframe9elem1 + vortR1Bodyframe11elem1 + + + + ... + vortR1Bodyframe11elem1 + vortR1Bodyframe13elem1 + + + + ... + vortR1Bodyframe13elem1 + vortR1Bodyframe15elem1 + + + + ... + vortR1Bodyframe15elem1 + vortR1Bodyframe17elem1 + + + + ... + vortR1Bodyframe17elem1 + vortR1Bodyframe19elem1 + + + + ... + vortR1Bodyframe19elem1 + vortR1Bodyframe21elem1 + + + + ... + vortR1Bodyframe21elem1 + vortR1Bodyframe23elem1 + + + + ... + vortR1Bodyframe23elem1 + vortR1Bodyframe25elem1 + + + + ... + vortR1Bodyframe25elem1 + vortR1Bodyframe27elem1 + + + +
+ +vortR2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 13.23 + 4.28 + 0 + + + +
+vortR2Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.001201 + 6.664e-11 + -0.030266 + + + + + ... + fuseprof_4_1 + + + 1 + 0.0023536 + 0.0038407 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.010718 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_2 + + + 1 + 0.01 + 0.017112 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.029276 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_3 + + + 1 + 0.01 + 0.025768 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.055943 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_4 + + + 1 + 0.01 + 0.029931 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.089382 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_5 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.12792 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_6 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.16962 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_7 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.21238 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_8 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.25408 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_9 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe19 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.29262 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_10 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.32606 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_11 + + + 1 + 0.01 + 0.029931 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.35272 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_12 + + + 1 + 0.01 + 0.025768 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.37128 + 5.2666e-18 + -0.03 + + + + + ... + fuseprof_4_13 + + + 1 + 0.01 + 0.017112 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortR2Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.3808 + 5.2736e-18 + -0.03 + + + + + ... + fuseprof_4_14 + + + 1 + 0.0020871 + 0.0025086 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortR2Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe5 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe11 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe15 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe19 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortR2Bodyframe27 + 0 + + + + + + ... + vortR2Bodyframe1elem1 + vortR2Bodyframe3elem1 + + + + ... + vortR2Bodyframe3elem1 + vortR2Bodyframe5elem1 + + + + ... + vortR2Bodyframe5elem1 + vortR2Bodyframe7elem1 + + + + ... + vortR2Bodyframe7elem1 + vortR2Bodyframe9elem1 + + + + ... + vortR2Bodyframe9elem1 + vortR2Bodyframe11elem1 + + + + ... + vortR2Bodyframe11elem1 + vortR2Bodyframe13elem1 + + + + ... + vortR2Bodyframe13elem1 + vortR2Bodyframe15elem1 + + + + ... + vortR2Bodyframe15elem1 + vortR2Bodyframe17elem1 + + + + ... + vortR2Bodyframe17elem1 + vortR2Bodyframe19elem1 + + + + ... + vortR2Bodyframe19elem1 + vortR2Bodyframe21elem1 + + + + ... + vortR2Bodyframe21elem1 + vortR2Bodyframe23elem1 + + + + ... + vortR2Bodyframe23elem1 + vortR2Bodyframe25elem1 + + + + ... + vortR2Bodyframe25elem1 + vortR2Bodyframe27elem1 + + + +
+ +vortL0 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 11.853 + -3.385 + 0 + + + +
+vortL0Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.0027132 + 1.8849e-10 + -0.05 + + + + + ... + fuseprof_5_1 + + + 1 + 0.0068485 + 0.011568 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.024214 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_2 + + + 1 + 0.01 + 0.038641 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.066138 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_3 + + + 1 + 0.01 + 0.047046 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.12638 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_4 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.20193 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_5 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.28899 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_6 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.38319 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_7 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.47981 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_8 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.57402 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_9 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe19 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.66107 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_10 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.73662 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_11 + + + 1 + 0.01 + 0.05 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.79686 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_12 + + + 1 + 0.01 + 0.047046 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.83879 + -1.2308e-16 + -0.05 + + + + + ... + fuseprof_5_13 + + + 1 + 0.01 + 0.036233 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL0Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.86029 + 2.2302e-10 + -0.05 + + + + + ... + fuseprof_5_14 + + + 1 + 0.0068485 + 0.011568 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortL0Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe5 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe11 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe15 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe19 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortL0Bodyframe27 + 0 + + + + + + ... + vortL0Bodyframe1elem1 + vortL0Bodyframe3elem1 + + + + ... + vortL0Bodyframe3elem1 + vortL0Bodyframe5elem1 + + + + ... + vortL0Bodyframe5elem1 + vortL0Bodyframe7elem1 + + + + ... + vortL0Bodyframe7elem1 + vortL0Bodyframe9elem1 + + + + ... + vortL0Bodyframe9elem1 + vortL0Bodyframe11elem1 + + + + ... + vortL0Bodyframe11elem1 + vortL0Bodyframe13elem1 + + + + ... + vortL0Bodyframe13elem1 + vortL0Bodyframe15elem1 + + + + ... + vortL0Bodyframe15elem1 + vortL0Bodyframe17elem1 + + + + ... + vortL0Bodyframe17elem1 + vortL0Bodyframe19elem1 + + + + ... + vortL0Bodyframe19elem1 + vortL0Bodyframe21elem1 + + + + ... + vortL0Bodyframe21elem1 + vortL0Bodyframe23elem1 + + + + ... + vortL0Bodyframe23elem1 + vortL0Bodyframe25elem1 + + + + ... + vortL0Bodyframe25elem1 + vortL0Bodyframe27elem1 + + + +
+ +vortL1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 12.48 + -3.788 + 0 + + + +
+vortL1Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.0019587 + 1.46e-10 + -0.045 + + + + + ... + fuseprof_6_1 + + + 1 + 0.0059445 + 0.009337 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.01748 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_2 + + + 1 + 0.01 + 0.034037 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Frame62 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.038792 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_3 + + + 1 + 0.010227 + 0.042305 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.06796 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_4 + + + 1 + 0.01 + 0.04363 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.091236 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_5 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.14577 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_6 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.27662 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_7 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.41438 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_8 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.53176 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_9 + + + 1 + 0.01 + 0.045 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.57525 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_10 + + + 1 + 0.01 + 0.039732 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.60552 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_11 + + + 1 + 0.01 + 0.02665 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL1Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.62104 + 2.3583e-17 + -0.045 + + + + + ... + fuseprof_6_12 + + + 1 + 0.0059445 + 0.009337 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortL1Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortL1Frame62 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe6 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortL1Bodyframe27 + 0 + + + + + + ... + vortL1Bodyframe1elem1 + vortL1Bodyframe3elem1 + + + + ... + vortL1Bodyframe3elem1 + vortL1Frame62elem1 + + + + ... + vortL1Frame62elem1 + vortL1Bodyframe6elem1 + + + + ... + vortL1Bodyframe6elem1 + vortL1Bodyframe7elem1 + + + + ... + vortL1Bodyframe7elem1 + vortL1Bodyframe9elem1 + + + + ... + vortL1Bodyframe9elem1 + vortL1Bodyframe13elem1 + + + + ... + vortL1Bodyframe13elem1 + vortL1Bodyframe17elem1 + + + + ... + vortL1Bodyframe17elem1 + vortL1Bodyframe21elem1 + + + + ... + vortL1Bodyframe21elem1 + vortL1Bodyframe23elem1 + + + + ... + vortL1Bodyframe23elem1 + vortL1Bodyframe25elem1 + + + + ... + vortL1Bodyframe25elem1 + vortL1Bodyframe27elem1 + + + +
+ +vortL2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 13.23 + -4.28 + 0 + + + +
+vortL2Bodyframe1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.001201 + 6.664e-11 + -0.03 + + + + + ... + fuseprof_7_1 + + + 1 + 0.00262 + 0.0035744 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.010718 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_2 + + + 1 + 0.01 + 0.01951 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.029276 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_3 + + + 1 + 0.01 + 0.0271 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.055943 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_4 + + + 1 + 0.01 + 0.029931 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.089382 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_5 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe11 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.12792 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_6 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe13 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.16962 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_7 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe15 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.21238 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_8 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe17 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.25408 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_9 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe19 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.29262 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_10 + + + 1 + 0.01 + 0.03 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe21 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.32606 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_11 + + + 1 + 0.01 + 0.029931 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe23 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.35272 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_12 + + + 1 + 0.01 + 0.025768 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe25 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.37128 + 1.0533e-17 + -0.03 + + + + + ... + fuseprof_7_13 + + + 1 + 0.01 + 0.017112 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+vortL2Bodyframe27 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.3808 + 1.0519e-17 + -0.03 + + + + + ... + fuseprof_7_14 + + + 1 + 0.0023536 + 0.0025086 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + vortL2Bodyframe1 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe3 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe5 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe7 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe9 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe11 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe13 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe15 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe17 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe19 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe21 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe23 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe25 + 0 + + + + ... + description + 0 + 0 + vortL2Bodyframe27 + 0 + + + + + + ... + vortL2Bodyframe1elem1 + vortL2Bodyframe3elem1 + + + + ... + vortL2Bodyframe3elem1 + vortL2Bodyframe5elem1 + + + + ... + vortL2Bodyframe5elem1 + vortL2Bodyframe7elem1 + + + + ... + vortL2Bodyframe7elem1 + vortL2Bodyframe9elem1 + + + + ... + vortL2Bodyframe9elem1 + vortL2Bodyframe11elem1 + + + + ... + vortL2Bodyframe11elem1 + vortL2Bodyframe13elem1 + + + + ... + vortL2Bodyframe13elem1 + vortL2Bodyframe15elem1 + + + + ... + vortL2Bodyframe15elem1 + vortL2Bodyframe17elem1 + + + + ... + vortL2Bodyframe17elem1 + vortL2Bodyframe19elem1 + + + + ... + vortL2Bodyframe19elem1 + vortL2Bodyframe21elem1 + + + + ... + vortL2Bodyframe21elem1 + vortL2Bodyframe23elem1 + + + + ... + vortL2Bodyframe23elem1 + vortL2Bodyframe25elem1 + + + + ... + vortL2Bodyframe25elem1 + vortL2Bodyframe27elem1 + + + +
+
+ + + Fin + Fuse + description + + + 1 + 1 + 1 + + + 90.0002 + 0 + -0 + + + 9.3754 + 4.0681e-17 + 0.6644 + + + +
+FinWingSection2 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_1_2 + + + + 4.8601 + 4.8601 + 4.8601 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+FinWingSection1 +description + + + 1 + 1 + 1 + + + -0 + 0 + -0.90224 + + + 4.4688 + 2.0387 + 0 + + + + + ... + foil_1_1 + + + + 1.156 + 1.156 + 1.156 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + FinWingSection1 + 0 + + + + ... + description + 0 + 0 + FinWingSection2 + 0 + + + + + + ... + FinWingSection1elem1 + FinWingSection2elem1 + + + +
+ + Wing + Fuse + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 5.0049 + 0 + -0.064604 + + + +
+WingWingSection7 +description + + + 1 + 1 + 1 + + + -0 + -1 + -0 + + + -0.3 + 0 + -0.01173 + + + + + ... + foil_2_7 + + + + 10.5 + 10.5 + 10.5 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection6 +description + + + 1 + 1 + 1 + + + -0 + -0.97781 + -0 + + + -0.2117 + 0.8 + -0.026842 + + + + + ... + foil_2_6 + + + + 10.155 + 10.155 + 10.155 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection5 +description + + + 1 + 1 + 1 + + + -0 + -0.90459 + -0 + + + -0.19243 + 1 + -0.023908 + + + + + ... + foil_2_5 + + + + 10.0503 + 10.0503 + 10.0503 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection4 +description + + + 1 + 1 + 1 + + + -0 + -0.76077 + -0 + + + -0.025661 + 1.2 + -0.0070237 + + + + + ... + foil_2_4 + + + + 9.7978 + 9.7978 + 9.7978 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection3 +description + + + 1 + 1 + 1 + + + -0 + -0.57548 + -0 + + + 0.22545 + 1.3 + 0.021771 + + + + + ... + foil_2_3 + + + + 9.5037 + 9.5037 + 9.5037 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection2 +description + + + 1 + 1 + 1 + + + -0 + -0.0028329 + -0 + + + 4.9966 + 2.201 + 0.06439 + + + + + ... + foil_2_2 + + + + 4.3485 + 4.3485 + 4.3485 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+WingWingSection1 +description + + + 1 + 1 + 1 + + + -0 + -0.01789 + -0 + + + 8.5797 + 4.526 + 0.064365 + + + + + ... + foil_2_1 + + + + 0.76543 + 0.76543 + 0.76543 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + WingWingSection1 + 0 + + + + ... + description + 0 + 0 + WingWingSection2 + 0 + + + + ... + description + 0 + 0 + WingWingSection3 + 0 + + + + ... + description + 0 + 0 + WingWingSection4 + 0 + + + + ... + description + 0 + 0 + WingWingSection5 + 0 + + + + ... + description + 0 + 0 + WingWingSection6 + 0 + + + + ... + description + 0 + 0 + WingWingSection7 + 0 + + + + + + ... + WingWingSection1elem1 + WingWingSection2elem1 + + + + ... + WingWingSection2elem1 + WingWingSection3elem1 + + + + ... + WingWingSection3elem1 + WingWingSection4elem1 + + + + ... + WingWingSection4elem1 + WingWingSection5elem1 + + + + ... + WingWingSection5elem1 + WingWingSection6elem1 + + + + ... + WingWingSection6elem1 + WingWingSection7elem1 + + + +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 0.0 + 0.3 + 0.0 + 0.0 + + + + + + +
+
+ + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.356731 ;0.681350 ;0.900971 ;1.000000 ;0.927341 ;0.715967 ;0.410089 ;0.000000 ;-0.410089 ;-0.715967 ;-0.927341 ;-1.000000 ;-0.900971 ;-0.681350 ;-0.356731 ;0.000000 + -1.000000 ;-0.934453 ;-0.732932 ;-0.436042 ;-0.028088 ;0.370647 ;0.692584 ;0.906294 ;1.000000 ;0.906294 ;0.692584 ;0.370647 ;-0.028088 ;-0.436042 ;-0.732932 ;-0.934453 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.101997 ;0.212427 ;0.273184 ;0.385884 ;0.493594 ;0.547329 ;0.641343 ;0.712920 ;0.780710 ;0.840490 ;0.878360 ;0.931785 ;0.963096 ;0.983662 ;0.995993 ;1.000000 ;0.993929 ;0.984069 ;0.958805 ;0.924537 ;0.863141 ;0.822730 ;0.760920 ;0.701053 ;0.620487 ;0.562412 ;0.490214 ;0.381180 ;0.284666 ;0.186542 ;0.105565 ;0.000000 ;-0.105565 ;-0.186542 ;-0.284666 ;-0.381180 ;-0.490214 ;-0.562412 ;-0.620487 ;-0.701053 ;-0.760920 ;-0.822730 ;-0.863141 ;-0.924537 ;-0.958805 ;-0.984069 ;-0.993929 ;-1.000000 ;-0.995993 ;-0.983662 ;-0.963096 ;-0.931785 ;-0.878360 ;-0.840490 ;-0.780710 ;-0.712920 ;-0.641343 ;-0.547329 ;-0.493594 ;-0.385884 ;-0.273184 ;-0.212427 ;-0.101997 ;0.000000 + -1.000000 ;-0.994941 ;-0.977333 ;-0.962107 ;-0.922702 ;-0.869830 ;-0.837065 ;-0.767378 ;-0.701384 ;-0.624949 ;-0.541955 ;-0.478096 ;-0.362970 ;-0.269138 ;-0.180139 ;-0.089468 ;0.002362 ;0.109770 ;0.177772 ;0.284011 ;0.381068 ;0.504927 ;0.568414 ;0.648824 ;0.713109 ;0.784196 ;0.826855 ;0.871582 ;0.924420 ;0.958446 ;0.982457 ;0.994426 ;1.000000 ;0.994426 ;0.982457 ;0.958446 ;0.924420 ;0.871582 ;0.826855 ;0.784196 ;0.713109 ;0.648824 ;0.568414 ;0.504927 ;0.381068 ;0.284011 ;0.177772 ;0.109770 ;0.002362 ;-0.089468 ;-0.180139 ;-0.269138 ;-0.362970 ;-0.478096 ;-0.541955 ;-0.624949 ;-0.701384 ;-0.767378 ;-0.837065 ;-0.869830 ;-0.922702 ;-0.962107 ;-0.977333 ;-0.994941 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.092308 ;0.200445 ;0.285168 ;0.387557 ;0.483595 ;0.558191 ;0.642226 ;0.704274 ;0.768292 ;0.837124 ;0.881371 ;0.926751 ;0.955251 ;0.981550 ;0.995107 ;1.000000 ;0.997182 ;0.988602 ;0.971675 ;0.949441 ;0.923038 ;0.890727 ;0.846193 ;0.793927 ;0.746097 ;0.662488 ;0.590859 ;0.521614 ;0.485289 ;0.440362 ;0.386930 ;0.317076 ;0.252868 ;0.210895 ;0.164928 ;0.082272 ;0.000000 ;-0.082272 ;-0.164928 ;-0.210895 ;-0.252868 ;-0.317076 ;-0.386930 ;-0.440362 ;-0.485289 ;-0.521614 ;-0.590859 ;-0.662488 ;-0.746097 ;-0.793927 ;-0.846193 ;-0.890727 ;-0.923038 ;-0.949441 ;-0.971675 ;-0.988602 ;-0.997182 ;-1.000000 ;-0.995107 ;-0.981550 ;-0.955251 ;-0.926751 ;-0.881371 ;-0.837124 ;-0.768292 ;-0.704274 ;-0.642226 ;-0.558191 ;-0.483595 ;-0.387557 ;-0.285168 ;-0.200445 ;-0.092308 ;0.000000 + -1.000000 ;-0.996385 ;-0.982562 ;-0.964252 ;-0.932651 ;-0.892501 ;-0.853178 ;-0.798676 ;-0.749855 ;-0.689635 ;-0.609333 ;-0.545008 ;-0.461553 ;-0.392667 ;-0.302470 ;-0.222818 ;-0.132647 ;-0.071343 ;-0.004952 ;0.070452 ;0.138742 ;0.200975 ;0.262407 ;0.331314 ;0.397413 ;0.448280 ;0.521503 ;0.572259 ;0.613111 ;0.691389 ;0.762881 ;0.827333 ;0.890165 ;0.932556 ;0.953889 ;0.972203 ;0.993229 ;1.000000 ;0.993229 ;0.972203 ;0.953889 ;0.932556 ;0.890165 ;0.827333 ;0.762881 ;0.691389 ;0.613111 ;0.572259 ;0.521503 ;0.448280 ;0.397413 ;0.331314 ;0.262407 ;0.200975 ;0.138742 ;0.070452 ;-0.004952 ;-0.071343 ;-0.132647 ;-0.222818 ;-0.302470 ;-0.392667 ;-0.461553 ;-0.545008 ;-0.609333 ;-0.689635 ;-0.749855 ;-0.798676 ;-0.853178 ;-0.892501 ;-0.932651 ;-0.964252 ;-0.982562 ;-0.996385 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.092308 ;0.200445 ;0.285168 ;0.387557 ;0.483595 ;0.558191 ;0.642226 ;0.704274 ;0.768292 ;0.837124 ;0.881371 ;0.926751 ;0.955251 ;0.981550 ;0.995107 ;1.000000 ;0.994869 ;0.978884 ;0.954558 ;0.923038 ;0.875859 ;0.846193 ;0.811480 ;0.775708 ;0.715895 ;0.635328 ;0.603824 ;0.573448 ;0.527281 ;0.496751 ;0.460219 ;0.407825 ;0.361301 ;0.302971 ;0.253053 ;0.199490 ;0.132157 ;0.068980 ;0.000000 ;-0.068980 ;-0.132157 ;-0.199490 ;-0.253053 ;-0.302971 ;-0.361301 ;-0.407825 ;-0.460219 ;-0.496751 ;-0.527281 ;-0.573448 ;-0.603824 ;-0.635328 ;-0.715895 ;-0.775708 ;-0.811480 ;-0.846193 ;-0.875859 ;-0.923038 ;-0.954558 ;-0.978884 ;-0.994869 ;-1.000000 ;-0.995107 ;-0.981550 ;-0.955251 ;-0.926751 ;-0.881371 ;-0.837124 ;-0.768292 ;-0.704274 ;-0.642226 ;-0.558191 ;-0.483595 ;-0.387557 ;-0.285168 ;-0.200445 ;-0.092308 ;0.000000 + -1.000000 ;-0.996782 ;-0.984579 ;-0.968415 ;-0.940519 ;-0.905075 ;-0.870361 ;-0.822248 ;-0.779150 ;-0.725989 ;-0.655100 ;-0.598315 ;-0.524642 ;-0.463831 ;-0.384206 ;-0.313891 ;-0.234265 ;-0.159435 ;-0.078837 ;-0.005731 ;0.061964 ;0.138408 ;0.177695 ;0.217921 ;0.254416 ;0.306830 ;0.364666 ;0.493246 ;0.577696 ;0.670688 ;0.719179 ;0.768216 ;0.826013 ;0.867762 ;0.910010 ;0.938680 ;0.962730 ;0.984110 ;0.995869 ;1.000000 ;0.995869 ;0.984110 ;0.962730 ;0.938680 ;0.910010 ;0.867762 ;0.826013 ;0.768216 ;0.719179 ;0.670688 ;0.577696 ;0.493246 ;0.364666 ;0.306830 ;0.254416 ;0.217921 ;0.177695 ;0.138408 ;0.061964 ;-0.005731 ;-0.078837 ;-0.159435 ;-0.234265 ;-0.313891 ;-0.384206 ;-0.463831 ;-0.524642 ;-0.598315 ;-0.655100 ;-0.725989 ;-0.779150 ;-0.822248 ;-0.870361 ;-0.905075 ;-0.940519 ;-0.968415 ;-0.984579 ;-0.996782 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.074533 ;0.166598 ;0.242920 ;0.323690 ;0.409999 ;0.482461 ;0.563222 ;0.614859 ;0.679415 ;0.745057 ;0.794948 ;0.849763 ;0.885600 ;0.932409 ;0.971787 ;1.000000 ;0.961370 ;0.916165 ;0.876299 ;0.839901 ;0.789302 ;0.739141 ;0.674895 ;0.597140 ;0.527856 ;0.506622 ;0.491893 ;0.480141 ;0.454098 ;0.432346 ;0.405378 ;0.375356 ;0.343563 ;0.299266 ;0.258000 ;0.211290 ;0.158507 ;0.109830 ;0.063182 ;0.000000 ;-0.063182 ;-0.109830 ;-0.158507 ;-0.211290 ;-0.258000 ;-0.299266 ;-0.343563 ;-0.375356 ;-0.405378 ;-0.432346 ;-0.454098 ;-0.480141 ;-0.491893 ;-0.506622 ;-0.527856 ;-0.597140 ;-0.674895 ;-0.739141 ;-0.789302 ;-0.839901 ;-0.876299 ;-0.916165 ;-0.961370 ;-1.000000 ;-0.971787 ;-0.932409 ;-0.885600 ;-0.849763 ;-0.794948 ;-0.745057 ;-0.679415 ;-0.614859 ;-0.563222 ;-0.482461 ;-0.409999 ;-0.323690 ;-0.242920 ;-0.166598 ;-0.074533 ;0.000000 + -1.000000 ;-0.997958 ;-0.989551 ;-0.977512 ;-0.959686 ;-0.934269 ;-0.907429 ;-0.870853 ;-0.843296 ;-0.803542 ;-0.755906 ;-0.713731 ;-0.659723 ;-0.618792 ;-0.556027 ;-0.491028 ;-0.433209 ;0.203349 ;0.272417 ;0.324497 ;0.365681 ;0.415519 ;0.458258 ;0.505364 ;0.553095 ;0.588561 ;0.682577 ;0.722945 ;0.747317 ;0.789632 ;0.817674 ;0.846657 ;0.873618 ;0.897668 ;0.925134 ;0.945918 ;0.964592 ;0.980403 ;0.990745 ;0.996954 ;1.000000 ;0.996954 ;0.990745 ;0.980403 ;0.964592 ;0.945918 ;0.925134 ;0.897668 ;0.873618 ;0.846657 ;0.817674 ;0.789632 ;0.747317 ;0.722945 ;0.682577 ;0.588561 ;0.553095 ;0.505364 ;0.458258 ;0.415519 ;0.365681 ;0.324497 ;0.272417 ;0.203349 ;-0.433209 ;-0.491028 ;-0.556027 ;-0.618792 ;-0.659723 ;-0.713731 ;-0.755906 ;-0.803542 ;-0.843296 ;-0.870853 ;-0.907429 ;-0.934269 ;-0.959686 ;-0.977512 ;-0.989551 ;-0.997958 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.081493 ;0.157125 ;0.231853 ;0.305586 ;0.379064 ;0.448283 ;0.527511 ;0.585025 ;0.645655 ;0.699888 ;0.761319 ;0.814628 ;0.869177 ;0.910994 ;0.947237 ;0.998451 ;1.000000 ;0.938632 ;0.897255 ;0.828069 ;0.766294 ;0.713218 ;0.628346 ;0.543731 ;0.457444 ;0.432526 ;0.424178 ;0.409891 ;0.392905 ;0.373507 ;0.349953 ;0.317403 ;0.283616 ;0.240909 ;0.197392 ;0.154279 ;0.101141 ;0.049780 ;0.000000 ;-0.049780 ;-0.101141 ;-0.154279 ;-0.197392 ;-0.240909 ;-0.283616 ;-0.317403 ;-0.349953 ;-0.373507 ;-0.392905 ;-0.409891 ;-0.424178 ;-0.432526 ;-0.457444 ;-0.543731 ;-0.628346 ;-0.713218 ;-0.766294 ;-0.828069 ;-0.897255 ;-0.938632 ;-1.000000 ;-0.998451 ;-0.947237 ;-0.910994 ;-0.869177 ;-0.814628 ;-0.761319 ;-0.699888 ;-0.645655 ;-0.585025 ;-0.527511 ;-0.448283 ;-0.379064 ;-0.305586 ;-0.231853 ;-0.157125 ;-0.081493 ;0.000000 + -1.000000 ;-0.997851 ;-0.991895 ;-0.982210 ;-0.968829 ;-0.951537 ;-0.931393 ;-0.903386 ;-0.879423 ;-0.850475 ;-0.820933 ;-0.782982 ;-0.745274 ;-0.701266 ;-0.662972 ;-0.625818 ;-0.567651 ;0.327932 ;0.397850 ;0.439394 ;0.499059 ;0.544292 ;0.578260 ;0.624767 ;0.663043 ;0.694912 ;0.809315 ;0.832961 ;0.856953 ;0.877179 ;0.895089 ;0.912574 ;0.931882 ;0.947922 ;0.963933 ;0.976509 ;0.985986 ;0.994095 ;0.998581 ;1.000000 ;0.998581 ;0.994095 ;0.985986 ;0.976509 ;0.963933 ;0.947922 ;0.931882 ;0.912574 ;0.895089 ;0.877179 ;0.856953 ;0.832961 ;0.809315 ;0.694912 ;0.663043 ;0.624767 ;0.578260 ;0.544292 ;0.499059 ;0.439394 ;0.397850 ;0.327932 ;-0.567651 ;-0.625818 ;-0.662972 ;-0.701266 ;-0.745274 ;-0.782982 ;-0.820933 ;-0.850475 ;-0.879423 ;-0.903386 ;-0.931393 ;-0.951537 ;-0.968829 ;-0.982210 ;-0.991895 ;-0.997851 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.065470 ;0.098308 ;0.205443 ;0.290148 ;0.346993 ;0.395736 ;0.451467 ;0.511442 ;0.562912 ;0.617914 ;0.664263 ;0.713218 ;0.759560 ;0.799170 ;0.835362 ;0.870969 ;1.000000 ;0.997350 ;0.987557 ;0.973572 ;0.948501 ;0.924534 ;0.894721 ;0.856477 ;0.810851 ;0.755314 ;0.698792 ;0.638217 ;0.576545 ;0.511862 ;0.437457 ;0.352936 ;0.273452 ;0.258739 ;0.252984 ;0.242572 ;0.228733 ;0.209419 ;0.187679 ;0.000000 ;-0.187679 ;-0.209419 ;-0.228733 ;-0.242572 ;-0.252984 ;-0.258739 ;-0.273452 ;-0.352936 ;-0.437457 ;-0.511862 ;-0.576545 ;-0.638217 ;-0.698792 ;-0.755314 ;-0.810851 ;-0.856477 ;-0.894721 ;-0.924534 ;-0.948501 ;-0.973572 ;-0.987557 ;-0.997350 ;-1.000000 ;-0.870969 ;-0.835362 ;-0.799170 ;-0.759560 ;-0.713218 ;-0.664263 ;-0.617914 ;-0.562912 ;-0.511442 ;-0.451467 ;-0.395736 ;-0.346993 ;-0.290148 ;-0.205443 ;-0.098308 ;-0.065470 ;0.000000 + -1.000000 ;-0.995674 ;-0.987498 ;-0.972776 ;-0.953410 ;-0.936343 ;-0.918921 ;-0.895638 ;-0.866198 ;-0.836901 ;-0.800947 ;-0.766346 ;-0.724766 ;-0.679677 ;-0.635621 ;-0.589716 ;-0.537596 ;-0.092689 ;-0.033325 ;0.041898 ;0.105323 ;0.184227 ;0.241627 ;0.300149 ;0.362183 ;0.423906 ;0.486525 ;0.540040 ;0.588764 ;0.630904 ;0.668355 ;0.704301 ;0.736802 ;0.760240 ;0.844601 ;0.862299 ;0.881960 ;0.900110 ;0.918772 ;0.934668 ;1.000000 ;0.934668 ;0.918772 ;0.900110 ;0.881960 ;0.862299 ;0.844601 ;0.760240 ;0.736802 ;0.704301 ;0.668355 ;0.630904 ;0.588764 ;0.540040 ;0.486525 ;0.423906 ;0.362183 ;0.300149 ;0.241627 ;0.184227 ;0.105323 ;0.041898 ;-0.033325 ;-0.092689 ;-0.537596 ;-0.589716 ;-0.635621 ;-0.679677 ;-0.724766 ;-0.766346 ;-0.800947 ;-0.836901 ;-0.866198 ;-0.895638 ;-0.918921 ;-0.936343 ;-0.953410 ;-0.972776 ;-0.987498 ;-0.995674 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.116069 ;0.165874 ;0.210169 ;0.250680 ;0.282152 ;0.294355 ;0.427995 ;0.507301 ;0.591260 ;0.657512 ;0.719435 ;0.776185 ;0.826860 ;0.873355 ;0.914988 ;0.991416 ;0.998705 ;1.000000 ;0.994988 ;0.980153 ;0.961389 ;0.929761 ;0.900097 ;0.854513 ;0.814586 ;0.757894 ;0.702674 ;0.621532 ;0.542308 ;0.460098 ;0.371168 ;0.296171 ;0.273800 ;0.265420 ;0.251031 ;0.232882 ;0.214263 ;0.160567 ;0.000000 ;-0.160567 ;-0.214263 ;-0.232882 ;-0.251031 ;-0.265420 ;-0.273800 ;-0.296171 ;-0.371168 ;-0.460098 ;-0.542308 ;-0.621532 ;-0.702674 ;-0.757894 ;-0.814586 ;-0.854513 ;-0.900097 ;-0.929761 ;-0.961389 ;-0.980153 ;-0.994988 ;-1.000000 ;-0.998705 ;-0.991416 ;-0.914988 ;-0.873355 ;-0.826860 ;-0.776185 ;-0.719435 ;-0.657512 ;-0.591260 ;-0.507301 ;-0.427995 ;-0.294355 ;-0.282152 ;-0.250680 ;-0.210169 ;-0.165874 ;-0.116069 ;0.000000 + -1.000000 ;-0.999844 ;-0.997284 ;-0.990135 ;-0.977851 ;-0.960555 ;-0.948182 ;-0.757041 ;-0.724639 ;-0.681238 ;-0.639122 ;-0.592157 ;-0.541243 ;-0.487207 ;-0.426637 ;-0.358702 ;-0.134702 ;-0.070707 ;-0.006058 ;0.058402 ;0.136743 ;0.198593 ;0.273470 ;0.327893 ;0.395403 ;0.444257 ;0.502560 ;0.550186 ;0.608048 ;0.653699 ;0.691974 ;0.724546 ;0.745703 ;0.854415 ;0.876334 ;0.899980 ;0.920881 ;0.937247 ;0.971436 ;1.000000 ;0.971436 ;0.937247 ;0.920881 ;0.899980 ;0.876334 ;0.854415 ;0.745703 ;0.724546 ;0.691974 ;0.653699 ;0.608048 ;0.550186 ;0.502560 ;0.444257 ;0.395403 ;0.327893 ;0.273470 ;0.198593 ;0.136743 ;0.058402 ;-0.006058 ;-0.070707 ;-0.134702 ;-0.358702 ;-0.426637 ;-0.487207 ;-0.541243 ;-0.592157 ;-0.639122 ;-0.681238 ;-0.724639 ;-0.757041 ;-0.948182 ;-0.960555 ;-0.977851 ;-0.990135 ;-0.997284 ;-0.999844 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.071171 ;0.140562 ;0.206501 ;0.260555 ;0.301487 ;0.330392 ;0.363373 ;0.397925 ;0.432044 ;0.504360 ;0.553275 ;0.586755 ;0.655184 ;0.738586 ;0.783190 ;0.832261 ;0.874077 ;0.907870 ;0.941029 ;0.963853 ;0.981233 ;0.995161 ;1.000000 ;0.972163 ;0.953078 ;0.929404 ;0.901189 ;0.869998 ;0.834016 ;0.796919 ;0.753639 ;0.691960 ;0.625010 ;0.543461 ;0.474944 ;0.385089 ;0.314314 ;0.243735 ;0.121367 ;0.000000 ;-0.121367 ;-0.243735 ;-0.314314 ;-0.385089 ;-0.474944 ;-0.543461 ;-0.625010 ;-0.691960 ;-0.753639 ;-0.796919 ;-0.834016 ;-0.869998 ;-0.901189 ;-0.929404 ;-0.953078 ;-0.972163 ;-1.000000 ;-0.995161 ;-0.981233 ;-0.963853 ;-0.941029 ;-0.907870 ;-0.874077 ;-0.832261 ;-0.783190 ;-0.738586 ;-0.655184 ;-0.586755 ;-0.553275 ;-0.504360 ;-0.432044 ;-0.397925 ;-0.363373 ;-0.330392 ;-0.301487 ;-0.260555 ;-0.206501 ;-0.140562 ;-0.071171 ;0.000000 + -1.000000 ;-0.999645 ;-0.995506 ;-0.987156 ;-0.974818 ;-0.958205 ;-0.941317 ;-0.916746 ;-0.884982 ;-0.847547 ;-0.816842 ;-0.787988 ;-0.764466 ;-0.708230 ;-0.628899 ;-0.579192 ;-0.512789 ;-0.443125 ;-0.374163 ;-0.289017 ;-0.212799 ;-0.134885 ;-0.038010 ;0.178239 ;0.314405 ;0.378784 ;0.441457 ;0.502336 ;0.558646 ;0.613904 ;0.663002 ;0.712599 ;0.772350 ;0.825827 ;0.878331 ;0.913497 ;0.949017 ;0.969372 ;0.983502 ;0.995887 ;1.000000 ;0.995887 ;0.983502 ;0.969372 ;0.949017 ;0.913497 ;0.878331 ;0.825827 ;0.772350 ;0.712599 ;0.663002 ;0.613904 ;0.558646 ;0.502336 ;0.441457 ;0.378784 ;0.314405 ;0.178239 ;-0.038010 ;-0.134885 ;-0.212799 ;-0.289017 ;-0.374163 ;-0.443125 ;-0.512789 ;-0.579192 ;-0.628899 ;-0.708230 ;-0.764466 ;-0.787988 ;-0.816842 ;-0.847547 ;-0.884982 ;-0.916746 ;-0.941317 ;-0.958205 ;-0.974818 ;-0.987156 ;-0.995506 ;-0.999645 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.094559 ;0.194840 ;0.315604 ;0.399753 ;0.476736 ;0.566456 ;0.645002 ;0.724037 ;0.786724 ;0.853648 ;0.899178 ;0.933188 ;0.961558 ;0.982176 ;0.994836 ;1.000000 ;0.998753 ;0.986527 ;0.966686 ;0.939121 ;0.899226 ;0.854380 ;0.797285 ;0.733876 ;0.672793 ;0.595652 ;0.532693 ;0.474533 ;0.396166 ;0.320466 ;0.215536 ;0.116975 ;0.000000 ;-0.116975 ;-0.215536 ;-0.320466 ;-0.396166 ;-0.474533 ;-0.532693 ;-0.595652 ;-0.672793 ;-0.733876 ;-0.797285 ;-0.854380 ;-0.899226 ;-0.939121 ;-0.966686 ;-0.986527 ;-0.998753 ;-1.000000 ;-0.994836 ;-0.982176 ;-0.961558 ;-0.933188 ;-0.899178 ;-0.853648 ;-0.786724 ;-0.724037 ;-0.645002 ;-0.566456 ;-0.476736 ;-0.399753 ;-0.315604 ;-0.194840 ;-0.094559 ;0.000000 + -1.000000 ;-0.996325 ;-0.983429 ;-0.953683 ;-0.923186 ;-0.887087 ;-0.834682 ;-0.778580 ;-0.711107 ;-0.645522 ;-0.557216 ;-0.479388 ;-0.404613 ;-0.321349 ;-0.233614 ;-0.142905 ;-0.030300 ;0.027357 ;0.161922 ;0.267757 ;0.365500 ;0.467896 ;0.556252 ;0.645809 ;0.726637 ;0.791221 ;0.855431 ;0.895995 ;0.926331 ;0.956802 ;0.976555 ;0.990514 ;0.995654 ;1.000000 ;0.995654 ;0.990514 ;0.976555 ;0.956802 ;0.926331 ;0.895995 ;0.855431 ;0.791221 ;0.726637 ;0.645809 ;0.556252 ;0.467896 ;0.365500 ;0.267757 ;0.161922 ;0.027357 ;-0.030300 ;-0.142905 ;-0.233614 ;-0.321349 ;-0.404613 ;-0.479388 ;-0.557216 ;-0.645522 ;-0.711107 ;-0.778580 ;-0.834682 ;-0.887087 ;-0.923186 ;-0.953683 ;-0.983429 ;-0.996325 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.383223 ;0.716529 ;0.943843 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.943843 ;0.716529 ;0.383223 ;0.000000 ;-0.383223 ;-0.716529 ;-0.943843 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.943843 ;-0.716529 ;-0.383223 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.383223 ;0.716529 ;0.943843 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.943843 ;0.716529 ;0.383223 ;0.000000 ;-0.383223 ;-0.716529 ;-0.943843 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.943843 ;-0.716529 ;-0.383223 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;0.346671 ;0.652254 ;0.871644 ;0.976146 ;1.000000 ;0.995597 ;0.990221 ;0.979203 ;0.990221 ;0.995597 ;1.000000 ;0.976146 ;0.871644 ;0.652254 ;0.346671 ;-0.000000 ;-0.346671 ;-0.652254 ;-0.871644 ;-0.976146 ;-1.000000 ;-0.995597 ;-0.990221 ;-0.979203 ;-0.990221 ;-0.995597 ;-1.000000 ;-0.976146 ;-0.871644 ;-0.652254 ;-0.346671 ;0.000000 + -1.000000 ;-0.980685 ;-0.923606 ;-0.831536 ;-0.707915 ;-0.556946 ;-0.383475 ;-0.194869 ;0.000001 ;0.194871 ;0.383477 ;0.556948 ;0.707917 ;0.831538 ;0.923608 ;0.980687 ;1.000000 ;0.980687 ;0.923608 ;0.831538 ;0.707917 ;0.556948 ;0.383477 ;0.194871 ;0.000001 ;-0.194869 ;-0.383475 ;-0.556946 ;-0.707915 ;-0.831536 ;-0.923606 ;-0.980685 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.400797 ;0.744261 ;0.964329 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.964329 ;0.744261 ;0.400797 ;0.000000 ;-0.400797 ;-0.744261 ;-0.964329 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.964329 ;-0.744261 ;-0.400797 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.383223 ;0.716529 ;0.943843 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.943843 ;0.716529 ;0.383223 ;0.000000 ;-0.383223 ;-0.716529 ;-0.943843 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.943843 ;-0.716529 ;-0.383223 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 + -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 + + + + + + ... + ... + + 1.000000 ;0.963618 ;0.927743 ;0.892317 ;0.857288 ;0.822689 ;0.788651 ;0.755121 ;0.722053 ;0.689413 ;0.657168 ;0.625310 ;0.593838 ;0.562774 ;0.532152 ;0.502027 ;0.472522 ;0.443826 ;0.415944 ;0.388873 ;0.362611 ;0.337160 ;0.312516 ;0.288678 ;0.265655 ;0.243448 ;0.222064 ;0.201510 ;0.181796 ;0.162934 ;0.144935 ;0.127812 ;0.111580 ;0.096253 ;0.081852 ;0.068414 ;0.055978 ;0.044596 ;0.034320 ;0.025215 ;0.017354 ;0.010821 ;0.005725 ;0.002191 ;0.000347 ;0.000000 ;0.000347 ;0.002191 ;0.005725 ;0.010821 ;0.017354 ;0.025215 ;0.034320 ;0.044596 ;0.055978 ;0.068414 ;0.081852 ;0.096253 ;0.111580 ;0.127812 ;0.144935 ;0.162935 ;0.181796 ;0.201510 ;0.222064 ;0.243448 ;0.265655 ;0.288678 ;0.312516 ;0.337160 ;0.362611 ;0.388873 ;0.415944 ;0.443826 ;0.472522 ;0.502027 ;0.532152 ;0.562774 ;0.593838 ;0.625310 ;0.657168 ;0.689414 ;0.722054 ;0.755121 ;0.788650 ;0.822689 ;0.857290 ;0.892322 ;0.927748 ;0.963622 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.003004 ;-0.005893 ;-0.008604 ;-0.011082 ;-0.013356 ;-0.015550 ;-0.017609 ;-0.019479 ;-0.021122 ;-0.022502 ;-0.023601 ;-0.024415 ;-0.024959 ;-0.025261 ;-0.025370 ;-0.025344 ;-0.025209 ;-0.024971 ;-0.024642 ;-0.024231 ;-0.023747 ;-0.023202 ;-0.022605 ;-0.021958 ;-0.021272 ;-0.020551 ;-0.019800 ;-0.019021 ;-0.018216 ;-0.017392 ;-0.016550 ;-0.015694 ;-0.014829 ;-0.013956 ;-0.013063 ;-0.012138 ;-0.011160 ;-0.010113 ;-0.008974 ;-0.007724 ;-0.006339 ;-0.004798 ;-0.003090 ;-0.001277 ;0.000000 ;0.001277 ;0.003090 ;0.004798 ;0.006339 ;0.007724 ;0.008974 ;0.010113 ;0.011160 ;0.012138 ;0.013063 ;0.013956 ;0.014829 ;0.015694 ;0.016550 ;0.017392 ;0.018216 ;0.019021 ;0.019800 ;0.020551 ;0.021272 ;0.021958 ;0.022605 ;0.023202 ;0.023747 ;0.024231 ;0.024642 ;0.024971 ;0.025209 ;0.025344 ;0.025370 ;0.025261 ;0.024959 ;0.024415 ;0.023601 ;0.022502 ;0.021124 ;0.019480 ;0.017608 ;0.015549 ;0.013356 ;0.011084 ;0.008609 ;0.005898 ;0.003007 ;0.000000 + + + + ... + ... + + 1.000000 ;0.963618 ;0.927743 ;0.892317 ;0.857288 ;0.822689 ;0.788651 ;0.755121 ;0.722053 ;0.689413 ;0.657168 ;0.625310 ;0.593838 ;0.562774 ;0.532152 ;0.502027 ;0.472522 ;0.443826 ;0.415944 ;0.388873 ;0.362611 ;0.337160 ;0.312516 ;0.288678 ;0.265655 ;0.243448 ;0.222064 ;0.201510 ;0.181796 ;0.162934 ;0.144935 ;0.127812 ;0.111580 ;0.096253 ;0.081852 ;0.068414 ;0.055978 ;0.044596 ;0.034320 ;0.025215 ;0.017354 ;0.010821 ;0.005725 ;0.002191 ;0.000347 ;0.000000 ;0.000347 ;0.002191 ;0.005725 ;0.010821 ;0.017354 ;0.025215 ;0.034320 ;0.044596 ;0.055978 ;0.068414 ;0.081852 ;0.096253 ;0.111580 ;0.127812 ;0.144935 ;0.162935 ;0.181796 ;0.201510 ;0.222064 ;0.243448 ;0.265655 ;0.288678 ;0.312516 ;0.337160 ;0.362611 ;0.388873 ;0.415944 ;0.443826 ;0.472522 ;0.502027 ;0.532152 ;0.562774 ;0.593838 ;0.625310 ;0.657168 ;0.689414 ;0.722054 ;0.755121 ;0.788650 ;0.822689 ;0.857290 ;0.892322 ;0.927748 ;0.963622 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.003004 ;-0.005893 ;-0.008604 ;-0.011082 ;-0.013356 ;-0.015550 ;-0.017609 ;-0.019479 ;-0.021122 ;-0.022502 ;-0.023601 ;-0.024415 ;-0.024959 ;-0.025261 ;-0.025370 ;-0.025344 ;-0.025209 ;-0.024971 ;-0.024642 ;-0.024231 ;-0.023747 ;-0.023202 ;-0.022605 ;-0.021958 ;-0.021272 ;-0.020551 ;-0.019800 ;-0.019021 ;-0.018216 ;-0.017392 ;-0.016550 ;-0.015694 ;-0.014829 ;-0.013956 ;-0.013063 ;-0.012138 ;-0.011160 ;-0.010113 ;-0.008974 ;-0.007724 ;-0.006339 ;-0.004798 ;-0.003090 ;-0.001277 ;0.000000 ;0.001277 ;0.003090 ;0.004798 ;0.006339 ;0.007724 ;0.008974 ;0.010113 ;0.011160 ;0.012138 ;0.013063 ;0.013956 ;0.014829 ;0.015694 ;0.016550 ;0.017392 ;0.018216 ;0.019021 ;0.019800 ;0.020551 ;0.021272 ;0.021958 ;0.022605 ;0.023202 ;0.023747 ;0.024231 ;0.024642 ;0.024971 ;0.025209 ;0.025344 ;0.025370 ;0.025261 ;0.024959 ;0.024415 ;0.023601 ;0.022502 ;0.021124 ;0.019480 ;0.017608 ;0.015549 ;0.013356 ;0.011084 ;0.008609 ;0.005898 ;0.003007 ;0.000000 + + + + ... + ... + + 1.000000 ;0.790636 ;0.658676 ;0.481925 ;0.369320 ;0.275866 ;0.184270 ;0.080490 ;0.030321 ;0.014845 ;0.005655 ;0.000771 ;0.000000 ;0.000863 ;0.007973 ;0.016576 ;0.057944 ;0.150753 ;0.251349 ;0.358086 ;0.527807 ;0.657275 ;0.781896 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.017428 ;-0.023337 ;-0.025564 ;-0.025300 ;-0.023856 ;-0.020606 ;-0.014510 ;-0.010085 ;-0.007877 ;-0.005394 ;-0.002109 ;0.000000 ;0.002839 ;0.006838 ;0.008800 ;0.013352 ;0.019443 ;0.023653 ;0.025607 ;0.025687 ;0.023592 ;0.018084 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.770699 ;0.715287 ;0.677589 ;0.643834 ;0.585004 ;0.552287 ;0.519807 ;0.440497 ;0.366661 ;0.318370 ;0.248105 ;0.201698 ;0.154868 ;0.102733 ;0.070779 ;0.042973 ;0.026089 ;0.015474 ;0.009927 ;0.004902 ;0.001948 ;0.000929 ;0.000202 ;0.000000 ;0.000188 ;0.000759 ;0.001521 ;0.004522 ;0.008349 ;0.014343 ;0.021013 ;0.031358 ;0.049273 ;0.080477 ;0.138826 ;0.204549 ;0.274977 ;0.332199 ;0.395826 ;0.466784 ;0.536776 ;0.589187 ;0.622019 ;0.656260 ;0.700546 ;0.730571 ;0.805429 ;0.860509 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.017385 ;-0.020474 ;-0.022224 ;-0.023494 ;-0.024977 ;-0.025419 ;-0.025611 ;-0.025409 ;-0.024477 ;-0.023489 ;-0.021538 ;-0.019906 ;-0.017936 ;-0.015261 ;-0.013278 ;-0.011036 ;-0.009110 ;-0.007355 ;-0.006101 ;-0.004453 ;-0.002891 ;-0.002021 ;-0.000935 ;0.000000 ;0.001006 ;0.001928 ;0.002667 ;0.004390 ;0.005752 ;0.007236 ;0.008452 ;0.009890 ;0.011711 ;0.014016 ;0.017259 ;0.020094 ;0.022428 ;0.023866 ;0.024990 ;0.025622 ;0.025585 ;0.024947 ;0.024192 ;0.023095 ;0.021229 ;0.019706 ;0.015247 ;0.011658 ;0.000000 + + + + ... + ... + + 1.000000 ;0.931937 ;0.883470 ;0.863967 ;0.844359 ;0.824718 ;0.805014 ;0.791117 ;0.771151 ;0.749018 ;0.730765 ;0.713239 ;0.685078 ;0.649341 ;0.613049 ;0.553197 ;0.496931 ;0.458638 ;0.400396 ;0.358267 ;0.282372 ;0.218282 ;0.167915 ;0.124112 ;0.087842 ;0.071512 ;0.058508 ;0.048681 ;0.039310 ;0.030768 ;0.022907 ;0.015756 ;0.009680 ;0.006921 ;0.004149 ;0.001982 ;0.000791 ;0.000276 ;0.000087 ;0.000000 ;0.000225 ;0.000703 ;0.001443 ;0.002481 ;0.004603 ;0.007280 ;0.012016 ;0.016938 ;0.020461 ;0.028359 ;0.039710 ;0.052946 ;0.066865 ;0.078469 ;0.090628 ;0.103521 ;0.116947 ;0.141550 ;0.171445 ;0.197681 ;0.235343 ;0.386363 ;0.443914 ;0.499374 ;0.571929 ;0.622051 ;0.657806 ;0.677101 ;0.708152 ;0.725660 ;0.782525 ;0.905888 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.009498 ;-0.014347 ;-0.016183 ;-0.017890 ;-0.019436 ;-0.020807 ;-0.021661 ;-0.022763 ;-0.023857 ;-0.024628 ;-0.025248 ;-0.026005 ;-0.026581 ;-0.026809 ;-0.026679 ;-0.026258 ;-0.025777 ;-0.024677 ;-0.023622 ;-0.021584 ;-0.019707 ;-0.018023 ;-0.016270 ;-0.014490 ;-0.013539 ;-0.012659 ;-0.011840 ;-0.010878 ;-0.009805 ;-0.008589 ;-0.007219 ;-0.005709 ;-0.004811 ;-0.003757 ;-0.002656 ;-0.001738 ;-0.001076 ;-0.000687 ;0.000000 ;0.000738 ;0.001440 ;0.002124 ;0.002807 ;0.003958 ;0.005216 ;0.006981 ;0.008503 ;0.009474 ;0.011408 ;0.013797 ;0.016190 ;0.018388 ;0.019954 ;0.021313 ;0.022405 ;0.023089 ;0.023774 ;0.024310 ;0.024622 ;0.024915 ;0.025591 ;0.025634 ;0.025265 ;0.024294 ;0.023306 ;0.022291 ;0.021595 ;0.020219 ;0.019293 ;0.015931 ;0.008341 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.934088 ;0.878382 ;0.858030 ;0.837567 ;0.817072 ;0.796511 ;0.782010 ;0.763340 ;0.742189 ;0.724229 ;0.706743 ;0.678331 ;0.641843 ;0.624272 ;0.588851 ;0.566424 ;0.516758 ;0.462865 ;0.423439 ;0.352121 ;0.256165 ;0.189909 ;0.152074 ;0.126010 ;0.036059 ;0.030412 ;0.020707 ;0.012713 ;0.008910 ;0.006149 ;0.004064 ;0.002496 ;0.001357 ;0.000586 ;0.000144 ;0.000000 ;0.000084 ;0.000357 ;0.000843 ;0.001572 ;0.002591 ;0.003973 ;0.005850 ;0.008542 ;0.015043 ;0.036835 ;0.048465 ;0.065617 ;0.084986 ;0.096180 ;0.107166 ;0.114234 ;0.120326 ;0.132746 ;0.146381 ;0.174874 ;0.202382 ;0.245512 ;0.408904 ;0.447877 ;0.468391 ;0.516182 ;0.579252 ;0.613874 ;0.634185 ;0.650685 ;0.683955 ;0.701875 ;0.719491 ;0.803352 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000000 ;-0.009218 ;-0.014723 ;-0.016598 ;-0.018334 ;-0.019896 ;-0.021270 ;-0.022117 ;-0.023088 ;-0.024065 ;-0.024764 ;-0.025326 ;-0.025998 ;-0.026468 ;-0.026561 ;-0.026545 ;-0.026430 ;-0.026008 ;-0.025323 ;-0.024602 ;-0.022873 ;-0.020297 ;-0.018307 ;-0.017002 ;-0.016005 ;-0.012045 ;-0.011619 ;-0.010563 ;-0.007638 ;-0.005660 ;-0.004095 ;-0.002844 ;-0.001855 ;-0.001096 ;-0.000545 ;-0.000184 ;0.000000 ;0.000193 ;0.000584 ;0.001188 ;0.002025 ;0.003122 ;0.004518 ;0.006276 ;0.008525 ;0.012054 ;0.016191 ;0.018128 ;0.020782 ;0.023542 ;0.024972 ;0.026146 ;0.026771 ;0.027211 ;0.027807 ;0.028107 ;0.028359 ;0.028468 ;0.028467 ;0.028042 ;0.027797 ;0.027590 ;0.026918 ;0.025748 ;0.024910 ;0.024311 ;0.023747 ;0.022368 ;0.021475 ;0.020487 ;0.015239 ;-0.000000 + + + + ... + ... + + 1.000000 ;0.887892 ;0.864740 ;0.842107 ;0.819351 ;0.796560 ;0.773697 ;0.757572 ;0.740731 ;0.720735 ;0.702734 ;0.669572 ;0.637144 ;0.615780 ;0.574848 ;0.532531 ;0.453991 ;0.396817 ;0.278969 ;0.188454 ;0.153838 ;0.130883 ;0.116633 ;0.074106 ;0.043432 ;0.026641 ;0.018669 ;0.012884 ;0.008516 ;0.005233 ;0.002845 ;0.001231 ;0.000304 ;0.000000 ;0.000173 ;0.000740 ;0.001750 ;0.003268 ;0.005391 ;0.008272 ;0.012191 ;0.017820 ;0.031476 ;0.068419 ;0.079858 ;0.094350 ;0.106021 ;0.115019 ;0.126769 ;0.134733 ;0.143047 ;0.154170 ;0.207815 ;0.302681 ;0.422711 ;0.475610 ;0.527132 ;0.565776 ;0.607611 ;0.625471 ;0.661049 ;0.679974 ;0.698386 ;0.788379 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.014046 ;-0.016298 ;-0.018374 ;-0.020286 ;-0.021994 ;-0.023481 ;-0.024388 ;-0.025224 ;-0.026095 ;-0.026751 ;-0.027642 ;-0.028152 ;-0.028318 ;-0.028339 ;-0.028064 ;-0.027144 ;-0.026154 ;-0.023564 ;-0.021299 ;-0.020331 ;-0.019576 ;-0.019000 ;-0.017014 ;-0.015382 ;-0.011333 ;-0.008489 ;-0.006212 ;-0.004373 ;-0.002904 ;-0.001759 ;-0.000909 ;-0.000329 ;0.000000 ;0.000353 ;0.001011 ;0.001998 ;0.003345 ;0.005095 ;0.007311 ;0.010091 ;0.013641 ;0.019272 ;0.025310 ;0.027015 ;0.029023 ;0.030490 ;0.031443 ;0.032416 ;0.032892 ;0.033197 ;0.033349 ;0.033125 ;0.032262 ;0.030913 ;0.030035 ;0.028989 ;0.028059 ;0.026796 ;0.026142 ;0.024578 ;0.023587 ;0.022508 ;0.016696 ;0.000000 + + + + ... + ... + + 1.000000 ;0.922384 ;0.849623 ;0.824461 ;0.799164 ;0.773827 ;0.748411 ;0.730485 ;0.715166 ;0.695996 ;0.677693 ;0.658952 ;0.642939 ;0.608219 ;0.585071 ;0.564212 ;0.521130 ;0.461359 ;0.394124 ;0.305304 ;0.219295 ;0.196252 ;0.176930 ;0.160835 ;0.144160 ;0.133899 ;0.121370 ;0.112214 ;0.100810 ;0.047336 ;0.029044 ;0.020355 ;0.014049 ;0.009287 ;0.005707 ;0.003104 ;0.001344 ;0.000332 ;0.000000 ;0.000188 ;0.000807 ;0.001908 ;0.003565 ;0.005881 ;0.009024 ;0.013297 ;0.019432 ;0.034286 ;0.059212 ;0.072101 ;0.085940 ;0.094752 ;0.105834 ;0.113529 ;0.121848 ;0.130370 ;0.137629 ;0.145430 ;0.153194 ;0.162243 ;0.179504 ;0.198904 ;0.230583 ;0.302131 ;0.369521 ;0.428814 ;0.487042 ;0.530221 ;0.562536 ;0.807006 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.010922 ;-0.018158 ;-0.020474 ;-0.022600 ;-0.024492 ;-0.026127 ;-0.027117 ;-0.027861 ;-0.028670 ;-0.029313 ;-0.029844 ;-0.030202 ;-0.030702 ;-0.030853 ;-0.030885 ;-0.030701 ;-0.030090 ;-0.029135 ;-0.027581 ;-0.025835 ;-0.025254 ;-0.024576 ;-0.023783 ;-0.022699 ;-0.021891 ;-0.020753 ;-0.019816 ;-0.018523 ;-0.014644 ;-0.010677 ;-0.008009 ;-0.005883 ;-0.004165 ;-0.002788 ;-0.001710 ;-0.000900 ;-0.000336 ;0.000000 ;0.000364 ;0.001018 ;0.001984 ;0.003296 ;0.004995 ;0.007145 ;0.009850 ;0.013329 ;0.019109 ;0.023678 ;0.025862 ;0.028059 ;0.029371 ;0.030918 ;0.031890 ;0.032838 ;0.033698 ;0.034329 ;0.034894 ;0.035344 ;0.035753 ;0.036227 ;0.036382 ;0.036137 ;0.035199 ;0.034122 ;0.033038 ;0.031782 ;0.030687 ;0.029709 ;0.015783 ;0.000000 + + + + ... + ... + + 1.000000 ;0.891325 ;0.834981 ;0.823498 ;0.808259 ;0.790340 ;0.781475 ;0.765609 ;0.748381 ;0.720414 ;0.703288 ;0.689060 ;0.675361 ;0.656564 ;0.637042 ;0.621185 ;0.583506 ;0.558858 ;0.537694 ;0.491386 ;0.455751 ;0.394522 ;0.332712 ;0.272892 ;0.236826 ;0.218067 ;0.203370 ;0.187211 ;0.177215 ;0.166003 ;0.150157 ;0.129981 ;0.120166 ;0.107097 ;0.086403 ;0.067080 ;0.049080 ;0.036514 ;0.029379 ;0.018103 ;0.012701 ;0.008771 ;0.005800 ;0.003565 ;0.001938 ;0.000838 ;0.000207 ;0.000000 ;0.000120 ;0.000512 ;0.001208 ;0.002253 ;0.003710 ;0.005683 ;0.008356 ;0.012175 ;0.021279 ;0.030171 ;0.036613 ;0.039030 ;0.043640 ;0.061114 ;0.081776 ;0.094445 ;0.107512 ;0.125078 ;0.136482 ;0.146772 ;0.155965 ;0.167392 ;0.177123 ;0.188218 ;0.202526 ;0.214637 ;0.224592 ;0.234398 ;0.267390 ;0.334614 ;0.940994 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;-0.017338 ;-0.022820 ;-0.024188 ;-0.025728 ;-0.027219 ;-0.027853 ;-0.028843 ;-0.029734 ;-0.031377 ;-0.032239 ;-0.032860 ;-0.033391 ;-0.034000 ;-0.034501 ;-0.034814 ;-0.035262 ;-0.035357 ;-0.035333 ;-0.035020 ;-0.034601 ;-0.033683 ;-0.032634 ;-0.031527 ;-0.030759 ;-0.030078 ;-0.029282 ;-0.028124 ;-0.027265 ;-0.026173 ;-0.024402 ;-0.021782 ;-0.020366 ;-0.018346 ;-0.014835 ;-0.012990 ;-0.010940 ;-0.009220 ;-0.007803 ;-0.005158 ;-0.003813 ;-0.002796 ;-0.001993 ;-0.001354 ;-0.000851 ;-0.000466 ;-0.000186 ;0.000000 ;0.000201 ;0.000528 ;0.000995 ;0.001620 ;0.002428 ;0.003457 ;0.004775 ;0.006541 ;0.010117 ;0.012617 ;0.014093 ;0.014599 ;0.015523 ;0.018864 ;0.022646 ;0.024839 ;0.026910 ;0.029372 ;0.030771 ;0.031901 ;0.032802 ;0.033783 ;0.034498 ;0.035174 ;0.035827 ;0.036199 ;0.036360 ;0.036371 ;0.035911 ;0.034608 ;0.004011 ;0.000000 + + + + +
+
diff --git a/test_files/CPACSfiles/labARscaled.xml b/test_files/CPACSfiles/labARscaled.xml new file mode 100644 index 000000000..8d3dba318 --- /dev/null +++ b/test_files/CPACSfiles/labARscaled.xml @@ -0,0 +1,933 @@ + + +
+ labARscaled + Simple Wing for unit testing + Martin Siggel + 2012-10-09T15:12:47 + 0.2 + 3.0 + + + Converted to cpacs 3.0 using cpacs2to3 - does not include structure update + cpacs2to3 + 2018-01-15T09:22:57 + 0.2 + 3.0 + + + Add this update + Aidan + 2018-10-03T09:00:01 + 0.3 + 3.0 + + +
+ + + + labAv0 + + 0.027329 + 0.069737 + + 0.19223 + 0 + 0 + + + + +Body1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + +
+Body1Frame1 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.004572 + 0 + 0 + + + + + ... + fuseprof_1_1 + + + 1 + 0.0022547 + 0.0022547 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame2 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.054356 + 0 + 0 + + + + + ... + fuseprof_1_2 + + + 1 + 0.013229 + 0.013229 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame3 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.10414 + 0 + 0 + + + + + ... + fuseprof_1_3 + + + 1 + 0.019512 + 0.019512 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame4 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.15392 + 0 + 0 + + + + + ... + fuseprof_1_4 + + + 1 + 0.023339 + 0.023339 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame5 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.20371 + 0 + 0 + + + + + ... + fuseprof_1_5 + + + 1 + 0.025174 + 0.025174 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame6 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.25349 + 0 + 0 + + + + + ... + fuseprof_1_6 + + + 1 + 0.025174 + 0.025174 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame7 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.30328 + 0 + 0 + + + + + ... + fuseprof_1_7 + + + 1 + 0.023339 + 0.023339 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame8 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.35306 + 0 + 0 + + + + + ... + fuseprof_1_8 + + + 1 + 0.019512 + 0.019512 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame9 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.40284 + 0 + 0 + + + + + ... + fuseprof_1_9 + + + 1 + 0.013229 + 0.013229 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+Body1Frame10 +description + + + 1 + 1 + 1 + + + 0 + 0 + 0 + + + 0.45263 + 0 + 0 + + + + + ... + fuseprof_1_10 + + + 1 + 0.0022547 + 0.0022547 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + Body1Frame1 + 0 + + + + ... + description + 0 + 0 + Body1Frame2 + 0 + + + + ... + description + 0 + 0 + Body1Frame3 + 0 + + + + ... + description + 0 + 0 + Body1Frame4 + 0 + + + + ... + description + 0 + 0 + Body1Frame5 + 0 + + + + ... + description + 0 + 0 + Body1Frame6 + 0 + + + + ... + description + 0 + 0 + Body1Frame7 + 0 + + + + ... + description + 0 + 0 + Body1Frame8 + 0 + + + + ... + description + 0 + 0 + Body1Frame9 + 0 + + + + ... + description + 0 + 0 + Body1Frame10 + 0 + + + + + + ... + Body1Frame1elem1 + Body1Frame2elem1 + + + + ... + Body1Frame2elem1 + Body1Frame3elem1 + + + + ... + Body1Frame3elem1 + Body1Frame4elem1 + + + + ... + Body1Frame4elem1 + Body1Frame5elem1 + + + + ... + Body1Frame5elem1 + Body1Frame6elem1 + + + + ... + Body1Frame6elem1 + Body1Frame7elem1 + + + + ... + Body1Frame7elem1 + Body1Frame8elem1 + + + + ... + Body1Frame8elem1 + Body1Frame9elem1 + + + + ... + Body1Frame9elem1 + Body1Frame10elem1 + + + +
+
+ + + wingmod1A + Body1 + description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0.1016 + 0 + 0 + + + +
+wingmod1Aroot +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0 + 0 + 0 + + + + + ... + foil_1_2 + + + + 0.089662 + 0.089662 + 0.089662 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+wingmod1Atip +description + + + 1 + 1 + 1 + + + -0 + 0 + -0 + + + 0.1647 + 0.2032 + 0 + + + + + ... + foil_1_1 + + + + 0.044831 + 0.044831 + 0.044831 + + + 0 + 0 + 0 + + + 0 + 0 + 0 + + + + +
+
+ + + ... + description + 0 + 0 + wingmod1Atip + 0 + + + + ... + description + 0 + 0 + wingmod1Aroot + 0 + + + + + + ... + wingmod1Atipelem1 + wingmod1Arootelem1 + + + +
+
+ + + + aeromap_empty + Common default aeroMap + + ISA + + + 0.0 + 0.3 + 0.0 + 0.0 + + + + + + +
+
+ + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + ... + ... + + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 + -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 + + + + + + ... + ... + + 1.000000 ;0.951194 ;0.902266 ;0.853214 ;0.804038 ;0.754739 ;0.705314 ;0.655764 ;0.606088 ;0.556287 ;0.506358 ;0.456303 ;0.406120 ;0.355808 ;0.305368 ;0.254799 ;0.204101 ;0.153272 ;0.102313 ;0.076784 ;0.051222 ;0.025628 ;0.012818 ;0.007692 ;0.005128 ;0.000000 ;0.005128 ;0.007692 ;0.012818 ;0.025628 ;0.051222 ;0.076784 ;0.102313 ;0.153272 ;0.204101 ;0.254799 ;0.305368 ;0.355808 ;0.406120 ;0.456303 ;0.506358 ;0.556287 ;0.606088 ;0.655764 ;0.705314 ;0.754739 ;0.804038 ;0.853214 ;0.902266 ;0.951194 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000224 ;-0.005576 ;-0.010942 ;-0.016321 ;-0.021714 ;-0.027121 ;-0.032470 ;-0.037536 ;-0.042148 ;-0.046177 ;-0.049506 ;-0.051949 ;-0.053253 ;-0.053150 ;-0.051842 ;-0.049452 ;-0.045919 ;-0.041032 ;-0.034397 ;-0.030137 ;-0.024954 ;-0.018011 ;-0.013038 ;-0.010317 ;-0.008572 ;0.000000 ;0.008572 ;0.010317 ;0.013038 ;0.018011 ;0.024954 ;0.030137 ;0.034397 ;0.041032 ;0.045919 ;0.049452 ;0.051842 ;0.053150 ;0.053253 ;0.051949 ;0.049506 ;0.046177 ;0.042148 ;0.037536 ;0.032470 ;0.027121 ;0.021714 ;0.016321 ;0.010942 ;0.005576 ;0.000224 + + + + ... + ... + + 1.000000 ;0.951194 ;0.902266 ;0.853214 ;0.804038 ;0.754739 ;0.705314 ;0.655764 ;0.606088 ;0.556287 ;0.506358 ;0.456303 ;0.406120 ;0.355808 ;0.305368 ;0.254799 ;0.204101 ;0.153272 ;0.102313 ;0.076784 ;0.051222 ;0.025628 ;0.012818 ;0.007692 ;0.005128 ;0.000000 ;0.005128 ;0.007692 ;0.012818 ;0.025628 ;0.051222 ;0.076784 ;0.102313 ;0.153272 ;0.204101 ;0.254799 ;0.305368 ;0.355808 ;0.406120 ;0.456303 ;0.506358 ;0.556287 ;0.606088 ;0.655764 ;0.705314 ;0.754739 ;0.804038 ;0.853214 ;0.902266 ;0.951194 ;1.000000 + 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 + -0.000224 ;-0.005576 ;-0.010942 ;-0.016321 ;-0.021714 ;-0.027121 ;-0.032470 ;-0.037536 ;-0.042148 ;-0.046177 ;-0.049506 ;-0.051949 ;-0.053253 ;-0.053150 ;-0.051842 ;-0.049452 ;-0.045919 ;-0.041032 ;-0.034397 ;-0.030137 ;-0.024954 ;-0.018011 ;-0.013038 ;-0.010317 ;-0.008572 ;0.000000 ;0.008572 ;0.010317 ;0.013038 ;0.018011 ;0.024954 ;0.030137 ;0.034397 ;0.041032 ;0.045919 ;0.049452 ;0.051842 ;0.053150 ;0.053253 ;0.051949 ;0.049506 ;0.046177 ;0.042148 ;0.037536 ;0.032470 ;0.027121 ;0.021714 ;0.016321 ;0.010942 ;0.005576 ;0.000224 + + + + +
+
From 2c404abf98fce0c7e224c4690aba0833a8bc070c Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Tue, 20 Feb 2024 12:09:41 +0100 Subject: [PATCH 35/55] add redmi to ThermoData --- ceasiompy/ThermoData/README.md | 37 +++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/ceasiompy/ThermoData/README.md b/ceasiompy/ThermoData/README.md index 77e55d5ff..5edcb662d 100644 --- a/ceasiompy/ThermoData/README.md +++ b/ceasiompy/ThermoData/README.md @@ -1 +1,36 @@ -# Thermo_Data \ No newline at end of file + + +# ThermoData + +**Categories:** Engine Boundary conditions + +**State**: :heavy_check_mark: + + + +
+ +`ThermoData` is a module to provide the outlet conditions of a given engine. It can calculate different operating conditions and save the results in a text file. This module is derived starting from the OpenSource code [pyCycle](https://github.com/OpenMDAO/pycycle) developed by Eric S. Hendricks and Justin S. Gray. It can perform calculations on both turbojet and turbofan engines, with the possibility to customize the parameters. The results are automatically written inside the config file of the module `SU2Run` to be able to perform the calculations. + +## Inputs +`ThermoData` can be run on is own by giving the altitude the Mach number and the Net force. Otherwise it can take as an input the values from `CPACS2GMSH` module. + +## Analyses +`ThermoData` compute the values obtained at the engine outlet giving a "EngineBC.dat" file as an output. if the workflow continues with the `SU2Run` run module the results are added to the config file to perform the simulation. + +## Outputs +`ThermoData` output is the "EngineBC.dat" file with stored inside: T_tot_out, V_stat_out, MN_out, P_tot_out, massflow_stat_out, T_stat_out, P_stat_out for the chosen engine configuration. + +## Installation or requirements +`ThermoData` needs the installation of the openmdao and pycycle suite that are included in the python environment of CEASIOMpy. + +## Limitations + +To be able to change the engine parameters other than those given as input (altitude, mach, net force) the turbojet and turbofan functions in the module must be modified by coding. + +## More information + +* [pyCycle Github repository](https://github.com/OpenMDAO/pycycle) + +* [OpenMDAO documentation ](https://openmdao.org/newdocs/versions/latest/main.html) + From 0ca7ffb93ae8f3d9c4160c4a52cf95dda7900b4b Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Tue, 20 Feb 2024 12:23:06 +0100 Subject: [PATCH 36/55] changing first page redmi to add thermodata module --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cfaa5572c..b117f0fb2 100644 --- a/README.md +++ b/README.md @@ -116,6 +116,7 @@ warning: : The module does not work completely as expected. It is not a bug, but - [Optimisation](ceasiompy/Optimisation/README.md) :x: - [SMTrain](ceasiompy/SMTrain/README.md) :x: - [SMUse](ceasiompy/SMUse/README.md) :x: +- [ThermoData](ceasiompy/ThermoData/README.md) :heavy_check_mark: From 8d72d11ed1f97fb3118ffe49e1516d1338b4cc98 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Tue, 20 Feb 2024 12:25:42 +0100 Subject: [PATCH 37/55] changing redmi Thermodata logo --- ceasiompy/ThermoData/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceasiompy/ThermoData/README.md b/ceasiompy/ThermoData/README.md index 5edcb662d..a92647d30 100644 --- a/ceasiompy/ThermoData/README.md +++ b/ceasiompy/ThermoData/README.md @@ -1,4 +1,4 @@ - + # ThermoData From 33056d72d4cc0efa62ddc4eb55389196e454ef2b Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Tue, 20 Feb 2024 16:18:20 +0100 Subject: [PATCH 38/55] fixing rans issues --- ceasiompy/SU2Run/func/su2config_rans.py | 10 +++++----- ceasiompy/SU2Run/func/su2utils.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ceasiompy/SU2Run/func/su2config_rans.py b/ceasiompy/SU2Run/func/su2config_rans.py index 513d23abb..b650ae83e 100644 --- a/ceasiompy/SU2Run/func/su2config_rans.py +++ b/ceasiompy/SU2Run/func/su2config_rans.py @@ -32,7 +32,7 @@ write_actuator_disk_data, write_header, ) -from ceasiompy.SU2Run.func.su2utils import get_mesh_markers, get_cgns_config_template +from ceasiompy.SU2Run.func.su2utils import get_mesh_markers, get_su2_config_template_rans from ceasiompy.utils.ceasiomlogger import get_logger from ceasiompy.utils.commonnames import ( ACTUATOR_DISK_FILE_NAME, @@ -338,11 +338,11 @@ def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): cpacs = CPACS(cpacs_path) - # creare delle nuove xpath per la mesh cgns + # creare delle nuove xpath per la mesh su2 su2_mesh = Path(get_value(cpacs.tixi, SU2MESH_XPATH)) if not su2_mesh.is_file(): - raise FileNotFoundError(f"CGNS mesh file {su2_mesh} not found") + raise FileNotFoundError(f"SU2 mesh file {su2_mesh} not found") mesh_markers = get_mesh_markers(su2_mesh) @@ -414,7 +414,7 @@ def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): aoa_list = [0.0] aos_list = [0.0] - cfg = ConfigFile(get_cgns_config_template()) + cfg = ConfigFile(get_su2_config_template_rans()) # Check if symmetry plane is defined (Default: False) sym_factor = 1.0 @@ -477,7 +477,7 @@ def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): # Parameters which will vary for the different cases (alt,mach,aoa,aos) - for case_nb in enumerate(alt_list): + for case_nb in range(len(alt_list)): cfg["MESH_FILENAME"] = str(su2_mesh) alt = alt_list[case_nb] diff --git a/ceasiompy/SU2Run/func/su2utils.py b/ceasiompy/SU2Run/func/su2utils.py index 63b8d633c..24db788bf 100644 --- a/ceasiompy/SU2Run/func/su2utils.py +++ b/ceasiompy/SU2Run/func/su2utils.py @@ -170,7 +170,7 @@ def get_su2_config_template(): return su2_config_template_path -def get_cgns_config_template(): +def get_su2_config_template_rans(): su2_dir = get_module_path("SU2Run") su2_config_template_path_rans = Path(su2_dir, "files", "config_template_rans.cfg") From d83727001da203466d91301778fef94910697d5f Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 21 Feb 2024 15:45:48 +0100 Subject: [PATCH 39/55] changing the redmi --- ceasiompy/ThermoData/README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/ceasiompy/ThermoData/README.md b/ceasiompy/ThermoData/README.md index a92647d30..f8c58d3a9 100644 --- a/ceasiompy/ThermoData/README.md +++ b/ceasiompy/ThermoData/README.md @@ -10,16 +10,24 @@
-`ThermoData` is a module to provide the outlet conditions of a given engine. It can calculate different operating conditions and save the results in a text file. This module is derived starting from the OpenSource code [pyCycle](https://github.com/OpenMDAO/pycycle) developed by Eric S. Hendricks and Justin S. Gray. It can perform calculations on both turbojet and turbofan engines, with the possibility to customize the parameters. The results are automatically written inside the config file of the module `SU2Run` to be able to perform the calculations. +`ThermoData` is a module to provide the outlet conditions of a given engine. It can calculate different operating conditions and save the results in a text file. This module is derived starting from the OpenSource code [pyCycle](https://github.com/OpenMDAO/pycycle) developed by Eric S. Hendricks and Justin S. Gray. It can perform calculations on both turbojet and turbofan engines, with the possibility to customize the parameters. The main parameters that can be modified are: the rotational speed of the shaft/s, the temperature at the inlet of the turbine/s, the efficiency of compressor/s and turbine/s (HP and LP) and the compressor/s pressure ratio. The results are automatically written inside the configuration file of the module `SU2Run` to be able to perform the calculations. ## Inputs -`ThermoData` can be run on is own by giving the altitude the Mach number and the Net force. Otherwise it can take as an input the values from `CPACS2GMSH` module. +`ThermoData` can be run on is own by giving an Aeromap that contains Altitude and Mach number with the addition of the Net force that needs to be chosen. Otherwise it can take as an input the values from `CPACS2GMSH` module. ## Analyses `ThermoData` compute the values obtained at the engine outlet giving a "EngineBC.dat" file as an output. if the workflow continues with the `SU2Run` run module the results are added to the config file to perform the simulation. ## Outputs -`ThermoData` output is the "EngineBC.dat" file with stored inside: T_tot_out, V_stat_out, MN_out, P_tot_out, massflow_stat_out, T_stat_out, P_stat_out for the chosen engine configuration. +`ThermoData` output is the "EngineBC.dat" file with stored inside: +* T_tot_out= Nozzle total temperature outlet[K], +* T_stat_out= Nozzle static temperature outlet[K], +* P_tot_out= Nozzle total pressure outlet [Pa], +* P_stat_out= Nozzle static pressure outlet [Pa]. +* V_stat_out= Nozzle static velocity outlet[m/s], +* MN_out= Nozzle Mach number outlet [adim], +* massflow_stat_out= Nozzle massflow outlet [Kg/s], + ## Installation or requirements `ThermoData` needs the installation of the openmdao and pycycle suite that are included in the python environment of CEASIOMpy. From bef87b6cc80b7bd56cc25d8a0457156ecb2e066b Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 22 Feb 2024 09:56:24 +0100 Subject: [PATCH 40/55] ThermoData README changes --- ceasiompy/ThermoData/README.md | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/ceasiompy/ThermoData/README.md b/ceasiompy/ThermoData/README.md index f8c58d3a9..487f2aa30 100644 --- a/ceasiompy/ThermoData/README.md +++ b/ceasiompy/ThermoData/README.md @@ -6,31 +6,32 @@ **State**: :heavy_check_mark: - -
-`ThermoData` is a module to provide the outlet conditions of a given engine. It can calculate different operating conditions and save the results in a text file. This module is derived starting from the OpenSource code [pyCycle](https://github.com/OpenMDAO/pycycle) developed by Eric S. Hendricks and Justin S. Gray. It can perform calculations on both turbojet and turbofan engines, with the possibility to customize the parameters. The main parameters that can be modified are: the rotational speed of the shaft/s, the temperature at the inlet of the turbine/s, the efficiency of compressor/s and turbine/s (HP and LP) and the compressor/s pressure ratio. The results are automatically written inside the configuration file of the module `SU2Run` to be able to perform the calculations. +`ThermoData` is a module to provide the outlet conditions of a given engine. It can calculate different operating conditions and save the results in a text file. This module is derived starting from the OpenSource code [pyCycle](https://github.com/OpenMDAO/pycycle) developed by Eric S. Hendricks and Justin S. Gray. It can perform calculations on both turbojet and turbofan engines, with the possibility to customize the parameters. The main parameters that can be modified are: the rotational speed of the shaft/s, the temperature at the inlet of the turbine/s, the efficiency of compressor/s and turbine/s (HP and LP) and the compressor/s pressure ratio. The results are automatically written inside the configuration file of the module `SU2Run` to be able to perform the CFD calculations if needed. ## Inputs `ThermoData` can be run on is own by giving an Aeromap that contains Altitude and Mach number with the addition of the Net force that needs to be chosen. Otherwise it can take as an input the values from `CPACS2GMSH` module. ## Analyses -`ThermoData` compute the values obtained at the engine outlet giving a "EngineBC.dat" file as an output. if the workflow continues with the `SU2Run` run module the results are added to the config file to perform the simulation. +`ThermoData` compute the values obtained at the engine outlet giving a "EngineBC.dat" file as an output. If the workflow continues with the `SU2Run` run module the results are added to the config file of `SU2` to perform the simulation. ## Outputs -`ThermoData` output is the "EngineBC.dat" file with stored inside: +`ThermoData` output is the "EngineBC.dat" file with stored inside for the turbojet engine: * T_tot_out= Nozzle total temperature outlet[K], * T_stat_out= Nozzle static temperature outlet[K], * P_tot_out= Nozzle total pressure outlet [Pa], * P_stat_out= Nozzle static pressure outlet [Pa]. * V_stat_out= Nozzle static velocity outlet[m/s], * MN_out= Nozzle Mach number outlet [adim], -* massflow_stat_out= Nozzle massflow outlet [Kg/s], +* massflow_stat_out= Nozzle massflow outlet [Kg/s]\\ + +For the turbofan engine are added also the values at the exit of the bypass nozzle. + ## Installation or requirements -`ThermoData` needs the installation of the openmdao and pycycle suite that are included in the python environment of CEASIOMpy. +`ThermoData` needs the installation of the openMDAO and pycycle suite that are included in the python environment of CEASIOMpy. ## Limitations @@ -42,3 +43,8 @@ To be able to change the engine parameters other than those given as input (alti * [OpenMDAO documentation ](https://openmdao.org/newdocs/versions/latest/main.html) +* [SU2 website](https://su2code.github.io/) + +* [SU2 Github repository](https://github.com/su2code/SU2) + + From 9deb3f1131284ed973d8a2f51c90c52a6653bc0d Mon Sep 17 00:00:00 2001 From: GBenedett <113425078+GBenedett@users.noreply.github.com> Date: Thu, 22 Feb 2024 12:10:39 +0100 Subject: [PATCH 41/55] Update README.md --- ceasiompy/CPACS2GMSH/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceasiompy/CPACS2GMSH/README.md b/ceasiompy/CPACS2GMSH/README.md index 37b8fc312..f80e80ab2 100644 --- a/ceasiompy/CPACS2GMSH/README.md +++ b/ceasiompy/CPACS2GMSH/README.md @@ -40,7 +40,7 @@ Multiple options are available with `CPACS2GMSH`, you can see these options if y General options: -* `Display mesh with GMSHl : False` +* `Display mesh with GMSH : False` Open the gmsh GUI after the generation of the surface mesh (2D) and the domain mesh (3D). This option is usefully to control the quality of the automated generated mesh or make extra operation with gmsh GUI. Domain: From 4e6404e77b34ebdd68b082fa944dc3ae1dacbae8 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 22 Feb 2024 12:12:00 +0100 Subject: [PATCH 42/55] small change to README --- ceasiompy/ThermoData/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceasiompy/ThermoData/README.md b/ceasiompy/ThermoData/README.md index 487f2aa30..a4bd6082f 100644 --- a/ceasiompy/ThermoData/README.md +++ b/ceasiompy/ThermoData/README.md @@ -14,7 +14,7 @@ `ThermoData` can be run on is own by giving an Aeromap that contains Altitude and Mach number with the addition of the Net force that needs to be chosen. Otherwise it can take as an input the values from `CPACS2GMSH` module. ## Analyses -`ThermoData` compute the values obtained at the engine outlet giving a "EngineBC.dat" file as an output. If the workflow continues with the `SU2Run` run module the results are added to the config file of `SU2` to perform the simulation. +`ThermoData` compute the values obtained at the engine outlet giving a "EngineBC.dat" file as an output. If the workflow continues with the `SU2Run` run module the results are added to the config file of SU2 to perform the simulation. ## Outputs `ThermoData` output is the "EngineBC.dat" file with stored inside for the turbojet engine: From 2cbbfcf69f2e13e6166eff45bb543ade18d6f299 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Fri, 23 Feb 2024 12:11:21 +0100 Subject: [PATCH 43/55] adding automatic reynolds calculation --- ceasiompy/SU2Run/func/su2config_rans.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/ceasiompy/SU2Run/func/su2config_rans.py b/ceasiompy/SU2Run/func/su2config_rans.py index b650ae83e..e2bfa35bc 100644 --- a/ceasiompy/SU2Run/func/su2config_rans.py +++ b/ceasiompy/SU2Run/func/su2config_rans.py @@ -320,6 +320,22 @@ def add_thermodata(cfg, cpacs, alt, case_nb, alt_list): ) +def add_reynods_number(alt, mach, cfg): + + Atm = Atmosphere(alt) + + # Get speed from Mach Number + speed = mach * Atm.speed_of_sound[0] + print(speed) + print(Atm.kinematic_viscosity[0]) + log.info(f"Mach number: {mach} [-] -> Velocity: {round(speed)} [m/s]") + + # Reynolds number based on the ratio Wetted Area / Wing Span + reynolds = 1 * speed / Atm.kinematic_viscosity[0] + print(reynolds) + cfg["REYNOLDS_NUMBER"] = int(reynolds) + + def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): """Function to create SU2 config file. @@ -501,6 +517,8 @@ def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): add_thermodata(cfg, cpacs, alt, case_nb, alt_list) + add_reynods_number(alt, mach, cfg) + case_dir_path = Path(wkdir, case_dir_name) if not case_dir_path.exists(): case_dir_path.mkdir() From c0406e995ff14ec7b5d28291d7ed5fd4ff97740d Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Fri, 23 Feb 2024 12:23:39 +0100 Subject: [PATCH 44/55] improving the code --- ceasiompy/SU2Run/func/su2config_rans.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ceasiompy/SU2Run/func/su2config_rans.py b/ceasiompy/SU2Run/func/su2config_rans.py index e2bfa35bc..4eca907d9 100644 --- a/ceasiompy/SU2Run/func/su2config_rans.py +++ b/ceasiompy/SU2Run/func/su2config_rans.py @@ -326,13 +326,10 @@ def add_reynods_number(alt, mach, cfg): # Get speed from Mach Number speed = mach * Atm.speed_of_sound[0] - print(speed) - print(Atm.kinematic_viscosity[0]) - log.info(f"Mach number: {mach} [-] -> Velocity: {round(speed)} [m/s]") # Reynolds number based on the ratio Wetted Area / Wing Span reynolds = 1 * speed / Atm.kinematic_viscosity[0] - print(reynolds) + log.info(f"Reynolds number= {int(reynolds)}") cfg["REYNOLDS_NUMBER"] = int(reynolds) From b2146a0145a6c0ed1124f2fffa1a9bfdceaffceb Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Tue, 27 Feb 2024 12:09:50 +0100 Subject: [PATCH 45/55] adding reynolds number calculation --- ceasiompy/SU2Run/func/su2config_rans.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/ceasiompy/SU2Run/func/su2config_rans.py b/ceasiompy/SU2Run/func/su2config_rans.py index 4eca907d9..77b6bbeb6 100644 --- a/ceasiompy/SU2Run/func/su2config_rans.py +++ b/ceasiompy/SU2Run/func/su2config_rans.py @@ -32,6 +32,7 @@ write_actuator_disk_data, write_header, ) +from ceasiompy.CPACS2GMSH.func.mesh_sizing import wings_size from ceasiompy.SU2Run.func.su2utils import get_mesh_markers, get_su2_config_template_rans from ceasiompy.utils.ceasiomlogger import get_logger from ceasiompy.utils.commonnames import ( @@ -320,15 +321,18 @@ def add_thermodata(cfg, cpacs, alt, case_nb, alt_list): ) -def add_reynods_number(alt, mach, cfg): +def add_reynods_number(alt, mach, cfg, cpacs_path): Atm = Atmosphere(alt) # Get speed from Mach Number speed = mach * Atm.speed_of_sound[0] - # Reynolds number based on the ratio Wetted Area / Wing Span - reynolds = 1 * speed / Atm.kinematic_viscosity[0] + ref_chord = wings_size(cpacs_path)[0] / 0.15 + print(ref_chord) + + # Reynolds number based on the mean chord + reynolds = ref_chord * speed / Atm.kinematic_viscosity[0] log.info(f"Reynolds number= {int(reynolds)}") cfg["REYNOLDS_NUMBER"] = int(reynolds) @@ -514,7 +518,7 @@ def generate_su2_cfd_config_rans(cpacs_path, cpacs_out_path, wkdir): add_thermodata(cfg, cpacs, alt, case_nb, alt_list) - add_reynods_number(alt, mach, cfg) + add_reynods_number(alt, mach, cfg, cpacs_path) case_dir_path = Path(wkdir, case_dir_name) if not case_dir_path.exists(): From 95095c6f5b0ed553c8144c7f2ed5059e781c32ad Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 14 Mar 2024 15:13:33 +0100 Subject: [PATCH 46/55] adding test --- .../tests/test_thermodata/test_thermodata.py | 114 ++++++++++++++++++ .../tests/test_turbofan/test_turbofan.py | 59 --------- .../ThermoData/tests/test_turbojet/test1.py | 44 ------- .../tests/test_turbojet/test_turbojet.py | 59 --------- 4 files changed, 114 insertions(+), 162 deletions(-) create mode 100644 ceasiompy/ThermoData/tests/test_thermodata/test_thermodata.py delete mode 100644 ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py delete mode 100644 ceasiompy/ThermoData/tests/test_turbojet/test1.py delete mode 100644 ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py diff --git a/ceasiompy/ThermoData/tests/test_thermodata/test_thermodata.py b/ceasiompy/ThermoData/tests/test_thermodata/test_thermodata.py new file mode 100644 index 000000000..badfab3a8 --- /dev/null +++ b/ceasiompy/ThermoData/tests/test_thermodata/test_thermodata.py @@ -0,0 +1,114 @@ +""" +CEASIOMpy: Conceptual Aircraft Design Software + +Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland + +Test functions of 'ceasiompy/ThermoData/func/turbojet_func.py' + +Python version: >=3.8 + + +| Author : Francesco Marcucci +| Creation: 2024-02-09 + +""" +# ================================================================================================= +# IMPORTS +# ================================================================================================= + +from pathlib import Path + +import sys + +import pytest + +import numpy as np + +from ceasiompy.ThermoData.func.turbofan_func import ( + turbofan_analysis, + write_hbtf_file, +) + +from ceasiompy.ThermoData.func.turbojet_func import ( + turbojet_analysis, + write_turbojet_file, +) + +sys.path.append("/home/cfse/Stage_Francesco/Thermodata") + +# ================================================================================================= +# CLASSES +# ================================================================================================= + + +# ================================================================================================= +# FUNCTIONS +# ================================================================================================= + + +def test_turbojet_func(): + alt = 1000 + MN = 0.3 + Fn = 2000 + new_sol = turbojet_analysis(alt, MN, Fn) + correct_sol = np.array( + [ + 1006.6296749, + 798.79704119, + 1.50478324, + 326886.19429314, + 2.89168807, + 727.76800186, + 89874.50518856, + ] + ).reshape((7, 1)) + np.testing.assert_almost_equal(new_sol, correct_sol, 3) + + +""" + T_tot_out, + V_stat_out, + MN_out, + P_tot_out, + massflow_stat_out, + T_stat_out, + P_stat_out, + + + + +def test_write_turbojet_file(): + ll = 2 + + +def test_turbofan(): + alt = 4000 # [ft] + MN = 0.6 + # Fn = 11800 # [lbf] + new_sol_tf = turbofan_analysis(alt, MN) + correct_sol_tf = np.array( + [ + 8.11328662e01, + 3.44500820e02, + 1.00000000e00, + 4.19439630e02, + 5.64233274e01, + 1.08865912e-01, + ] + ).reshape((6, 1)) + np.testing.assert_almost_equal(new_sol_tf, correct_sol_tf, 5) + + +def test_write_hbtf_file(): + ll = 1 + +""" +# ================================================================================================= +# MAIN +# ================================================================================================= + +if __name__ == "__main__": + + print("Test configfile.py") + print("To run test use the following command:") + print(">> pytest -v") diff --git a/ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py b/ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py deleted file mode 100644 index 7b6469285..000000000 --- a/ceasiompy/ThermoData/tests/test_turbofan/test_turbofan.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -CEASIOMpy: Conceptual Aircraft Design Software - -Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland - -Test functions of 'ceasiompy/ThermoData/func/turbofan_func.py' - -Python version: >=3.8 - - -| Author : Francesco Marcucci -| Creation: 2024-02-09 - -""" -# ================================================================================================= -# IMPORTS -# ================================================================================================= - -import os -from pathlib import Path - -import pytest -from ceasiompy.SU2Run.func.su2results import save_screenshot -from ceasiompy.utils.commonpaths import TEST_RESULTS_FILES_PATH - -MODULE_DIR = Path(__file__).parent - - -# ================================================================================================= -# CLASSES -# ================================================================================================= - - -# ================================================================================================= -# FUNCTIONS -# ================================================================================================= - - -@pytest.mark.skipif("DISPLAY" not in os.environ, reason="requires display") -def test_save_screenshot(): - """Test the function 'save_screenshot'""" - - surface_flow_file = Path(TEST_RESULTS_FILES_PATH, "surface_flow.vtu") - screenshot_file = save_screenshot(surface_flow_file, "Mach") - assert screenshot_file.exists() - - if screenshot_file.exists(): - screenshot_file.unlink() - - -# ================================================================================================= -# MAIN -# ================================================================================================= - -if __name__ == "__main__": - - print("Test configfile.py") - print("To run test use the following command:") - print(">> pytest -v") diff --git a/ceasiompy/ThermoData/tests/test_turbojet/test1.py b/ceasiompy/ThermoData/tests/test_turbojet/test1.py deleted file mode 100644 index 96495a0e9..000000000 --- a/ceasiompy/ThermoData/tests/test_turbojet/test1.py +++ /dev/null @@ -1,44 +0,0 @@ -from pathlib import Path - -import sys - -import pytest - -import numpy as np - -from ceasiompy.ThermoData.func.turbofan_func import ( - turbofan_analysis, -) - -from ceasiompy.ThermoData.func.turbojet_func import ( - turbojet_analysis, -) - -sys.path.append("/home/cfse/Stage_Francesco/Thermodata") - - -def test_turbojet(): - alt = 4000 # [ft] - MN = 0.6 - Fn = 11800 # [lbf] - new_sol = turbojet_analysis(alt, MN, Fn) - correct_sol = np.array([717.59577021, 818.40663844, 1.57394908]).reshape((3, 1)) - np.testing.assert_almost_equal(new_sol, correct_sol, 5) - - -def test_turbofan(): - alt = 4000 # [ft] - MN = 0.6 - # Fn = 11800 # [lbf] - new_sol_tf = turbofan_analysis(alt, MN) - correct_sol_tf = np.array( - [ - 8.11328662e01, - 3.44500820e02, - 1.00000000e00, - 4.19439630e02, - 5.64233274e01, - 1.08865912e-01, - ] - ).reshape((6, 1)) - np.testing.assert_almost_equal(new_sol_tf, correct_sol_tf, 5) diff --git a/ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py b/ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py deleted file mode 100644 index c216e8855..000000000 --- a/ceasiompy/ThermoData/tests/test_turbojet/test_turbojet.py +++ /dev/null @@ -1,59 +0,0 @@ -""" -CEASIOMpy: Conceptual Aircraft Design Software - -Developed by CFS ENGINEERING, 1015 Lausanne, Switzerland - -Test functions of 'ceasiompy/ThermoData/func/turbojet_func.py' - -Python version: >=3.8 - - -| Author : Francesco Marcucci -| Creation: 2024-02-09 - -""" -# ================================================================================================= -# IMPORTS -# ================================================================================================= - -import os -from pathlib import Path - -import pytest -from ceasiompy.SU2Run.func.su2results import save_screenshot -from ceasiompy.utils.commonpaths import TEST_RESULTS_FILES_PATH - -MODULE_DIR = Path(__file__).parent - - -# ================================================================================================= -# CLASSES -# ================================================================================================= - - -# ================================================================================================= -# FUNCTIONS -# ================================================================================================= - - -@pytest.mark.skipif("DISPLAY" not in os.environ, reason="requires display") -def test_save_screenshot(): - """Test the function 'save_screenshot'""" - - surface_flow_file = Path(TEST_RESULTS_FILES_PATH, "surface_flow.vtu") - screenshot_file = save_screenshot(surface_flow_file, "Mach") - assert screenshot_file.exists() - - if screenshot_file.exists(): - screenshot_file.unlink() - - -# ================================================================================================= -# MAIN -# ================================================================================================= - -if __name__ == "__main__": - - print("Test configfile.py") - print("To run test use the following command:") - print(">> pytest -v") From afddc940c1d9dc3823c75c89c83e880f3903ced1 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Thu, 14 Mar 2024 15:17:53 +0100 Subject: [PATCH 47/55] changing folders --- .../ThermoData/tests/{test_thermodata => }/test_thermodata.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename ceasiompy/ThermoData/tests/{test_thermodata => }/test_thermodata.py (100%) diff --git a/ceasiompy/ThermoData/tests/test_thermodata/test_thermodata.py b/ceasiompy/ThermoData/tests/test_thermodata.py similarity index 100% rename from ceasiompy/ThermoData/tests/test_thermodata/test_thermodata.py rename to ceasiompy/ThermoData/tests/test_thermodata.py From 35645df10132bada538cba7e50736ef0e440c3c1 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Fri, 15 Mar 2024 15:02:46 +0100 Subject: [PATCH 48/55] improving tests --- ceasiompy/ThermoData/tests/test_thermodata.py | 60 ++++++++++--------- 1 file changed, 31 insertions(+), 29 deletions(-) diff --git a/ceasiompy/ThermoData/tests/test_thermodata.py b/ceasiompy/ThermoData/tests/test_thermodata.py index badfab3a8..3c79da16e 100644 --- a/ceasiompy/ThermoData/tests/test_thermodata.py +++ b/ceasiompy/ThermoData/tests/test_thermodata.py @@ -22,6 +22,8 @@ import pytest +import os + import numpy as np from ceasiompy.ThermoData.func.turbofan_func import ( @@ -65,44 +67,44 @@ def test_turbojet_func(): np.testing.assert_almost_equal(new_sol, correct_sol, 3) -""" - T_tot_out, - V_stat_out, - MN_out, - P_tot_out, - massflow_stat_out, - T_stat_out, - P_stat_out, +def test_write_turbojet_file(tmp_path): + T_tot_out = 300 + V_stat_out = 200 + MN_out = 0.5 + P_tot_out = 100000 + massflow_stat_out = 50 + T_stat_out = 400 + P_stat_out = 200000 + test_thermodata_path = Path(tmp_path, "EngineBC.dat") + with open(test_thermodata_path, "w") as file: + write_turbojet_file( + file, + T_tot_out, + V_stat_out, + MN_out, + P_tot_out, + massflow_stat_out, + T_stat_out, + P_stat_out, + ) + with open(test_thermodata_path, "r") as file: + content = [ + line.strip() for line in file.readlines() + ] # Rimuovi il carattere di nuova linea -def test_write_turbojet_file(): - ll = 2 + content.append("") + print("Contenuto letto dal file:", content) -def test_turbofan(): - alt = 4000 # [ft] - MN = 0.6 - # Fn = 11800 # [lbf] - new_sol_tf = turbofan_analysis(alt, MN) - correct_sol_tf = np.array( - [ - 8.11328662e01, - 3.44500820e02, - 1.00000000e00, - 4.19439630e02, - 5.64233274e01, - 1.08865912e-01, - ] - ).reshape((6, 1)) - np.testing.assert_almost_equal(new_sol_tf, correct_sol_tf, 5) + expected_content = test_thermodata_path.read_text().split("\n") + print("Contenuto atteso:", expected_content) + assert test_thermodata_path.read_text().split("\n") == content -def test_write_hbtf_file(): - ll = 1 -""" # ================================================================================================= # MAIN # ================================================================================================= From a8317a176237700e253a75669276b065e19d497d Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Fri, 15 Mar 2024 15:13:36 +0100 Subject: [PATCH 49/55] improving_test --- ceasiompy/ThermoData/tests/test_thermodata.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/ceasiompy/ThermoData/tests/test_thermodata.py b/ceasiompy/ThermoData/tests/test_thermodata.py index 3c79da16e..c38c00eab 100644 --- a/ceasiompy/ThermoData/tests/test_thermodata.py +++ b/ceasiompy/ThermoData/tests/test_thermodata.py @@ -91,16 +91,12 @@ def test_write_turbojet_file(tmp_path): ) with open(test_thermodata_path, "r") as file: - content = [ - line.strip() for line in file.readlines() - ] # Rimuovi il carattere di nuova linea - + content = [line.strip() for line in file.readlines()] content.append("") - print("Contenuto letto dal file:", content) - - expected_content = test_thermodata_path.read_text().split("\n") - print("Contenuto atteso:", expected_content) + # print("content=", content) + # expected_content = test_thermodata_path.read_text().split("\n") + # print("expected_content=", expected_content) assert test_thermodata_path.read_text().split("\n") == content From 48581e1dfec6fd50a37b27c73ef4aa27f3a46e04 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Mon, 18 Mar 2024 11:42:50 +0100 Subject: [PATCH 50/55] fixing codacy issues --- ceasiompy/ThermoData/tests/test_thermodata.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/ceasiompy/ThermoData/tests/test_thermodata.py b/ceasiompy/ThermoData/tests/test_thermodata.py index c38c00eab..741f8dab8 100644 --- a/ceasiompy/ThermoData/tests/test_thermodata.py +++ b/ceasiompy/ThermoData/tests/test_thermodata.py @@ -20,17 +20,8 @@ import sys -import pytest - -import os - import numpy as np -from ceasiompy.ThermoData.func.turbofan_func import ( - turbofan_analysis, - write_hbtf_file, -) - from ceasiompy.ThermoData.func.turbojet_func import ( turbojet_analysis, write_turbojet_file, From 39f1a3e604542129125d27bbba244c9952756b09 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Mon, 18 Mar 2024 15:30:04 +0100 Subject: [PATCH 51/55] finishing test implementation --- ceasiompy/ThermoData/tests/test_thermodata.py | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) diff --git a/ceasiompy/ThermoData/tests/test_thermodata.py b/ceasiompy/ThermoData/tests/test_thermodata.py index 741f8dab8..882161e32 100644 --- a/ceasiompy/ThermoData/tests/test_thermodata.py +++ b/ceasiompy/ThermoData/tests/test_thermodata.py @@ -27,6 +27,11 @@ write_turbojet_file, ) +from ceasiompy.ThermoData.func.turbofan_func import ( + turbofan_analysis, + write_hbtf_file, +) + sys.path.append("/home/cfse/Stage_Francesco/Thermodata") # ================================================================================================= @@ -92,6 +97,78 @@ def test_write_turbojet_file(tmp_path): assert test_thermodata_path.read_text().split("\n") == content +def test_turbofan_func(): + alt = 1000 + MN = 0.3 + Fn = 2000 + new_sol_tuple = turbofan_analysis(alt, MN, Fn) + new_sol = np.concatenate(new_sol_tuple) + correct_sol = np.array( + [ + 65.04136793, + 323.23292298, + 0.95295201, + 161198.12289882, + 1.78761453, + 13.08931717, + 1270.61685498, + 724.51083329, + 1.0, + 964349.32127573, + 1.42155524, + 1139.22870449, + ] + ) + print(new_sol) + print("hello") + print(correct_sol) + np.testing.assert_almost_equal(new_sol, correct_sol, 3) + + +def test_write_hbtf_file(tmp_path): + T_tot_out_core = 300 + V_stat_out_core = 200 + MN_out_core = 0.5 + P_tot_out_core = 100000 + massflow_out_core = 50 + T_stat_out_core = 400 + T_tot_out_byp = 200000 + V_stat_out_byp = 300 + MN_out_byp = 1.2 + P_tot_out_byp = 100000 + massflow_stat_out_byp = 1.6 + T_stat_out_byp = 13 + + test_thermodata_path = Path(tmp_path, "EngineBC.dat") + + with open(test_thermodata_path, "w") as file: + write_hbtf_file( + file, + T_tot_out_core, + V_stat_out_core, + MN_out_core, + P_tot_out_core, + massflow_out_core, + T_stat_out_core, + T_tot_out_byp, + V_stat_out_byp, + MN_out_byp, + P_tot_out_byp, + massflow_stat_out_byp, + T_stat_out_byp, + ) + + with open(test_thermodata_path, "r") as file: + content = [line.strip() for line in file.readlines()] + content.append("") + + print("content=", content) + expected_content = test_thermodata_path.read_text().split("\n") + print("expected_content=", expected_content) + + assert test_thermodata_path.read_text().split("\n") == content + + # ================================================================================================= # MAIN # ================================================================================================= From 2ac0da9c444e7372b17477de00fd034bb3051220 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Mon, 18 Mar 2024 15:43:23 +0100 Subject: [PATCH 52/55] adding comments to tests --- ceasiompy/ThermoData/tests/test_thermodata.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/ceasiompy/ThermoData/tests/test_thermodata.py b/ceasiompy/ThermoData/tests/test_thermodata.py index 882161e32..38ba491a7 100644 --- a/ceasiompy/ThermoData/tests/test_thermodata.py +++ b/ceasiompy/ThermoData/tests/test_thermodata.py @@ -45,6 +45,7 @@ def test_turbojet_func(): + """Test function 'turbojet_analysis'""" alt = 1000 MN = 0.3 Fn = 2000 @@ -64,6 +65,7 @@ def test_turbojet_func(): def test_write_turbojet_file(tmp_path): + """Test function 'write_turbojet_file'""" T_tot_out = 300 V_stat_out = 200 MN_out = 0.5 @@ -98,6 +100,7 @@ def test_write_turbojet_file(tmp_path): def test_turbofan_func(): + """Test function 'turbofan_analysis'""" alt = 1000 MN = 0.3 Fn = 2000 @@ -119,13 +122,11 @@ def test_turbofan_func(): 1139.22870449, ] ) - print(new_sol) - print("hello") - print(correct_sol) np.testing.assert_almost_equal(new_sol, correct_sol, 3) def test_write_hbtf_file(tmp_path): + """Test function 'write_hbtf_file'""" T_tot_out_core = 300 V_stat_out_core = 200 MN_out_core = 0.5 @@ -162,10 +163,6 @@ def test_write_hbtf_file(tmp_path): content = [line.strip() for line in file.readlines()] content.append("") - print("content=", content) - expected_content = test_thermodata_path.read_text().split("\n") - print("expected_content=", expected_content) - assert test_thermodata_path.read_text().split("\n") == content @@ -175,6 +172,6 @@ def test_write_hbtf_file(tmp_path): if __name__ == "__main__": - print("Test configfile.py") + print("Test ThermoData") print("To run test use the following command:") print(">> pytest -v") From dd968dd062cd8cb704da3571d586ac82661ca5d8 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 20 Mar 2024 10:28:23 +0100 Subject: [PATCH 53/55] adding default aeromap to ThermoData module --- ceasiompy/ThermoData/thermodata.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ceasiompy/ThermoData/thermodata.py b/ceasiompy/ThermoData/thermodata.py index e69e1f594..42989dfd3 100644 --- a/ceasiompy/ThermoData/thermodata.py +++ b/ceasiompy/ThermoData/thermodata.py @@ -84,8 +84,21 @@ def thermo_data_run(cpacs_path, cpacs_out_path, wkdir): Fn = get_value_or_default(tixi, RANGE_XPATH + "/NetForce", 2000) + """Creating a default Aeromap to be used when one is not defined""" + default_aeromap = cpacs.create_aeromap("DefaultAeromap") + default_aeromap.description = "AeroMap created automatically" + mach = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseMach", 0.3) + alt = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseAltitude", 10000) + default_aeromap.add_row(alt=alt, mach=mach, aos=0.0, aoa=0.0) + default_aeromap.save() + alt_list = [alt] + mach_list = [mach] + aeromap_uid = get_value_or_default(cpacs.tixi, SU2_AEROMAP_UID_XPATH, "DefaultAeromap") + log.info(f"{aeromap_uid} has been created") + aeromap_list = cpacs.get_aeromap_uid_list() + """Executing the code by taking the correct Aeromap""" if aeromap_list: aeromap_default = aeromap_list[0] log.info(f"The aeromap is {aeromap_default}") From 3a3bda32c7226d8dd1b5825df9642bfeb1f0feb3 Mon Sep 17 00:00:00 2001 From: Francesco-Marcucci Date: Wed, 20 Mar 2024 10:34:26 +0100 Subject: [PATCH 54/55] solving codacy issues --- ceasiompy/ThermoData/thermodata.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ceasiompy/ThermoData/thermodata.py b/ceasiompy/ThermoData/thermodata.py index 42989dfd3..9b31e3b5c 100644 --- a/ceasiompy/ThermoData/thermodata.py +++ b/ceasiompy/ThermoData/thermodata.py @@ -84,7 +84,6 @@ def thermo_data_run(cpacs_path, cpacs_out_path, wkdir): Fn = get_value_or_default(tixi, RANGE_XPATH + "/NetForce", 2000) - """Creating a default Aeromap to be used when one is not defined""" default_aeromap = cpacs.create_aeromap("DefaultAeromap") default_aeromap.description = "AeroMap created automatically" mach = get_value_or_default(cpacs.tixi, RANGE_XPATH + "/cruiseMach", 0.3) @@ -98,7 +97,6 @@ def thermo_data_run(cpacs_path, cpacs_out_path, wkdir): aeromap_list = cpacs.get_aeromap_uid_list() - """Executing the code by taking the correct Aeromap""" if aeromap_list: aeromap_default = aeromap_list[0] log.info(f"The aeromap is {aeromap_default}") From 2611e15f5c3bc965316a07693a545084a7b4b305 Mon Sep 17 00:00:00 2001 From: GBenedett Date: Mon, 15 Apr 2024 08:56:45 +0200 Subject: [PATCH 55/55] cpacs file removed --- test_files/CPACSfiles/busjet0903mod.xml | 2975 ------- test_files/CPACSfiles/concorde1014.xml | 2263 ------ test_files/CPACSfiles/j280904scaled.xml | 3096 ------- test_files/CPACSfiles/j35vort0903cfscaled.xml | 7140 ----------------- test_files/CPACSfiles/labARscaled.xml | 933 --- 5 files changed, 16407 deletions(-) delete mode 100644 test_files/CPACSfiles/busjet0903mod.xml delete mode 100644 test_files/CPACSfiles/concorde1014.xml delete mode 100644 test_files/CPACSfiles/j280904scaled.xml delete mode 100644 test_files/CPACSfiles/j35vort0903cfscaled.xml delete mode 100644 test_files/CPACSfiles/labARscaled.xml diff --git a/test_files/CPACSfiles/busjet0903mod.xml b/test_files/CPACSfiles/busjet0903mod.xml deleted file mode 100644 index 4dddaa07e..000000000 --- a/test_files/CPACSfiles/busjet0903mod.xml +++ /dev/null @@ -1,2975 +0,0 @@ - - -
- busjet0903mod - Simple Wing for unit testing - Martin Siggel - 2012-10-09T15:12:47 - 0.2 - 3.0 - - - Converted to cpacs 3.0 using cpacs2to3 - does not include structure update - cpacs2to3 - 2018-01-15T09:22:57 - 0.2 - 3.0 - - - Add this update - Aidan - 2018-10-03T09:00:01 - 0.3 - 3.0 - - -
- - - - busjv0 - - 16.5 - 1.4907 - - 6.4047 - 0 - -0.9 - - - - -Fuselage -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - -
-FuselageFrameX0 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - -0.4 - - - - - ... - fuseprof_1_1 - - - 1 - 0.015 - 0.015 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFrameX64 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.44555 - 0 - -0.37941 - - - - - ... - fuseprof_1_2 - - - 1 - 0.4 - 0.26253 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFrameX61 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1.4169 - 0 - -0.31804 - - - - - ... - fuseprof_1_3 - - - 1 - 0.69132 - 0.48198 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFrameX238 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 2.3832 - 0 - -0.052979 - - - - - ... - fuseprof_1_4 - - - 1 - 0.8061 - 0.77088 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFrameX184 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 2.94 - 0 - 0 - - - - - ... - fuseprof_1_5 - - - 1 - 0.825 - 0.825 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFrameX383 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 5.5 - 0 - 0 - - - - - ... - fuseprof_1_6 - - - 1 - 0.825 - 0.825 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFrameX845 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 8.03 - 0 - 0 - - - - - ... - fuseprof_1_7 - - - 1 - 0.825 - 0.825 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFrameX815 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 9.65 - 0 - 0.117 - - - - - ... - fuseprof_1_8 - - - 1 - 0.665 - 0.675 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFrameX938 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 11.3 - 0 - 0.354 - - - - - ... - fuseprof_1_9 - - - 1 - 0.34776 - 0.387 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFrameX1000 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 12.4 - 0 - 0.5732 - - - - - ... - fuseprof_1_10 - - - 1 - 0.034906 - 0.090805 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - FuselageFrameX0 - 0 - - - - ... - description - 0 - 0 - FuselageFrameX64 - 0 - - - - ... - description - 0 - 0 - FuselageFrameX61 - 0 - - - - ... - description - 0 - 0 - FuselageFrameX238 - 0 - - - - ... - description - 0 - 0 - FuselageFrameX184 - 0 - - - - ... - description - 0 - 0 - FuselageFrameX383 - 0 - - - - ... - description - 0 - 0 - FuselageFrameX845 - 0 - - - - ... - description - 0 - 0 - FuselageFrameX815 - 0 - - - - ... - description - 0 - 0 - FuselageFrameX938 - 0 - - - - ... - description - 0 - 0 - FuselageFrameX1000 - 0 - - - - - - ... - FuselageFrameX0elem1 - FuselageFrameX64elem1 - - - - ... - FuselageFrameX64elem1 - FuselageFrameX61elem1 - - - - ... - FuselageFrameX61elem1 - FuselageFrameX238elem1 - - - - ... - FuselageFrameX238elem1 - FuselageFrameX184elem1 - - - - ... - FuselageFrameX184elem1 - FuselageFrameX383elem1 - - - - ... - FuselageFrameX383elem1 - FuselageFrameX845elem1 - - - - ... - FuselageFrameX845elem1 - FuselageFrameX815elem1 - - - - ... - FuselageFrameX815elem1 - FuselageFrameX938elem1 - - - - ... - FuselageFrameX938elem1 - FuselageFrameX1000elem1 - - - -
- -Fairing -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 4 - 0 - -0.84 - - - -
-FairingFrameX0 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.00537 - 0 - 0.182 - - - - - ... - fuseprof_2_1 - - - 1 - 0.2875 - 0.096528 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FairingFrameX61 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.312 - 0 - 0.178 - - - - - ... - fuseprof_2_2 - - - 1 - 0.51 - 0.2185 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FairingFrameX184 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.93 - 0 - 0.137 - - - - - ... - fuseprof_2_3 - - - 1 - 0.64 - 0.371 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FairingFrameX383 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1.93 - 0 - 0.149 - - - - - ... - fuseprof_2_4 - - - 1 - 0.735 - 0.4495 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FairingFrameX616 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 2.95 - 0 - 0.158 - - - - - ... - fuseprof_2_5 - - - 1 - 0.68 - 0.4335 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FairingFrameX815 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 3.88 - 0 - 0.222 - - - - - ... - fuseprof_2_6 - - - 1 - 0.4525 - 0.3025 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FairingFrameX1000 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 4.7297 - 0 - 0.33627 - - - - - ... - fuseprof_2_7 - - - 1 - 0.189 - 0.022006 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - FairingFrameX0 - 0 - - - - ... - description - 0 - 0 - FairingFrameX61 - 0 - - - - ... - description - 0 - 0 - FairingFrameX184 - 0 - - - - ... - description - 0 - 0 - FairingFrameX383 - 0 - - - - ... - description - 0 - 0 - FairingFrameX616 - 0 - - - - ... - description - 0 - 0 - FairingFrameX815 - 0 - - - - ... - description - 0 - 0 - FairingFrameX1000 - 0 - - - - - - ... - FairingFrameX0elem1 - FairingFrameX61elem1 - - - - ... - FairingFrameX61elem1 - FairingFrameX184elem1 - - - - ... - FairingFrameX184elem1 - FairingFrameX383elem1 - - - - ... - FairingFrameX383elem1 - FairingFrameX616elem1 - - - - ... - FairingFrameX616elem1 - FairingFrameX815elem1 - - - - ... - FairingFrameX815elem1 - FairingFrameX1000elem1 - - - -
- -LeftNacelle -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 7.4 - -1.3 - 0.45 - - - -
-LeftNacelleFrameX0 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - - ... - fuseprof_3_1 - - - 1 - 0.305 - 0.305 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-LeftNacelleFrameX184 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.242 - -0 - 0 - - - - - ... - fuseprof_3_2 - - - 1 - 0.3695 - 0.3695 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-LeftNacelleFrameX53 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.6 - -0 - 0 - - - - - ... - fuseprof_3_3 - - - 1 - 0.42 - 0.42 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-LeftNacelleFrameX383 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1.03 - -0 - 0 - - - - - ... - fuseprof_3_4 - - - 1 - 0.42 - 0.42 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-LeftNacelleFrameX616 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1.39 - -0 - 0 - - - - - ... - fuseprof_3_5 - - - 1 - 0.372 - 0.372 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-LeftNacelleFrameX1000 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 2.25 - -0 - 0 - - - - - ... - fuseprof_3_6 - - - 1 - 0.21 - 0.21 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - LeftNacelleFrameX0 - 0 - - - - ... - description - 0 - 0 - LeftNacelleFrameX184 - 0 - - - - ... - description - 0 - 0 - LeftNacelleFrameX53 - 0 - - - - ... - description - 0 - 0 - LeftNacelleFrameX383 - 0 - - - - ... - description - 0 - 0 - LeftNacelleFrameX616 - 0 - - - - ... - description - 0 - 0 - LeftNacelleFrameX1000 - 0 - - - - - - ... - LeftNacelleFrameX0elem1 - LeftNacelleFrameX184elem1 - - - - ... - LeftNacelleFrameX184elem1 - LeftNacelleFrameX53elem1 - - - - ... - LeftNacelleFrameX53elem1 - LeftNacelleFrameX383elem1 - - - - ... - LeftNacelleFrameX383elem1 - LeftNacelleFrameX616elem1 - - - - ... - LeftNacelleFrameX616elem1 - LeftNacelleFrameX1000elem1 - - - -
- -RightNacelle -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 7.4 - 1.3 - 0.45 - - - -
-RightNacelleFrameX0 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - -0 - 0 - - - - - ... - fuseprof_4_1 - - - 1 - 0.305 - 0.305 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-RightNacelleFrameX184 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.242 - 0 - 0 - - - - - ... - fuseprof_4_2 - - - 1 - 0.3695 - 0.3695 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-RightNacelleFrameX53 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.6 - 0 - 0 - - - - - ... - fuseprof_4_3 - - - 1 - 0.42 - 0.42 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-RightNacelleFrameX383 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1.03 - 0 - 0 - - - - - ... - fuseprof_4_4 - - - 1 - 0.42 - 0.42 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-RightNacelleFrameX616 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1.39 - 0 - 0 - - - - - ... - fuseprof_4_5 - - - 1 - 0.372 - 0.372 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-RightNacelleFrameX1000 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 2.25 - 0 - 0 - - - - - ... - fuseprof_4_6 - - - 1 - 0.21 - 0.21 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - RightNacelleFrameX0 - 0 - - - - ... - description - 0 - 0 - RightNacelleFrameX184 - 0 - - - - ... - description - 0 - 0 - RightNacelleFrameX53 - 0 - - - - ... - description - 0 - 0 - RightNacelleFrameX383 - 0 - - - - ... - description - 0 - 0 - RightNacelleFrameX616 - 0 - - - - ... - description - 0 - 0 - RightNacelleFrameX1000 - 0 - - - - - - ... - RightNacelleFrameX0elem1 - RightNacelleFrameX184elem1 - - - - ... - RightNacelleFrameX184elem1 - RightNacelleFrameX53elem1 - - - - ... - RightNacelleFrameX53elem1 - RightNacelleFrameX383elem1 - - - - ... - RightNacelleFrameX383elem1 - RightNacelleFrameX616elem1 - - - - ... - RightNacelleFrameX616elem1 - RightNacelleFrameX1000elem1 - - - -
-
- - - Wing - Fuselage - description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 4.8 - 0 - -0.9 - - - -
-WingCenterline -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0 - 0 - -0.06 - - - - - ... - foil_1_4 - - - - 2.2 - 2.2 - 2.2 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingRightWingTip -description - - - 1 - 1 - 1 - - - -0 - 1 - -0 - - - 2.2 - 6.1 - 0.5 - - - - - ... - foil_1_3 - - - - 0.9 - 0.9 - 0.9 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingRightWLRoot -description - - - 1 - 1 - 1 - - - 85 - 0 - -0 - - - 2.75 - 6.5 - 0.8 - - - - - ... - foil_1_2 - - - - 0.52 - 0.52 - 0.52 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingRightWLTip -description - - - 1 - 1 - 1 - - - 85 - 0 - -0 - - - 3.3 - 6.6 - 1.5 - - - - - ... - foil_1_1 - - - - 0.3 - 0.3 - 0.3 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - WingRightWLTip - 0 - - - - ... - description - 0 - 0 - WingRightWLRoot - 0 - - - - ... - description - 0 - 0 - WingRightWingTip - 0 - - - - ... - description - 0 - 0 - WingCenterline - 0 - - - - - - ... - WingRightWLTipelem1 - WingRightWLRootelem1 - - - - ... - WingRightWLRootelem1 - WingRightWingTipelem1 - - - - ... - WingRightWingTipelem1 - WingCenterlineelem1 - - - -
- - Fin - Fuselage - description - - - 1 - 1 - 1 - - - 90.0002 - 0 - -0 - - - 7.3 - 0 - 0.6 - - - -
-FinFinRoot -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - -0.4 - 0 - 0 - - - - - ... - foil_2_3 - - - - 5.4 - 5.4 - 5.4 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FinFinKink -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 3.1 - 0.8 - 0 - - - - - ... - foil_2_2 - - - - 2.27 - 2.27 - 2.27 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FinFinTip -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 4.9 - 2.7 - 0 - - - - - ... - foil_2_1 - - - - 1.4 - 1.4 - 1.4 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - FinFinTip - 0 - - - - ... - description - 0 - 0 - FinFinKink - 0 - - - - ... - description - 0 - 0 - FinFinRoot - 0 - - - - - - ... - FinFinTipelem1 - FinFinKinkelem1 - - - - ... - FinFinKinkelem1 - FinFinRootelem1 - - - -
- - WingStabilizer - Fuselage - description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 12.2 - 0 - 3.2 - - - -
-WingStabilizerStabRoot -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0 - 0 - 0 - - - - - ... - foil_3_2 - - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingStabilizerStabTip -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0.837 - 2.3 - 0 - - - - - ... - foil_3_1 - - - - 0.45 - 0.45 - 0.45 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - WingStabilizerStabTip - 0 - - - - ... - description - 0 - 0 - WingStabilizerStabRoot - 0 - - - - - - ... - WingStabilizerStabTipelem1 - WingStabilizerStabRootelem1 - - - -
- - WingPylon - Fuselage - description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 7.6 - 0 - 0.1 - - - -
-WingPylonCentralSection -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0 - 0 - 0 - - - - - ... - foil_4_2 - - - - 2.1 - 2.1 - 2.1 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingPylonPylonTip -description - - - 1 - 1 - 1 - - - 15 - 0 - -0 - - - 0 - 1.3 - 0.35 - - - - - ... - foil_4_1 - - - - 1.9 - 1.9 - 1.9 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - WingPylonPylonTip - 0 - - - - ... - description - 0 - 0 - WingPylonCentralSection - 0 - - - - - - ... - WingPylonPylonTipelem1 - WingPylonCentralSectionelem1 - - - -
-
- - - - aeromap_empty - Common default aeroMap - - ISA - - - 0.0 - 0.3 - 0.0 - 0.0 - - - - - - -
-
- - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.849871 ;0.520193 ;0.000000 ;-0.520193 ;-0.849871 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.487693 ;0.884485 ;1.000000 ;0.884485 ;0.487693 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.642919 ;0.000000 ;-0.642919 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.461956 ;0.826095 ;1.000000 ;0.912369 ;0.549315 ;0.000000 ;-0.549315 ;-0.912369 ;-1.000000 ;-0.826095 ;-0.461956 ;-0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.433053 ;0.793116 ;1.000000 ;0.963624 ;0.612259 ;0.000000 ;-0.612259 ;-0.963624 ;-1.000000 ;-0.793116 ;-0.433053 ;-0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.457076 ;0.701691 ;0.868237 ;0.967099 ;1.000000 ;0.967099 ;0.868237 ;0.701691 ;0.457076 ;0.000000 ;-0.457076 ;-0.701691 ;-0.868237 ;-0.967099 ;-1.000000 ;-0.967099 ;-0.868237 ;-0.701691 ;-0.457076 ;0.000000 - -1.000000 ;-0.967099 ;-0.868237 ;-0.701691 ;-0.457076 ;-0.000000 ;0.457076 ;0.701691 ;0.868237 ;0.967099 ;1.000000 ;0.967099 ;0.868237 ;0.701691 ;0.457076 ;-0.000000 ;-0.457076 ;-0.701691 ;-0.868237 ;-0.967099 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;0.000000 - -1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;-0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;-0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;0.000000 - -1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;-0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;-0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;0.000000 - -1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;-0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;-0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;0.000000 - -1.000000 ;-0.988778 ;-0.954709 ;-0.896385 ;-0.810612 ;-0.689974 ;-0.512794 ;-0.000000 ;0.512794 ;0.689974 ;0.810612 ;0.896385 ;0.954709 ;0.988778 ;1.000000 ;0.988778 ;0.954709 ;0.896385 ;0.810612 ;0.689974 ;0.512794 ;-0.000000 ;-0.512794 ;-0.689974 ;-0.810612 ;-0.896385 ;-0.954709 ;-0.988778 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.418995 ;0.674607 ;0.854713 ;0.963511 ;1.000000 ;0.963511 ;0.854713 ;0.674607 ;0.418995 ;0.000000 ;-0.418995 ;-0.674607 ;-0.854713 ;-0.963511 ;-1.000000 ;-0.963511 ;-0.854713 ;-0.674607 ;-0.418995 ;0.000000 - -1.000000 ;-0.963511 ;-0.854713 ;-0.674607 ;-0.418995 ;-0.000000 ;0.418995 ;0.674607 ;0.854713 ;0.963511 ;1.000000 ;0.963511 ;0.854713 ;0.674607 ;0.418995 ;-0.000000 ;-0.418995 ;-0.674607 ;-0.854713 ;-0.963511 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;0.000000 - -1.000000 ;-0.983215 ;-0.932839 ;-0.848676 ;-0.729826 ;-0.573124 ;-0.367210 ;-0.000000 ;0.367210 ;0.573124 ;0.729826 ;0.848676 ;0.932839 ;0.983215 ;1.000000 ;0.983215 ;0.932839 ;0.848676 ;0.729826 ;0.573124 ;0.367210 ;-0.000000 ;-0.367210 ;-0.573124 ;-0.729826 ;-0.848676 ;-0.932839 ;-0.983215 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;0.000000 ;-0.500000 ;-0.866025 ;-1.000000 ;-0.866025 ;-0.500000 ;0.000000 - -1.000000 ;-0.866025 ;-0.500000 ;-0.000000 ;0.500000 ;0.866025 ;1.000000 ;0.866025 ;0.500000 ;-0.000000 ;-0.500000 ;-0.866025 ;-1.000000 - - - - - - ... - ... - - 0.999750 ;0.984920 ;0.968867 ;0.951505 ;0.932730 ;0.912425 ;0.890462 ;0.866719 ;0.841015 ;0.813216 ;0.783161 ;0.750652 ;0.715463 ;0.677360 ;0.636067 ;0.591289 ;0.542778 ;0.490257 ;0.433409 ;0.374254 ;0.319166 ;0.271452 ;0.230128 ;0.194344 ;0.163361 ;0.136538 ;0.113323 ;0.093231 ;0.075846 ;0.060809 ;0.047813 ;0.036585 ;0.026888 ;0.018532 ;0.011422 ;0.005623 ;0.001458 ;-0.000069 ;0.001194 ;0.004752 ;0.010054 ;0.016735 ;0.024716 ;0.034070 ;0.044985 ;0.057707 ;0.072513 ;0.089715 ;0.109673 ;0.132816 ;0.159639 ;0.190710 ;0.226679 ;0.268301 ;0.316443 ;0.372100 ;0.431925 ;0.489444 ;0.542585 ;0.591644 ;0.636875 ;0.678499 ;0.716817 ;0.752113 ;0.784621 ;0.814549 ;0.842110 ;0.867540 ;0.891079 ;0.912813 ;0.932930 ;0.951562 ;0.968834 ;0.984859 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000016 ;0.000342 ;0.000060 ;-0.000645 ;-0.001712 ;-0.003097 ;-0.004773 ;-0.006884 ;-0.009091 ;-0.011680 ;-0.014791 ;-0.018326 ;-0.022084 ;-0.025950 ;-0.029517 ;-0.032119 ;-0.033813 ;-0.034889 ;-0.035343 ;-0.035088 ;-0.034201 ;-0.032910 ;-0.031350 ;-0.029633 ;-0.027828 ;-0.025959 ;-0.024069 ;-0.022209 ;-0.020394 ;-0.018610 ;-0.016837 ;-0.015098 ;-0.013414 ;-0.011727 ;-0.009744 ;-0.007072 ;-0.003474 ;0.000999 ;0.005634 ;0.009929 ;0.013623 ;0.016962 ;0.020234 ;0.023651 ;0.027257 ;0.031036 ;0.034971 ;0.039083 ;0.043379 ;0.047832 ;0.052371 ;0.056921 ;0.061405 ;0.065680 ;0.069522 ;0.072634 ;0.074465 ;0.074746 ;0.073669 ;0.071371 ;0.067672 ;0.062579 ;0.056804 ;0.050783 ;0.044625 ;0.038381 ;0.032181 ;0.026290 ;0.021035 ;0.016103 ;0.011702 ;0.007846 ;0.004561 ;0.001895 ;0.000021 - - - - ... - ... - - 0.999750 ;0.984890 ;0.968819 ;0.951447 ;0.932667 ;0.912362 ;0.890404 ;0.866652 ;0.840955 ;0.813149 ;0.783055 ;0.750470 ;0.715178 ;0.676957 ;0.635546 ;0.590660 ;0.542051 ;0.489433 ;0.432485 ;0.373226 ;0.318042 ;0.270243 ;0.228846 ;0.192997 ;0.161957 ;0.135086 ;0.111829 ;0.091702 ;0.074287 ;0.059229 ;0.046218 ;0.034980 ;0.025280 ;0.016944 ;0.009950 ;0.004431 ;0.000853 ;-0.000219 ;0.000780 ;0.003787 ;0.008638 ;0.014960 ;0.022643 ;0.031722 ;0.042385 ;0.054880 ;0.069495 ;0.086541 ;0.106385 ;0.129460 ;0.156273 ;0.187403 ;0.223508 ;0.265355 ;0.313823 ;0.369918 ;0.430255 ;0.488279 ;0.541867 ;0.591287 ;0.636715 ;0.678351 ;0.716575 ;0.751738 ;0.784108 ;0.813941 ;0.841481 ;0.866933 ;0.890474 ;0.912265 ;0.932457 ;0.951182 ;0.968565 ;0.984718 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000011 ;0.000035 ;-0.000595 ;-0.001686 ;-0.003173 ;-0.005014 ;-0.007184 ;-0.009649 ;-0.012396 ;-0.015412 ;-0.018654 ;-0.022012 ;-0.025376 ;-0.028704 ;-0.031690 ;-0.033731 ;-0.035043 ;-0.035856 ;-0.036145 ;-0.035806 ;-0.034905 ;-0.033638 ;-0.032114 ;-0.030438 ;-0.028667 ;-0.026817 ;-0.024935 ;-0.023074 ;-0.021244 ;-0.019422 ;-0.017586 ;-0.015781 ;-0.014019 ;-0.012165 ;-0.009779 ;-0.006550 ;-0.002368 ;0.002278 ;0.007040 ;0.011798 ;0.016152 ;0.020250 ;0.024333 ;0.028631 ;0.033191 ;0.037997 ;0.043022 ;0.048286 ;0.053797 ;0.059520 ;0.065368 ;0.071236 ;0.077020 ;0.082527 ;0.087456 ;0.091396 ;0.093608 ;0.093726 ;0.091975 ;0.088480 ;0.082849 ;0.075372 ;0.067185 ;0.058922 ;0.050783 ;0.042965 ;0.035637 ;0.028886 ;0.022735 ;0.017204 ;0.012319 ;0.008101 ;0.004582 ;0.001820 ;0.000017 - - - - ... - ... - - 0.999750 ;0.984963 ;0.968912 ;0.951526 ;0.932708 ;0.912343 ;0.890309 ;0.866484 ;0.840689 ;0.812791 ;0.782648 ;0.750076 ;0.714844 ;0.676716 ;0.635410 ;0.590613 ;0.542072 ;0.489519 ;0.432635 ;0.373438 ;0.318304 ;0.270541 ;0.229167 ;0.193329 ;0.162290 ;0.135410 ;0.112134 ;0.091981 ;0.074535 ;0.059437 ;0.046379 ;0.035088 ;0.025328 ;0.016927 ;0.009856 ;0.004225 ;0.000616 ;-0.000388 ;0.000641 ;0.003615 ;0.008374 ;0.014575 ;0.022129 ;0.031082 ;0.041626 ;0.054013 ;0.068534 ;0.085504 ;0.105292 ;0.128336 ;0.155149 ;0.186317 ;0.222504 ;0.264484 ;0.313146 ;0.369503 ;0.430153 ;0.488502 ;0.542407 ;0.592138 ;0.637903 ;0.679894 ;0.718442 ;0.753851 ;0.786353 ;0.816146 ;0.843443 ;0.868561 ;0.891872 ;0.913344 ;0.933247 ;0.951714 ;0.968873 ;0.984842 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000034 ;0.001343 ;0.002042 ;0.002338 ;0.002299 ;0.001981 ;0.001411 ;0.000297 ;-0.000751 ;-0.002268 ;-0.004641 ;-0.007783 ;-0.011367 ;-0.015256 ;-0.019016 ;-0.021811 ;-0.023639 ;-0.024937 ;-0.025772 ;-0.026084 ;-0.025899 ;-0.025359 ;-0.024563 ;-0.023603 ;-0.022528 ;-0.021345 ;-0.020101 ;-0.018844 ;-0.017584 ;-0.016295 ;-0.014958 ;-0.013622 ;-0.012300 ;-0.010820 ;-0.008704 ;-0.005689 ;-0.001553 ;0.003104 ;0.007893 ;0.012708 ;0.017218 ;0.021572 ;0.025988 ;0.030667 ;0.035652 ;0.040926 ;0.046466 ;0.052290 ;0.058406 ;0.064778 ;0.071313 ;0.077905 ;0.084439 ;0.090711 ;0.096406 ;0.101093 ;0.103972 ;0.104634 ;0.103342 ;0.100304 ;0.095306 ;0.088490 ;0.080778 ;0.072671 ;0.064289 ;0.055673 ;0.046941 ;0.038553 ;0.031124 ;0.024044 ;0.017694 ;0.012074 ;0.007206 ;0.003133 ;0.000040 - - - - ... - ... - - 0.999750 ;0.984901 ;0.968817 ;0.951416 ;0.932594 ;0.912236 ;0.890215 ;0.866393 ;0.840618 ;0.812729 ;0.782549 ;0.749882 ;0.714515 ;0.676226 ;0.634766 ;0.589856 ;0.541236 ;0.488613 ;0.431662 ;0.372399 ;0.317204 ;0.269387 ;0.227965 ;0.192083 ;0.161003 ;0.134087 ;0.110777 ;0.090594 ;0.073120 ;0.057999 ;0.044920 ;0.033610 ;0.023836 ;0.015463 ;0.008546 ;0.003170 ;0.000037 ;-0.000847 ;-0.000139 ;0.002333 ;0.006607 ;0.012362 ;0.019509 ;0.028067 ;0.038232 ;0.050266 ;0.064476 ;0.081182 ;0.100758 ;0.123655 ;0.150403 ;0.181605 ;0.217942 ;0.260206 ;0.309305 ;0.366267 ;0.427639 ;0.486700 ;0.541228 ;0.591436 ;0.637398 ;0.679261 ;0.717513 ;0.752585 ;0.784784 ;0.814413 ;0.841747 ;0.867013 ;0.890399 ;0.912075 ;0.932198 ;0.950904 ;0.968322 ;0.984564 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000022 ;0.000622 ;0.000586 ;0.000126 ;-0.000696 ;-0.001829 ;-0.003246 ;-0.004916 ;-0.006821 ;-0.008959 ;-0.011304 ;-0.013763 ;-0.016231 ;-0.018699 ;-0.020971 ;-0.022468 ;-0.023433 ;-0.024125 ;-0.024576 ;-0.024705 ;-0.024512 ;-0.024069 ;-0.023420 ;-0.022636 ;-0.021737 ;-0.020718 ;-0.019629 ;-0.018514 ;-0.017372 ;-0.016164 ;-0.014887 ;-0.013606 ;-0.012309 ;-0.010644 ;-0.008058 ;-0.004625 ;-0.000094 ;0.004614 ;0.009533 ;0.014700 ;0.019777 ;0.024846 ;0.030077 ;0.035672 ;0.041674 ;0.048068 ;0.054817 ;0.061939 ;0.069438 ;0.077271 ;0.085327 ;0.093462 ;0.101521 ;0.109242 ;0.116204 ;0.121829 ;0.125078 ;0.125414 ;0.123135 ;0.118424 ;0.110793 ;0.100720 ;0.089762 ;0.078721 ;0.067879 ;0.057502 ;0.047786 ;0.038836 ;0.030680 ;0.023341 ;0.016841 ;0.011200 ;0.006451 ;0.002651 ;0.000028 - - - - ... - ... - - 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 - - - - ... - ... - - 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 - - - - ... - ... - - 0.999750 ;0.984959 ;0.968971 ;0.951687 ;0.932996 ;0.912781 ;0.890912 ;0.867250 ;0.841645 ;0.813933 ;0.783934 ;0.751451 ;0.716275 ;0.678179 ;0.636908 ;0.592195 ;0.543779 ;0.491371 ;0.434651 ;0.375633 ;0.320677 ;0.273079 ;0.231860 ;0.196168 ;0.165264 ;0.138511 ;0.115355 ;0.095314 ;0.077971 ;0.062967 ;0.049993 ;0.038779 ;0.029087 ;0.020719 ;0.013525 ;0.007431 ;0.002540 ;0.000000 ;0.002537 ;0.007428 ;0.013522 ;0.020716 ;0.029084 ;0.038776 ;0.049990 ;0.062964 ;0.077968 ;0.095311 ;0.115352 ;0.138509 ;0.165262 ;0.196165 ;0.231858 ;0.273077 ;0.320675 ;0.375631 ;0.434649 ;0.491370 ;0.543778 ;0.592194 ;0.636907 ;0.678178 ;0.716274 ;0.751450 ;0.783933 ;0.813933 ;0.841645 ;0.867250 ;0.890912 ;0.912781 ;0.932996 ;0.951687 ;0.968971 ;0.984959 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000002 ;-0.000529 ;-0.001530 ;-0.002875 ;-0.004519 ;-0.006439 ;-0.008610 ;-0.011017 ;-0.013646 ;-0.016478 ;-0.019460 ;-0.022510 ;-0.025567 ;-0.028545 ;-0.031142 ;-0.033008 ;-0.034219 ;-0.034886 ;-0.034946 ;-0.034311 ;-0.033083 ;-0.031501 ;-0.029701 ;-0.027784 ;-0.025819 ;-0.023838 ;-0.021874 ;-0.019965 ;-0.018129 ;-0.016360 ;-0.014646 ;-0.012990 ;-0.011407 ;-0.009881 ;-0.008295 ;-0.006412 ;-0.003870 ;-0.000002 ;0.003868 ;0.006411 ;0.008295 ;0.009880 ;0.011407 ;0.012989 ;0.014645 ;0.016360 ;0.018128 ;0.019965 ;0.021874 ;0.023838 ;0.025819 ;0.027784 ;0.029701 ;0.031501 ;0.033083 ;0.034311 ;0.034946 ;0.034886 ;0.034220 ;0.033008 ;0.031142 ;0.028545 ;0.025567 ;0.022510 ;0.019460 ;0.016478 ;0.013646 ;0.011017 ;0.008610 ;0.006439 ;0.004519 ;0.002875 ;0.001530 ;0.000529 ;0.000002 - - - - ... - ... - - 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 - - - - ... - ... - - 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000026 ;-0.001078 ;-0.002130 ;-0.003182 ;-0.004234 ;-0.005286 ;-0.006338 ;-0.007390 ;-0.008442 ;-0.009494 ;-0.010546 ;-0.011598 ;-0.012650 ;-0.013702 ;-0.014754 ;-0.015806 ;-0.016858 ;-0.017910 ;-0.018962 ;-0.020003 ;-0.021045 ;-0.022086 ;-0.023125 ;-0.024164 ;-0.025198 ;-0.026228 ;-0.027250 ;-0.028267 ;-0.029276 ;-0.030276 ;-0.031265 ;-0.032239 ;-0.033203 ;-0.034149 ;-0.035077 ;-0.035987 ;-0.036879 ;-0.037750 ;-0.038596 ;-0.039425 ;-0.040228 ;-0.041010 ;-0.041767 ;-0.042498 ;-0.043203 ;-0.043883 ;-0.044535 ;-0.045160 ;-0.045756 ;-0.046316 ;-0.046846 ;-0.047340 ;-0.047794 ;-0.048216 ;-0.048596 ;-0.048940 ;-0.049240 ;-0.049495 ;-0.049703 ;-0.049857 ;-0.049957 ;-0.049998 ;-0.049988 ;-0.049929 ;-0.049824 ;-0.049678 ;-0.049493 ;-0.049269 ;-0.049005 ;-0.048705 ;-0.048362 ;-0.047983 ;-0.047562 ;-0.047103 ;-0.046607 ;-0.046066 ;-0.045486 ;-0.044861 ;-0.044195 ;-0.043481 ;-0.042719 ;-0.041908 ;-0.041044 ;-0.040128 ;-0.039158 ;-0.038131 ;-0.037047 ;-0.035896 ;-0.034674 ;-0.033370 ;-0.031979 ;-0.031614 ;-0.031243 ;-0.030866 ;-0.030483 ;-0.030093 ;-0.029696 ;-0.029291 ;-0.028880 ;-0.028462 ;-0.028036 ;-0.027603 ;-0.027160 ;-0.026708 ;-0.026248 ;-0.025779 ;-0.025300 ;-0.024807 ;-0.024303 ;-0.023787 ;-0.023257 ;-0.022710 ;-0.022148 ;-0.021569 ;-0.020971 ;-0.020352 ;-0.019711 ;-0.019045 ;-0.018350 ;-0.017624 ;-0.016862 ;-0.016060 ;-0.015207 ;-0.014297 ;-0.013314 ;-0.012240 ;-0.012127 ;-0.012012 ;-0.011896 ;-0.011778 ;-0.011659 ;-0.011538 ;-0.011416 ;-0.011292 ;-0.011167 ;-0.011040 ;-0.010911 ;-0.010780 ;-0.010648 ;-0.010513 ;-0.010376 ;-0.010237 ;-0.010095 ;-0.009951 ;-0.009804 ;-0.009654 ;-0.009502 ;-0.009346 ;-0.009187 ;-0.009025 ;-0.008859 ;-0.008689 ;-0.008514 ;-0.008334 ;-0.008148 ;-0.007957 ;-0.007760 ;-0.007556 ;-0.007344 ;-0.007125 ;-0.006897 ;-0.006659 ;-0.006411 ;-0.006150 ;-0.005874 ;-0.005584 ;-0.005278 ;-0.004951 ;-0.004592 ;-0.004190 ;-0.003756 ;-0.003297 ;-0.002665 ;-0.001873 ;0.000000 ;0.001873 ;0.002665 ;0.003297 ;0.003756 ;0.004190 ;0.004592 ;0.004951 ;0.005278 ;0.005584 ;0.005874 ;0.006150 ;0.006411 ;0.006659 ;0.006897 ;0.007125 ;0.007344 ;0.007556 ;0.007760 ;0.007957 ;0.008148 ;0.008334 ;0.008514 ;0.008689 ;0.008859 ;0.009025 ;0.009187 ;0.009346 ;0.009502 ;0.009654 ;0.009804 ;0.009951 ;0.010095 ;0.010237 ;0.010376 ;0.010513 ;0.010648 ;0.010780 ;0.010911 ;0.011040 ;0.011167 ;0.011292 ;0.011416 ;0.011538 ;0.011659 ;0.011778 ;0.011896 ;0.012012 ;0.012127 ;0.012240 ;0.013314 ;0.014297 ;0.015207 ;0.016060 ;0.016862 ;0.017624 ;0.018350 ;0.019045 ;0.019711 ;0.020352 ;0.020971 ;0.021569 ;0.022148 ;0.022710 ;0.023257 ;0.023787 ;0.024303 ;0.024807 ;0.025300 ;0.025779 ;0.026248 ;0.026708 ;0.027160 ;0.027603 ;0.028036 ;0.028462 ;0.028880 ;0.029291 ;0.029696 ;0.030093 ;0.030483 ;0.030866 ;0.031243 ;0.031614 ;0.031979 ;0.033370 ;0.034674 ;0.035896 ;0.037047 ;0.038131 ;0.039158 ;0.040128 ;0.041044 ;0.041908 ;0.042719 ;0.043481 ;0.044195 ;0.044861 ;0.045486 ;0.046066 ;0.046607 ;0.047103 ;0.047562 ;0.047983 ;0.048362 ;0.048705 ;0.049005 ;0.049269 ;0.049493 ;0.049678 ;0.049824 ;0.049929 ;0.049988 ;0.049998 ;0.049957 ;0.049857 ;0.049703 ;0.049495 ;0.049240 ;0.048940 ;0.048596 ;0.048216 ;0.047794 ;0.047340 ;0.046846 ;0.046316 ;0.045756 ;0.045160 ;0.044535 ;0.043883 ;0.043203 ;0.042498 ;0.041767 ;0.041010 ;0.040228 ;0.039425 ;0.038596 ;0.037750 ;0.036879 ;0.035987 ;0.035077 ;0.034149 ;0.033203 ;0.032239 ;0.031265 ;0.030276 ;0.029276 ;0.028267 ;0.027250 ;0.026228 ;0.025198 ;0.024164 ;0.023125 ;0.022086 ;0.021045 ;0.020003 ;0.018962 ;0.017910 ;0.016858 ;0.015806 ;0.014754 ;0.013702 ;0.012650 ;0.011598 ;0.010546 ;0.009494 ;0.008442 ;0.007390 ;0.006338 ;0.005286 ;0.004234 ;0.003182 ;0.002130 ;0.001078 ;0.000026 - - - - ... - ... - - 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000024 ;-0.000976 ;-0.001928 ;-0.002881 ;-0.003833 ;-0.004785 ;-0.005737 ;-0.006690 ;-0.007642 ;-0.008594 ;-0.009546 ;-0.010499 ;-0.011451 ;-0.012403 ;-0.013355 ;-0.014308 ;-0.015260 ;-0.016212 ;-0.017165 ;-0.018098 ;-0.019023 ;-0.019939 ;-0.020846 ;-0.021741 ;-0.022627 ;-0.023497 ;-0.024357 ;-0.025201 ;-0.026032 ;-0.026844 ;-0.027644 ;-0.028423 ;-0.029184 ;-0.029929 ;-0.030651 ;-0.031355 ;-0.032040 ;-0.032702 ;-0.033342 ;-0.033962 ;-0.034558 ;-0.035131 ;-0.035680 ;-0.036199 ;-0.036690 ;-0.037152 ;-0.037578 ;-0.037974 ;-0.038335 ;-0.038660 ;-0.038948 ;-0.039203 ;-0.039421 ;-0.039604 ;-0.039750 ;-0.039863 ;-0.039941 ;-0.039987 ;-0.040000 ;-0.039983 ;-0.039935 ;-0.039857 ;-0.039750 ;-0.039615 ;-0.039453 ;-0.039262 ;-0.039043 ;-0.038796 ;-0.038523 ;-0.038223 ;-0.037895 ;-0.037539 ;-0.037159 ;-0.036745 ;-0.036306 ;-0.035833 ;-0.035333 ;-0.034797 ;-0.034232 ;-0.033634 ;-0.033000 ;-0.032332 ;-0.031626 ;-0.030881 ;-0.030094 ;-0.029262 ;-0.028386 ;-0.027457 ;-0.026475 ;-0.025436 ;-0.024333 ;-0.024046 ;-0.023754 ;-0.023457 ;-0.023155 ;-0.022847 ;-0.022534 ;-0.022215 ;-0.021889 ;-0.021557 ;-0.021218 ;-0.020870 ;-0.020516 ;-0.020157 ;-0.019791 ;-0.019421 ;-0.019047 ;-0.018668 ;-0.018286 ;-0.017901 ;-0.017514 ;-0.017125 ;-0.016730 ;-0.016329 ;-0.015919 ;-0.015496 ;-0.015057 ;-0.014601 ;-0.014119 ;-0.013610 ;-0.013065 ;-0.012479 ;-0.011844 ;-0.011152 ;-0.010391 ;-0.009541 ;-0.009451 ;-0.009359 ;-0.009266 ;-0.009172 ;-0.009077 ;-0.008980 ;-0.008882 ;-0.008783 ;-0.008683 ;-0.008581 ;-0.008478 ;-0.008373 ;-0.008267 ;-0.008159 ;-0.008050 ;-0.007939 ;-0.007826 ;-0.007712 ;-0.007596 ;-0.007478 ;-0.007358 ;-0.007236 ;-0.007111 ;-0.006984 ;-0.006854 ;-0.006721 ;-0.006584 ;-0.006444 ;-0.006299 ;-0.006150 ;-0.005996 ;-0.005837 ;-0.005672 ;-0.005501 ;-0.005323 ;-0.005138 ;-0.004945 ;-0.004741 ;-0.004527 ;-0.004301 ;-0.004064 ;-0.003809 ;-0.003530 ;-0.003218 ;-0.002884 ;-0.002529 ;-0.002037 ;-0.001436 ;0.000000 ;0.001436 ;0.002037 ;0.002529 ;0.002884 ;0.003218 ;0.003530 ;0.003809 ;0.004064 ;0.004301 ;0.004527 ;0.004741 ;0.004945 ;0.005138 ;0.005323 ;0.005501 ;0.005672 ;0.005837 ;0.005996 ;0.006150 ;0.006299 ;0.006444 ;0.006584 ;0.006721 ;0.006854 ;0.006984 ;0.007111 ;0.007236 ;0.007358 ;0.007478 ;0.007596 ;0.007712 ;0.007826 ;0.007939 ;0.008050 ;0.008159 ;0.008267 ;0.008373 ;0.008478 ;0.008581 ;0.008683 ;0.008783 ;0.008882 ;0.008980 ;0.009077 ;0.009172 ;0.009266 ;0.009359 ;0.009451 ;0.009541 ;0.010391 ;0.011152 ;0.011844 ;0.012479 ;0.013065 ;0.013610 ;0.014119 ;0.014601 ;0.015057 ;0.015496 ;0.015919 ;0.016329 ;0.016730 ;0.017125 ;0.017514 ;0.017901 ;0.018286 ;0.018668 ;0.019047 ;0.019421 ;0.019791 ;0.020157 ;0.020516 ;0.020870 ;0.021218 ;0.021557 ;0.021889 ;0.022215 ;0.022534 ;0.022847 ;0.023155 ;0.023457 ;0.023754 ;0.024046 ;0.024333 ;0.025436 ;0.026475 ;0.027457 ;0.028386 ;0.029262 ;0.030094 ;0.030881 ;0.031626 ;0.032332 ;0.033000 ;0.033634 ;0.034232 ;0.034797 ;0.035333 ;0.035833 ;0.036306 ;0.036745 ;0.037159 ;0.037539 ;0.037895 ;0.038223 ;0.038523 ;0.038796 ;0.039043 ;0.039262 ;0.039453 ;0.039615 ;0.039750 ;0.039857 ;0.039935 ;0.039983 ;0.040000 ;0.039987 ;0.039941 ;0.039863 ;0.039750 ;0.039604 ;0.039421 ;0.039203 ;0.038948 ;0.038660 ;0.038335 ;0.037974 ;0.037578 ;0.037152 ;0.036690 ;0.036199 ;0.035680 ;0.035131 ;0.034558 ;0.033962 ;0.033342 ;0.032702 ;0.032040 ;0.031355 ;0.030651 ;0.029929 ;0.029184 ;0.028423 ;0.027644 ;0.026844 ;0.026032 ;0.025201 ;0.024357 ;0.023497 ;0.022627 ;0.021741 ;0.020846 ;0.019939 ;0.019023 ;0.018098 ;0.017165 ;0.016212 ;0.015260 ;0.014308 ;0.013355 ;0.012403 ;0.011451 ;0.010499 ;0.009546 ;0.008594 ;0.007642 ;0.006690 ;0.005737 ;0.004785 ;0.003833 ;0.002881 ;0.001928 ;0.000976 ;0.000024 - - - - ... - ... - - 0.999750 ;0.989750 ;0.979750 ;0.969750 ;0.959750 ;0.949750 ;0.939750 ;0.929750 ;0.919750 ;0.909750 ;0.899750 ;0.889750 ;0.879750 ;0.869750 ;0.859750 ;0.849750 ;0.839750 ;0.829750 ;0.819750 ;0.809750 ;0.799750 ;0.789750 ;0.779750 ;0.769750 ;0.759750 ;0.749750 ;0.739750 ;0.729750 ;0.719750 ;0.709750 ;0.699750 ;0.689750 ;0.679750 ;0.669750 ;0.659750 ;0.649750 ;0.639750 ;0.629750 ;0.619750 ;0.609750 ;0.599750 ;0.589750 ;0.579750 ;0.569750 ;0.559750 ;0.549750 ;0.539750 ;0.529750 ;0.519750 ;0.509750 ;0.499750 ;0.489750 ;0.479750 ;0.469750 ;0.459750 ;0.449750 ;0.439750 ;0.429750 ;0.419750 ;0.409750 ;0.399750 ;0.389750 ;0.379750 ;0.369750 ;0.359750 ;0.349750 ;0.339750 ;0.329750 ;0.319750 ;0.309750 ;0.299750 ;0.289750 ;0.279750 ;0.269750 ;0.259750 ;0.249750 ;0.239750 ;0.229750 ;0.219750 ;0.209750 ;0.199750 ;0.189750 ;0.179750 ;0.169750 ;0.159750 ;0.149750 ;0.139750 ;0.129750 ;0.119750 ;0.109750 ;0.099750 ;0.097250 ;0.094750 ;0.092250 ;0.089750 ;0.087250 ;0.084750 ;0.082250 ;0.079750 ;0.077250 ;0.074750 ;0.072250 ;0.069750 ;0.067250 ;0.064750 ;0.062250 ;0.059750 ;0.057250 ;0.054750 ;0.052250 ;0.049750 ;0.047250 ;0.044750 ;0.042250 ;0.039750 ;0.037250 ;0.034750 ;0.032250 ;0.029750 ;0.027250 ;0.024750 ;0.022250 ;0.019750 ;0.017250 ;0.014750 ;0.012250 ;0.012000 ;0.011750 ;0.011500 ;0.011250 ;0.011000 ;0.010750 ;0.010500 ;0.010250 ;0.010000 ;0.009750 ;0.009500 ;0.009250 ;0.009000 ;0.008750 ;0.008500 ;0.008250 ;0.008000 ;0.007750 ;0.007500 ;0.007250 ;0.007000 ;0.006750 ;0.006500 ;0.006250 ;0.006000 ;0.005750 ;0.005500 ;0.005250 ;0.005000 ;0.004750 ;0.004500 ;0.004250 ;0.004000 ;0.003750 ;0.003500 ;0.003250 ;0.003000 ;0.002750 ;0.002500 ;0.002250 ;0.002000 ;0.001750 ;0.001500 ;0.001250 ;0.001000 ;0.000750 ;0.000500 ;0.000250 ;0.000000 ;0.000250 ;0.000500 ;0.000750 ;0.001000 ;0.001250 ;0.001500 ;0.001750 ;0.002000 ;0.002250 ;0.002500 ;0.002750 ;0.003000 ;0.003250 ;0.003500 ;0.003750 ;0.004000 ;0.004250 ;0.004500 ;0.004750 ;0.005000 ;0.005250 ;0.005500 ;0.005750 ;0.006000 ;0.006250 ;0.006500 ;0.006750 ;0.007000 ;0.007250 ;0.007500 ;0.007750 ;0.008000 ;0.008250 ;0.008500 ;0.008750 ;0.009000 ;0.009250 ;0.009500 ;0.009750 ;0.010000 ;0.010250 ;0.010500 ;0.010750 ;0.011000 ;0.011250 ;0.011500 ;0.011750 ;0.012000 ;0.012250 ;0.014750 ;0.017250 ;0.019750 ;0.022250 ;0.024750 ;0.027250 ;0.029750 ;0.032250 ;0.034750 ;0.037250 ;0.039750 ;0.042250 ;0.044750 ;0.047250 ;0.049750 ;0.052250 ;0.054750 ;0.057250 ;0.059750 ;0.062250 ;0.064750 ;0.067250 ;0.069750 ;0.072250 ;0.074750 ;0.077250 ;0.079750 ;0.082250 ;0.084750 ;0.087250 ;0.089750 ;0.092250 ;0.094750 ;0.097250 ;0.099750 ;0.109750 ;0.119750 ;0.129750 ;0.139750 ;0.149750 ;0.159750 ;0.169750 ;0.179750 ;0.189750 ;0.199750 ;0.209750 ;0.219750 ;0.229750 ;0.239750 ;0.249750 ;0.259750 ;0.269750 ;0.279750 ;0.289750 ;0.299750 ;0.309750 ;0.319750 ;0.329750 ;0.339750 ;0.349750 ;0.359750 ;0.369750 ;0.379750 ;0.389750 ;0.399750 ;0.409750 ;0.419750 ;0.429750 ;0.439750 ;0.449750 ;0.459750 ;0.469750 ;0.479750 ;0.489750 ;0.499750 ;0.509750 ;0.519750 ;0.529750 ;0.539750 ;0.549750 ;0.559750 ;0.569750 ;0.579750 ;0.589750 ;0.599750 ;0.609750 ;0.619750 ;0.629750 ;0.639750 ;0.649750 ;0.659750 ;0.669750 ;0.679750 ;0.689750 ;0.699750 ;0.709750 ;0.719750 ;0.729750 ;0.739750 ;0.749750 ;0.759750 ;0.769750 ;0.779750 ;0.789750 ;0.799750 ;0.809750 ;0.819750 ;0.829750 ;0.839750 ;0.849750 ;0.859750 ;0.869750 ;0.879750 ;0.889750 ;0.899750 ;0.909750 ;0.919750 ;0.929750 ;0.939750 ;0.949750 ;0.959750 ;0.969750 ;0.979750 ;0.989750 ;0.999750 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000024 ;-0.000976 ;-0.001928 ;-0.002881 ;-0.003833 ;-0.004785 ;-0.005737 ;-0.006690 ;-0.007642 ;-0.008594 ;-0.009546 ;-0.010499 ;-0.011451 ;-0.012403 ;-0.013355 ;-0.014308 ;-0.015260 ;-0.016212 ;-0.017165 ;-0.018098 ;-0.019023 ;-0.019939 ;-0.020846 ;-0.021741 ;-0.022627 ;-0.023497 ;-0.024357 ;-0.025201 ;-0.026032 ;-0.026844 ;-0.027644 ;-0.028423 ;-0.029184 ;-0.029929 ;-0.030651 ;-0.031355 ;-0.032040 ;-0.032702 ;-0.033342 ;-0.033962 ;-0.034558 ;-0.035131 ;-0.035680 ;-0.036199 ;-0.036690 ;-0.037152 ;-0.037578 ;-0.037974 ;-0.038335 ;-0.038660 ;-0.038948 ;-0.039203 ;-0.039421 ;-0.039604 ;-0.039750 ;-0.039863 ;-0.039941 ;-0.039987 ;-0.040000 ;-0.039983 ;-0.039935 ;-0.039857 ;-0.039750 ;-0.039615 ;-0.039453 ;-0.039262 ;-0.039043 ;-0.038796 ;-0.038523 ;-0.038223 ;-0.037895 ;-0.037539 ;-0.037159 ;-0.036745 ;-0.036306 ;-0.035833 ;-0.035333 ;-0.034797 ;-0.034232 ;-0.033634 ;-0.033000 ;-0.032332 ;-0.031626 ;-0.030881 ;-0.030094 ;-0.029262 ;-0.028386 ;-0.027457 ;-0.026475 ;-0.025436 ;-0.024333 ;-0.024046 ;-0.023754 ;-0.023457 ;-0.023155 ;-0.022847 ;-0.022534 ;-0.022215 ;-0.021889 ;-0.021557 ;-0.021218 ;-0.020870 ;-0.020516 ;-0.020157 ;-0.019791 ;-0.019421 ;-0.019047 ;-0.018668 ;-0.018286 ;-0.017901 ;-0.017514 ;-0.017125 ;-0.016730 ;-0.016329 ;-0.015919 ;-0.015496 ;-0.015057 ;-0.014601 ;-0.014119 ;-0.013610 ;-0.013065 ;-0.012479 ;-0.011844 ;-0.011152 ;-0.010391 ;-0.009541 ;-0.009451 ;-0.009359 ;-0.009266 ;-0.009172 ;-0.009077 ;-0.008980 ;-0.008882 ;-0.008783 ;-0.008683 ;-0.008581 ;-0.008478 ;-0.008373 ;-0.008267 ;-0.008159 ;-0.008050 ;-0.007939 ;-0.007826 ;-0.007712 ;-0.007596 ;-0.007478 ;-0.007358 ;-0.007236 ;-0.007111 ;-0.006984 ;-0.006854 ;-0.006721 ;-0.006584 ;-0.006444 ;-0.006299 ;-0.006150 ;-0.005996 ;-0.005837 ;-0.005672 ;-0.005501 ;-0.005323 ;-0.005138 ;-0.004945 ;-0.004741 ;-0.004527 ;-0.004301 ;-0.004064 ;-0.003809 ;-0.003530 ;-0.003218 ;-0.002884 ;-0.002529 ;-0.002037 ;-0.001436 ;0.000000 ;0.001436 ;0.002037 ;0.002529 ;0.002884 ;0.003218 ;0.003530 ;0.003809 ;0.004064 ;0.004301 ;0.004527 ;0.004741 ;0.004945 ;0.005138 ;0.005323 ;0.005501 ;0.005672 ;0.005837 ;0.005996 ;0.006150 ;0.006299 ;0.006444 ;0.006584 ;0.006721 ;0.006854 ;0.006984 ;0.007111 ;0.007236 ;0.007358 ;0.007478 ;0.007596 ;0.007712 ;0.007826 ;0.007939 ;0.008050 ;0.008159 ;0.008267 ;0.008373 ;0.008478 ;0.008581 ;0.008683 ;0.008783 ;0.008882 ;0.008980 ;0.009077 ;0.009172 ;0.009266 ;0.009359 ;0.009451 ;0.009541 ;0.010391 ;0.011152 ;0.011844 ;0.012479 ;0.013065 ;0.013610 ;0.014119 ;0.014601 ;0.015057 ;0.015496 ;0.015919 ;0.016329 ;0.016730 ;0.017125 ;0.017514 ;0.017901 ;0.018286 ;0.018668 ;0.019047 ;0.019421 ;0.019791 ;0.020157 ;0.020516 ;0.020870 ;0.021218 ;0.021557 ;0.021889 ;0.022215 ;0.022534 ;0.022847 ;0.023155 ;0.023457 ;0.023754 ;0.024046 ;0.024333 ;0.025436 ;0.026475 ;0.027457 ;0.028386 ;0.029262 ;0.030094 ;0.030881 ;0.031626 ;0.032332 ;0.033000 ;0.033634 ;0.034232 ;0.034797 ;0.035333 ;0.035833 ;0.036306 ;0.036745 ;0.037159 ;0.037539 ;0.037895 ;0.038223 ;0.038523 ;0.038796 ;0.039043 ;0.039262 ;0.039453 ;0.039615 ;0.039750 ;0.039857 ;0.039935 ;0.039983 ;0.040000 ;0.039987 ;0.039941 ;0.039863 ;0.039750 ;0.039604 ;0.039421 ;0.039203 ;0.038948 ;0.038660 ;0.038335 ;0.037974 ;0.037578 ;0.037152 ;0.036690 ;0.036199 ;0.035680 ;0.035131 ;0.034558 ;0.033962 ;0.033342 ;0.032702 ;0.032040 ;0.031355 ;0.030651 ;0.029929 ;0.029184 ;0.028423 ;0.027644 ;0.026844 ;0.026032 ;0.025201 ;0.024357 ;0.023497 ;0.022627 ;0.021741 ;0.020846 ;0.019939 ;0.019023 ;0.018098 ;0.017165 ;0.016212 ;0.015260 ;0.014308 ;0.013355 ;0.012403 ;0.011451 ;0.010499 ;0.009546 ;0.008594 ;0.007642 ;0.006690 ;0.005737 ;0.004785 ;0.003833 ;0.002881 ;0.001928 ;0.000976 ;0.000024 - - - - -
-
diff --git a/test_files/CPACSfiles/concorde1014.xml b/test_files/CPACSfiles/concorde1014.xml deleted file mode 100644 index afd1e96cc..000000000 --- a/test_files/CPACSfiles/concorde1014.xml +++ /dev/null @@ -1,2263 +0,0 @@ - - -
- concorde1014 - Simple Wing for unit testing - Martin Siggel - 2012-10-09T15:12:47 - 0.2 - 3.0 - - - Converted to cpacs 3.0 using cpacs2to3 - does not include structure update - cpacs2to3 - 2018-01-15T09:22:57 - 0.2 - 3.0 - - - Add this update - Aidan - 2018-10-03T09:00:01 - 0.3 - 3.0 - - -
- - - - concv0 - - 499.8191 - 23.9332 - - 30.0246 - 0 - 0.50005 - - - - -Fuselage -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - -
-FuselageFuseFrame1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1 - 0 - 0.070208 - - - - - ... - fuseprof_1_1 - - - 1 - 0.13612 - 0.15746 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame2 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 5.2614 - 0 - 0.45897 - - - - - ... - fuseprof_1_2 - - - 1 - 0.78415 - 0.9071 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 9.5229 - 0 - 0.9153 - - - - - ... - fuseprof_1_3 - - - 1 - 1.2864 - 1.4881 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame4 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 13.7843 - 0 - 1.0901 - - - - - ... - fuseprof_1_4 - - - 1 - 1.4404 - 1.6662 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 18.0457 - 0 - 1.084 - - - - - ... - fuseprof_1_5 - - - 1 - 1.4331 - 1.6578 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 26.5686 - 0 - 1.0793 - - - - - ... - fuseprof_1_6 - - - 1 - 1.4246 - 1.648 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame9 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 35.0914 - 0 - 1.0907 - - - - - ... - fuseprof_1_7 - - - 1 - 1.445 - 1.6717 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame10 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 39.3529 - 0 - 1.1183 - - - - - ... - fuseprof_1_8 - - - 1 - 1.4203 - 1.6429 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame11 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 43.6143 - 0 - 1.1979 - - - - - ... - fuseprof_1_9 - - - 1 - 1.3315 - 1.5403 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame12 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 47.8757 - 0 - 1.2906 - - - - - ... - fuseprof_1_10 - - - 1 - 1.2099 - 1.3996 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame13 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 52.1371 - 0 - 1.5472 - - - - - ... - fuseprof_1_11 - - - 1 - 0.92955 - 1.0753 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame14 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 56.3986 - 0 - 1.8593 - - - - - ... - fuseprof_1_12 - - - 1 - 0.5894 - 0.6818 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuselageFuseFrame15 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 60.66 - 0 - 2.3157 - - - - - ... - fuseprof_1_13 - - - 1 - 0.11801 - 0.13652 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - FuselageFuseFrame1 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame2 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame3 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame4 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame5 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame7 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame9 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame10 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame11 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame12 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame13 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame14 - 0 - - - - ... - description - 0 - 0 - FuselageFuseFrame15 - 0 - - - - - - ... - FuselageFuseFrame1elem1 - FuselageFuseFrame2elem1 - - - - ... - FuselageFuseFrame2elem1 - FuselageFuseFrame3elem1 - - - - ... - FuselageFuseFrame3elem1 - FuselageFuseFrame4elem1 - - - - ... - FuselageFuseFrame4elem1 - FuselageFuseFrame5elem1 - - - - ... - FuselageFuseFrame5elem1 - FuselageFuseFrame7elem1 - - - - ... - FuselageFuseFrame7elem1 - FuselageFuseFrame9elem1 - - - - ... - FuselageFuseFrame9elem1 - FuselageFuseFrame10elem1 - - - - ... - FuselageFuseFrame10elem1 - FuselageFuseFrame11elem1 - - - - ... - FuselageFuseFrame11elem1 - FuselageFuseFrame12elem1 - - - - ... - FuselageFuseFrame12elem1 - FuselageFuseFrame13elem1 - - - - ... - FuselageFuseFrame13elem1 - FuselageFuseFrame14elem1 - - - - ... - FuselageFuseFrame14elem1 - FuselageFuseFrame15elem1 - - - -
-
- - - Wing - Fuselage - description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 13 - 0 - 0.5 - - - -
-WingWingSection1 -description - - - 1 - 1 - 1 - - - -0 - -0.00018026 - -0 - - - 0.0037595 - 0 - -8.8498e-05 - - - - - ... - foil_1_11 - - - - 35.588 - 35.588 - 35.588 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection2 -description - - - 1 - 1 - 1 - - - 0.32116 - -0.24216 - 0.0013574 - - - 4.8505 - 1.2799 - -0.095416 - - - - - ... - foil_1_10 - - - - 30.6015 - 30.6015 - 30.6015 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection3 -description - - - 1 - 1 - 1 - - - 0.40118 - -0.55268 - 0.0038698 - - - 9.8867 - 2.5588 - -0.16762 - - - - - ... - foil_1_9 - - - - 25.4255 - 25.4255 - 25.4255 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection4 -description - - - 1 - 1 - 1 - - - -0.00039544 - -1.0003 - -6.9033e-06 - - - 14.2746 - 3.8377 - -0.2377 - - - - - ... - foil_1_8 - - - - 20.8978 - 20.8978 - 20.8978 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection5 -description - - - 1 - 1 - 1 - - - -1.0427 - -1.6292 - -0.029648 - - - 17.5176 - 5.1166 - -0.32433 - - - - - ... - foil_1_7 - - - - 17.5151 - 17.5151 - 17.5151 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection6 -description - - - 1 - 1 - 1 - - - -2.5584 - -2.3868 - -0.10662 - - - 20.1708 - 6.3955 - -0.41832 - - - - - ... - foil_1_6 - - - - 14.722 - 14.722 - 14.722 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection7 -description - - - 1 - 1 - 1 - - - -4.2989 - -3.1954 - -0.24008 - - - 22.4811 - 7.6744 - -0.51325 - - - - - ... - foil_1_5 - - - - 12.272 - 12.272 - 12.272 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection8 -description - - - 1 - 1 - 1 - - - -6.0151 - -3.9782 - -0.41884 - - - 24.4417 - 8.9533 - -0.61273 - - - - - ... - foil_1_4 - - - - 10.1717 - 10.1717 - 10.1717 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection9 -description - - - 1 - 1 - 1 - - - -7.5132 - -4.6789 - -0.61637 - - - 26.1297 - 10.2322 - -0.72051 - - - - - ... - foil_1_3 - - - - 8.3439 - 8.3439 - 8.3439 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection10 -description - - - 1 - 1 - 1 - - - -8.8285 - -5.3121 - -0.82382 - - - 27.8087 - 11.5111 - -0.83598 - - - - - ... - foil_1_2 - - - - 6.5251 - 6.5251 - 6.5251 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection11 -description - - - 1 - 1 - 1 - - - -10.0538 - -5.9085 - -1.0456 - - - 30.4076 - 12.79 - -0.91742 - - - - - ... - foil_1_1 - - - - 3.4909 - 3.4909 - 3.4909 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - WingWingSection11 - 0 - - - - ... - description - 0 - 0 - WingWingSection10 - 0 - - - - ... - description - 0 - 0 - WingWingSection9 - 0 - - - - ... - description - 0 - 0 - WingWingSection8 - 0 - - - - ... - description - 0 - 0 - WingWingSection7 - 0 - - - - ... - description - 0 - 0 - WingWingSection6 - 0 - - - - ... - description - 0 - 0 - WingWingSection5 - 0 - - - - ... - description - 0 - 0 - WingWingSection4 - 0 - - - - ... - description - 0 - 0 - WingWingSection3 - 0 - - - - ... - description - 0 - 0 - WingWingSection2 - 0 - - - - ... - description - 0 - 0 - WingWingSection1 - 0 - - - - - - ... - WingWingSection11elem1 - WingWingSection10elem1 - - - - ... - WingWingSection10elem1 - WingWingSection9elem1 - - - - ... - WingWingSection9elem1 - WingWingSection8elem1 - - - - ... - WingWingSection8elem1 - WingWingSection7elem1 - - - - ... - WingWingSection7elem1 - WingWingSection6elem1 - - - - ... - WingWingSection6elem1 - WingWingSection5elem1 - - - - ... - WingWingSection5elem1 - WingWingSection4elem1 - - - - ... - WingWingSection4elem1 - WingWingSection3elem1 - - - - ... - WingWingSection3elem1 - WingWingSection2elem1 - - - - ... - WingWingSection2elem1 - WingWingSection1elem1 - - - -
- - Fin - Fuselage - description - - - 1 - 1 - 1 - - - 90.0002 - 0 - -0 - - - 40 - 0 - 2.3 - - - -
-FinWingSection1 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0 - 0 - 0 - - - - - ... - foil_2_7 - - - - 16.7401 - 16.7401 - 16.7401 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FinWingSection2 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 2.0781 - 0.59856 - 0 - - - - - ... - foil_2_6 - - - - 14.5472 - 14.5472 - 14.5472 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FinWingSection3 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 5.1956 - 1.434 - 0 - - - - - ... - foil_2_5 - - - - 11.2695 - 11.2695 - 11.2695 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FinWingSection4 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 8.3166 - 2.4451 - 0 - - - - - ... - foil_2_4 - - - - 7.9545 - 7.9545 - 7.9545 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FinWingSection5 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 9.9171 - 3.456 - 0 - - - - - ... - foil_2_3 - - - - 6.1601 - 6.1601 - 6.1601 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FinWingSection6 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 11.4305 - 4.8037 - 0 - - - - - ... - foil_2_2 - - - - 4.3881 - 4.3881 - 4.3881 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FinWingSection7 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 12.9496 - 6.1477 - 0 - - - - - ... - foil_2_1 - - - - 2.6113 - 2.6113 - 2.6113 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - FinWingSection7 - 0 - - - - ... - description - 0 - 0 - FinWingSection6 - 0 - - - - ... - description - 0 - 0 - FinWingSection5 - 0 - - - - ... - description - 0 - 0 - FinWingSection4 - 0 - - - - ... - description - 0 - 0 - FinWingSection3 - 0 - - - - ... - description - 0 - 0 - FinWingSection2 - 0 - - - - ... - description - 0 - 0 - FinWingSection1 - 0 - - - - - - ... - FinWingSection7elem1 - FinWingSection6elem1 - - - - ... - FinWingSection6elem1 - FinWingSection5elem1 - - - - ... - FinWingSection5elem1 - FinWingSection4elem1 - - - - ... - FinWingSection4elem1 - FinWingSection3elem1 - - - - ... - FinWingSection3elem1 - FinWingSection2elem1 - - - - ... - FinWingSection2elem1 - FinWingSection1elem1 - - - -
-
- - - - aeromap_empty - Common default aeroMap - - ISA - - - 0.0 - 0.3 - 0.0 - 0.0 - - - - - - -
-
- - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.082579 ;0.164590 ;0.245490 ;0.324700 ;0.401700 ;0.475950 ;0.546950 ;0.614210 ;0.677280 ;0.735720 ;0.789140 ;0.837170 ;0.879470 ;0.915770 ;0.945820 ;0.969400 ;0.986360 ;0.996580 ;1.000000 ;0.996580 ;0.986360 ;0.969400 ;0.945820 ;0.915770 ;0.879470 ;0.837170 ;0.789140 ;0.735720 ;0.677280 ;0.614210 ;0.546950 ;0.475950 ;0.401700 ;0.324700 ;0.245490 ;0.164590 ;0.082579 ;0.000000 ;-0.082579 ;-0.164590 ;-0.245490 ;-0.324700 ;-0.401700 ;-0.475950 ;-0.546950 ;-0.614210 ;-0.677280 ;-0.735720 ;-0.789140 ;-0.837170 ;-0.879470 ;-0.915770 ;-0.945820 ;-0.969400 ;-0.986360 ;-0.996580 ;-1.000000 ;-0.996580 ;-0.986360 ;-0.969400 ;-0.945820 ;-0.915770 ;-0.879470 ;-0.837170 ;-0.789140 ;-0.735720 ;-0.677280 ;-0.614210 ;-0.546950 ;-0.475950 ;-0.401700 ;-0.324700 ;-0.245490 ;-0.164590 ;-0.082579 ;-0.000000 - -1.000000 ;-0.996120 ;-0.984510 ;-0.965250 ;-0.938470 ;-0.904360 ;-0.863140 ;-0.815100 ;-0.760560 ;-0.699900 ;-0.633540 ;-0.561920 ;-0.485540 ;-0.404920 ;-0.320600 ;-0.233170 ;-0.143220 ;-0.051362 ;0.041770 ;0.135540 ;0.206930 ;0.277830 ;0.347750 ;0.416230 ;0.482790 ;0.546980 ;0.608360 ;0.666500 ;0.721020 ;0.771540 ;0.817720 ;0.859240 ;0.895810 ;0.927190 ;0.953160 ;0.973550 ;0.988210 ;0.997050 ;1.000000 ;0.997050 ;0.988210 ;0.973550 ;0.953160 ;0.927190 ;0.895810 ;0.859240 ;0.817720 ;0.771540 ;0.721020 ;0.666500 ;0.608360 ;0.546980 ;0.482790 ;0.416230 ;0.347750 ;0.277830 ;0.206930 ;0.135540 ;0.041770 ;-0.051362 ;-0.143220 ;-0.233170 ;-0.320600 ;-0.404920 ;-0.485540 ;-0.561920 ;-0.633540 ;-0.699900 ;-0.760560 ;-0.815100 ;-0.863140 ;-0.904360 ;-0.938470 ;-0.965250 ;-0.984510 ;-0.996120 ;-1.000000 - - - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.000328 ;0.000643 ;0.000948 ;0.001245 ;0.001530 ;0.001800 ;0.002054 ;0.002293 ;0.002517 ;0.002724 ;0.002916 ;0.003092 ;0.003254 ;0.003403 ;0.003541 ;0.003670 ;0.003792 ;0.003909 ;0.004023 ;0.004136 ;0.004249 ;0.004364 ;0.004480 ;0.004600 ;0.004724 ;0.004853 ;0.004991 ;0.005138 ;0.005297 ;0.005470 ;0.005658 ;0.005866 ;0.006098 ;0.006357 ;0.006638 ;0.006937 ;0.007250 ;0.007576 ;0.007916 ;0.008271 ;0.008640 ;0.009025 ;0.009428 ;0.009850 ;0.010295 ;0.010764 ;0.011260 ;0.011787 ;0.012356 ;0.012980 ;0.013459 ;0.012283 ;0.009213 ;0.004413 ;0.000000 ;0.010999 ;0.018360 ;0.023352 ;0.026116 ;0.027016 ;0.027607 ;0.028112 ;0.028544 ;0.028913 ;0.029224 ;0.029479 ;0.029681 ;0.029832 ;0.029933 ;0.029988 ;0.029997 ;0.029960 ;0.029878 ;0.029750 ;0.029578 ;0.029357 ;0.029082 ;0.028748 ;0.028359 ;0.027920 ;0.027434 ;0.026902 ;0.026328 ;0.025712 ;0.025057 ;0.024365 ;0.023638 ;0.022876 ;0.022081 ;0.021253 ;0.020394 ;0.019504 ;0.018586 ;0.017642 ;0.016674 ;0.015684 ;0.014673 ;0.013643 ;0.012597 ;0.011535 ;0.010458 ;0.009365 ;0.008256 ;0.007131 ;0.005991 ;0.004835 ;0.003658 ;0.002459 ;0.001239 ;0.000000 - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.000195 ;0.000379 ;0.000556 ;0.000727 ;0.000889 ;0.001039 ;0.001175 ;0.001297 ;0.001406 ;0.001502 ;0.001585 ;0.001653 ;0.001710 ;0.001756 ;0.001794 ;0.001825 ;0.001852 ;0.001877 ;0.001901 ;0.001927 ;0.001957 ;0.001990 ;0.002029 ;0.002075 ;0.002127 ;0.002188 ;0.002261 ;0.002346 ;0.002448 ;0.002566 ;0.002704 ;0.002865 ;0.003054 ;0.003274 ;0.003521 ;0.003789 ;0.004074 ;0.004377 ;0.004697 ;0.005035 ;0.005392 ;0.005768 ;0.006165 ;0.006586 ;0.007033 ;0.007508 ;0.008015 ;0.008557 ;0.009146 ;0.009795 ;0.010336 ;0.009478 ;0.007030 ;0.003159 ;0.000000 ;0.010046 ;0.016594 ;0.021053 ;0.023571 ;0.024473 ;0.025094 ;0.025628 ;0.026088 ;0.026486 ;0.026827 ;0.027112 ;0.027343 ;0.027525 ;0.027658 ;0.027745 ;0.027786 ;0.027783 ;0.027736 ;0.027644 ;0.027509 ;0.027325 ;0.027087 ;0.026792 ;0.026442 ;0.026042 ;0.025596 ;0.025105 ;0.024573 ;0.024000 ;0.023389 ;0.022742 ;0.022062 ;0.021348 ;0.020603 ;0.019826 ;0.019019 ;0.018184 ;0.017322 ;0.016435 ;0.015527 ;0.014598 ;0.013650 ;0.012686 ;0.011707 ;0.010715 ;0.009710 ;0.008691 ;0.007659 ;0.006613 ;0.005554 ;0.004481 ;0.003390 ;0.002279 ;0.001148 ;0.000000 - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.000092 ;0.000176 ;0.000254 ;0.000329 ;0.000396 ;0.000452 ;0.000496 ;0.000529 ;0.000550 ;0.000559 ;0.000557 ;0.000542 ;0.000517 ;0.000483 ;0.000443 ;0.000399 ;0.000352 ;0.000305 ;0.000260 ;0.000218 ;0.000183 ;0.000154 ;0.000133 ;0.000120 ;0.000117 ;0.000126 ;0.000148 ;0.000187 ;0.000243 ;0.000320 ;0.000419 ;0.000545 ;0.000702 ;0.000893 ;0.001114 ;0.001360 ;0.001625 ;0.001911 ;0.002217 ;0.002545 ;0.002893 ;0.003264 ;0.003659 ;0.004081 ;0.004532 ;0.005015 ;0.005533 ;0.006090 ;0.006697 ;0.007370 ;0.007962 ;0.007347 ;0.005369 ;0.002200 ;0.000000 ;0.009359 ;0.015311 ;0.019379 ;0.021720 ;0.022627 ;0.023275 ;0.023834 ;0.024320 ;0.024743 ;0.025107 ;0.025417 ;0.025673 ;0.025879 ;0.026038 ;0.026150 ;0.026218 ;0.026241 ;0.026221 ;0.026156 ;0.026048 ;0.025893 ;0.025683 ;0.025416 ;0.025094 ;0.024722 ;0.024305 ;0.023844 ;0.023341 ;0.022798 ;0.022218 ;0.021604 ;0.020956 ;0.020276 ;0.019565 ;0.018824 ;0.018053 ;0.017255 ;0.016432 ;0.015586 ;0.014718 ;0.013832 ;0.012929 ;0.012010 ;0.011078 ;0.010136 ;0.009181 ;0.008215 ;0.007236 ;0.006246 ;0.005245 ;0.004231 ;0.003200 ;0.002151 ;0.001083 ;0.000000 - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.000042 ;0.000077 ;0.000107 ;0.000134 ;0.000154 ;0.000165 ;0.000164 ;0.000152 ;0.000129 ;0.000096 ;0.000051 ;-0.000005 ;-0.000072 ;-0.000145 ;-0.000224 ;-0.000307 ;-0.000391 ;-0.000475 ;-0.000555 ;-0.000631 ;-0.000699 ;-0.000759 ;-0.000811 ;-0.000852 ;-0.000883 ;-0.000900 ;-0.000903 ;-0.000888 ;-0.000852 ;-0.000795 ;-0.000714 ;-0.000605 ;-0.000463 ;-0.000283 ;-0.000072 ;0.000165 ;0.000424 ;0.000705 ;0.001008 ;0.001334 ;0.001682 ;0.002055 ;0.002454 ;0.002881 ;0.003340 ;0.003833 ;0.004362 ;0.004934 ;0.005557 ;0.006250 ;0.006874 ;0.006373 ;0.004605 ;0.001749 ;0.000000 ;0.009129 ;0.014855 ;0.018777 ;0.021057 ;0.021978 ;0.022648 ;0.023226 ;0.023730 ;0.024170 ;0.024551 ;0.024877 ;0.025149 ;0.025370 ;0.025542 ;0.025669 ;0.025750 ;0.025787 ;0.025780 ;0.025728 ;0.025633 ;0.025489 ;0.025292 ;0.025035 ;0.024723 ;0.024361 ;0.023953 ;0.023501 ;0.023007 ;0.022473 ;0.021901 ;0.021295 ;0.020656 ;0.019985 ;0.019282 ;0.018550 ;0.017788 ;0.017000 ;0.016186 ;0.015349 ;0.014492 ;0.013616 ;0.012724 ;0.011817 ;0.010898 ;0.009968 ;0.009028 ;0.008076 ;0.007113 ;0.006138 ;0.005154 ;0.004157 ;0.003144 ;0.002113 ;0.001063 ;0.000000 - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.000032 ;0.000057 ;0.000078 ;0.000095 ;0.000106 ;0.000107 ;0.000096 ;0.000074 ;0.000042 ;-0.000001 ;-0.000056 ;-0.000122 ;-0.000198 ;-0.000282 ;-0.000371 ;-0.000463 ;-0.000557 ;-0.000650 ;-0.000739 ;-0.000823 ;-0.000900 ;-0.000968 ;-0.001027 ;-0.001075 ;-0.001112 ;-0.001135 ;-0.001143 ;-0.001133 ;-0.001101 ;-0.001048 ;-0.000969 ;-0.000861 ;-0.000719 ;-0.000539 ;-0.000326 ;-0.000087 ;0.000176 ;0.000461 ;0.000768 ;0.001099 ;0.001454 ;0.001834 ;0.002241 ;0.002677 ;0.003146 ;0.003650 ;0.004191 ;0.004776 ;0.005414 ;0.006123 ;0.006766 ;0.006280 ;0.004525 ;0.001684 ;0.000000 ;0.009244 ;0.015025 ;0.018986 ;0.021294 ;0.022235 ;0.022921 ;0.023514 ;0.024031 ;0.024482 ;0.024874 ;0.025209 ;0.025489 ;0.025717 ;0.025896 ;0.026028 ;0.026114 ;0.026154 ;0.026149 ;0.026100 ;0.026005 ;0.025862 ;0.025663 ;0.025404 ;0.025089 ;0.024722 ;0.024309 ;0.023850 ;0.023349 ;0.022807 ;0.022227 ;0.021612 ;0.020963 ;0.020282 ;0.019568 ;0.018825 ;0.018052 ;0.017251 ;0.016424 ;0.015575 ;0.014704 ;0.013815 ;0.012909 ;0.011988 ;0.011055 ;0.010112 ;0.009157 ;0.008191 ;0.007214 ;0.006226 ;0.005227 ;0.004215 ;0.003188 ;0.002142 ;0.001079 ;0.000000 - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.000042 ;0.000075 ;0.000104 ;0.000130 ;0.000149 ;0.000157 ;0.000154 ;0.000139 ;0.000113 ;0.000076 ;0.000027 ;-0.000034 ;-0.000105 ;-0.000184 ;-0.000269 ;-0.000357 ;-0.000447 ;-0.000536 ;-0.000622 ;-0.000702 ;-0.000776 ;-0.000840 ;-0.000896 ;-0.000940 ;-0.000973 ;-0.000993 ;-0.000997 ;-0.000982 ;-0.000947 ;-0.000888 ;-0.000805 ;-0.000692 ;-0.000543 ;-0.000357 ;-0.000137 ;0.000110 ;0.000380 ;0.000673 ;0.000989 ;0.001329 ;0.001693 ;0.002082 ;0.002499 ;0.002945 ;0.003425 ;0.003940 ;0.004493 ;0.005090 ;0.005742 ;0.006465 ;0.007119 ;0.006602 ;0.004767 ;0.001802 ;0.000000 ;0.009517 ;0.015482 ;0.019569 ;0.021945 ;0.022908 ;0.023607 ;0.024212 ;0.024739 ;0.025200 ;0.025598 ;0.025939 ;0.026223 ;0.026455 ;0.026636 ;0.026769 ;0.026855 ;0.026894 ;0.026887 ;0.026834 ;0.026735 ;0.026585 ;0.026380 ;0.026113 ;0.025788 ;0.025410 ;0.024984 ;0.024513 ;0.023998 ;0.023441 ;0.022845 ;0.022212 ;0.021546 ;0.020845 ;0.020112 ;0.019348 ;0.018554 ;0.017731 ;0.016882 ;0.016009 ;0.015115 ;0.014202 ;0.013271 ;0.012325 ;0.011366 ;0.010396 ;0.009415 ;0.008423 ;0.007418 ;0.006402 ;0.005375 ;0.004335 ;0.003279 ;0.002203 ;0.001109 ;0.000000 - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.000049 ;0.000089 ;0.000125 ;0.000157 ;0.000182 ;0.000197 ;0.000199 ;0.000189 ;0.000168 ;0.000135 ;0.000090 ;0.000033 ;-0.000035 ;-0.000110 ;-0.000192 ;-0.000278 ;-0.000365 ;-0.000452 ;-0.000535 ;-0.000613 ;-0.000683 ;-0.000746 ;-0.000799 ;-0.000841 ;-0.000871 ;-0.000888 ;-0.000889 ;-0.000871 ;-0.000832 ;-0.000770 ;-0.000682 ;-0.000564 ;-0.000411 ;-0.000219 ;0.000007 ;0.000261 ;0.000538 ;0.000838 ;0.001162 ;0.001510 ;0.001882 ;0.002279 ;0.002705 ;0.003161 ;0.003650 ;0.004176 ;0.004740 ;0.005349 ;0.006013 ;0.006751 ;0.007415 ;0.006872 ;0.004970 ;0.001899 ;0.000000 ;0.009761 ;0.015889 ;0.020086 ;0.022524 ;0.023506 ;0.024220 ;0.024836 ;0.025373 ;0.025841 ;0.026247 ;0.026593 ;0.026882 ;0.027117 ;0.027300 ;0.027434 ;0.027520 ;0.027559 ;0.027550 ;0.027494 ;0.027391 ;0.027237 ;0.027025 ;0.026751 ;0.026417 ;0.026030 ;0.025594 ;0.025110 ;0.024582 ;0.024011 ;0.023401 ;0.022753 ;0.022070 ;0.021353 ;0.020603 ;0.019820 ;0.019007 ;0.018164 ;0.017295 ;0.016401 ;0.015485 ;0.014550 ;0.013597 ;0.012628 ;0.011646 ;0.010652 ;0.009647 ;0.008630 ;0.007601 ;0.006560 ;0.005508 ;0.004442 ;0.003360 ;0.002258 ;0.001137 ;0.000000 - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.000033 ;0.000058 ;0.000078 ;0.000095 ;0.000105 ;0.000104 ;0.000092 ;0.000067 ;0.000032 ;-0.000015 ;-0.000075 ;-0.000146 ;-0.000228 ;-0.000318 ;-0.000413 ;-0.000512 ;-0.000613 ;-0.000712 ;-0.000808 ;-0.000898 ;-0.000980 ;-0.001053 ;-0.001117 ;-0.001169 ;-0.001208 ;-0.001234 ;-0.001243 ;-0.001233 ;-0.001200 ;-0.001144 ;-0.001061 ;-0.000947 ;-0.000797 ;-0.000607 ;-0.000382 ;-0.000128 ;0.000150 ;0.000452 ;0.000778 ;0.001128 ;0.001505 ;0.001907 ;0.002338 ;0.002801 ;0.003298 ;0.003832 ;0.004406 ;0.005026 ;0.005703 ;0.006455 ;0.007136 ;0.006625 ;0.004772 ;0.001771 ;0.000000 ;0.009789 ;0.015907 ;0.020101 ;0.022545 ;0.023542 ;0.024270 ;0.024899 ;0.025447 ;0.025926 ;0.026342 ;0.026697 ;0.026994 ;0.027236 ;0.027426 ;0.027567 ;0.027658 ;0.027701 ;0.027696 ;0.027644 ;0.027544 ;0.027393 ;0.027182 ;0.026909 ;0.026575 ;0.026187 ;0.025749 ;0.025263 ;0.024732 ;0.024158 ;0.023544 ;0.022893 ;0.022205 ;0.021483 ;0.020728 ;0.019940 ;0.019121 ;0.018272 ;0.017397 ;0.016497 ;0.015575 ;0.014633 ;0.013673 ;0.012698 ;0.011710 ;0.010710 ;0.009699 ;0.008676 ;0.007641 ;0.006594 ;0.005536 ;0.004465 ;0.003377 ;0.002269 ;0.001142 ;0.000000 - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000000 ;-0.000021 ;-0.000049 ;-0.000081 ;-0.000116 ;-0.000155 ;-0.000205 ;-0.000266 ;-0.000338 ;-0.000421 ;-0.000514 ;-0.000618 ;-0.000734 ;-0.000859 ;-0.000991 ;-0.001128 ;-0.001268 ;-0.001407 ;-0.001545 ;-0.001678 ;-0.001804 ;-0.001921 ;-0.002027 ;-0.002123 ;-0.002206 ;-0.002275 ;-0.002329 ;-0.002364 ;-0.002378 ;-0.002369 ;-0.002335 ;-0.002272 ;-0.002177 ;-0.002043 ;-0.001867 ;-0.001655 ;-0.001412 ;-0.001143 ;-0.000849 ;-0.000529 ;-0.000183 ;0.000191 ;0.000592 ;0.001024 ;0.001489 ;0.001991 ;0.002531 ;0.003113 ;0.003743 ;0.004433 ;0.005201 ;0.005912 ;0.005527 ;0.003915 ;0.001272 ;0.000000 ;0.009466 ;0.015295 ;0.019300 ;0.021660 ;0.022665 ;0.023410 ;0.024055 ;0.024619 ;0.025113 ;0.025543 ;0.025912 ;0.026224 ;0.026480 ;0.026684 ;0.026839 ;0.026944 ;0.027001 ;0.027011 ;0.026973 ;0.026887 ;0.026750 ;0.026553 ;0.026293 ;0.025973 ;0.025598 ;0.025174 ;0.024702 ;0.024184 ;0.023624 ;0.023024 ;0.022386 ;0.021713 ;0.021006 ;0.020265 ;0.019493 ;0.018690 ;0.017858 ;0.016999 ;0.016117 ;0.015212 ;0.014289 ;0.013349 ;0.012394 ;0.011426 ;0.010448 ;0.009460 ;0.008460 ;0.007449 ;0.006428 ;0.005395 ;0.004351 ;0.003291 ;0.002211 ;0.001113 ;0.000000 - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000000 ;-0.000105 ;-0.000215 ;-0.000327 ;-0.000440 ;-0.000557 ;-0.000682 ;-0.000818 ;-0.000963 ;-0.001117 ;-0.001280 ;-0.001453 ;-0.001636 ;-0.001827 ;-0.002024 ;-0.002224 ;-0.002425 ;-0.002624 ;-0.002820 ;-0.003009 ;-0.003190 ;-0.003359 ;-0.003516 ;-0.003660 ;-0.003790 ;-0.003904 ;-0.004000 ;-0.004076 ;-0.004129 ;-0.004156 ;-0.004156 ;-0.004125 ;-0.004059 ;-0.003952 ;-0.003800 ;-0.003609 ;-0.003386 ;-0.003134 ;-0.002854 ;-0.002547 ;-0.002210 ;-0.001845 ;-0.001449 ;-0.001020 ;-0.000555 ;-0.000052 ;0.000492 ;0.001082 ;0.001722 ;0.002425 ;0.003208 ;0.003959 ;0.003773 ;0.002549 ;0.000487 ;0.000000 ;0.008875 ;0.014199 ;0.017872 ;0.020079 ;0.021085 ;0.021849 ;0.022513 ;0.023095 ;0.023608 ;0.024056 ;0.024445 ;0.024775 ;0.025051 ;0.025275 ;0.025449 ;0.025576 ;0.025654 ;0.025686 ;0.025670 ;0.025607 ;0.025493 ;0.025320 ;0.025084 ;0.024788 ;0.024437 ;0.024037 ;0.023591 ;0.023099 ;0.022566 ;0.021993 ;0.021383 ;0.020739 ;0.020062 ;0.019352 ;0.018611 ;0.017840 ;0.017042 ;0.016217 ;0.015370 ;0.014503 ;0.013617 ;0.012716 ;0.011802 ;0.010876 ;0.009941 ;0.008997 ;0.008044 ;0.007080 ;0.006107 ;0.005125 ;0.004132 ;0.003125 ;0.002099 ;0.001056 ;0.000000 - - - - ... - ... - - 1.000000 ;0.981800 ;0.963610 ;0.945410 ;0.927210 ;0.909010 ;0.890810 ;0.872610 ;0.854420 ;0.836220 ;0.818020 ;0.799820 ;0.781620 ;0.763430 ;0.745230 ;0.727030 ;0.708830 ;0.690630 ;0.672430 ;0.654230 ;0.636030 ;0.617830 ;0.599630 ;0.581430 ;0.563220 ;0.545020 ;0.526820 ;0.508610 ;0.490410 ;0.472200 ;0.453990 ;0.435790 ;0.417580 ;0.399370 ;0.381170 ;0.362960 ;0.344750 ;0.326550 ;0.308340 ;0.290130 ;0.271930 ;0.253720 ;0.235520 ;0.217320 ;0.199110 ;0.180910 ;0.162710 ;0.144510 ;0.126320 ;0.108120 ;0.089934 ;0.071749 ;0.053572 ;0.035408 ;0.017278 ;0.000000 ;0.017278 ;0.035408 ;0.053572 ;0.071749 ;0.089934 ;0.108120 ;0.126320 ;0.144510 ;0.162710 ;0.180910 ;0.199110 ;0.217320 ;0.235520 ;0.253720 ;0.271930 ;0.290130 ;0.308340 ;0.326550 ;0.344750 ;0.362960 ;0.381170 ;0.399370 ;0.417580 ;0.435790 ;0.453990 ;0.472200 ;0.490410 ;0.508610 ;0.526820 ;0.545020 ;0.563220 ;0.581430 ;0.599630 ;0.617830 ;0.636030 ;0.654230 ;0.672430 ;0.690630 ;0.708830 ;0.727030 ;0.745230 ;0.763430 ;0.781620 ;0.799820 ;0.818020 ;0.836220 ;0.854420 ;0.872610 ;0.890810 ;0.909010 ;0.927210 ;0.945410 ;0.963610 ;0.981800 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000000 ;-0.000203 ;-0.000409 ;-0.000616 ;-0.000821 ;-0.001029 ;-0.001243 ;-0.001466 ;-0.001697 ;-0.001935 ;-0.002180 ;-0.002434 ;-0.002696 ;-0.002965 ;-0.003237 ;-0.003510 ;-0.003783 ;-0.004052 ;-0.004316 ;-0.004571 ;-0.004815 ;-0.005045 ;-0.005262 ;-0.005463 ;-0.005647 ;-0.005814 ;-0.005960 ;-0.006084 ;-0.006183 ;-0.006253 ;-0.006292 ;-0.006299 ;-0.006268 ;-0.006193 ;-0.006070 ;-0.005905 ;-0.005704 ;-0.005474 ;-0.005212 ;-0.004920 ;-0.004597 ;-0.004241 ;-0.003853 ;-0.003429 ;-0.002967 ;-0.002463 ;-0.001915 ;-0.001319 ;-0.000670 ;0.000046 ;0.000847 ;0.001641 ;0.001691 ;0.000929 ;-0.000441 ;0.000000 ;0.008149 ;0.012859 ;0.016129 ;0.018150 ;0.019154 ;0.019939 ;0.020623 ;0.021225 ;0.021757 ;0.022226 ;0.022635 ;0.022987 ;0.023285 ;0.023532 ;0.023730 ;0.023880 ;0.023983 ;0.024040 ;0.024051 ;0.024016 ;0.023930 ;0.023785 ;0.023578 ;0.023311 ;0.022990 ;0.022621 ;0.022205 ;0.021746 ;0.021246 ;0.020707 ;0.020132 ;0.019524 ;0.018884 ;0.018213 ;0.017511 ;0.016781 ;0.016025 ;0.015243 ;0.014441 ;0.013620 ;0.012782 ;0.011929 ;0.011065 ;0.010192 ;0.009311 ;0.008423 ;0.007527 ;0.006622 ;0.005710 ;0.004790 ;0.003861 ;0.002919 ;0.001960 ;0.000986 ;0.000000 - - - - ... - ... - - 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 - - - - ... - ... - - 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 - - - - ... - ... - - 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 - - - - ... - ... - - 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 - - - - ... - ... - - 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 - - - - ... - ... - - 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 - - - - ... - ... - - 1.000000 ;0.990000 ;0.980000 ;0.970000 ;0.960000 ;0.950000 ;0.940000 ;0.930000 ;0.920000 ;0.910000 ;0.900000 ;0.890000 ;0.880000 ;0.870000 ;0.860000 ;0.850000 ;0.840000 ;0.830000 ;0.820000 ;0.810000 ;0.800000 ;0.790000 ;0.780000 ;0.770000 ;0.760000 ;0.750000 ;0.740000 ;0.730000 ;0.720000 ;0.710000 ;0.700000 ;0.690000 ;0.680000 ;0.670000 ;0.660000 ;0.650000 ;0.640000 ;0.630000 ;0.620000 ;0.610000 ;0.600000 ;0.590000 ;0.580000 ;0.570000 ;0.560000 ;0.550000 ;0.540000 ;0.530000 ;0.520000 ;0.510000 ;0.500000 ;0.490000 ;0.480000 ;0.470000 ;0.460000 ;0.450000 ;0.440000 ;0.430000 ;0.420000 ;0.410000 ;0.400000 ;0.390000 ;0.380000 ;0.370000 ;0.360000 ;0.350000 ;0.340000 ;0.330000 ;0.320000 ;0.310000 ;0.300000 ;0.290000 ;0.280000 ;0.270000 ;0.260000 ;0.250000 ;0.240000 ;0.230000 ;0.220000 ;0.210000 ;0.200000 ;0.190000 ;0.180000 ;0.170000 ;0.160000 ;0.150000 ;0.140000 ;0.130000 ;0.120000 ;0.110000 ;0.100000 ;0.090000 ;0.080000 ;0.070000 ;0.060000 ;0.050000 ;0.040000 ;0.030000 ;0.020000 ;0.010000 ;0.000000 ;0.010000 ;0.020000 ;0.030000 ;0.040000 ;0.050000 ;0.060000 ;0.070000 ;0.080000 ;0.090000 ;0.100000 ;0.110000 ;0.120000 ;0.130000 ;0.140000 ;0.150000 ;0.160000 ;0.170000 ;0.180000 ;0.190000 ;0.200000 ;0.210000 ;0.220000 ;0.230000 ;0.240000 ;0.250000 ;0.260000 ;0.270000 ;0.280000 ;0.290000 ;0.300000 ;0.310000 ;0.320000 ;0.330000 ;0.340000 ;0.350000 ;0.360000 ;0.370000 ;0.380000 ;0.390000 ;0.400000 ;0.410000 ;0.420000 ;0.430000 ;0.440000 ;0.450000 ;0.460000 ;0.470000 ;0.480000 ;0.490000 ;0.500000 ;0.510000 ;0.520000 ;0.530000 ;0.540000 ;0.550000 ;0.560000 ;0.570000 ;0.580000 ;0.590000 ;0.600000 ;0.610000 ;0.620000 ;0.630000 ;0.640000 ;0.650000 ;0.660000 ;0.670000 ;0.680000 ;0.690000 ;0.700000 ;0.710000 ;0.720000 ;0.730000 ;0.740000 ;0.750000 ;0.760000 ;0.770000 ;0.780000 ;0.790000 ;0.800000 ;0.810000 ;0.820000 ;0.830000 ;0.840000 ;0.850000 ;0.860000 ;0.870000 ;0.880000 ;0.890000 ;0.900000 ;0.910000 ;0.920000 ;0.930000 ;0.940000 ;0.950000 ;0.960000 ;0.970000 ;0.980000 ;0.990000 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.002417 ;-0.002932 ;-0.003367 ;-0.003758 ;-0.004130 ;-0.004499 ;-0.004876 ;-0.005264 ;-0.005665 ;-0.006078 ;-0.006500 ;-0.006929 ;-0.007360 ;-0.007792 ;-0.008222 ;-0.008648 ;-0.009069 ;-0.009485 ;-0.009897 ;-0.010306 ;-0.010712 ;-0.011118 ;-0.011526 ;-0.011937 ;-0.012353 ;-0.012777 ;-0.013209 ;-0.013650 ;-0.014101 ;-0.014561 ;-0.015031 ;-0.015508 ;-0.015992 ;-0.016481 ;-0.016972 ;-0.017462 ;-0.017948 ;-0.018428 ;-0.018897 ;-0.019353 ;-0.019793 ;-0.020212 ;-0.020609 ;-0.020980 ;-0.021324 ;-0.021640 ;-0.021924 ;-0.022178 ;-0.022401 ;-0.022593 ;-0.022754 ;-0.022888 ;-0.022994 ;-0.023076 ;-0.023136 ;-0.023176 ;-0.023201 ;-0.023212 ;-0.023213 ;-0.023207 ;-0.023197 ;-0.023184 ;-0.023173 ;-0.023163 ;-0.023156 ;-0.023153 ;-0.023154 ;-0.023159 ;-0.023166 ;-0.023173 ;-0.023178 ;-0.023179 ;-0.023172 ;-0.023153 ;-0.023120 ;-0.023068 ;-0.022994 ;-0.022894 ;-0.022766 ;-0.022606 ;-0.022413 ;-0.022185 ;-0.021922 ;-0.021622 ;-0.021286 ;-0.020914 ;-0.020505 ;-0.020058 ;-0.019570 ;-0.019035 ;-0.018444 ;-0.017780 ;-0.017021 ;-0.016134 ;-0.015074 ;-0.013781 ;-0.012173 ;-0.010146 ;-0.007565 ;0.000000 ;0.007876 ;0.010375 ;0.012359 ;0.013944 ;0.015225 ;0.016275 ;0.017153 ;0.017902 ;0.018557 ;0.019141 ;0.019673 ;0.020163 ;0.020620 ;0.021047 ;0.021448 ;0.021822 ;0.022170 ;0.022491 ;0.022783 ;0.023046 ;0.023279 ;0.023482 ;0.023655 ;0.023799 ;0.023914 ;0.024003 ;0.024067 ;0.024107 ;0.024127 ;0.024128 ;0.024113 ;0.024083 ;0.024041 ;0.023988 ;0.023927 ;0.023857 ;0.023780 ;0.023697 ;0.023608 ;0.023513 ;0.023411 ;0.023301 ;0.023183 ;0.023056 ;0.022918 ;0.022768 ;0.022605 ;0.022426 ;0.022232 ;0.022019 ;0.021788 ;0.021538 ;0.021267 ;0.020975 ;0.020663 ;0.020330 ;0.019977 ;0.019604 ;0.019214 ;0.018806 ;0.018384 ;0.017949 ;0.017503 ;0.017048 ;0.016586 ;0.016121 ;0.015653 ;0.015187 ;0.014723 ;0.014263 ;0.013810 ;0.013363 ;0.012925 ;0.012496 ;0.012076 ;0.011664 ;0.011260 ;0.010863 ;0.010470 ;0.010080 ;0.009690 ;0.009298 ;0.008901 ;0.008497 ;0.008084 ;0.007658 ;0.007219 ;0.006765 ;0.006297 ;0.005814 ;0.005320 ;0.004818 ;0.004313 ;0.003812 ;0.003324 ;0.002860 ;0.002433 ;0.002059 ;0.001754 ;-0.000000 - - - - -
-
diff --git a/test_files/CPACSfiles/j280904scaled.xml b/test_files/CPACSfiles/j280904scaled.xml deleted file mode 100644 index 7dd304737..000000000 --- a/test_files/CPACSfiles/j280904scaled.xml +++ /dev/null @@ -1,3096 +0,0 @@ - - -
- j280904scaled - Simple Wing for unit testing - Martin Siggel - 2012-10-09T15:12:47 - 0.2 - 3.0 - - - Converted to cpacs 3.0 using cpacs2to3 - does not include structure update - cpacs2to3 - 2018-01-15T09:22:57 - 0.2 - 3.0 - - - Add this update - Aidan - 2018-10-03T09:00:01 - 0.3 - 3.0 - - -
- - - - j280v0 - - 49.5353 - 3.6736 - - 3.9293 - 0 - 0 - - - - -Body1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - -
-Body1Frame1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - -0.254 - - - - - ... - fuseprof_1_1 - - - 1 - 0.0254 - 0.0254 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame27 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.16422 - 0 - -0.23764 - - - - - ... - fuseprof_1_2 - - - 1 - 0.32889 - 0.30382 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame2 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.52426 - 0 - -0.25839 - - - - - ... - fuseprof_1_3 - - - 1 - 0.49302 - 0.50145 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1.3627 - 0 - -0.22552 - - - - - ... - fuseprof_1_4 - - - 1 - 0.7102 - 0.71115 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame4 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1.9916 - 0 - -0.02667 - - - - - ... - fuseprof_1_5 - - - 1 - 0.77165 - 0.98425 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 2.5156 - 0 - 0.082745 - - - - - ... - fuseprof_1_6 - - - 1 - 0.856 - 1.1089 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame6 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 4.2057 - 0 - -0.099441 - - - - - ... - fuseprof_1_7 - - - 1 - 0.86665 - 0.9163 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 6.538 - 0 - -0.089154 - - - - - ... - fuseprof_1_8 - - - 1 - 0.7262 - 0.7343 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame8 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 8.0576 - -0.0254 - -0.13716 - - - - - ... - fuseprof_1_9 - - - 1 - 0.4125 - 0.38227 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - Body1Frame1 - 0 - - - - ... - description - 0 - 0 - Body1Frame27 - 0 - - - - ... - description - 0 - 0 - Body1Frame2 - 0 - - - - ... - description - 0 - 0 - Body1Frame3 - 0 - - - - ... - description - 0 - 0 - Body1Frame4 - 0 - - - - ... - description - 0 - 0 - Body1Frame5 - 0 - - - - ... - description - 0 - 0 - Body1Frame6 - 0 - - - - ... - description - 0 - 0 - Body1Frame7 - 0 - - - - ... - description - 0 - 0 - Body1Frame8 - 0 - - - - - - ... - Body1Frame1elem1 - Body1Frame27elem1 - - - - ... - Body1Frame27elem1 - Body1Frame2elem1 - - - - ... - Body1Frame2elem1 - Body1Frame3elem1 - - - - ... - Body1Frame3elem1 - Body1Frame4elem1 - - - - ... - Body1Frame4elem1 - Body1Frame5elem1 - - - - ... - Body1Frame5elem1 - Body1Frame6elem1 - - - - ... - Body1Frame6elem1 - Body1Frame7elem1 - - - - ... - Body1Frame7elem1 - Body1Frame8elem1 - - - -
- -Body2 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 4.1402 - 1.9558 - 0.04572 - - - -
-Body2Frame1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - -0.00254 - - - - - ... - fuseprof_2_1 - - - 1 - 0.00127 - 0.00254 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body2Frame2 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.25171 - 0 - 0.0021791 - - - - - ... - fuseprof_2_2 - - - 1 - 0.10812 - 0.1683 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body2Frame3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1.2263 - 0 - 0.005969 - - - - - ... - fuseprof_2_3 - - - 1 - 0.20264 - 0.31966 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body2Frame4 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 5.9352 - 0 - 0.33617 - - - - - ... - fuseprof_2_4 - - - 1 - 0.1442 - 0.24574 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body2Frame5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 6.5913 - 0 - 0.46647 - - - - - ... - fuseprof_2_5 - - - 1 - 0.13262 - 0.32144 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body2Frame6 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 7.9383 - 0 - 0.52629 - - - - - ... - fuseprof_2_6 - - - 1 - 0.10885 - 0.27407 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body2Frame7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 8.398 - 0 - 0.53365 - - - - - ... - fuseprof_2_7 - - - 1 - 0.099125 - 0.17704 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body2Frame8 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 8.5707 - 0 - 0.58166 - - - - - ... - fuseprof_2_8 - - - 1 - 0.00127 - 0.00254 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - Body2Frame1 - 0 - - - - ... - description - 0 - 0 - Body2Frame2 - 0 - - - - ... - description - 0 - 0 - Body2Frame3 - 0 - - - - ... - description - 0 - 0 - Body2Frame4 - 0 - - - - ... - description - 0 - 0 - Body2Frame5 - 0 - - - - ... - description - 0 - 0 - Body2Frame6 - 0 - - - - ... - description - 0 - 0 - Body2Frame7 - 0 - - - - ... - description - 0 - 0 - Body2Frame8 - 0 - - - - - - ... - Body2Frame1elem1 - Body2Frame2elem1 - - - - ... - Body2Frame2elem1 - Body2Frame3elem1 - - - - ... - Body2Frame3elem1 - Body2Frame4elem1 - - - - ... - Body2Frame4elem1 - Body2Frame5elem1 - - - - ... - Body2Frame5elem1 - Body2Frame6elem1 - - - - ... - Body2Frame6elem1 - Body2Frame7elem1 - - - - ... - Body2Frame7elem1 - Body2Frame8elem1 - - - -
- -Body3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 4.1402 - -1.9558 - 0.04572 - - - -
-Body3Frame1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - -0.00254 - - - - - ... - fuseprof_3_1 - - - 1 - 0.00127 - 0.00254 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body3Frame2 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.25171 - 0 - 0.004318 - - - - - ... - fuseprof_3_2 - - - 1 - 0.10812 - 0.17044 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body3Frame3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 1.2263 - 0 - 0.005969 - - - - - ... - fuseprof_3_3 - - - 1 - 0.20264 - 0.31966 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body3Frame4 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 5.9352 - 0 - 0.33617 - - - - - ... - fuseprof_3_4 - - - 1 - 0.1442 - 0.24574 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body3Frame5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 6.5913 - 0 - 0.46647 - - - - - ... - fuseprof_3_5 - - - 1 - 0.13262 - 0.32144 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body3Frame6 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 7.9383 - 0 - 0.52629 - - - - - ... - fuseprof_3_6 - - - 1 - 0.10885 - 0.27407 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body3Frame7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 8.398 - 0 - 0.53365 - - - - - ... - fuseprof_3_7 - - - 1 - 0.099125 - 0.17704 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body3Frame8 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 8.5707 - 0 - 0.58166 - - - - - ... - fuseprof_3_8 - - - 1 - 0.00127 - 0.00254 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - Body3Frame1 - 0 - - - - ... - description - 0 - 0 - Body3Frame2 - 0 - - - - ... - description - 0 - 0 - Body3Frame3 - 0 - - - - ... - description - 0 - 0 - Body3Frame4 - 0 - - - - ... - description - 0 - 0 - Body3Frame5 - 0 - - - - ... - description - 0 - 0 - Body3Frame6 - 0 - - - - ... - description - 0 - 0 - Body3Frame7 - 0 - - - - ... - description - 0 - 0 - Body3Frame8 - 0 - - - - - - ... - Body3Frame1elem1 - Body3Frame2elem1 - - - - ... - Body3Frame2elem1 - Body3Frame3elem1 - - - - ... - Body3Frame3elem1 - Body3Frame4elem1 - - - - ... - Body3Frame4elem1 - Body3Frame5elem1 - - - - ... - Body3Frame5elem1 - Body3Frame6elem1 - - - - ... - Body3Frame6elem1 - Body3Frame7elem1 - - - - ... - Body3Frame7elem1 - Body3Frame8elem1 - - - -
-
- - - Wing1 - Body1 - description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 2.0463 - 0 - 0 - - - -
-Wing1Section1 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0.23351 - - - 0 - 0 - 0 - - - - - ... - foil_1_5 - - - - 5.2974 - 5.2974 - 5.2974 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing1Section5 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0 - 0.254 - 0 - - - - - ... - foil_1_4 - - - - 5.2974 - 5.2974 - 5.2974 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing1Section2 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 1.1554 - 1.8412 - 0 - - - - - ... - foil_1_3 - - - - 3.6547 - 3.6547 - 3.6547 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing1Section3 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 1.6456 - 4.0434 - 0 - - - - - ... - foil_1_2 - - - - 2.5885 - 2.5885 - 2.5885 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing1Section4 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 2.4495 - 7.6545 - 0 - - - - - ... - foil_1_1 - - - - 1.174 - 1.174 - 1.174 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - Wing1Section4 - 0 - - - - ... - description - 0 - 0 - Wing1Section3 - 0 - - - - ... - description - 0 - 0 - Wing1Section2 - 0 - - - - ... - description - 0 - 0 - Wing1Section5 - 0 - - - - ... - description - 0 - 0 - Wing1Section1 - 0 - - - - - - ... - Wing1Section4elem1 - Wing1Section3elem1 - - - - ... - Wing1Section3elem1 - Wing1Section2elem1 - - - - ... - Wing1Section2elem1 - Wing1Section5elem1 - - - - ... - Wing1Section5elem1 - Wing1Section1elem1 - - - -
- - Wing2 - Body1 - description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 10.8966 - 0 - 0.4572 - - - -
-Wing2Section2 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0 - 1.905 - 0 - - - - - ... - foil_2_1 - - - - 1.5354 - 1.5354 - 1.5354 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing2Section1 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0 - -1.905 - 0 - - - - - ... - foil_2_2 - - - - 1.5354 - 1.5354 - 1.5354 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - Wing2Section2 - 0 - - - - ... - description - 0 - 0 - Wing2Section1 - 0 - - - - - - ... - Wing2Section2elem1 - Wing2Section1elem1 - - - -
- - Wing3 - Body1 - description - - - 1 - 1 - 1 - - - 90.0002 - 0 - -0 - - - 10.8712 - 1.9558 - 0.5588 - - - -
-Wing3Section1 -description - - - 1 - 1 - 1 - - - 3.5083e-15 - 0 - -0 - - - 0 - 0 - 0 - - - - - ... - foil_3_5 - - - - 1.8034 - 1.8034 - 1.8034 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing3Section2 -description - - - 1 - 1 - 1 - - - 3.5083e-14 - 0 - -0 - - - 0.1524 - 0.254 - 1.5553e-17 - - - - - ... - foil_3_4 - - - - 1.7526 - 1.7526 - 1.7526 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing3Section3 -description - - - 1 - 1 - 1 - - - 1.2424e-13 - 0 - -0 - - - 0.6096 - 0.90932 - 5.568e-17 - - - - - ... - foil_3_3 - - - - 1.2954 - 1.2954 - 1.2954 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing3Section4 -description - - - 1 - 1 - 1 - - - 1.6167e-13 - 0 - -0 - - - 0.97561 - 1.2403 - 7.5945e-17 - - - - - ... - foil_3_2 - - - - 0.83972 - 0.83972 - 0.83972 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing3Section5 -description - - - 1 - 1 - 1 - - - 1.8752e-13 - 0 - -0 - - - 1.27 - 1.4859 - 9.0985e-17 - - - - - ... - foil_3_1 - - - - 0.381 - 0.381 - 0.381 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - Wing3Section5 - 0 - - - - ... - description - 0 - 0 - Wing3Section4 - 0 - - - - ... - description - 0 - 0 - Wing3Section3 - 0 - - - - ... - description - 0 - 0 - Wing3Section2 - 0 - - - - ... - description - 0 - 0 - Wing3Section1 - 0 - - - - - - ... - Wing3Section5elem1 - Wing3Section4elem1 - - - - ... - Wing3Section4elem1 - Wing3Section3elem1 - - - - ... - Wing3Section3elem1 - Wing3Section2elem1 - - - - ... - Wing3Section2elem1 - Wing3Section1elem1 - - - -
- - Wing4 - Body1 - description - - - 1 - 1 - 1 - - - 90.0002 - 0 - -0 - - - 10.8712 - -1.9558 - 0.5588 - - - -
-Wing4Section1 -description - - - 1 - 1 - 1 - - - 3.5083e-15 - 0 - -0 - - - 0 - 0 - 0 - - - - - ... - foil_4_5 - - - - 1.8034 - 1.8034 - 1.8034 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing4Section2 -description - - - 1 - 1 - 1 - - - 3.5083e-14 - 0 - -0 - - - 0.1524 - 0.254 - 1.5553e-17 - - - - - ... - foil_4_4 - - - - 1.7526 - 1.7526 - 1.7526 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing4Section3 -description - - - 1 - 1 - 1 - - - 1.2424e-13 - 0 - -0 - - - 0.6096 - 0.90932 - 5.568e-17 - - - - - ... - foil_4_3 - - - - 1.2954 - 1.2954 - 1.2954 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing4Section4 -description - - - 1 - 1 - 1 - - - 1.6167e-13 - 0 - -0 - - - 0.97561 - 1.2403 - 7.5945e-17 - - - - - ... - foil_4_2 - - - - 0.83972 - 0.83972 - 0.83972 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Wing4Section5 -description - - - 1 - 1 - 1 - - - 1.8752e-13 - 0 - -0 - - - 1.27 - 1.4859 - 9.0985e-17 - - - - - ... - foil_4_1 - - - - 0.381 - 0.381 - 0.381 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - Wing4Section5 - 0 - - - - ... - description - 0 - 0 - Wing4Section4 - 0 - - - - ... - description - 0 - 0 - Wing4Section3 - 0 - - - - ... - description - 0 - 0 - Wing4Section2 - 0 - - - - ... - description - 0 - 0 - Wing4Section1 - 0 - - - - - - ... - Wing4Section5elem1 - Wing4Section4elem1 - - - - ... - Wing4Section4elem1 - Wing4Section3elem1 - - - - ... - Wing4Section3elem1 - Wing4Section2elem1 - - - - ... - Wing4Section2elem1 - Wing4Section1elem1 - - - -
-
- - - - aeromap_empty - Common default aeroMap - - ISA - - - 0.0 - 0.3 - 0.0 - 0.0 - - - - - - -
-
- - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.707000 ;1.000000 ;0.707000 ;0.000000 ;-0.707000 ;-1.000000 ;-0.707000 ;0.000000 - -1.000000 ;-0.707000 ;0.000000 ;0.707000 ;1.000000 ;0.707000 ;0.000000 ;-0.707000 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.654440 ;1.000000 ;0.980320 ;0.604370 ;0.000000 ;-0.604370 ;-0.980320 ;-1.000000 ;-0.654440 ;0.000000 - -1.000000 ;-0.759190 ;-0.274810 ;0.332180 ;0.805030 ;1.000000 ;0.805030 ;0.332180 ;-0.274810 ;-0.759190 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.343900 ;0.685200 ;0.920500 ;1.000000 ;0.909200 ;0.685200 ;0.396700 ;0.000000 ;-0.396700 ;-0.685200 ;-0.909200 ;-1.000000 ;-0.920500 ;-0.685200 ;-0.343900 ;0.000000 - -1.000000 ;-0.954300 ;-0.746000 ;-0.465700 ;-0.026200 ;0.380900 ;0.686000 ;0.920500 ;1.000000 ;0.920500 ;0.686000 ;0.380900 ;-0.026200 ;-0.465700 ;-0.746000 ;-0.954300 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.529300 ;0.882300 ;1.000000 ;0.929900 ;0.650900 ;0.348700 ;0.000000 ;-0.348700 ;-0.650900 ;-0.929900 ;-1.000000 ;-0.882300 ;-0.529300 ;0.000000 - -1.000000 ;-0.892900 ;-0.606300 ;-0.159300 ;0.187500 ;0.614300 ;0.988900 ;1.000000 ;0.988900 ;0.614300 ;0.187500 ;-0.159300 ;-0.606300 ;-0.892900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.545400 ;0.930200 ;1.000000 ;0.887400 ;0.572800 ;0.227100 ;0.000000 ;-0.227100 ;-0.572800 ;-0.887400 ;-1.000000 ;-0.930200 ;-0.545400 ;0.000000 - -1.000000 ;-0.881300 ;-0.566500 ;-0.295000 ;0.066600 ;0.560300 ;0.994800 ;1.000000 ;0.994800 ;0.560300 ;0.066600 ;-0.295000 ;-0.566500 ;-0.881300 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.441200 ;0.915400 ;1.000000 ;0.791100 ;0.542200 ;0.457800 ;0.254000 ;0.000000 ;-0.254000 ;-0.457800 ;-0.542200 ;-0.791100 ;-1.000000 ;-0.915400 ;-0.441200 ;0.000000 - -1.000000 ;-0.909100 ;-0.490400 ;-0.146800 ;0.193400 ;0.449100 ;0.692100 ;0.953800 ;1.000000 ;0.953800 ;0.692100 ;0.449100 ;0.193400 ;-0.146800 ;-0.490400 ;-0.909100 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.633900 ;1.000000 ;0.978900 ;0.937900 ;0.571500 ;0.000000 ;-0.571500 ;-0.937900 ;-0.978900 ;-1.000000 ;-0.633900 ;0.000000 - -1.000000 ;-0.799300 ;-0.315600 ;0.103000 ;0.434500 ;0.840300 ;1.000000 ;0.840300 ;0.434500 ;0.103000 ;-0.315600 ;-0.799300 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.633100 ;1.000000 ;0.599900 ;0.000000 ;-0.599900 ;-1.000000 ;-0.633100 ;0.000000 - -1.000000 ;-0.780000 ;0.114800 ;0.805600 ;1.000000 ;0.805600 ;0.114800 ;-0.780000 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.800500 ;1.000000 ;0.677300 ;0.000000 ;-0.677300 ;-1.000000 ;-0.800500 ;0.000000 - -1.000000 ;-0.606300 ;0.100000 ;0.787600 ;1.000000 ;0.787600 ;0.100000 ;-0.606300 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974581 ;-0.899742 ;-0.779027 ;-0.618715 ;-0.426705 ;-0.212618 ;0.012710 ;0.238037 ;0.452124 ;0.644134 ;0.804446 ;0.925161 ;1.000000 ;0.925161 ;0.804446 ;0.644134 ;0.452124 ;0.238037 ;0.012710 ;-0.212618 ;-0.426705 ;-0.618715 ;-0.779027 ;-0.899742 ;-0.974581 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222521 ;0.433884 ;0.623490 ;0.781831 ;0.900969 ;0.974928 ;1.000000 ;0.974928 ;0.900969 ;0.781831 ;0.623490 ;0.433884 ;0.222521 ;0.000000 ;-0.222521 ;-0.433884 ;-0.623490 ;-0.781831 ;-0.900969 ;-0.974928 ;-1.000000 ;-0.974928 ;-0.900969 ;-0.781831 ;-0.623490 ;-0.433884 ;-0.222521 ;0.000000 - 1.000000 ;0.974928 ;0.900969 ;0.781831 ;0.623490 ;0.433884 ;0.222521 ;0.000000 ;-0.222521 ;-0.433884 ;-0.623490 ;-0.781831 ;-0.900969 ;-0.974928 ;-1.000000 ;-0.974928 ;-0.900969 ;-0.781831 ;-0.623490 ;-0.433884 ;-0.222521 ;0.000000 ;0.222521 ;0.433884 ;0.623490 ;0.781831 ;0.900969 ;0.974928 ;1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 - -1.000000 ;-0.974900 ;-0.901000 ;-0.781800 ;-0.623500 ;-0.433900 ;-0.222500 ;0.000000 ;0.222500 ;0.433900 ;0.623500 ;0.781800 ;0.901000 ;0.974900 ;1.000000 ;0.974900 ;0.901000 ;0.781800 ;0.623500 ;0.433900 ;0.222500 ;0.000000 ;-0.222500 ;-0.433900 ;-0.623500 ;-0.781800 ;-0.901000 ;-0.974900 ;-1.000000 - - - - - - ... - ... - - 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.008003 ;-0.015248 ;-0.021667 ;-0.027225 ;-0.031883 ;-0.035580 ;-0.038288 ;-0.039938 ;-0.040500 ;-0.040493 ;-0.040335 ;-0.039727 ;-0.038265 ;-0.035595 ;-0.031448 ;-0.025703 ;-0.018375 ;-0.009675 ;0.000000 ;0.010110 ;0.020010 ;0.029025 ;0.036593 ;0.042345 ;0.046192 ;0.048345 ;0.049253 ;0.049485 ;0.049500 ;0.048825 ;0.046837 ;0.043583 ;0.039105 ;0.033450 ;0.026670 ;0.018802 ;0.009893 ;0.000000 - - - - ... - ... - - 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.010100 ;-0.019244 ;-0.027346 ;-0.034360 ;-0.040239 ;-0.044905 ;-0.048322 ;-0.050405 ;-0.051115 ;-0.051105 ;-0.050906 ;-0.050140 ;-0.048294 ;-0.044924 ;-0.039690 ;-0.032439 ;-0.023191 ;-0.012211 ;0.000000 ;0.012760 ;0.025254 ;0.036632 ;0.046183 ;0.053443 ;0.058299 ;0.061016 ;0.062161 ;0.062455 ;0.062473 ;0.061622 ;0.059113 ;0.055005 ;0.049354 ;0.042217 ;0.033660 ;0.023730 ;0.012485 ;0.000000 - - - - ... - ... - - 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.011379 ;-0.021681 ;-0.030809 ;-0.038712 ;-0.045334 ;-0.050592 ;-0.054442 ;-0.056788 ;-0.057588 ;-0.057577 ;-0.057353 ;-0.056489 ;-0.054410 ;-0.050613 ;-0.044716 ;-0.036547 ;-0.026128 ;-0.013757 ;0.000000 ;0.014376 ;0.028453 ;0.041271 ;0.052032 ;0.060211 ;0.065682 ;0.068743 ;0.070033 ;0.070364 ;0.070385 ;0.069425 ;0.066599 ;0.061971 ;0.055604 ;0.047563 ;0.037923 ;0.026736 ;0.014066 ;0.000000 - - - - ... - ... - - 1.000000 ;0.992815 ;0.984341 ;0.973346 ;0.958722 ;0.939532 ;0.915058 ;0.884835 ;0.848670 ;0.806651 ;0.759145 ;0.706772 ;0.650380 ;0.591004 ;0.529811 ;0.468049 ;0.406987 ;0.347858 ;0.292025 ;0.241431 ;0.195471 ;0.154655 ;0.119288 ;0.089456 ;0.065008 ;0.045550 ;0.030439 ;0.018790 ;0.009447 ;0.000000 ;0.004776 ;0.012217 ;0.022351 ;0.036229 ;0.054835 ;0.078971 ;0.109196 ;0.145776 ;0.188656 ;0.237455 ;0.291475 ;0.348443 ;0.408255 ;0.469936 ;0.532204 ;0.593754 ;0.653318 ;0.709729 ;0.761969 ;0.809221 ;0.850900 ;0.886681 ;0.916515 ;0.940625 ;0.959499 ;0.973864 ;0.984652 ;0.992961 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.000880 ;-0.001908 ;-0.003228 ;-0.004958 ;-0.007188 ;-0.009968 ;-0.013308 ;-0.017180 ;-0.021518 ;-0.026225 ;-0.031172 ;-0.036195 ;-0.041098 ;-0.045643 ;-0.049569 ;-0.052598 ;-0.054475 ;-0.055006 ;-0.054675 ;-0.053622 ;-0.051679 ;-0.048791 ;-0.045011 ;-0.040481 ;-0.035389 ;-0.029893 ;-0.023978 ;-0.017005 ;0.000000 ;0.018879 ;0.028005 ;0.036622 ;0.045550 ;0.054865 ;0.064316 ;0.073455 ;0.081708 ;0.088444 ;0.093045 ;0.094976 ;0.094286 ;0.091653 ;0.087237 ;0.081287 ;0.074119 ;0.066089 ;0.057566 ;0.048910 ;0.040457 ;0.032505 ;0.025299 ;0.019013 ;0.013743 ;0.009495 ;0.006188 ;0.003661 ;0.001688 ;0.000000 - - - - ... - ... - - 1.000000 ;0.933330 ;0.866670 ;0.800000 ;0.733330 ;0.666670 ;0.600000 ;0.533330 ;0.466670 ;0.400000 ;0.390210 ;0.361800 ;0.317560 ;0.261800 ;0.200000 ;0.138200 ;0.082440 ;0.038200 ;0.009790 ;0.000000 ;0.009790 ;0.038200 ;0.082440 ;0.138200 ;0.200000 ;0.261800 ;0.317560 ;0.361800 ;0.390210 ;0.400000 ;0.466670 ;0.533330 ;0.600000 ;0.666670 ;0.733330 ;0.800000 ;0.866670 ;0.933330 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000000 ;-0.012448 ;-0.023718 ;-0.033705 ;-0.042350 ;-0.049595 ;-0.055347 ;-0.059558 ;-0.062125 ;-0.063000 ;-0.062988 ;-0.062743 ;-0.061798 ;-0.059523 ;-0.055370 ;-0.048918 ;-0.039982 ;-0.028583 ;-0.015050 ;0.000000 ;0.015727 ;0.031127 ;0.045150 ;0.056922 ;0.065870 ;0.071855 ;0.075203 ;0.076615 ;0.076977 ;0.077000 ;0.075950 ;0.072858 ;0.067795 ;0.060830 ;0.052033 ;0.041487 ;0.029248 ;0.015388 ;0.000000 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - ... - ... - - 1.000000 ;0.998973 ;0.995895 ;0.990780 ;0.983647 ;0.974528 ;0.963458 ;0.950484 ;0.935659 ;0.919044 ;0.900707 ;0.880723 ;0.859175 ;0.836150 ;0.811745 ;0.786058 ;0.759196 ;0.731269 ;0.702392 ;0.672683 ;0.642264 ;0.611260 ;0.579800 ;0.548012 ;0.516026 ;0.483974 ;0.451988 ;0.420200 ;0.388740 ;0.357736 ;0.327317 ;0.297608 ;0.268731 ;0.240804 ;0.213942 ;0.188255 ;0.163850 ;0.140825 ;0.119277 ;0.099293 ;0.080956 ;0.064341 ;0.049516 ;0.036542 ;0.025472 ;0.016353 ;0.009220 ;0.004105 ;0.001027 ;0.000000 ;0.001027 ;0.004105 ;0.009220 ;0.016353 ;0.025472 ;0.036542 ;0.049516 ;0.064341 ;0.080956 ;0.099293 ;0.119277 ;0.140825 ;0.163850 ;0.188255 ;0.213942 ;0.240804 ;0.268731 ;0.297608 ;0.327317 ;0.357736 ;0.388740 ;0.420200 ;0.451988 ;0.483974 ;0.516026 ;0.548012 ;0.579800 ;0.611260 ;0.642264 ;0.672683 ;0.702392 ;0.731269 ;0.759196 ;0.786058 ;0.811745 ;0.836150 ;0.859175 ;0.880723 ;0.900707 ;0.919044 ;0.935659 ;0.950484 ;0.963458 ;0.974528 ;0.983647 ;0.990780 ;0.995895 ;0.998973 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.001260 ;-0.001404 ;-0.001835 ;-0.002546 ;-0.003531 ;-0.004779 ;-0.006274 ;-0.008002 ;-0.009943 ;-0.012079 ;-0.014389 ;-0.016851 ;-0.019442 ;-0.022140 ;-0.024921 ;-0.027762 ;-0.030640 ;-0.033529 ;-0.036406 ;-0.039244 ;-0.042017 ;-0.044698 ;-0.047259 ;-0.049670 ;-0.051901 ;-0.053923 ;-0.055705 ;-0.057217 ;-0.058430 ;-0.059317 ;-0.059853 ;-0.060016 ;-0.059788 ;-0.059156 ;-0.058110 ;-0.056645 ;-0.054764 ;-0.052472 ;-0.049782 ;-0.046708 ;-0.043271 ;-0.039493 ;-0.035400 ;-0.031017 ;-0.026371 ;-0.021488 ;-0.016391 ;-0.011100 ;-0.005632 ;0.000000 ;0.005632 ;0.011100 ;0.016391 ;0.021488 ;0.026371 ;0.031017 ;0.035400 ;0.039493 ;0.043271 ;0.046708 ;0.049782 ;0.052472 ;0.054764 ;0.056645 ;0.058110 ;0.059156 ;0.059788 ;0.060016 ;0.059853 ;0.059317 ;0.058430 ;0.057217 ;0.055705 ;0.053923 ;0.051901 ;0.049670 ;0.047259 ;0.044698 ;0.042017 ;0.039244 ;0.036406 ;0.033529 ;0.030640 ;0.027762 ;0.024921 ;0.022140 ;0.019442 ;0.016851 ;0.014389 ;0.012079 ;0.009943 ;0.008002 ;0.006274 ;0.004779 ;0.003531 ;0.002546 ;0.001835 ;0.001404 ;0.001260 - - - - -
-
diff --git a/test_files/CPACSfiles/j35vort0903cfscaled.xml b/test_files/CPACSfiles/j35vort0903cfscaled.xml deleted file mode 100644 index 8962530ab..000000000 --- a/test_files/CPACSfiles/j35vort0903cfscaled.xml +++ /dev/null @@ -1,7140 +0,0 @@ - - -
- j35vort0903cfscaled - Simple Wing for unit testing - Martin Siggel - 2012-10-09T15:12:47 - 0.2 - 3.0 - - - Converted to cpacs 3.0 using cpacs2to3 - does not include structure update - cpacs2to3 - 2018-01-15T09:22:57 - 0.2 - 3.0 - - - Add this update - Aidan - 2018-10-03T09:00:01 - 0.3 - 3.0 - - -
- - - - j35vv0 - - 50.9873 - 7.0347 - - 9.8178 - 0 - 0.019397 - - - - -Fuse -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - -
-FuseBodyframe8 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 2.1995 - 0 - -0.3131 - - - - - ... - fuseprof_1_1 - - - 1 - 0.0537 - 0.05405 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuseBodyframe9 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 3.211 - 0 - -0.21662 - - - - - ... - fuseprof_1_2 - - - 1 - 0.28397 - 0.30447 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuseBodyframe10 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 4.2225 - 0 - -0.095929 - - - - - ... - fuseprof_1_3 - - - 1 - 0.44106 - 0.5077 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuseBodyframe11 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 5.234 - 0 - 0.074182 - - - - - ... - fuseprof_1_4 - - - 1 - 0.55675 - 0.7218 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuseBodyframe12 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 6.2456 - 0 - 0.072816 - - - - - ... - fuseprof_1_5 - - - 1 - 0.6052 - 0.738 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuseBodyframe13 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 7.2571 - 0 - 0.087801 - - - - - ... - fuseprof_1_6 - - - 1 - 0.6088 - 0.7512 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuseBodyframe4 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 13.3262 - 0 - 0.26417 - - - - - ... - fuseprof_1_7 - - - 1 - 0.7755 - 0.75585 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuseBodyframe5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 14.3378 - 0 - 0.26 - - - - - ... - fuseprof_1_8 - - - 1 - 0.68605 - 0.79 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuseBodyframe6 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 15.3493 - 0 - 0.2925 - - - - - ... - fuseprof_1_9 - - - 1 - 0.61695 - 0.5875 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FuseBodyframe7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 16.2727 - 0 - 0.36252 - - - - - ... - fuseprof_1_10 - - - 1 - 0.5197 - 0.45997 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - FuseBodyframe8 - 0 - - - - ... - description - 0 - 0 - FuseBodyframe9 - 0 - - - - ... - description - 0 - 0 - FuseBodyframe10 - 0 - - - - ... - description - 0 - 0 - FuseBodyframe11 - 0 - - - - ... - description - 0 - 0 - FuseBodyframe12 - 0 - - - - ... - description - 0 - 0 - FuseBodyframe13 - 0 - - - - ... - description - 0 - 0 - FuseBodyframe4 - 0 - - - - ... - description - 0 - 0 - FuseBodyframe5 - 0 - - - - ... - description - 0 - 0 - FuseBodyframe6 - 0 - - - - ... - description - 0 - 0 - FuseBodyframe7 - 0 - - - - - - ... - FuseBodyframe8elem1 - FuseBodyframe9elem1 - - - - ... - FuseBodyframe9elem1 - FuseBodyframe10elem1 - - - - ... - FuseBodyframe10elem1 - FuseBodyframe11elem1 - - - - ... - FuseBodyframe11elem1 - FuseBodyframe12elem1 - - - - ... - FuseBodyframe12elem1 - FuseBodyframe13elem1 - - - - ... - FuseBodyframe13elem1 - FuseBodyframe4elem1 - - - - ... - FuseBodyframe4elem1 - FuseBodyframe5elem1 - - - - ... - FuseBodyframe5elem1 - FuseBodyframe6elem1 - - - - ... - FuseBodyframe6elem1 - FuseBodyframe7elem1 - - - -
- -vortR0 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 11.853 - 3.385 - 0 - - - -
-vortR0Bodyframe1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.0027132 - 1.8849e-10 - -0.05 - - - - - ... - fuseprof_2_1 - - - 1 - 0.0068485 - 0.011568 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.024214 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_2 - - - 1 - 0.01 - 0.032621 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.066138 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_3 - - - 1 - 0.01 - 0.047046 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.12638 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_4 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe9 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.20193 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_5 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe11 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.28899 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_6 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe13 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.38319 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_7 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe15 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.47981 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_8 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe17 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.57402 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_9 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe19 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.66107 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_10 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe21 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.73662 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_11 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe23 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.79686 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_12 - - - 1 - 0.01 - 0.047046 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe25 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.83879 - -8.352e-17 - -0.05 - - - - - ... - fuseprof_2_13 - - - 1 - 0.01 - 0.032621 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR0Bodyframe27 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.86029 - 2.2302e-10 - -0.05 - - - - - ... - fuseprof_2_14 - - - 1 - 0.0068485 - 0.011568 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - vortR0Bodyframe1 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe3 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe5 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe7 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe9 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe11 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe13 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe15 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe17 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe19 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe21 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe23 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe25 - 0 - - - - ... - description - 0 - 0 - vortR0Bodyframe27 - 0 - - - - - - ... - vortR0Bodyframe1elem1 - vortR0Bodyframe3elem1 - - - - ... - vortR0Bodyframe3elem1 - vortR0Bodyframe5elem1 - - - - ... - vortR0Bodyframe5elem1 - vortR0Bodyframe7elem1 - - - - ... - vortR0Bodyframe7elem1 - vortR0Bodyframe9elem1 - - - - ... - vortR0Bodyframe9elem1 - vortR0Bodyframe11elem1 - - - - ... - vortR0Bodyframe11elem1 - vortR0Bodyframe13elem1 - - - - ... - vortR0Bodyframe13elem1 - vortR0Bodyframe15elem1 - - - - ... - vortR0Bodyframe15elem1 - vortR0Bodyframe17elem1 - - - - ... - vortR0Bodyframe17elem1 - vortR0Bodyframe19elem1 - - - - ... - vortR0Bodyframe19elem1 - vortR0Bodyframe21elem1 - - - - ... - vortR0Bodyframe21elem1 - vortR0Bodyframe23elem1 - - - - ... - vortR0Bodyframe23elem1 - vortR0Bodyframe25elem1 - - - - ... - vortR0Bodyframe25elem1 - vortR0Bodyframe27elem1 - - - -
- -vortR1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 12.48 - 3.788 - 0 - - - -
-vortR1Bodyframe1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.0019587 - 1.46e-10 - -0.045 - - - - - ... - fuseprof_3_1 - - - 1 - 0.0059445 - 0.009337 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.01748 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_2 - - - 1 - 0.01 - 0.02665 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.047745 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_3 - - - 1 - 0.01 - 0.039732 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.091236 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_4 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe9 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.14577 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_5 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe11 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.20862 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_6 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe13 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.27662 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_7 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe15 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.34638 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_8 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe17 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.41438 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_9 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe19 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.47723 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_10 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe21 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.53176 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_11 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe23 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.57525 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_12 - - - 1 - 0.01 - 0.039732 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe25 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.60552 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_13 - - - 1 - 0.01 - 0.02665 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR1Bodyframe27 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.62104 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_3_14 - - - 1 - 0.0059445 - 0.009337 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - vortR1Bodyframe1 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe3 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe5 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe7 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe9 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe11 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe13 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe15 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe17 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe19 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe21 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe23 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe25 - 0 - - - - ... - description - 0 - 0 - vortR1Bodyframe27 - 0 - - - - - - ... - vortR1Bodyframe1elem1 - vortR1Bodyframe3elem1 - - - - ... - vortR1Bodyframe3elem1 - vortR1Bodyframe5elem1 - - - - ... - vortR1Bodyframe5elem1 - vortR1Bodyframe7elem1 - - - - ... - vortR1Bodyframe7elem1 - vortR1Bodyframe9elem1 - - - - ... - vortR1Bodyframe9elem1 - vortR1Bodyframe11elem1 - - - - ... - vortR1Bodyframe11elem1 - vortR1Bodyframe13elem1 - - - - ... - vortR1Bodyframe13elem1 - vortR1Bodyframe15elem1 - - - - ... - vortR1Bodyframe15elem1 - vortR1Bodyframe17elem1 - - - - ... - vortR1Bodyframe17elem1 - vortR1Bodyframe19elem1 - - - - ... - vortR1Bodyframe19elem1 - vortR1Bodyframe21elem1 - - - - ... - vortR1Bodyframe21elem1 - vortR1Bodyframe23elem1 - - - - ... - vortR1Bodyframe23elem1 - vortR1Bodyframe25elem1 - - - - ... - vortR1Bodyframe25elem1 - vortR1Bodyframe27elem1 - - - -
- -vortR2 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 13.23 - 4.28 - 0 - - - -
-vortR2Bodyframe1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.001201 - 6.664e-11 - -0.030266 - - - - - ... - fuseprof_4_1 - - - 1 - 0.0023536 - 0.0038407 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.010718 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_2 - - - 1 - 0.01 - 0.017112 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.029276 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_3 - - - 1 - 0.01 - 0.025768 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.055943 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_4 - - - 1 - 0.01 - 0.029931 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe9 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.089382 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_5 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe11 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.12792 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_6 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe13 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.16962 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_7 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe15 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.21238 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_8 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe17 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.25408 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_9 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe19 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.29262 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_10 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe21 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.32606 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_11 - - - 1 - 0.01 - 0.029931 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe23 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.35272 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_12 - - - 1 - 0.01 - 0.025768 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe25 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.37128 - 5.2666e-18 - -0.03 - - - - - ... - fuseprof_4_13 - - - 1 - 0.01 - 0.017112 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortR2Bodyframe27 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.3808 - 5.2736e-18 - -0.03 - - - - - ... - fuseprof_4_14 - - - 1 - 0.0020871 - 0.0025086 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - vortR2Bodyframe1 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe3 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe5 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe7 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe9 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe11 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe13 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe15 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe17 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe19 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe21 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe23 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe25 - 0 - - - - ... - description - 0 - 0 - vortR2Bodyframe27 - 0 - - - - - - ... - vortR2Bodyframe1elem1 - vortR2Bodyframe3elem1 - - - - ... - vortR2Bodyframe3elem1 - vortR2Bodyframe5elem1 - - - - ... - vortR2Bodyframe5elem1 - vortR2Bodyframe7elem1 - - - - ... - vortR2Bodyframe7elem1 - vortR2Bodyframe9elem1 - - - - ... - vortR2Bodyframe9elem1 - vortR2Bodyframe11elem1 - - - - ... - vortR2Bodyframe11elem1 - vortR2Bodyframe13elem1 - - - - ... - vortR2Bodyframe13elem1 - vortR2Bodyframe15elem1 - - - - ... - vortR2Bodyframe15elem1 - vortR2Bodyframe17elem1 - - - - ... - vortR2Bodyframe17elem1 - vortR2Bodyframe19elem1 - - - - ... - vortR2Bodyframe19elem1 - vortR2Bodyframe21elem1 - - - - ... - vortR2Bodyframe21elem1 - vortR2Bodyframe23elem1 - - - - ... - vortR2Bodyframe23elem1 - vortR2Bodyframe25elem1 - - - - ... - vortR2Bodyframe25elem1 - vortR2Bodyframe27elem1 - - - -
- -vortL0 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 11.853 - -3.385 - 0 - - - -
-vortL0Bodyframe1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.0027132 - 1.8849e-10 - -0.05 - - - - - ... - fuseprof_5_1 - - - 1 - 0.0068485 - 0.011568 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.024214 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_2 - - - 1 - 0.01 - 0.038641 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.066138 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_3 - - - 1 - 0.01 - 0.047046 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.12638 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_4 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe9 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.20193 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_5 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe11 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.28899 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_6 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe13 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.38319 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_7 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe15 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.47981 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_8 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe17 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.57402 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_9 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe19 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.66107 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_10 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe21 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.73662 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_11 - - - 1 - 0.01 - 0.05 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe23 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.79686 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_12 - - - 1 - 0.01 - 0.047046 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe25 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.83879 - -1.2308e-16 - -0.05 - - - - - ... - fuseprof_5_13 - - - 1 - 0.01 - 0.036233 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL0Bodyframe27 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.86029 - 2.2302e-10 - -0.05 - - - - - ... - fuseprof_5_14 - - - 1 - 0.0068485 - 0.011568 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - vortL0Bodyframe1 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe3 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe5 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe7 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe9 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe11 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe13 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe15 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe17 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe19 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe21 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe23 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe25 - 0 - - - - ... - description - 0 - 0 - vortL0Bodyframe27 - 0 - - - - - - ... - vortL0Bodyframe1elem1 - vortL0Bodyframe3elem1 - - - - ... - vortL0Bodyframe3elem1 - vortL0Bodyframe5elem1 - - - - ... - vortL0Bodyframe5elem1 - vortL0Bodyframe7elem1 - - - - ... - vortL0Bodyframe7elem1 - vortL0Bodyframe9elem1 - - - - ... - vortL0Bodyframe9elem1 - vortL0Bodyframe11elem1 - - - - ... - vortL0Bodyframe11elem1 - vortL0Bodyframe13elem1 - - - - ... - vortL0Bodyframe13elem1 - vortL0Bodyframe15elem1 - - - - ... - vortL0Bodyframe15elem1 - vortL0Bodyframe17elem1 - - - - ... - vortL0Bodyframe17elem1 - vortL0Bodyframe19elem1 - - - - ... - vortL0Bodyframe19elem1 - vortL0Bodyframe21elem1 - - - - ... - vortL0Bodyframe21elem1 - vortL0Bodyframe23elem1 - - - - ... - vortL0Bodyframe23elem1 - vortL0Bodyframe25elem1 - - - - ... - vortL0Bodyframe25elem1 - vortL0Bodyframe27elem1 - - - -
- -vortL1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 12.48 - -3.788 - 0 - - - -
-vortL1Bodyframe1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.0019587 - 1.46e-10 - -0.045 - - - - - ... - fuseprof_6_1 - - - 1 - 0.0059445 - 0.009337 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Bodyframe3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.01748 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_2 - - - 1 - 0.01 - 0.034037 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Frame62 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.038792 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_3 - - - 1 - 0.010227 - 0.042305 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Bodyframe6 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.06796 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_4 - - - 1 - 0.01 - 0.04363 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Bodyframe7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.091236 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_5 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Bodyframe9 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.14577 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_6 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Bodyframe13 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.27662 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_7 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Bodyframe17 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.41438 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_8 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Bodyframe21 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.53176 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_9 - - - 1 - 0.01 - 0.045 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Bodyframe23 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.57525 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_10 - - - 1 - 0.01 - 0.039732 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Bodyframe25 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.60552 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_11 - - - 1 - 0.01 - 0.02665 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL1Bodyframe27 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.62104 - 2.3583e-17 - -0.045 - - - - - ... - fuseprof_6_12 - - - 1 - 0.0059445 - 0.009337 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - vortL1Bodyframe1 - 0 - - - - ... - description - 0 - 0 - vortL1Bodyframe3 - 0 - - - - ... - description - 0 - 0 - vortL1Frame62 - 0 - - - - ... - description - 0 - 0 - vortL1Bodyframe6 - 0 - - - - ... - description - 0 - 0 - vortL1Bodyframe7 - 0 - - - - ... - description - 0 - 0 - vortL1Bodyframe9 - 0 - - - - ... - description - 0 - 0 - vortL1Bodyframe13 - 0 - - - - ... - description - 0 - 0 - vortL1Bodyframe17 - 0 - - - - ... - description - 0 - 0 - vortL1Bodyframe21 - 0 - - - - ... - description - 0 - 0 - vortL1Bodyframe23 - 0 - - - - ... - description - 0 - 0 - vortL1Bodyframe25 - 0 - - - - ... - description - 0 - 0 - vortL1Bodyframe27 - 0 - - - - - - ... - vortL1Bodyframe1elem1 - vortL1Bodyframe3elem1 - - - - ... - vortL1Bodyframe3elem1 - vortL1Frame62elem1 - - - - ... - vortL1Frame62elem1 - vortL1Bodyframe6elem1 - - - - ... - vortL1Bodyframe6elem1 - vortL1Bodyframe7elem1 - - - - ... - vortL1Bodyframe7elem1 - vortL1Bodyframe9elem1 - - - - ... - vortL1Bodyframe9elem1 - vortL1Bodyframe13elem1 - - - - ... - vortL1Bodyframe13elem1 - vortL1Bodyframe17elem1 - - - - ... - vortL1Bodyframe17elem1 - vortL1Bodyframe21elem1 - - - - ... - vortL1Bodyframe21elem1 - vortL1Bodyframe23elem1 - - - - ... - vortL1Bodyframe23elem1 - vortL1Bodyframe25elem1 - - - - ... - vortL1Bodyframe25elem1 - vortL1Bodyframe27elem1 - - - -
- -vortL2 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 13.23 - -4.28 - 0 - - - -
-vortL2Bodyframe1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.001201 - 6.664e-11 - -0.03 - - - - - ... - fuseprof_7_1 - - - 1 - 0.00262 - 0.0035744 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.010718 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_2 - - - 1 - 0.01 - 0.01951 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.029276 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_3 - - - 1 - 0.01 - 0.0271 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.055943 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_4 - - - 1 - 0.01 - 0.029931 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe9 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.089382 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_5 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe11 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.12792 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_6 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe13 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.16962 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_7 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe15 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.21238 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_8 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe17 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.25408 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_9 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe19 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.29262 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_10 - - - 1 - 0.01 - 0.03 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe21 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.32606 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_11 - - - 1 - 0.01 - 0.029931 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe23 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.35272 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_12 - - - 1 - 0.01 - 0.025768 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe25 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.37128 - 1.0533e-17 - -0.03 - - - - - ... - fuseprof_7_13 - - - 1 - 0.01 - 0.017112 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-vortL2Bodyframe27 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.3808 - 1.0519e-17 - -0.03 - - - - - ... - fuseprof_7_14 - - - 1 - 0.0023536 - 0.0025086 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - vortL2Bodyframe1 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe3 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe5 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe7 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe9 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe11 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe13 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe15 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe17 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe19 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe21 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe23 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe25 - 0 - - - - ... - description - 0 - 0 - vortL2Bodyframe27 - 0 - - - - - - ... - vortL2Bodyframe1elem1 - vortL2Bodyframe3elem1 - - - - ... - vortL2Bodyframe3elem1 - vortL2Bodyframe5elem1 - - - - ... - vortL2Bodyframe5elem1 - vortL2Bodyframe7elem1 - - - - ... - vortL2Bodyframe7elem1 - vortL2Bodyframe9elem1 - - - - ... - vortL2Bodyframe9elem1 - vortL2Bodyframe11elem1 - - - - ... - vortL2Bodyframe11elem1 - vortL2Bodyframe13elem1 - - - - ... - vortL2Bodyframe13elem1 - vortL2Bodyframe15elem1 - - - - ... - vortL2Bodyframe15elem1 - vortL2Bodyframe17elem1 - - - - ... - vortL2Bodyframe17elem1 - vortL2Bodyframe19elem1 - - - - ... - vortL2Bodyframe19elem1 - vortL2Bodyframe21elem1 - - - - ... - vortL2Bodyframe21elem1 - vortL2Bodyframe23elem1 - - - - ... - vortL2Bodyframe23elem1 - vortL2Bodyframe25elem1 - - - - ... - vortL2Bodyframe25elem1 - vortL2Bodyframe27elem1 - - - -
-
- - - Fin - Fuse - description - - - 1 - 1 - 1 - - - 90.0002 - 0 - -0 - - - 9.3754 - 4.0681e-17 - 0.6644 - - - -
-FinWingSection2 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0 - 0 - 0 - - - - - ... - foil_1_2 - - - - 4.8601 - 4.8601 - 4.8601 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-FinWingSection1 -description - - - 1 - 1 - 1 - - - -0 - 0 - -0.90224 - - - 4.4688 - 2.0387 - 0 - - - - - ... - foil_1_1 - - - - 1.156 - 1.156 - 1.156 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - FinWingSection1 - 0 - - - - ... - description - 0 - 0 - FinWingSection2 - 0 - - - - - - ... - FinWingSection1elem1 - FinWingSection2elem1 - - - -
- - Wing - Fuse - description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 5.0049 - 0 - -0.064604 - - - -
-WingWingSection7 -description - - - 1 - 1 - 1 - - - -0 - -1 - -0 - - - -0.3 - 0 - -0.01173 - - - - - ... - foil_2_7 - - - - 10.5 - 10.5 - 10.5 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection6 -description - - - 1 - 1 - 1 - - - -0 - -0.97781 - -0 - - - -0.2117 - 0.8 - -0.026842 - - - - - ... - foil_2_6 - - - - 10.155 - 10.155 - 10.155 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection5 -description - - - 1 - 1 - 1 - - - -0 - -0.90459 - -0 - - - -0.19243 - 1 - -0.023908 - - - - - ... - foil_2_5 - - - - 10.0503 - 10.0503 - 10.0503 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection4 -description - - - 1 - 1 - 1 - - - -0 - -0.76077 - -0 - - - -0.025661 - 1.2 - -0.0070237 - - - - - ... - foil_2_4 - - - - 9.7978 - 9.7978 - 9.7978 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection3 -description - - - 1 - 1 - 1 - - - -0 - -0.57548 - -0 - - - 0.22545 - 1.3 - 0.021771 - - - - - ... - foil_2_3 - - - - 9.5037 - 9.5037 - 9.5037 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection2 -description - - - 1 - 1 - 1 - - - -0 - -0.0028329 - -0 - - - 4.9966 - 2.201 - 0.06439 - - - - - ... - foil_2_2 - - - - 4.3485 - 4.3485 - 4.3485 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-WingWingSection1 -description - - - 1 - 1 - 1 - - - -0 - -0.01789 - -0 - - - 8.5797 - 4.526 - 0.064365 - - - - - ... - foil_2_1 - - - - 0.76543 - 0.76543 - 0.76543 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - WingWingSection1 - 0 - - - - ... - description - 0 - 0 - WingWingSection2 - 0 - - - - ... - description - 0 - 0 - WingWingSection3 - 0 - - - - ... - description - 0 - 0 - WingWingSection4 - 0 - - - - ... - description - 0 - 0 - WingWingSection5 - 0 - - - - ... - description - 0 - 0 - WingWingSection6 - 0 - - - - ... - description - 0 - 0 - WingWingSection7 - 0 - - - - - - ... - WingWingSection1elem1 - WingWingSection2elem1 - - - - ... - WingWingSection2elem1 - WingWingSection3elem1 - - - - ... - WingWingSection3elem1 - WingWingSection4elem1 - - - - ... - WingWingSection4elem1 - WingWingSection5elem1 - - - - ... - WingWingSection5elem1 - WingWingSection6elem1 - - - - ... - WingWingSection6elem1 - WingWingSection7elem1 - - - -
-
- - - - aeromap_empty - Common default aeroMap - - ISA - - - 0.0 - 0.3 - 0.0 - 0.0 - - - - - - -
-
- - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.356731 ;0.681350 ;0.900971 ;1.000000 ;0.927341 ;0.715967 ;0.410089 ;0.000000 ;-0.410089 ;-0.715967 ;-0.927341 ;-1.000000 ;-0.900971 ;-0.681350 ;-0.356731 ;0.000000 - -1.000000 ;-0.934453 ;-0.732932 ;-0.436042 ;-0.028088 ;0.370647 ;0.692584 ;0.906294 ;1.000000 ;0.906294 ;0.692584 ;0.370647 ;-0.028088 ;-0.436042 ;-0.732932 ;-0.934453 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.101997 ;0.212427 ;0.273184 ;0.385884 ;0.493594 ;0.547329 ;0.641343 ;0.712920 ;0.780710 ;0.840490 ;0.878360 ;0.931785 ;0.963096 ;0.983662 ;0.995993 ;1.000000 ;0.993929 ;0.984069 ;0.958805 ;0.924537 ;0.863141 ;0.822730 ;0.760920 ;0.701053 ;0.620487 ;0.562412 ;0.490214 ;0.381180 ;0.284666 ;0.186542 ;0.105565 ;0.000000 ;-0.105565 ;-0.186542 ;-0.284666 ;-0.381180 ;-0.490214 ;-0.562412 ;-0.620487 ;-0.701053 ;-0.760920 ;-0.822730 ;-0.863141 ;-0.924537 ;-0.958805 ;-0.984069 ;-0.993929 ;-1.000000 ;-0.995993 ;-0.983662 ;-0.963096 ;-0.931785 ;-0.878360 ;-0.840490 ;-0.780710 ;-0.712920 ;-0.641343 ;-0.547329 ;-0.493594 ;-0.385884 ;-0.273184 ;-0.212427 ;-0.101997 ;0.000000 - -1.000000 ;-0.994941 ;-0.977333 ;-0.962107 ;-0.922702 ;-0.869830 ;-0.837065 ;-0.767378 ;-0.701384 ;-0.624949 ;-0.541955 ;-0.478096 ;-0.362970 ;-0.269138 ;-0.180139 ;-0.089468 ;0.002362 ;0.109770 ;0.177772 ;0.284011 ;0.381068 ;0.504927 ;0.568414 ;0.648824 ;0.713109 ;0.784196 ;0.826855 ;0.871582 ;0.924420 ;0.958446 ;0.982457 ;0.994426 ;1.000000 ;0.994426 ;0.982457 ;0.958446 ;0.924420 ;0.871582 ;0.826855 ;0.784196 ;0.713109 ;0.648824 ;0.568414 ;0.504927 ;0.381068 ;0.284011 ;0.177772 ;0.109770 ;0.002362 ;-0.089468 ;-0.180139 ;-0.269138 ;-0.362970 ;-0.478096 ;-0.541955 ;-0.624949 ;-0.701384 ;-0.767378 ;-0.837065 ;-0.869830 ;-0.922702 ;-0.962107 ;-0.977333 ;-0.994941 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.092308 ;0.200445 ;0.285168 ;0.387557 ;0.483595 ;0.558191 ;0.642226 ;0.704274 ;0.768292 ;0.837124 ;0.881371 ;0.926751 ;0.955251 ;0.981550 ;0.995107 ;1.000000 ;0.997182 ;0.988602 ;0.971675 ;0.949441 ;0.923038 ;0.890727 ;0.846193 ;0.793927 ;0.746097 ;0.662488 ;0.590859 ;0.521614 ;0.485289 ;0.440362 ;0.386930 ;0.317076 ;0.252868 ;0.210895 ;0.164928 ;0.082272 ;0.000000 ;-0.082272 ;-0.164928 ;-0.210895 ;-0.252868 ;-0.317076 ;-0.386930 ;-0.440362 ;-0.485289 ;-0.521614 ;-0.590859 ;-0.662488 ;-0.746097 ;-0.793927 ;-0.846193 ;-0.890727 ;-0.923038 ;-0.949441 ;-0.971675 ;-0.988602 ;-0.997182 ;-1.000000 ;-0.995107 ;-0.981550 ;-0.955251 ;-0.926751 ;-0.881371 ;-0.837124 ;-0.768292 ;-0.704274 ;-0.642226 ;-0.558191 ;-0.483595 ;-0.387557 ;-0.285168 ;-0.200445 ;-0.092308 ;0.000000 - -1.000000 ;-0.996385 ;-0.982562 ;-0.964252 ;-0.932651 ;-0.892501 ;-0.853178 ;-0.798676 ;-0.749855 ;-0.689635 ;-0.609333 ;-0.545008 ;-0.461553 ;-0.392667 ;-0.302470 ;-0.222818 ;-0.132647 ;-0.071343 ;-0.004952 ;0.070452 ;0.138742 ;0.200975 ;0.262407 ;0.331314 ;0.397413 ;0.448280 ;0.521503 ;0.572259 ;0.613111 ;0.691389 ;0.762881 ;0.827333 ;0.890165 ;0.932556 ;0.953889 ;0.972203 ;0.993229 ;1.000000 ;0.993229 ;0.972203 ;0.953889 ;0.932556 ;0.890165 ;0.827333 ;0.762881 ;0.691389 ;0.613111 ;0.572259 ;0.521503 ;0.448280 ;0.397413 ;0.331314 ;0.262407 ;0.200975 ;0.138742 ;0.070452 ;-0.004952 ;-0.071343 ;-0.132647 ;-0.222818 ;-0.302470 ;-0.392667 ;-0.461553 ;-0.545008 ;-0.609333 ;-0.689635 ;-0.749855 ;-0.798676 ;-0.853178 ;-0.892501 ;-0.932651 ;-0.964252 ;-0.982562 ;-0.996385 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.092308 ;0.200445 ;0.285168 ;0.387557 ;0.483595 ;0.558191 ;0.642226 ;0.704274 ;0.768292 ;0.837124 ;0.881371 ;0.926751 ;0.955251 ;0.981550 ;0.995107 ;1.000000 ;0.994869 ;0.978884 ;0.954558 ;0.923038 ;0.875859 ;0.846193 ;0.811480 ;0.775708 ;0.715895 ;0.635328 ;0.603824 ;0.573448 ;0.527281 ;0.496751 ;0.460219 ;0.407825 ;0.361301 ;0.302971 ;0.253053 ;0.199490 ;0.132157 ;0.068980 ;0.000000 ;-0.068980 ;-0.132157 ;-0.199490 ;-0.253053 ;-0.302971 ;-0.361301 ;-0.407825 ;-0.460219 ;-0.496751 ;-0.527281 ;-0.573448 ;-0.603824 ;-0.635328 ;-0.715895 ;-0.775708 ;-0.811480 ;-0.846193 ;-0.875859 ;-0.923038 ;-0.954558 ;-0.978884 ;-0.994869 ;-1.000000 ;-0.995107 ;-0.981550 ;-0.955251 ;-0.926751 ;-0.881371 ;-0.837124 ;-0.768292 ;-0.704274 ;-0.642226 ;-0.558191 ;-0.483595 ;-0.387557 ;-0.285168 ;-0.200445 ;-0.092308 ;0.000000 - -1.000000 ;-0.996782 ;-0.984579 ;-0.968415 ;-0.940519 ;-0.905075 ;-0.870361 ;-0.822248 ;-0.779150 ;-0.725989 ;-0.655100 ;-0.598315 ;-0.524642 ;-0.463831 ;-0.384206 ;-0.313891 ;-0.234265 ;-0.159435 ;-0.078837 ;-0.005731 ;0.061964 ;0.138408 ;0.177695 ;0.217921 ;0.254416 ;0.306830 ;0.364666 ;0.493246 ;0.577696 ;0.670688 ;0.719179 ;0.768216 ;0.826013 ;0.867762 ;0.910010 ;0.938680 ;0.962730 ;0.984110 ;0.995869 ;1.000000 ;0.995869 ;0.984110 ;0.962730 ;0.938680 ;0.910010 ;0.867762 ;0.826013 ;0.768216 ;0.719179 ;0.670688 ;0.577696 ;0.493246 ;0.364666 ;0.306830 ;0.254416 ;0.217921 ;0.177695 ;0.138408 ;0.061964 ;-0.005731 ;-0.078837 ;-0.159435 ;-0.234265 ;-0.313891 ;-0.384206 ;-0.463831 ;-0.524642 ;-0.598315 ;-0.655100 ;-0.725989 ;-0.779150 ;-0.822248 ;-0.870361 ;-0.905075 ;-0.940519 ;-0.968415 ;-0.984579 ;-0.996782 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.074533 ;0.166598 ;0.242920 ;0.323690 ;0.409999 ;0.482461 ;0.563222 ;0.614859 ;0.679415 ;0.745057 ;0.794948 ;0.849763 ;0.885600 ;0.932409 ;0.971787 ;1.000000 ;0.961370 ;0.916165 ;0.876299 ;0.839901 ;0.789302 ;0.739141 ;0.674895 ;0.597140 ;0.527856 ;0.506622 ;0.491893 ;0.480141 ;0.454098 ;0.432346 ;0.405378 ;0.375356 ;0.343563 ;0.299266 ;0.258000 ;0.211290 ;0.158507 ;0.109830 ;0.063182 ;0.000000 ;-0.063182 ;-0.109830 ;-0.158507 ;-0.211290 ;-0.258000 ;-0.299266 ;-0.343563 ;-0.375356 ;-0.405378 ;-0.432346 ;-0.454098 ;-0.480141 ;-0.491893 ;-0.506622 ;-0.527856 ;-0.597140 ;-0.674895 ;-0.739141 ;-0.789302 ;-0.839901 ;-0.876299 ;-0.916165 ;-0.961370 ;-1.000000 ;-0.971787 ;-0.932409 ;-0.885600 ;-0.849763 ;-0.794948 ;-0.745057 ;-0.679415 ;-0.614859 ;-0.563222 ;-0.482461 ;-0.409999 ;-0.323690 ;-0.242920 ;-0.166598 ;-0.074533 ;0.000000 - -1.000000 ;-0.997958 ;-0.989551 ;-0.977512 ;-0.959686 ;-0.934269 ;-0.907429 ;-0.870853 ;-0.843296 ;-0.803542 ;-0.755906 ;-0.713731 ;-0.659723 ;-0.618792 ;-0.556027 ;-0.491028 ;-0.433209 ;0.203349 ;0.272417 ;0.324497 ;0.365681 ;0.415519 ;0.458258 ;0.505364 ;0.553095 ;0.588561 ;0.682577 ;0.722945 ;0.747317 ;0.789632 ;0.817674 ;0.846657 ;0.873618 ;0.897668 ;0.925134 ;0.945918 ;0.964592 ;0.980403 ;0.990745 ;0.996954 ;1.000000 ;0.996954 ;0.990745 ;0.980403 ;0.964592 ;0.945918 ;0.925134 ;0.897668 ;0.873618 ;0.846657 ;0.817674 ;0.789632 ;0.747317 ;0.722945 ;0.682577 ;0.588561 ;0.553095 ;0.505364 ;0.458258 ;0.415519 ;0.365681 ;0.324497 ;0.272417 ;0.203349 ;-0.433209 ;-0.491028 ;-0.556027 ;-0.618792 ;-0.659723 ;-0.713731 ;-0.755906 ;-0.803542 ;-0.843296 ;-0.870853 ;-0.907429 ;-0.934269 ;-0.959686 ;-0.977512 ;-0.989551 ;-0.997958 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.081493 ;0.157125 ;0.231853 ;0.305586 ;0.379064 ;0.448283 ;0.527511 ;0.585025 ;0.645655 ;0.699888 ;0.761319 ;0.814628 ;0.869177 ;0.910994 ;0.947237 ;0.998451 ;1.000000 ;0.938632 ;0.897255 ;0.828069 ;0.766294 ;0.713218 ;0.628346 ;0.543731 ;0.457444 ;0.432526 ;0.424178 ;0.409891 ;0.392905 ;0.373507 ;0.349953 ;0.317403 ;0.283616 ;0.240909 ;0.197392 ;0.154279 ;0.101141 ;0.049780 ;0.000000 ;-0.049780 ;-0.101141 ;-0.154279 ;-0.197392 ;-0.240909 ;-0.283616 ;-0.317403 ;-0.349953 ;-0.373507 ;-0.392905 ;-0.409891 ;-0.424178 ;-0.432526 ;-0.457444 ;-0.543731 ;-0.628346 ;-0.713218 ;-0.766294 ;-0.828069 ;-0.897255 ;-0.938632 ;-1.000000 ;-0.998451 ;-0.947237 ;-0.910994 ;-0.869177 ;-0.814628 ;-0.761319 ;-0.699888 ;-0.645655 ;-0.585025 ;-0.527511 ;-0.448283 ;-0.379064 ;-0.305586 ;-0.231853 ;-0.157125 ;-0.081493 ;0.000000 - -1.000000 ;-0.997851 ;-0.991895 ;-0.982210 ;-0.968829 ;-0.951537 ;-0.931393 ;-0.903386 ;-0.879423 ;-0.850475 ;-0.820933 ;-0.782982 ;-0.745274 ;-0.701266 ;-0.662972 ;-0.625818 ;-0.567651 ;0.327932 ;0.397850 ;0.439394 ;0.499059 ;0.544292 ;0.578260 ;0.624767 ;0.663043 ;0.694912 ;0.809315 ;0.832961 ;0.856953 ;0.877179 ;0.895089 ;0.912574 ;0.931882 ;0.947922 ;0.963933 ;0.976509 ;0.985986 ;0.994095 ;0.998581 ;1.000000 ;0.998581 ;0.994095 ;0.985986 ;0.976509 ;0.963933 ;0.947922 ;0.931882 ;0.912574 ;0.895089 ;0.877179 ;0.856953 ;0.832961 ;0.809315 ;0.694912 ;0.663043 ;0.624767 ;0.578260 ;0.544292 ;0.499059 ;0.439394 ;0.397850 ;0.327932 ;-0.567651 ;-0.625818 ;-0.662972 ;-0.701266 ;-0.745274 ;-0.782982 ;-0.820933 ;-0.850475 ;-0.879423 ;-0.903386 ;-0.931393 ;-0.951537 ;-0.968829 ;-0.982210 ;-0.991895 ;-0.997851 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.065470 ;0.098308 ;0.205443 ;0.290148 ;0.346993 ;0.395736 ;0.451467 ;0.511442 ;0.562912 ;0.617914 ;0.664263 ;0.713218 ;0.759560 ;0.799170 ;0.835362 ;0.870969 ;1.000000 ;0.997350 ;0.987557 ;0.973572 ;0.948501 ;0.924534 ;0.894721 ;0.856477 ;0.810851 ;0.755314 ;0.698792 ;0.638217 ;0.576545 ;0.511862 ;0.437457 ;0.352936 ;0.273452 ;0.258739 ;0.252984 ;0.242572 ;0.228733 ;0.209419 ;0.187679 ;0.000000 ;-0.187679 ;-0.209419 ;-0.228733 ;-0.242572 ;-0.252984 ;-0.258739 ;-0.273452 ;-0.352936 ;-0.437457 ;-0.511862 ;-0.576545 ;-0.638217 ;-0.698792 ;-0.755314 ;-0.810851 ;-0.856477 ;-0.894721 ;-0.924534 ;-0.948501 ;-0.973572 ;-0.987557 ;-0.997350 ;-1.000000 ;-0.870969 ;-0.835362 ;-0.799170 ;-0.759560 ;-0.713218 ;-0.664263 ;-0.617914 ;-0.562912 ;-0.511442 ;-0.451467 ;-0.395736 ;-0.346993 ;-0.290148 ;-0.205443 ;-0.098308 ;-0.065470 ;0.000000 - -1.000000 ;-0.995674 ;-0.987498 ;-0.972776 ;-0.953410 ;-0.936343 ;-0.918921 ;-0.895638 ;-0.866198 ;-0.836901 ;-0.800947 ;-0.766346 ;-0.724766 ;-0.679677 ;-0.635621 ;-0.589716 ;-0.537596 ;-0.092689 ;-0.033325 ;0.041898 ;0.105323 ;0.184227 ;0.241627 ;0.300149 ;0.362183 ;0.423906 ;0.486525 ;0.540040 ;0.588764 ;0.630904 ;0.668355 ;0.704301 ;0.736802 ;0.760240 ;0.844601 ;0.862299 ;0.881960 ;0.900110 ;0.918772 ;0.934668 ;1.000000 ;0.934668 ;0.918772 ;0.900110 ;0.881960 ;0.862299 ;0.844601 ;0.760240 ;0.736802 ;0.704301 ;0.668355 ;0.630904 ;0.588764 ;0.540040 ;0.486525 ;0.423906 ;0.362183 ;0.300149 ;0.241627 ;0.184227 ;0.105323 ;0.041898 ;-0.033325 ;-0.092689 ;-0.537596 ;-0.589716 ;-0.635621 ;-0.679677 ;-0.724766 ;-0.766346 ;-0.800947 ;-0.836901 ;-0.866198 ;-0.895638 ;-0.918921 ;-0.936343 ;-0.953410 ;-0.972776 ;-0.987498 ;-0.995674 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.116069 ;0.165874 ;0.210169 ;0.250680 ;0.282152 ;0.294355 ;0.427995 ;0.507301 ;0.591260 ;0.657512 ;0.719435 ;0.776185 ;0.826860 ;0.873355 ;0.914988 ;0.991416 ;0.998705 ;1.000000 ;0.994988 ;0.980153 ;0.961389 ;0.929761 ;0.900097 ;0.854513 ;0.814586 ;0.757894 ;0.702674 ;0.621532 ;0.542308 ;0.460098 ;0.371168 ;0.296171 ;0.273800 ;0.265420 ;0.251031 ;0.232882 ;0.214263 ;0.160567 ;0.000000 ;-0.160567 ;-0.214263 ;-0.232882 ;-0.251031 ;-0.265420 ;-0.273800 ;-0.296171 ;-0.371168 ;-0.460098 ;-0.542308 ;-0.621532 ;-0.702674 ;-0.757894 ;-0.814586 ;-0.854513 ;-0.900097 ;-0.929761 ;-0.961389 ;-0.980153 ;-0.994988 ;-1.000000 ;-0.998705 ;-0.991416 ;-0.914988 ;-0.873355 ;-0.826860 ;-0.776185 ;-0.719435 ;-0.657512 ;-0.591260 ;-0.507301 ;-0.427995 ;-0.294355 ;-0.282152 ;-0.250680 ;-0.210169 ;-0.165874 ;-0.116069 ;0.000000 - -1.000000 ;-0.999844 ;-0.997284 ;-0.990135 ;-0.977851 ;-0.960555 ;-0.948182 ;-0.757041 ;-0.724639 ;-0.681238 ;-0.639122 ;-0.592157 ;-0.541243 ;-0.487207 ;-0.426637 ;-0.358702 ;-0.134702 ;-0.070707 ;-0.006058 ;0.058402 ;0.136743 ;0.198593 ;0.273470 ;0.327893 ;0.395403 ;0.444257 ;0.502560 ;0.550186 ;0.608048 ;0.653699 ;0.691974 ;0.724546 ;0.745703 ;0.854415 ;0.876334 ;0.899980 ;0.920881 ;0.937247 ;0.971436 ;1.000000 ;0.971436 ;0.937247 ;0.920881 ;0.899980 ;0.876334 ;0.854415 ;0.745703 ;0.724546 ;0.691974 ;0.653699 ;0.608048 ;0.550186 ;0.502560 ;0.444257 ;0.395403 ;0.327893 ;0.273470 ;0.198593 ;0.136743 ;0.058402 ;-0.006058 ;-0.070707 ;-0.134702 ;-0.358702 ;-0.426637 ;-0.487207 ;-0.541243 ;-0.592157 ;-0.639122 ;-0.681238 ;-0.724639 ;-0.757041 ;-0.948182 ;-0.960555 ;-0.977851 ;-0.990135 ;-0.997284 ;-0.999844 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.071171 ;0.140562 ;0.206501 ;0.260555 ;0.301487 ;0.330392 ;0.363373 ;0.397925 ;0.432044 ;0.504360 ;0.553275 ;0.586755 ;0.655184 ;0.738586 ;0.783190 ;0.832261 ;0.874077 ;0.907870 ;0.941029 ;0.963853 ;0.981233 ;0.995161 ;1.000000 ;0.972163 ;0.953078 ;0.929404 ;0.901189 ;0.869998 ;0.834016 ;0.796919 ;0.753639 ;0.691960 ;0.625010 ;0.543461 ;0.474944 ;0.385089 ;0.314314 ;0.243735 ;0.121367 ;0.000000 ;-0.121367 ;-0.243735 ;-0.314314 ;-0.385089 ;-0.474944 ;-0.543461 ;-0.625010 ;-0.691960 ;-0.753639 ;-0.796919 ;-0.834016 ;-0.869998 ;-0.901189 ;-0.929404 ;-0.953078 ;-0.972163 ;-1.000000 ;-0.995161 ;-0.981233 ;-0.963853 ;-0.941029 ;-0.907870 ;-0.874077 ;-0.832261 ;-0.783190 ;-0.738586 ;-0.655184 ;-0.586755 ;-0.553275 ;-0.504360 ;-0.432044 ;-0.397925 ;-0.363373 ;-0.330392 ;-0.301487 ;-0.260555 ;-0.206501 ;-0.140562 ;-0.071171 ;0.000000 - -1.000000 ;-0.999645 ;-0.995506 ;-0.987156 ;-0.974818 ;-0.958205 ;-0.941317 ;-0.916746 ;-0.884982 ;-0.847547 ;-0.816842 ;-0.787988 ;-0.764466 ;-0.708230 ;-0.628899 ;-0.579192 ;-0.512789 ;-0.443125 ;-0.374163 ;-0.289017 ;-0.212799 ;-0.134885 ;-0.038010 ;0.178239 ;0.314405 ;0.378784 ;0.441457 ;0.502336 ;0.558646 ;0.613904 ;0.663002 ;0.712599 ;0.772350 ;0.825827 ;0.878331 ;0.913497 ;0.949017 ;0.969372 ;0.983502 ;0.995887 ;1.000000 ;0.995887 ;0.983502 ;0.969372 ;0.949017 ;0.913497 ;0.878331 ;0.825827 ;0.772350 ;0.712599 ;0.663002 ;0.613904 ;0.558646 ;0.502336 ;0.441457 ;0.378784 ;0.314405 ;0.178239 ;-0.038010 ;-0.134885 ;-0.212799 ;-0.289017 ;-0.374163 ;-0.443125 ;-0.512789 ;-0.579192 ;-0.628899 ;-0.708230 ;-0.764466 ;-0.787988 ;-0.816842 ;-0.847547 ;-0.884982 ;-0.916746 ;-0.941317 ;-0.958205 ;-0.974818 ;-0.987156 ;-0.995506 ;-0.999645 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.094559 ;0.194840 ;0.315604 ;0.399753 ;0.476736 ;0.566456 ;0.645002 ;0.724037 ;0.786724 ;0.853648 ;0.899178 ;0.933188 ;0.961558 ;0.982176 ;0.994836 ;1.000000 ;0.998753 ;0.986527 ;0.966686 ;0.939121 ;0.899226 ;0.854380 ;0.797285 ;0.733876 ;0.672793 ;0.595652 ;0.532693 ;0.474533 ;0.396166 ;0.320466 ;0.215536 ;0.116975 ;0.000000 ;-0.116975 ;-0.215536 ;-0.320466 ;-0.396166 ;-0.474533 ;-0.532693 ;-0.595652 ;-0.672793 ;-0.733876 ;-0.797285 ;-0.854380 ;-0.899226 ;-0.939121 ;-0.966686 ;-0.986527 ;-0.998753 ;-1.000000 ;-0.994836 ;-0.982176 ;-0.961558 ;-0.933188 ;-0.899178 ;-0.853648 ;-0.786724 ;-0.724037 ;-0.645002 ;-0.566456 ;-0.476736 ;-0.399753 ;-0.315604 ;-0.194840 ;-0.094559 ;0.000000 - -1.000000 ;-0.996325 ;-0.983429 ;-0.953683 ;-0.923186 ;-0.887087 ;-0.834682 ;-0.778580 ;-0.711107 ;-0.645522 ;-0.557216 ;-0.479388 ;-0.404613 ;-0.321349 ;-0.233614 ;-0.142905 ;-0.030300 ;0.027357 ;0.161922 ;0.267757 ;0.365500 ;0.467896 ;0.556252 ;0.645809 ;0.726637 ;0.791221 ;0.855431 ;0.895995 ;0.926331 ;0.956802 ;0.976555 ;0.990514 ;0.995654 ;1.000000 ;0.995654 ;0.990514 ;0.976555 ;0.956802 ;0.926331 ;0.895995 ;0.855431 ;0.791221 ;0.726637 ;0.645809 ;0.556252 ;0.467896 ;0.365500 ;0.267757 ;0.161922 ;0.027357 ;-0.030300 ;-0.142905 ;-0.233614 ;-0.321349 ;-0.404613 ;-0.479388 ;-0.557216 ;-0.645522 ;-0.711107 ;-0.778580 ;-0.834682 ;-0.887087 ;-0.923186 ;-0.953683 ;-0.983429 ;-0.996325 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.383223 ;0.716529 ;0.943843 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.943843 ;0.716529 ;0.383223 ;0.000000 ;-0.383223 ;-0.716529 ;-0.943843 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.943843 ;-0.716529 ;-0.383223 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.383223 ;0.716529 ;0.943843 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.943843 ;0.716529 ;0.383223 ;0.000000 ;-0.383223 ;-0.716529 ;-0.943843 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.943843 ;-0.716529 ;-0.383223 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.427688 ;0.785077 ;0.987543 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.987543 ;0.785077 ;0.427688 ;0.000000 ;-0.427688 ;-0.785077 ;-0.987543 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.987543 ;-0.785077 ;-0.427688 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.415481 ;0.766804 ;0.978314 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.978314 ;0.766804 ;0.415481 ;0.000000 ;-0.415481 ;-0.766804 ;-0.978314 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.978314 ;-0.766804 ;-0.415481 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.348471 ;0.659520 ;0.892910 ;0.999007 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.999007 ;0.892910 ;0.659520 ;0.348471 ;0.000000 ;-0.348471 ;-0.659520 ;-0.892910 ;-0.999007 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999007 ;-0.892910 ;-0.659520 ;-0.348471 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.252703 ;0.490532 ;0.698785 ;0.862963 ;0.968426 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.968426 ;0.862963 ;0.698785 ;0.490532 ;0.252703 ;0.000000 ;-0.252703 ;-0.490532 ;-0.698785 ;-0.862963 ;-0.968426 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.968426 ;-0.862963 ;-0.698785 ;-0.490532 ;-0.252703 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000000 ;0.346671 ;0.652254 ;0.871644 ;0.976146 ;1.000000 ;0.995597 ;0.990221 ;0.979203 ;0.990221 ;0.995597 ;1.000000 ;0.976146 ;0.871644 ;0.652254 ;0.346671 ;-0.000000 ;-0.346671 ;-0.652254 ;-0.871644 ;-0.976146 ;-1.000000 ;-0.995597 ;-0.990221 ;-0.979203 ;-0.990221 ;-0.995597 ;-1.000000 ;-0.976146 ;-0.871644 ;-0.652254 ;-0.346671 ;0.000000 - -1.000000 ;-0.980685 ;-0.923606 ;-0.831536 ;-0.707915 ;-0.556946 ;-0.383475 ;-0.194869 ;0.000001 ;0.194871 ;0.383477 ;0.556948 ;0.707917 ;0.831538 ;0.923608 ;0.980687 ;1.000000 ;0.980687 ;0.923608 ;0.831538 ;0.707917 ;0.556948 ;0.383477 ;0.194871 ;0.000001 ;-0.194869 ;-0.383475 ;-0.556946 ;-0.707915 ;-0.831536 ;-0.923606 ;-0.980685 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.400797 ;0.744261 ;0.964329 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.964329 ;0.744261 ;0.400797 ;0.000000 ;-0.400797 ;-0.744261 ;-0.964329 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.964329 ;-0.744261 ;-0.400797 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.406763 ;0.753491 ;0.970373 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970373 ;0.753491 ;0.406763 ;0.000000 ;-0.406763 ;-0.753491 ;-0.970373 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970373 ;-0.753491 ;-0.406763 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.383223 ;0.716529 ;0.943843 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.943843 ;0.716529 ;0.383223 ;0.000000 ;-0.383223 ;-0.716529 ;-0.943843 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.943843 ;-0.716529 ;-0.383223 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.315899 ;0.603796 ;0.834594 ;0.975626 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.975626 ;0.834594 ;0.603796 ;0.315899 ;0.000000 ;-0.315899 ;-0.603796 ;-0.834594 ;-0.975626 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.975626 ;-0.834594 ;-0.603796 ;-0.315899 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.243825 ;0.474163 ;0.677755 ;0.841697 ;0.953330 ;0.999539 ;1.000000 ;1.000000 ;1.000000 ;0.999539 ;0.953330 ;0.841697 ;0.677755 ;0.474163 ;0.243825 ;0.000000 ;-0.243825 ;-0.474163 ;-0.677755 ;-0.841697 ;-0.953330 ;-0.999539 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.999539 ;-0.953330 ;-0.841697 ;-0.677755 ;-0.474163 ;-0.243825 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334612 ;0.636061 ;0.869229 ;0.992613 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992613 ;0.869229 ;0.636061 ;0.334612 ;0.000000 ;-0.334612 ;-0.636061 ;-0.869229 ;-0.992613 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992613 ;-0.869229 ;-0.636061 ;-0.334612 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.334241 ;0.635427 ;0.868570 ;0.992366 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.992366 ;0.868570 ;0.635427 ;0.334241 ;0.000000 ;-0.334241 ;-0.635427 ;-0.868570 ;-0.992366 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.992366 ;-0.868570 ;-0.635427 ;-0.334241 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.310764 ;0.594831 ;0.824593 ;0.969456 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.969456 ;0.824593 ;0.594831 ;0.310764 ;0.000000 ;-0.310764 ;-0.594831 ;-0.824593 ;-0.969456 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.969456 ;-0.824593 ;-0.594831 ;-0.310764 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.254323 ;0.493509 ;0.702578 ;0.866720 ;0.970901 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;1.000000 ;0.970901 ;0.866720 ;0.702578 ;0.493509 ;0.254323 ;0.000000 ;-0.254323 ;-0.493509 ;-0.702578 ;-0.866720 ;-0.970901 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.970901 ;-0.866720 ;-0.702578 ;-0.493509 ;-0.254323 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.218448 ;0.426850 ;0.615457 ;0.775086 ;0.897317 ;0.974571 ;1.000000 ;1.000000 ;1.000000 ;0.974571 ;0.897317 ;0.775086 ;0.615457 ;0.426850 ;0.218448 ;0.000000 ;-0.218448 ;-0.426850 ;-0.615457 ;-0.775086 ;-0.897317 ;-0.974571 ;-1.000000 ;-1.000000 ;-1.000000 ;-0.974571 ;-0.897317 ;-0.775086 ;-0.615457 ;-0.426850 ;-0.218448 ;0.000000 - -1.000000 ;-0.980785 ;-0.923880 ;-0.831470 ;-0.707107 ;-0.555570 ;-0.382683 ;-0.195090 ;0.000000 ;0.195090 ;0.382683 ;0.555570 ;0.707107 ;0.831470 ;0.923880 ;0.980785 ;1.000000 ;0.980785 ;0.923880 ;0.831470 ;0.707107 ;0.555570 ;0.382683 ;0.195090 ;0.000000 ;-0.195090 ;-0.382683 ;-0.555570 ;-0.707107 ;-0.831470 ;-0.923880 ;-0.980785 ;-1.000000 - - - - - - ... - ... - - 1.000000 ;0.963618 ;0.927743 ;0.892317 ;0.857288 ;0.822689 ;0.788651 ;0.755121 ;0.722053 ;0.689413 ;0.657168 ;0.625310 ;0.593838 ;0.562774 ;0.532152 ;0.502027 ;0.472522 ;0.443826 ;0.415944 ;0.388873 ;0.362611 ;0.337160 ;0.312516 ;0.288678 ;0.265655 ;0.243448 ;0.222064 ;0.201510 ;0.181796 ;0.162934 ;0.144935 ;0.127812 ;0.111580 ;0.096253 ;0.081852 ;0.068414 ;0.055978 ;0.044596 ;0.034320 ;0.025215 ;0.017354 ;0.010821 ;0.005725 ;0.002191 ;0.000347 ;0.000000 ;0.000347 ;0.002191 ;0.005725 ;0.010821 ;0.017354 ;0.025215 ;0.034320 ;0.044596 ;0.055978 ;0.068414 ;0.081852 ;0.096253 ;0.111580 ;0.127812 ;0.144935 ;0.162935 ;0.181796 ;0.201510 ;0.222064 ;0.243448 ;0.265655 ;0.288678 ;0.312516 ;0.337160 ;0.362611 ;0.388873 ;0.415944 ;0.443826 ;0.472522 ;0.502027 ;0.532152 ;0.562774 ;0.593838 ;0.625310 ;0.657168 ;0.689414 ;0.722054 ;0.755121 ;0.788650 ;0.822689 ;0.857290 ;0.892322 ;0.927748 ;0.963622 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000000 ;-0.003004 ;-0.005893 ;-0.008604 ;-0.011082 ;-0.013356 ;-0.015550 ;-0.017609 ;-0.019479 ;-0.021122 ;-0.022502 ;-0.023601 ;-0.024415 ;-0.024959 ;-0.025261 ;-0.025370 ;-0.025344 ;-0.025209 ;-0.024971 ;-0.024642 ;-0.024231 ;-0.023747 ;-0.023202 ;-0.022605 ;-0.021958 ;-0.021272 ;-0.020551 ;-0.019800 ;-0.019021 ;-0.018216 ;-0.017392 ;-0.016550 ;-0.015694 ;-0.014829 ;-0.013956 ;-0.013063 ;-0.012138 ;-0.011160 ;-0.010113 ;-0.008974 ;-0.007724 ;-0.006339 ;-0.004798 ;-0.003090 ;-0.001277 ;0.000000 ;0.001277 ;0.003090 ;0.004798 ;0.006339 ;0.007724 ;0.008974 ;0.010113 ;0.011160 ;0.012138 ;0.013063 ;0.013956 ;0.014829 ;0.015694 ;0.016550 ;0.017392 ;0.018216 ;0.019021 ;0.019800 ;0.020551 ;0.021272 ;0.021958 ;0.022605 ;0.023202 ;0.023747 ;0.024231 ;0.024642 ;0.024971 ;0.025209 ;0.025344 ;0.025370 ;0.025261 ;0.024959 ;0.024415 ;0.023601 ;0.022502 ;0.021124 ;0.019480 ;0.017608 ;0.015549 ;0.013356 ;0.011084 ;0.008609 ;0.005898 ;0.003007 ;0.000000 - - - - ... - ... - - 1.000000 ;0.963618 ;0.927743 ;0.892317 ;0.857288 ;0.822689 ;0.788651 ;0.755121 ;0.722053 ;0.689413 ;0.657168 ;0.625310 ;0.593838 ;0.562774 ;0.532152 ;0.502027 ;0.472522 ;0.443826 ;0.415944 ;0.388873 ;0.362611 ;0.337160 ;0.312516 ;0.288678 ;0.265655 ;0.243448 ;0.222064 ;0.201510 ;0.181796 ;0.162934 ;0.144935 ;0.127812 ;0.111580 ;0.096253 ;0.081852 ;0.068414 ;0.055978 ;0.044596 ;0.034320 ;0.025215 ;0.017354 ;0.010821 ;0.005725 ;0.002191 ;0.000347 ;0.000000 ;0.000347 ;0.002191 ;0.005725 ;0.010821 ;0.017354 ;0.025215 ;0.034320 ;0.044596 ;0.055978 ;0.068414 ;0.081852 ;0.096253 ;0.111580 ;0.127812 ;0.144935 ;0.162935 ;0.181796 ;0.201510 ;0.222064 ;0.243448 ;0.265655 ;0.288678 ;0.312516 ;0.337160 ;0.362611 ;0.388873 ;0.415944 ;0.443826 ;0.472522 ;0.502027 ;0.532152 ;0.562774 ;0.593838 ;0.625310 ;0.657168 ;0.689414 ;0.722054 ;0.755121 ;0.788650 ;0.822689 ;0.857290 ;0.892322 ;0.927748 ;0.963622 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000000 ;-0.003004 ;-0.005893 ;-0.008604 ;-0.011082 ;-0.013356 ;-0.015550 ;-0.017609 ;-0.019479 ;-0.021122 ;-0.022502 ;-0.023601 ;-0.024415 ;-0.024959 ;-0.025261 ;-0.025370 ;-0.025344 ;-0.025209 ;-0.024971 ;-0.024642 ;-0.024231 ;-0.023747 ;-0.023202 ;-0.022605 ;-0.021958 ;-0.021272 ;-0.020551 ;-0.019800 ;-0.019021 ;-0.018216 ;-0.017392 ;-0.016550 ;-0.015694 ;-0.014829 ;-0.013956 ;-0.013063 ;-0.012138 ;-0.011160 ;-0.010113 ;-0.008974 ;-0.007724 ;-0.006339 ;-0.004798 ;-0.003090 ;-0.001277 ;0.000000 ;0.001277 ;0.003090 ;0.004798 ;0.006339 ;0.007724 ;0.008974 ;0.010113 ;0.011160 ;0.012138 ;0.013063 ;0.013956 ;0.014829 ;0.015694 ;0.016550 ;0.017392 ;0.018216 ;0.019021 ;0.019800 ;0.020551 ;0.021272 ;0.021958 ;0.022605 ;0.023202 ;0.023747 ;0.024231 ;0.024642 ;0.024971 ;0.025209 ;0.025344 ;0.025370 ;0.025261 ;0.024959 ;0.024415 ;0.023601 ;0.022502 ;0.021124 ;0.019480 ;0.017608 ;0.015549 ;0.013356 ;0.011084 ;0.008609 ;0.005898 ;0.003007 ;0.000000 - - - - ... - ... - - 1.000000 ;0.790636 ;0.658676 ;0.481925 ;0.369320 ;0.275866 ;0.184270 ;0.080490 ;0.030321 ;0.014845 ;0.005655 ;0.000771 ;0.000000 ;0.000863 ;0.007973 ;0.016576 ;0.057944 ;0.150753 ;0.251349 ;0.358086 ;0.527807 ;0.657275 ;0.781896 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000000 ;-0.017428 ;-0.023337 ;-0.025564 ;-0.025300 ;-0.023856 ;-0.020606 ;-0.014510 ;-0.010085 ;-0.007877 ;-0.005394 ;-0.002109 ;0.000000 ;0.002839 ;0.006838 ;0.008800 ;0.013352 ;0.019443 ;0.023653 ;0.025607 ;0.025687 ;0.023592 ;0.018084 ;-0.000000 - - - - ... - ... - - 1.000000 ;0.770699 ;0.715287 ;0.677589 ;0.643834 ;0.585004 ;0.552287 ;0.519807 ;0.440497 ;0.366661 ;0.318370 ;0.248105 ;0.201698 ;0.154868 ;0.102733 ;0.070779 ;0.042973 ;0.026089 ;0.015474 ;0.009927 ;0.004902 ;0.001948 ;0.000929 ;0.000202 ;0.000000 ;0.000188 ;0.000759 ;0.001521 ;0.004522 ;0.008349 ;0.014343 ;0.021013 ;0.031358 ;0.049273 ;0.080477 ;0.138826 ;0.204549 ;0.274977 ;0.332199 ;0.395826 ;0.466784 ;0.536776 ;0.589187 ;0.622019 ;0.656260 ;0.700546 ;0.730571 ;0.805429 ;0.860509 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.017385 ;-0.020474 ;-0.022224 ;-0.023494 ;-0.024977 ;-0.025419 ;-0.025611 ;-0.025409 ;-0.024477 ;-0.023489 ;-0.021538 ;-0.019906 ;-0.017936 ;-0.015261 ;-0.013278 ;-0.011036 ;-0.009110 ;-0.007355 ;-0.006101 ;-0.004453 ;-0.002891 ;-0.002021 ;-0.000935 ;0.000000 ;0.001006 ;0.001928 ;0.002667 ;0.004390 ;0.005752 ;0.007236 ;0.008452 ;0.009890 ;0.011711 ;0.014016 ;0.017259 ;0.020094 ;0.022428 ;0.023866 ;0.024990 ;0.025622 ;0.025585 ;0.024947 ;0.024192 ;0.023095 ;0.021229 ;0.019706 ;0.015247 ;0.011658 ;0.000000 - - - - ... - ... - - 1.000000 ;0.931937 ;0.883470 ;0.863967 ;0.844359 ;0.824718 ;0.805014 ;0.791117 ;0.771151 ;0.749018 ;0.730765 ;0.713239 ;0.685078 ;0.649341 ;0.613049 ;0.553197 ;0.496931 ;0.458638 ;0.400396 ;0.358267 ;0.282372 ;0.218282 ;0.167915 ;0.124112 ;0.087842 ;0.071512 ;0.058508 ;0.048681 ;0.039310 ;0.030768 ;0.022907 ;0.015756 ;0.009680 ;0.006921 ;0.004149 ;0.001982 ;0.000791 ;0.000276 ;0.000087 ;0.000000 ;0.000225 ;0.000703 ;0.001443 ;0.002481 ;0.004603 ;0.007280 ;0.012016 ;0.016938 ;0.020461 ;0.028359 ;0.039710 ;0.052946 ;0.066865 ;0.078469 ;0.090628 ;0.103521 ;0.116947 ;0.141550 ;0.171445 ;0.197681 ;0.235343 ;0.386363 ;0.443914 ;0.499374 ;0.571929 ;0.622051 ;0.657806 ;0.677101 ;0.708152 ;0.725660 ;0.782525 ;0.905888 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000000 ;-0.009498 ;-0.014347 ;-0.016183 ;-0.017890 ;-0.019436 ;-0.020807 ;-0.021661 ;-0.022763 ;-0.023857 ;-0.024628 ;-0.025248 ;-0.026005 ;-0.026581 ;-0.026809 ;-0.026679 ;-0.026258 ;-0.025777 ;-0.024677 ;-0.023622 ;-0.021584 ;-0.019707 ;-0.018023 ;-0.016270 ;-0.014490 ;-0.013539 ;-0.012659 ;-0.011840 ;-0.010878 ;-0.009805 ;-0.008589 ;-0.007219 ;-0.005709 ;-0.004811 ;-0.003757 ;-0.002656 ;-0.001738 ;-0.001076 ;-0.000687 ;0.000000 ;0.000738 ;0.001440 ;0.002124 ;0.002807 ;0.003958 ;0.005216 ;0.006981 ;0.008503 ;0.009474 ;0.011408 ;0.013797 ;0.016190 ;0.018388 ;0.019954 ;0.021313 ;0.022405 ;0.023089 ;0.023774 ;0.024310 ;0.024622 ;0.024915 ;0.025591 ;0.025634 ;0.025265 ;0.024294 ;0.023306 ;0.022291 ;0.021595 ;0.020219 ;0.019293 ;0.015931 ;0.008341 ;-0.000000 - - - - ... - ... - - 1.000000 ;0.934088 ;0.878382 ;0.858030 ;0.837567 ;0.817072 ;0.796511 ;0.782010 ;0.763340 ;0.742189 ;0.724229 ;0.706743 ;0.678331 ;0.641843 ;0.624272 ;0.588851 ;0.566424 ;0.516758 ;0.462865 ;0.423439 ;0.352121 ;0.256165 ;0.189909 ;0.152074 ;0.126010 ;0.036059 ;0.030412 ;0.020707 ;0.012713 ;0.008910 ;0.006149 ;0.004064 ;0.002496 ;0.001357 ;0.000586 ;0.000144 ;0.000000 ;0.000084 ;0.000357 ;0.000843 ;0.001572 ;0.002591 ;0.003973 ;0.005850 ;0.008542 ;0.015043 ;0.036835 ;0.048465 ;0.065617 ;0.084986 ;0.096180 ;0.107166 ;0.114234 ;0.120326 ;0.132746 ;0.146381 ;0.174874 ;0.202382 ;0.245512 ;0.408904 ;0.447877 ;0.468391 ;0.516182 ;0.579252 ;0.613874 ;0.634185 ;0.650685 ;0.683955 ;0.701875 ;0.719491 ;0.803352 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000000 ;-0.009218 ;-0.014723 ;-0.016598 ;-0.018334 ;-0.019896 ;-0.021270 ;-0.022117 ;-0.023088 ;-0.024065 ;-0.024764 ;-0.025326 ;-0.025998 ;-0.026468 ;-0.026561 ;-0.026545 ;-0.026430 ;-0.026008 ;-0.025323 ;-0.024602 ;-0.022873 ;-0.020297 ;-0.018307 ;-0.017002 ;-0.016005 ;-0.012045 ;-0.011619 ;-0.010563 ;-0.007638 ;-0.005660 ;-0.004095 ;-0.002844 ;-0.001855 ;-0.001096 ;-0.000545 ;-0.000184 ;0.000000 ;0.000193 ;0.000584 ;0.001188 ;0.002025 ;0.003122 ;0.004518 ;0.006276 ;0.008525 ;0.012054 ;0.016191 ;0.018128 ;0.020782 ;0.023542 ;0.024972 ;0.026146 ;0.026771 ;0.027211 ;0.027807 ;0.028107 ;0.028359 ;0.028468 ;0.028467 ;0.028042 ;0.027797 ;0.027590 ;0.026918 ;0.025748 ;0.024910 ;0.024311 ;0.023747 ;0.022368 ;0.021475 ;0.020487 ;0.015239 ;-0.000000 - - - - ... - ... - - 1.000000 ;0.887892 ;0.864740 ;0.842107 ;0.819351 ;0.796560 ;0.773697 ;0.757572 ;0.740731 ;0.720735 ;0.702734 ;0.669572 ;0.637144 ;0.615780 ;0.574848 ;0.532531 ;0.453991 ;0.396817 ;0.278969 ;0.188454 ;0.153838 ;0.130883 ;0.116633 ;0.074106 ;0.043432 ;0.026641 ;0.018669 ;0.012884 ;0.008516 ;0.005233 ;0.002845 ;0.001231 ;0.000304 ;0.000000 ;0.000173 ;0.000740 ;0.001750 ;0.003268 ;0.005391 ;0.008272 ;0.012191 ;0.017820 ;0.031476 ;0.068419 ;0.079858 ;0.094350 ;0.106021 ;0.115019 ;0.126769 ;0.134733 ;0.143047 ;0.154170 ;0.207815 ;0.302681 ;0.422711 ;0.475610 ;0.527132 ;0.565776 ;0.607611 ;0.625471 ;0.661049 ;0.679974 ;0.698386 ;0.788379 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.014046 ;-0.016298 ;-0.018374 ;-0.020286 ;-0.021994 ;-0.023481 ;-0.024388 ;-0.025224 ;-0.026095 ;-0.026751 ;-0.027642 ;-0.028152 ;-0.028318 ;-0.028339 ;-0.028064 ;-0.027144 ;-0.026154 ;-0.023564 ;-0.021299 ;-0.020331 ;-0.019576 ;-0.019000 ;-0.017014 ;-0.015382 ;-0.011333 ;-0.008489 ;-0.006212 ;-0.004373 ;-0.002904 ;-0.001759 ;-0.000909 ;-0.000329 ;0.000000 ;0.000353 ;0.001011 ;0.001998 ;0.003345 ;0.005095 ;0.007311 ;0.010091 ;0.013641 ;0.019272 ;0.025310 ;0.027015 ;0.029023 ;0.030490 ;0.031443 ;0.032416 ;0.032892 ;0.033197 ;0.033349 ;0.033125 ;0.032262 ;0.030913 ;0.030035 ;0.028989 ;0.028059 ;0.026796 ;0.026142 ;0.024578 ;0.023587 ;0.022508 ;0.016696 ;0.000000 - - - - ... - ... - - 1.000000 ;0.922384 ;0.849623 ;0.824461 ;0.799164 ;0.773827 ;0.748411 ;0.730485 ;0.715166 ;0.695996 ;0.677693 ;0.658952 ;0.642939 ;0.608219 ;0.585071 ;0.564212 ;0.521130 ;0.461359 ;0.394124 ;0.305304 ;0.219295 ;0.196252 ;0.176930 ;0.160835 ;0.144160 ;0.133899 ;0.121370 ;0.112214 ;0.100810 ;0.047336 ;0.029044 ;0.020355 ;0.014049 ;0.009287 ;0.005707 ;0.003104 ;0.001344 ;0.000332 ;0.000000 ;0.000188 ;0.000807 ;0.001908 ;0.003565 ;0.005881 ;0.009024 ;0.013297 ;0.019432 ;0.034286 ;0.059212 ;0.072101 ;0.085940 ;0.094752 ;0.105834 ;0.113529 ;0.121848 ;0.130370 ;0.137629 ;0.145430 ;0.153194 ;0.162243 ;0.179504 ;0.198904 ;0.230583 ;0.302131 ;0.369521 ;0.428814 ;0.487042 ;0.530221 ;0.562536 ;0.807006 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.010922 ;-0.018158 ;-0.020474 ;-0.022600 ;-0.024492 ;-0.026127 ;-0.027117 ;-0.027861 ;-0.028670 ;-0.029313 ;-0.029844 ;-0.030202 ;-0.030702 ;-0.030853 ;-0.030885 ;-0.030701 ;-0.030090 ;-0.029135 ;-0.027581 ;-0.025835 ;-0.025254 ;-0.024576 ;-0.023783 ;-0.022699 ;-0.021891 ;-0.020753 ;-0.019816 ;-0.018523 ;-0.014644 ;-0.010677 ;-0.008009 ;-0.005883 ;-0.004165 ;-0.002788 ;-0.001710 ;-0.000900 ;-0.000336 ;0.000000 ;0.000364 ;0.001018 ;0.001984 ;0.003296 ;0.004995 ;0.007145 ;0.009850 ;0.013329 ;0.019109 ;0.023678 ;0.025862 ;0.028059 ;0.029371 ;0.030918 ;0.031890 ;0.032838 ;0.033698 ;0.034329 ;0.034894 ;0.035344 ;0.035753 ;0.036227 ;0.036382 ;0.036137 ;0.035199 ;0.034122 ;0.033038 ;0.031782 ;0.030687 ;0.029709 ;0.015783 ;0.000000 - - - - ... - ... - - 1.000000 ;0.891325 ;0.834981 ;0.823498 ;0.808259 ;0.790340 ;0.781475 ;0.765609 ;0.748381 ;0.720414 ;0.703288 ;0.689060 ;0.675361 ;0.656564 ;0.637042 ;0.621185 ;0.583506 ;0.558858 ;0.537694 ;0.491386 ;0.455751 ;0.394522 ;0.332712 ;0.272892 ;0.236826 ;0.218067 ;0.203370 ;0.187211 ;0.177215 ;0.166003 ;0.150157 ;0.129981 ;0.120166 ;0.107097 ;0.086403 ;0.067080 ;0.049080 ;0.036514 ;0.029379 ;0.018103 ;0.012701 ;0.008771 ;0.005800 ;0.003565 ;0.001938 ;0.000838 ;0.000207 ;0.000000 ;0.000120 ;0.000512 ;0.001208 ;0.002253 ;0.003710 ;0.005683 ;0.008356 ;0.012175 ;0.021279 ;0.030171 ;0.036613 ;0.039030 ;0.043640 ;0.061114 ;0.081776 ;0.094445 ;0.107512 ;0.125078 ;0.136482 ;0.146772 ;0.155965 ;0.167392 ;0.177123 ;0.188218 ;0.202526 ;0.214637 ;0.224592 ;0.234398 ;0.267390 ;0.334614 ;0.940994 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;-0.017338 ;-0.022820 ;-0.024188 ;-0.025728 ;-0.027219 ;-0.027853 ;-0.028843 ;-0.029734 ;-0.031377 ;-0.032239 ;-0.032860 ;-0.033391 ;-0.034000 ;-0.034501 ;-0.034814 ;-0.035262 ;-0.035357 ;-0.035333 ;-0.035020 ;-0.034601 ;-0.033683 ;-0.032634 ;-0.031527 ;-0.030759 ;-0.030078 ;-0.029282 ;-0.028124 ;-0.027265 ;-0.026173 ;-0.024402 ;-0.021782 ;-0.020366 ;-0.018346 ;-0.014835 ;-0.012990 ;-0.010940 ;-0.009220 ;-0.007803 ;-0.005158 ;-0.003813 ;-0.002796 ;-0.001993 ;-0.001354 ;-0.000851 ;-0.000466 ;-0.000186 ;0.000000 ;0.000201 ;0.000528 ;0.000995 ;0.001620 ;0.002428 ;0.003457 ;0.004775 ;0.006541 ;0.010117 ;0.012617 ;0.014093 ;0.014599 ;0.015523 ;0.018864 ;0.022646 ;0.024839 ;0.026910 ;0.029372 ;0.030771 ;0.031901 ;0.032802 ;0.033783 ;0.034498 ;0.035174 ;0.035827 ;0.036199 ;0.036360 ;0.036371 ;0.035911 ;0.034608 ;0.004011 ;0.000000 - - - - -
-
diff --git a/test_files/CPACSfiles/labARscaled.xml b/test_files/CPACSfiles/labARscaled.xml deleted file mode 100644 index 8d3dba318..000000000 --- a/test_files/CPACSfiles/labARscaled.xml +++ /dev/null @@ -1,933 +0,0 @@ - - -
- labARscaled - Simple Wing for unit testing - Martin Siggel - 2012-10-09T15:12:47 - 0.2 - 3.0 - - - Converted to cpacs 3.0 using cpacs2to3 - does not include structure update - cpacs2to3 - 2018-01-15T09:22:57 - 0.2 - 3.0 - - - Add this update - Aidan - 2018-10-03T09:00:01 - 0.3 - 3.0 - - -
- - - - labAv0 - - 0.027329 - 0.069737 - - 0.19223 - 0 - 0 - - - - -Body1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - -
-Body1Frame1 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.004572 - 0 - 0 - - - - - ... - fuseprof_1_1 - - - 1 - 0.0022547 - 0.0022547 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame2 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.054356 - 0 - 0 - - - - - ... - fuseprof_1_2 - - - 1 - 0.013229 - 0.013229 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame3 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.10414 - 0 - 0 - - - - - ... - fuseprof_1_3 - - - 1 - 0.019512 - 0.019512 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame4 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.15392 - 0 - 0 - - - - - ... - fuseprof_1_4 - - - 1 - 0.023339 - 0.023339 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame5 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.20371 - 0 - 0 - - - - - ... - fuseprof_1_5 - - - 1 - 0.025174 - 0.025174 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame6 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.25349 - 0 - 0 - - - - - ... - fuseprof_1_6 - - - 1 - 0.025174 - 0.025174 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame7 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.30328 - 0 - 0 - - - - - ... - fuseprof_1_7 - - - 1 - 0.023339 - 0.023339 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame8 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.35306 - 0 - 0 - - - - - ... - fuseprof_1_8 - - - 1 - 0.019512 - 0.019512 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame9 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.40284 - 0 - 0 - - - - - ... - fuseprof_1_9 - - - 1 - 0.013229 - 0.013229 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-Body1Frame10 -description - - - 1 - 1 - 1 - - - 0 - 0 - 0 - - - 0.45263 - 0 - 0 - - - - - ... - fuseprof_1_10 - - - 1 - 0.0022547 - 0.0022547 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - Body1Frame1 - 0 - - - - ... - description - 0 - 0 - Body1Frame2 - 0 - - - - ... - description - 0 - 0 - Body1Frame3 - 0 - - - - ... - description - 0 - 0 - Body1Frame4 - 0 - - - - ... - description - 0 - 0 - Body1Frame5 - 0 - - - - ... - description - 0 - 0 - Body1Frame6 - 0 - - - - ... - description - 0 - 0 - Body1Frame7 - 0 - - - - ... - description - 0 - 0 - Body1Frame8 - 0 - - - - ... - description - 0 - 0 - Body1Frame9 - 0 - - - - ... - description - 0 - 0 - Body1Frame10 - 0 - - - - - - ... - Body1Frame1elem1 - Body1Frame2elem1 - - - - ... - Body1Frame2elem1 - Body1Frame3elem1 - - - - ... - Body1Frame3elem1 - Body1Frame4elem1 - - - - ... - Body1Frame4elem1 - Body1Frame5elem1 - - - - ... - Body1Frame5elem1 - Body1Frame6elem1 - - - - ... - Body1Frame6elem1 - Body1Frame7elem1 - - - - ... - Body1Frame7elem1 - Body1Frame8elem1 - - - - ... - Body1Frame8elem1 - Body1Frame9elem1 - - - - ... - Body1Frame9elem1 - Body1Frame10elem1 - - - -
-
- - - wingmod1A - Body1 - description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0.1016 - 0 - 0 - - - -
-wingmod1Aroot -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0 - 0 - 0 - - - - - ... - foil_1_2 - - - - 0.089662 - 0.089662 - 0.089662 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
-wingmod1Atip -description - - - 1 - 1 - 1 - - - -0 - 0 - -0 - - - 0.1647 - 0.2032 - 0 - - - - - ... - foil_1_1 - - - - 0.044831 - 0.044831 - 0.044831 - - - 0 - 0 - 0 - - - 0 - 0 - 0 - - - - -
-
- - - ... - description - 0 - 0 - wingmod1Atip - 0 - - - - ... - description - 0 - 0 - wingmod1Aroot - 0 - - - - - - ... - wingmod1Atipelem1 - wingmod1Arootelem1 - - - -
-
- - - - aeromap_empty - Common default aeroMap - - ISA - - - 0.0 - 0.3 - 0.0 - 0.0 - - - - - - -
-
- - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 - -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 - -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 - -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 - -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 - -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 - -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 - -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 - -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 - -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 - - - - ... - ... - - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - 0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 - -1.000000 ;-0.951057 ;-0.809017 ;-0.587785 ;-0.309017 ;0.000000 ;0.309017 ;0.587785 ;0.809017 ;0.951057 ;1.000000 ;0.951057 ;0.809017 ;0.587785 ;0.309017 ;0.000000 ;-0.309017 ;-0.587785 ;-0.809017 ;-0.951057 ;-1.000000 - - - - - - ... - ... - - 1.000000 ;0.951194 ;0.902266 ;0.853214 ;0.804038 ;0.754739 ;0.705314 ;0.655764 ;0.606088 ;0.556287 ;0.506358 ;0.456303 ;0.406120 ;0.355808 ;0.305368 ;0.254799 ;0.204101 ;0.153272 ;0.102313 ;0.076784 ;0.051222 ;0.025628 ;0.012818 ;0.007692 ;0.005128 ;0.000000 ;0.005128 ;0.007692 ;0.012818 ;0.025628 ;0.051222 ;0.076784 ;0.102313 ;0.153272 ;0.204101 ;0.254799 ;0.305368 ;0.355808 ;0.406120 ;0.456303 ;0.506358 ;0.556287 ;0.606088 ;0.655764 ;0.705314 ;0.754739 ;0.804038 ;0.853214 ;0.902266 ;0.951194 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000224 ;-0.005576 ;-0.010942 ;-0.016321 ;-0.021714 ;-0.027121 ;-0.032470 ;-0.037536 ;-0.042148 ;-0.046177 ;-0.049506 ;-0.051949 ;-0.053253 ;-0.053150 ;-0.051842 ;-0.049452 ;-0.045919 ;-0.041032 ;-0.034397 ;-0.030137 ;-0.024954 ;-0.018011 ;-0.013038 ;-0.010317 ;-0.008572 ;0.000000 ;0.008572 ;0.010317 ;0.013038 ;0.018011 ;0.024954 ;0.030137 ;0.034397 ;0.041032 ;0.045919 ;0.049452 ;0.051842 ;0.053150 ;0.053253 ;0.051949 ;0.049506 ;0.046177 ;0.042148 ;0.037536 ;0.032470 ;0.027121 ;0.021714 ;0.016321 ;0.010942 ;0.005576 ;0.000224 - - - - ... - ... - - 1.000000 ;0.951194 ;0.902266 ;0.853214 ;0.804038 ;0.754739 ;0.705314 ;0.655764 ;0.606088 ;0.556287 ;0.506358 ;0.456303 ;0.406120 ;0.355808 ;0.305368 ;0.254799 ;0.204101 ;0.153272 ;0.102313 ;0.076784 ;0.051222 ;0.025628 ;0.012818 ;0.007692 ;0.005128 ;0.000000 ;0.005128 ;0.007692 ;0.012818 ;0.025628 ;0.051222 ;0.076784 ;0.102313 ;0.153272 ;0.204101 ;0.254799 ;0.305368 ;0.355808 ;0.406120 ;0.456303 ;0.506358 ;0.556287 ;0.606088 ;0.655764 ;0.705314 ;0.754739 ;0.804038 ;0.853214 ;0.902266 ;0.951194 ;1.000000 - 0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 ;0.000000 - -0.000224 ;-0.005576 ;-0.010942 ;-0.016321 ;-0.021714 ;-0.027121 ;-0.032470 ;-0.037536 ;-0.042148 ;-0.046177 ;-0.049506 ;-0.051949 ;-0.053253 ;-0.053150 ;-0.051842 ;-0.049452 ;-0.045919 ;-0.041032 ;-0.034397 ;-0.030137 ;-0.024954 ;-0.018011 ;-0.013038 ;-0.010317 ;-0.008572 ;0.000000 ;0.008572 ;0.010317 ;0.013038 ;0.018011 ;0.024954 ;0.030137 ;0.034397 ;0.041032 ;0.045919 ;0.049452 ;0.051842 ;0.053150 ;0.053253 ;0.051949 ;0.049506 ;0.046177 ;0.042148 ;0.037536 ;0.032470 ;0.027121 ;0.021714 ;0.016321 ;0.010942 ;0.005576 ;0.000224 - - - - -
-