diff --git a/src/ansys/aedt/core/application/analysis_3d.py b/src/ansys/aedt/core/application/analysis_3d.py index 7a57c987a98..2e9013d1ed1 100644 --- a/src/ansys/aedt/core/application/analysis_3d.py +++ b/src/ansys/aedt/core/application/analysis_3d.py @@ -1312,9 +1312,6 @@ def import_dxf( import_method : int, bool Whether the import method is ``Script`` or ``Acis``. The default is ``1``, which means that the ``Acis`` is used. - sheet_bodies_2d : bool, optional - Whether importing as 2D sheet bodies causes imported objects to - be organized in terms of 2D sheets. The default is ``True``. Returns ------- diff --git a/src/ansys/aedt/core/maxwell.py b/src/ansys/aedt/core/maxwell.py index 97c8f0bed2c..03335c48024 100644 --- a/src/ansys/aedt/core/maxwell.py +++ b/src/ansys/aedt/core/maxwell.py @@ -430,11 +430,7 @@ def assign_matrix( prop = dict({"GroupName": element, "NumberOfBranches": branches[cont], "Sources": source_list}) props["MatrixGroup"]["MatrixGroup"].append(prop) cont += 1 - - bound = MaxwellParameters(self, matrix_name, props, "Matrix") - if bound.create(): - self._boundaries[bound.name] = bound - return bound + return self._create_boundary_object(matrix_name, props, "Matrix") else: self.logger.error("Solution type does not have matrix parameters") return False @@ -551,6 +547,10 @@ def eddy_effects_on(self, assignment, enable_eddy_effects=True, enable_displacem >>> oModule.SetEddyEffect """ solid_objects_names = self.get_all_conductors_names() + if not solid_objects_names: + self.logger.error("No conductors defined in active design.") + return False + assignment = self.modeler.convert_to_selections(assignment, True) EddyVector = ["NAME:EddyEffectVector"] if self.modeler._is3d: @@ -713,7 +713,6 @@ def assign_current(self, assignment, amplitude=1, phase="0deg", solid=True, swap >>> current = m3d.assign_current(cylinder.top_face_x.id,amplitude="2mA") >>> m3d.release_desktop(True, True) """ - if isinstance(amplitude, (int, float)): amplitude = str(amplitude) + "A" @@ -753,11 +752,7 @@ def assign_current(self, assignment, amplitude=1, phase="0deg", solid=True, swap else: self.logger.warning("Input must be a 2D object.") return False - bound = BoundaryObject(self, name, props, "Current") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(name, props, "Current") @pyaedt_function_handler(band_object="assignment") def assign_translate_motion( @@ -852,11 +847,7 @@ def assign_translate_motion( "Objects": object_list, } ) - bound = BoundaryObject(self, motion_name, props, "Band") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(motion_name, props, "Band") @pyaedt_function_handler(band_object="assignment") def assign_rotate_motion( @@ -949,11 +940,7 @@ def assign_rotate_motion( "Objects": object_list, } ) - bound = BoundaryObject(self, motion_name, props, "Band") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(motion_name, props, "Band") @pyaedt_function_handler(face_list="assignment") def assign_voltage(self, assignment, amplitude=1, name=None): @@ -1001,11 +988,7 @@ def assign_voltage(self, assignment, amplitude=1, name=None): props["Objects"].append(element) else: props["Faces"].append(element) - bound = BoundaryObject(self, name, props, "Voltage") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(name, props, "Voltage") @pyaedt_function_handler(face_list="assignment") def assign_voltage_drop(self, assignment, amplitude=1, swap_direction=False, name=None): @@ -1042,11 +1025,7 @@ def assign_voltage_drop(self, assignment, amplitude=1, swap_direction=False, nam assignment = self.modeler.convert_to_selections(assignment, True) props = dict({"Faces": assignment, "Voltage Drop": amplitude, "Point out of terminal": swap_direction}) - bound = BoundaryObject(self, name, props, "VoltageDrop") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(name, props, "VoltageDrop") @pyaedt_function_handler() def assign_floating(self, assignment, charge_value=0, name=None): @@ -1082,18 +1061,18 @@ def assign_floating(self, assignment, charge_value=0, name=None): >>> from ansys.aedt.core import Maxwell2d >>> m2d = Maxwell2d(version="2024.2") >>> m2d.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticXY - >>> rect = self.aedtapp.modeler.create_rectangle([0, 0, 0], [3, 1], name="Rectangle1") - >>> floating = self.aedtapp.assign_floating(assignment=rect, charge_value=3, name="floating_test") + >>> rect = m2d.modeler.create_rectangle([0, 0, 0], [3, 1], name="Rectangle1") + >>> floating = m2d.assign_floating(assignment=rect, charge_value=3, name="floating_test") >>> m2d.release_desktop(True, True) Assign a floating excitation for a Maxwell 3d Electrostatic design providing an object >>> from ansys.aedt.core import Maxwell3d >>> m3d = Maxwell3d(version="2024.2") >>> m3d.solution_type = SOLUTIONS.Maxwell3d.ElectroStatic - >>> box = self.aedtapp.modeler.create_box([0, 0, 0], [10, 10, 10], name="Box1") - >>> floating = self.aedtapp.assign_floating(assignment=box, charge_value=3) + >>> box = m3d.modeler.create_box([0, 0, 0], [10, 10, 10], name="Box1") + >>> floating = m3d.assign_floating(assignment=box, charge_value=3) Assign a floating excitation providing a list of faces - >>> floating1 = self.aedtapp.assign_floating(assignment=[box.faces[0], box.faces[1]], charge_value=3) + >>> floating1 = m3d.assign_floating(assignment=[box.faces[0], box.faces[1]], charge_value=3) >>> m3d.release_desktop(True, True) """ if self.solution_type not in ["Electrostatic", "ElectricTransient"]: # pragma : no cover @@ -1120,11 +1099,7 @@ def assign_floating(self, assignment, charge_value=0, name=None): if not name: name = generate_unique_name("Floating") - bound = BoundaryObject(self, name, props, "Floating") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(name, props, "Floating") @pyaedt_function_handler(coil_terminals="assignment", current_value="current", res="resistance", ind="inductance") def assign_winding( @@ -1194,9 +1169,8 @@ def assign_winding( "Phase": self.modeler._arg_with_dim(phase, "deg"), } ) - bound = BoundaryObject(self, name, props, "Winding") - if bound.create(): - self._boundaries[bound.name] = bound + bound = self._create_boundary_object(name, props, "Winding") + if bound: if assignment is None: assignment = [] if type(assignment) is not list: @@ -1274,35 +1248,32 @@ def assign_coil(self, assignment, conductors_number=1, polarity="Positive", name if not name: name = generate_unique_name("Coil") - if type(assignment[0]) is str: + if isinstance(assignment[0], str): if self.modeler._is3d: - props2 = dict( + props = dict( {"Objects": assignment, "Conductor number": str(conductors_number), "Point out of terminal": point} ) - bound = BoundaryObject(self, name, props2, "CoilTerminal") + bound_type = "CoilTerminal" else: - props2 = dict( + props = dict( { "Objects": assignment, "Conductor number": str(conductors_number), "PolarityType": polarity.lower(), } ) - bound = BoundaryObject(self, name, props2, "Coil") + bound_type = "Coil" else: if self.modeler._is3d: - props2 = dict( + props = dict( {"Faces": assignment, "Conductor number": str(conductors_number), "Point out of terminal": point} ) - bound = BoundaryObject(self, name, props2, "CoilTerminal") - + bound_type = "CoilTerminal" else: self.logger.warning("Face Selection is not allowed in Maxwell 2D. Provide a 2D object.") return False - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + + return self._create_boundary_object(name, props, bound_type) @pyaedt_function_handler(input_object="assignment", reference_cs="coordinate_system") def assign_force(self, assignment, coordinate_system="Global", is_virtual=True, force_name=None): @@ -1378,11 +1349,7 @@ def assign_force(self, assignment, coordinate_system="Global", is_virtual=True, "Objects": assignment, } ) - - bound = MaxwellParameters(self, force_name, prop, "Force") - if bound.create(): - self._boundaries[bound.name] = bound - return bound + return self._create_boundary_object(force_name, prop, "Force") else: self.logger.error("Solution type has no 'Matrix' parameter.") return False @@ -1450,11 +1417,7 @@ def assign_torque( "Objects": assignment, } ) - - bound = MaxwellParameters(self, torque_name, prop, "Torque") - if bound.create(): - self._boundaries[bound.name] = bound - return bound + return self._create_boundary_object(torque_name, prop, "Torque") else: self.logger.error("Solution Type has not Matrix Parameter") return False @@ -1571,6 +1534,7 @@ def assign_symmetry(self, assignment, symmetry_name=None, is_odd=True): if symmetry_name is None: symmetry_name = generate_unique_name("Symmetry") + prop = {} if assignment: if self.design_type == "Maxwell 2D": assignment = self.modeler.convert_to_selections(assignment, True) @@ -1581,12 +1545,7 @@ def assign_symmetry(self, assignment, symmetry_name=None, is_odd=True): else: msg = "At least one edge must be provided." ValueError(msg) - - bound = BoundaryObject(self, symmetry_name, prop, "Symmetry") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return True + return self._create_boundary_object(symmetry_name, prop, "Symmetry") except Exception: return False @@ -1661,71 +1620,68 @@ def assign_current_density( try: if self.modeler._is3d: + if self.solution_type == "Transient": + self.logger.error( + "Current density can only be applied to Eddy Current or Magnetostatic " "solution types." + ) + return False + + common_props = { + "Objects": objects_list, + "CurrentDensityX": current_density_x, + "CurrentDensityY": current_density_y, + "CurrentDensityZ": current_density_z, + "CoordinateSystem Name": coordinate_system, + "CoordinateSystem Type": coordinate_system_type, + } + if len(objects_list) > 1: current_density_group_names = [] for x in range(0, len(objects_list)): current_density_group_names.append(current_density_name + f"_{str(x + 1)}") - props = {} - props["items"] = current_density_group_names - props[current_density_group_names[0]] = dict( - { - "Objects": objects_list, - "Phase": phase, - "CurrentDensityX": current_density_x, - "CurrentDensityY": current_density_y, - "CurrentDensityZ": current_density_z, - "CoordinateSystem Name": coordinate_system, - "CoordinateSystem Type": coordinate_system_type, - } - ) - bound = BoundaryObject(self, current_density_group_names[0], props, "CurrentDensityGroup") + bound_props = {"items": current_density_group_names} + if self.solution_type == "EddyCurrent": + common_props["Phase"] = phase + bound_props[current_density_group_names[0]] = common_props.copy() + bound_name = current_density_group_names[0] + bound_type = "CurrentDensityGroup" else: - props = dict( - { - "Objects": objects_list, - "Phase": phase, - "CurrentDensityX": current_density_x, - "CurrentDensityY": current_density_y, - "CurrentDensityZ": current_density_z, - "CoordinateSystem Name": coordinate_system, - "CoordinateSystem Type": coordinate_system_type, - } - ) - bound = BoundaryObject(self, current_density_name, props, "CurrentDensity") + if self.solution_type == "EddyCurrent": + common_props["Phase"] = phase + bound_props = common_props + bound_name = current_density_name + bound_type = "CurrentDensity" else: + common_props = { + "Objects": objects_list, + "Value": current_density_2d, + "CoordinateSystem": "", + } if len(objects_list) > 1: current_density_group_names = [] for x in range(0, len(objects_list)): current_density_group_names.append(current_density_name + f"_{str(x + 1)}") - props = {} - props["items"] = current_density_group_names - props[current_density_group_names[0]] = dict( - { - "Objects": objects_list, - "Value": current_density_2d, - "CoordinateSystem": "", - } - ) - bound = BoundaryObject(self, current_density_group_names[0], props, "CurrentDensityGroup") + bound_props = {"items": current_density_group_names} + if self.solution_type == "EddyCurrent": + common_props["Phase"] = phase + bound_props[current_density_group_names[0]] = common_props.copy() + bound_name = current_density_group_names[0] + bound_type = "CurrentDensityGroup" else: - props = dict( - { - "Objects": objects_list, - "Value": current_density_2d, - "CoordinateSystem": "", - } - ) - bound = BoundaryObject(self, current_density_name, props, "CurrentDensity") + if self.solution_type == "EddyCurrent": + common_props["Phase"] = phase + bound_props = common_props + bound_name = current_density_name + bound_type = "CurrentDensity" - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return True + return self._create_boundary_object(bound_name, bound_props, bound_type) except Exception: self.logger.error("Couldn't assign current density to desired list of objects.") return False else: - self.logger.error("Current density can only be applied to Eddy current or magnetostatic solution types.") + self.logger.error( + "Current density can only be applied to Eddy Current, Magnetostatic and 2D Transient " "solution types." + ) return False @pyaedt_function_handler(input_object="assignment", radiation_name="radiation") @@ -1764,8 +1720,7 @@ def assign_radiation(self, assignment, radiation=None): >>> m3d.assign_radiation([box1, box2.faces[0]]) >>> m3d.release_desktop(True, True) """ - - if self.solution_type in ["EddyCurrent"]: + if self.solution_type == "EddyCurrent": if not radiation: radiation = generate_unique_name("Radiation") elif radiation in self.modeler.get_boundaries_name(): @@ -1778,11 +1733,8 @@ def assign_radiation(self, assignment, radiation=None): props["Objects"].append(sel) elif isinstance(sel, int): props["Faces"].append(sel) - bound = BoundaryObject(self, radiation, props, "Radiation") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - self.logger.error("Excitation applicable only to Eddy current.") + return self._create_boundary_object(radiation, props, "Radiation") + self.logger.error("Excitation applicable only to Eddy Current.") return False @pyaedt_function_handler(objects="assignment") @@ -2029,7 +1981,7 @@ def create_external_circuit(self, circuit_design=None): """ if self.solution_type not in ["EddyCurrent", "Transient"]: self.logger.error( - "External circuit excitation for windings is available only for Eddy current or Transient solutions." + "External circuit excitation for windings is available only for Eddy Current or Transient solutions." ) return False @@ -2173,6 +2125,18 @@ def create_setup(self, name="MySetupAuto", setup_type=None, **kwargs): setup.update() return setup + def _create_boundary_object(self, name, props, boundary_type): + if boundary_type in ["Force", "Torque", "Matrix", "LayoutForce"]: + bound = MaxwellParameters(self, name, props, boundary_type) + else: + bound = BoundaryObject(self, name, props, boundary_type) + if bound.create(): + self.logger.info(f"Boundary {name} has been correctly created.") + self._boundaries[bound.name] = bound + return bound + self.logger.error(f"Boundary {name} was not created.") + return False + class Maxwell3d(Maxwell, FieldAnalysis3D, object): """Provides the Maxwell 3D app interface. @@ -2361,8 +2325,7 @@ def assign_insulating(self, assignment, insulation=None): props["Objects"].append(sel) elif isinstance(sel, int): props["Faces"].append(sel) - - return self._create_boundary(insulation, props, "Insulating") + return self._create_boundary_object(insulation, props, "Insulating") return False @pyaedt_function_handler(geometry_selection="assignment", impedance_name="impedance") @@ -2445,8 +2408,7 @@ def assign_impedance( props["UseMaterial"] = False props["Permeability"] = permeability props["Conductivity"] = conductivity - - return self._create_boundary(impedance, props, "Impedance") + return self._create_boundary_object(impedance, props, "Impedance") return False @pyaedt_function_handler(entities="assignment") @@ -2455,8 +2417,8 @@ def assign_current_density_terminal(self, assignment, current_density_name=None) Parameters ---------- - assignment : list - Objects to assign the current to. + assignment : list of int or :class:`ansys.aedt.core.modeler.elements_3d.FacePrimitive` + Faces or sheet objects to assign the current density terminal to. current_density_name : str, optional Current density name. If no name is provided a random name is generated. @@ -2472,63 +2434,30 @@ def assign_current_density_terminal(self, assignment, current_density_name=None) objects_list = self.modeler.convert_to_selections(assignment, True) - existing_2d_objects_list = [x.name for x in self.modeler.object_list if not x.is3d] - if [x for x in objects_list if x not in existing_2d_objects_list]: - self.logger.error("Entity provided not a planar entity.") - return False - try: + if self.modeler._is3d: + bound_objects = {"Faces": objects_list} + else: + bound_objects = {"Objects": objects_list} if len(objects_list) > 1: current_density_group_names = [] for x in range(0, len(objects_list)): current_density_group_names.append(current_density_name + f"_{str(x + 1)}") - props = {} - props["items"] = current_density_group_names - props[current_density_group_names[0]] = dict({"Objects": objects_list}) - bound = BoundaryObject(self, current_density_group_names[0], props, "CurrentDensityTerminalGroup") + bound_name = current_density_group_names[0] + props = {"items": current_density_group_names, bound_name: bound_objects} + bound_type = "CurrentDensityTerminalGroup" else: - props = dict({"Objects": objects_list}) - bound = BoundaryObject(self, current_density_name, props, "CurrentDensityTerminal") + props = bound_objects + bound_name = current_density_name + bound_type = "CurrentDensityTerminal" - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(bound_name, props, bound_type) except Exception: return False else: - self.logger.error("Current density can only be applied to Eddy current or magnetostatic solution types.") + self.logger.error("Current density can only be applied to Eddy Current or Magnetostatic solution types.") return False - @pyaedt_function_handler() - def _create_boundary(self, name, props, boundary_type): - """Create a boundary. - - Parameters - ---------- - name : str - Name of the boundary. - props : list - List of properties for the boundary. - boundary_type : - Type of the boundary. - - Returns - ------- - :class:`ansys.aedt.core.modules.boundary.common.BoundaryObject` - Boundary object. - - """ - bound = BoundaryObject(self, name, props, boundary_type) - result = bound.create() - if result: - self._boundaries[bound.name] = bound - self.logger.info("Boundary %s %s has been correctly created.", boundary_type, name) - return bound - - self.logger.error("Error in boundary creation for %s %s.", boundary_type, name) - return result - @pyaedt_function_handler() def get_conduction_paths(self): """Get a dictionary of all conduction paths with relative objects. It works from AEDT 23R1. @@ -2600,77 +2529,66 @@ def assign_master_slave( >>> oModule.AssignIndependent >>> oModule.AssignDependent """ - try: - independent = self.modeler.convert_to_selections(independent, True) - dependent = self.modeler.convert_to_selections(dependent, True) - if not bound_name: - bound_name_m = generate_unique_name("Independent") - bound_name_s = generate_unique_name("Dependent") - else: - bound_name_m = bound_name - bound_name_s = bound_name + "_dep" - if ( - not isinstance(u_vector_origin_coordinates_master, list) - or not isinstance(u_vector_origin_coordinates_slave, list) - or not isinstance(u_vector_pos_coordinates_master, list) - or not isinstance(u_vector_pos_coordinates_slave, list) - ): - raise ValueError("Please provide a list of coordinates for U vectors.") - elif [x for x in u_vector_origin_coordinates_master if not isinstance(x, str)]: - raise ValueError("Elements of coordinates system must be strings in the form of ``value+unit``.") - elif [x for x in u_vector_origin_coordinates_slave if not isinstance(x, str)]: - raise ValueError("Elements of coordinates system must be strings in the form of ``value+unit``.") - elif [x for x in u_vector_pos_coordinates_master if not isinstance(x, str)]: - raise ValueError("Elements of coordinates system must be strings in the form of ``value+unit``.") - elif [x for x in u_vector_pos_coordinates_slave if not isinstance(x, str)]: - raise ValueError("Elements of coordinates system must be strings in the form of ``value+unit``.") - elif len(u_vector_origin_coordinates_master) != 3: - raise ValueError("Vector must contain 3 elements for x, y and z coordinates.") - elif len(u_vector_origin_coordinates_slave) != 3: - raise ValueError("Vector must contain 3 elements for x, y and z coordinates.") - elif len(u_vector_pos_coordinates_master) != 3: - raise ValueError("Vector must contain 3 elements for x, y and z coordinates.") - elif len(u_vector_pos_coordinates_slave) != 3: - raise ValueError("Vector must contain 3 elements for x, y and z coordinates.") - u_master_vector_coordinates = dict( + independent = self.modeler.convert_to_selections(independent, True) + dependent = self.modeler.convert_to_selections(dependent, True) + if not bound_name: + bound_name_m = generate_unique_name("Independent") + bound_name_s = generate_unique_name("Dependent") + else: + bound_name_m = bound_name + bound_name_s = bound_name + "_dep" + list_coordinates = [ + u_vector_origin_coordinates_master, + u_vector_origin_coordinates_slave, + u_vector_pos_coordinates_master, + u_vector_pos_coordinates_slave, + ] + if any(not isinstance(coordinates, list) for coordinates in list_coordinates): + self.logger.error("Please provide a list of coordinates for U vectors.") + return False + for coordinates in list_coordinates: + if any(not isinstance(x, str) for x in coordinates): + self.logger.error("Elements of coordinates system must be strings in the form of ``value+unit``.") + return False + if any(len(coordinates) != 3 for coordinates in list_coordinates): + self.logger.error("Vector must contain 3 elements for x, y, and z coordinates.") + return False + u_master_vector_coordinates = dict( + { + "Coordinate System": "Global", + "Origin": u_vector_origin_coordinates_master, + "UPos": u_vector_pos_coordinates_master, + } + ) + master_props = dict( + {"Faces": independent, "CoordSysVector": u_master_vector_coordinates, "ReverseV": reverse_master} + ) + master = self._create_boundary_object(bound_name_m, master_props, "Independent") + if master: + u_slave_vector_coordinates = dict( { "Coordinate System": "Global", - "Origin": u_vector_origin_coordinates_master, - "UPos": u_vector_pos_coordinates_master, + "Origin": u_vector_origin_coordinates_slave, + "UPos": u_vector_pos_coordinates_slave, } ) - props2 = dict( - {"Faces": independent, "CoordSysVector": u_master_vector_coordinates, "ReverseV": reverse_master} - ) - bound = BoundaryObject(self, bound_name_m, props2, "Independent") - if bound.create(): - self._boundaries[bound.name] = bound - u_slave_vector_coordinates = dict( - { - "Coordinate System": "Global", - "Origin": u_vector_origin_coordinates_slave, - "UPos": u_vector_pos_coordinates_slave, - } - ) - - props2 = dict( - { - "Faces": dependent, - "CoordSysVector": u_slave_vector_coordinates, - "ReverseU": reverse_slave, - "Independent": bound_name_m, - "RelationIsSame": same_as_master, - } - ) - bound2 = BoundaryObject(self, bound_name_s, props2, "Dependent") - if bound2.create(): - self._boundaries[bound2.name] = bound2 - return bound, bound2 - else: - return bound, False - except Exception: - return False, False + slave_props = dict( + { + "Faces": dependent, + "CoordSysVector": u_slave_vector_coordinates, + "ReverseU": reverse_slave, + "Independent": bound_name_m, + "RelationIsSame": same_as_master, + } + ) + slave = self._create_boundary_object(bound_name_s, slave_props, "Dependent") + if slave: + return master, slave + else: + self.logger.error("Slave boundary could not be created.") + return False + return False @pyaedt_function_handler(objects_list="assignment") def assign_flux_tangential(self, assignment, flux_name=None): @@ -2718,8 +2636,7 @@ def assign_flux_tangential(self, assignment, flux_name=None): props = {"NAME": flux_name, "Faces": []} for sel in assignment: props["Faces"].append(sel) - - return self._create_boundary(flux_name, props, "FluxTangential") + return self._create_boundary_object(flux_name, props, "FluxTangential") @pyaedt_function_handler(nets_layers_mapping="net_layers", reference_cs="coordinate_system") def assign_layout_force( @@ -2795,10 +2712,7 @@ def assign_layout_force( "NetsAndLayersChoices": dict({component_name: dict({"NetLayerSetMap": nets_layers_props})}), } ) - bound = MaxwellParameters(self, force_name, props, "LayoutForce") - if bound.create(): - self._boundaries[bound.name] = bound - return bound + return self._create_boundary_object(force_name, props, "LayoutForce") @pyaedt_function_handler(faces="assignment") def assign_tangential_h_field( @@ -2852,7 +2766,7 @@ def assign_tangential_h_field( >>> oModule.AssignTangentialHField """ if self.solution_type not in ["EddyCurrent", "Magnetostatic"]: - self.logger.error("Tangential H Field is applicable only to Eddy current.") + self.logger.error("Tangential H Field is applicable only to Eddy Current.") return False assignment = self.modeler.convert_to_selections(assignment, True) if not bound_name: @@ -2882,11 +2796,7 @@ def assign_tangential_h_field( props["CoordSysVector"] = dict({"Coordinate System": coordinate_system, "Origin": origin, "UPos": u_pos}) props["ReverseV"] = reverse - bound = BoundaryObject(self, bound_name, props, "Tangential H Field") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(bound_name, props, "Tangential H Field") @pyaedt_function_handler(faces="assignment", bound_name="boundary") def assign_zero_tangential_h_field(self, assignment, boundary=None): @@ -2910,7 +2820,7 @@ def assign_zero_tangential_h_field(self, assignment, boundary=None): >>> oModule.AssignZeroTangentialHField """ if self.solution_type not in ["EddyCurrent"]: - self.logger.error("Tangential H Field is applicable only to Eddy current.") + self.logger.error("Tangential H Field is applicable only to Eddy Current.") return False assignment = self.modeler.convert_to_selections(assignment, True) if not boundary: @@ -2920,11 +2830,7 @@ def assign_zero_tangential_h_field(self, assignment, boundary=None): "Faces": assignment, } ) - bound = BoundaryObject(self, boundary, props, "Zero Tangential H Field") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(boundary, props, "Zero Tangential H Field") @pyaedt_function_handler() def assign_resistive_sheet( @@ -3011,21 +2917,21 @@ def assign_resistive_sheet( >>> m3d = ansys.aedt.core.Maxwell3d(solution_type="Transient") >>> my_box = m3d.modeler.create_box(origin=[0, 0, 0], sizes=[0.4, -1, 0.8], material="copper") >>> resistive_face = my_box.faces[0] - >>> bound = self.aedtapp.assign_resistive_sheet(assignment=resistive_face, resistance="3ohm") - >>> self.aedtapp.solution_type = SOLUTIONS.Maxwell3d.Magnetostatic - >>> bound = self.aedtapp.assign_resistive_sheet(assignment=resistive_face, non_linear=True) + >>> bound = m3d.assign_resistive_sheet(assignment=resistive_face, resistance="3ohm") + >>> m3d.solution_type = SOLUTIONS.Maxwell3d.Magnetostatic + >>> bound = m3d.assign_resistive_sheet(assignment=resistive_face, non_linear=True) >>> m3d.release_desktop() """ if self.solution_type not in ["EddyCurrent", "Transient", "Magnetostatic"]: self.logger.error( - "Resistive sheet is applicable only to Eddy current, transient and magnetostatic solvers." + "Resistive sheet is applicable only to Eddy Current, transient and magnetostatic solvers." ) return False assignment = self.modeler.convert_to_selections(assignment, True) if not name: - boundary = generate_unique_name("ResistiveSheet") + name = generate_unique_name("ResistiveSheet") listobj = self.modeler.convert_to_selections(assignment, True) @@ -3049,11 +2955,7 @@ def assign_resistive_sheet( props["CathodeParC"] = cathode_c props["CathodeParD"] = cathode_d - bound = BoundaryObject(self, boundary, props, "ResistiveSheet") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(name, props, "ResistiveSheet") class Maxwell2d(Maxwell, FieldAnalysis3D, object): @@ -3324,13 +3226,8 @@ def assign_balloon(self, assignment, boundary=None): if not boundary: boundary = generate_unique_name("Balloon") - props2 = dict({"Edges": assignment}) - bound = BoundaryObject(self, boundary, props2, "Balloon") - - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + props = dict({"Edges": assignment}) + return self._create_boundary_object(boundary, props, "Balloon") @pyaedt_function_handler(input_edge="assignment", vectorvalue="vector_value", bound_name="boundary") def assign_vector_potential(self, assignment, vector_value=0, boundary=None): @@ -3376,12 +3273,8 @@ def assign_vector_potential(self, assignment, vector_value=0, boundary=None): props2 = dict({"Objects": assignment, "Value": str(vector_value), "CoordinateSystem": ""}) else: props2 = dict({"Edges": assignment, "Value": str(vector_value), "CoordinateSystem": ""}) - bound = BoundaryObject(self, boundary, props2, "Vector Potential") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(boundary, props2, "Vector Potential") @pyaedt_function_handler(master_edge="independent", slave_edge="dependent", bound_name="boundary") def assign_master_slave( @@ -3416,34 +3309,33 @@ def assign_master_slave( >>> oModule.AssignIndependent >>> oModule.AssignDependent """ - independent = self.modeler.convert_to_selections(independent, True) - dependent = self.modeler.convert_to_selections(dependent, True) - if not boundary: - bound_name_m = generate_unique_name("Independent") - bound_name_s = generate_unique_name("Dependent") - else: - bound_name_m = boundary - bound_name_s = boundary + "_dep" - props2 = dict({"Edges": independent, "ReverseV": reverse_master}) - bound = BoundaryObject(self, bound_name_m, props2, "Independent") - if bound.create(): - self._boundaries[bound.name] = bound - - props2 = dict( - { - "Edges": dependent, - "ReverseU": reverse_slave, - "Independent": bound_name_m, - "SameAsMaster": same_as_master, - } - ) - bound2 = BoundaryObject(self, bound_name_s, props2, "Dependent") - if bound2.create(): - self._boundaries[bound2.name] = bound2 - return bound, bound2 + try: + independent = self.modeler.convert_to_selections(independent, True) + dependent = self.modeler.convert_to_selections(dependent, True) + if not boundary: + bound_name_m = generate_unique_name("Independent") + bound_name_s = generate_unique_name("Dependent") else: - return bound, False - return False, False + bound_name_m = boundary + bound_name_s = boundary + "_dep" + master_props = dict({"Edges": independent, "ReverseV": reverse_master}) + master = self._create_boundary_object(bound_name_m, master_props, "Independent") + if master: + slave_props = dict( + { + "Edges": dependent, + "ReverseU": reverse_slave, + "Independent": bound_name_m, + "SameAsMaster": same_as_master, + } + ) + slave = self._create_boundary_object(bound_name_s, slave_props, "Dependent") + if slave: + return master, slave + else: + return False + except Exception: + return False @pyaedt_function_handler(objects="assignment", bound_name="boundary") def assign_end_connection(self, assignment, resistance=0, inductance=0, boundary=None): @@ -3473,7 +3365,7 @@ def assign_end_connection(self, assignment, resistance=0, inductance=0, boundary >>> oModule.AssignEndConnection """ if self.solution_type not in ["EddyCurrent", "Transient"]: - self.logger.error("Excitation applicable only to Eddy current or Transient Solver.") + self.logger.error("Excitation applicable only to Eddy Current or Transient Solver.") return False if len(assignment) < 2: self.logger.error("At least 2 objects are needed.") @@ -3489,8 +3381,4 @@ def assign_end_connection(self, assignment, resistance=0, inductance=0, boundary "InductanceValue": self.modeler._arg_with_dim(inductance, "H"), } ) - bound = BoundaryObject(self, boundary, props, "EndConnection") - if bound.create(): - self._boundaries[bound.name] = bound - return bound - return False + return self._create_boundary_object(boundary, props, "EndConnection") diff --git a/src/ansys/aedt/core/modules/mesh.py b/src/ansys/aedt/core/modules/mesh.py index 6625e3eee36..f4f23bd3e79 100644 --- a/src/ansys/aedt/core/modules/mesh.py +++ b/src/ansys/aedt/core/modules/mesh.py @@ -1158,7 +1158,6 @@ def assign_length_mesh(self, assignment, inside_selection=True, maximum_length=1 if maximum_length is None and maximum_elements is None: self.logger.error("mesh not assigned due to incorrect settings") return - assignment = self._app.modeler.convert_to_selections(assignment, True) if isinstance(assignment[0], int) and not inside_selection: seltype = "Faces" @@ -1318,7 +1317,6 @@ def assign_curvilinear_elements(self, assignment, enable=True, name=None): name = generate_unique_name(name) else: name = generate_unique_name("CurvilinearElements") - assignment = self._app.modeler.convert_to_selections(assignment, True) if isinstance(assignment[0], int): seltype = "Faces" diff --git a/src/ansys/aedt/core/modules/solve_setup.py b/src/ansys/aedt/core/modules/solve_setup.py index 665765ff531..0d4e57c9472 100644 --- a/src/ansys/aedt/core/modules/solve_setup.py +++ b/src/ansys/aedt/core/modules/solve_setup.py @@ -866,7 +866,7 @@ def add_mesh_link( Name of the source design. solution : str, optional Name of the source design solution in the format ``"name : solution_name"``. - If ``None``, the default value is ``name : LastAdaptive``. + If ``None``, the default value is taken from the nominal adaptive solution. parameters : dict, optional Dictionary of the "mapping" variables from the source design. If ``None``, the default is `appname.available_variations.nominal_w_values_dict`. @@ -919,9 +919,7 @@ def add_mesh_link( design_type = self.p_app.design_type meshlinks["Product"] = design_type # design name - if not design or design is None: - raise ValueError("Provide design name to add mesh link to.") - elif design not in self.p_app.design_list: + if design not in self.p_app.design_list: raise ValueError("Design does not exist in current project.") else: meshlinks["Design"] = design @@ -939,15 +937,8 @@ def add_mesh_link( meshlinks["ImportMesh"] = True # solution name if solution is None: - meshlinks["Soln"] = ( - f'{self.p_app.oproject.GetDesign(design).GetChildObject("Analysis").GetChildNames()[0]} : ' - f"LastAdaptive" - ) - elif ( - solution.split()[0] in self.p_app.oproject.GetDesign(design).GetChildObject("Analysis").GetChildNames() - ): - meshlinks["Soln"] = f"{solution.split()[0]} : LastAdaptive" - else: + meshlinks["Soln"] = self.p_app.nominal_adaptive + elif solution.split()[0] not in self.p_app.existing_analysis_setups: raise ValueError("Setup does not exist in current design.") # parameters meshlinks["Params"] = {} @@ -964,7 +955,7 @@ def add_mesh_link( meshlinks["ForceSourceToSolve"] = force_source_to_solve meshlinks["PreservePartnerSoln"] = preserve_partner_solution meshlinks["ApplyMeshOp"] = apply_mesh_operations - if self.p_app.design_type != "Maxwell 2D" or self.p_app.design_type != "Maxwell 3D": + if self.p_app.design_type not in ["Maxwell 2D", "Maxwell 3D"]: meshlinks["AdaptPort"] = adapt_port self.update() self.auto_update = auto_update diff --git a/tests/system/general/conftest.py b/tests/system/general/conftest.py index faadc215643..5a26ed50644 100644 --- a/tests/system/general/conftest.py +++ b/tests/system/general/conftest.py @@ -82,7 +82,6 @@ # Initialize default desktop configuration default_version = "2024.2" - if inside_desktop and "oDesktop" in dir(sys.modules["__main__"]): default_version = sys.modules["__main__"].oDesktop.GetVersion()[0:6] config = { diff --git a/tests/system/general/example_models/TMaxwell/Motor3D_cyl_gap.aedt b/tests/system/general/example_models/TMaxwell/Motor3D_cyl_gap.aedt deleted file mode 100644 index aa0a581a56f..00000000000 --- a/tests/system/general/example_models/TMaxwell/Motor3D_cyl_gap.aedt +++ /dev/null @@ -1,19261 +0,0 @@ -$begin 'AnsoftProject' - Created='Wed Mar 22 09:59:57 2023' - Product='ElectronicsDesktop' - FileOwnedByWorkbench=false - $begin 'Desktop' - Version(2023, 2) - InfrastructureVersion(1, 0) - $begin 'FactoryHeader' - $begin 'geometry3deditor' - KernelVersion(2, 0) - ProjectContainsGeometry3D='1' - $end 'geometry3deditor' - $end 'FactoryHeader' - $end 'Desktop' - UsesAdvancedFeatures=false - NextUniqueID=0 - MoveBackwards=false - $begin 'HFSSEnvironment' - Version(1, 0) - $end 'HFSSEnvironment' - $begin 'PlanarEMEnvironment' - Version(1, 0) - $end 'PlanarEMEnvironment' - $begin 'Q3DEnvironment' - Version(1, 0) - $end 'Q3DEnvironment' - $begin '2DExtractorEnvironment' - Version(1, 0) - $end '2DExtractorEnvironment' - $begin 'NexximEnvironment' - Version(1, 0) - $end 'NexximEnvironment' - $begin 'NexximNetlistEnvironment' - Version(1, 0) - $end 'NexximNetlistEnvironment' - $begin 'EmitEnvironment' - Version(1, 0) - $end 'EmitEnvironment' - $begin 'Maxwell3DEnvironment' - Version(1, 0) - $end 'Maxwell3DEnvironment' - $begin 'Maxwell2DEnvironment' - Version(1, 0) - $end 'Maxwell2DEnvironment' - $begin 'RMxprtEnvironment' - Version(1, 0) - $end 'RMxprtEnvironment' - $begin 'MaxCirEnvironment' - Version(1, 0) - $end 'MaxCirEnvironment' - $begin 'SimplorerEnvironment' - Version(1, 0) - $end 'SimplorerEnvironment' - $begin 'IcepakEnvironment' - Version(1, 0) - $end 'IcepakEnvironment' - $begin 'MechanicalEnvironment' - Version(1, 0) - $end 'MechanicalEnvironment' - $begin 'SchematicEnvironment' - Version(1, 0) - $end 'SchematicEnvironment' - $begin 'geometry3deditor' - Version(1, 0) - $end 'geometry3deditor' - ReadVersion=11 - $begin 'DesignMgrEnvironment' - CompInstCounter=2 - GPortCounter=0 - NetCounter=0 - Alias('Ieee;Simplorer Elements\\Ieee', 'Std;Simplorer Elements\\Std', 'Basic_VHDLAMS;Simplorer Elements\\Basic Elements VHDLAMS\\Basic Elements VHDLAMS', 'Digital_Elements;Simplorer Elements\\Digital Elements\\Digital Elements', 'Transformations;Simplorer Elements\\Tools\\Transformations\\Transformations', 'HEV_VHDLAMS;Simplorer Elements\\HEV VHDLAMS\\HEV VHDLAMS', 'automotive_vda;Simplorer Elements\\VDALibs VHDLAMS\\automotive_vda', 'example_boardnet;Simplorer Elements\\VDALibs VHDLAMS\\example_boardnet', 'example_ecar;Simplorer Elements\\VDALibs VHDLAMS\\example_ecar', 'fundamentals_vda;Simplorer Elements\\VDALibs VHDLAMS\\fundamentals_vda', 'hybrid_emc_vda;Simplorer Elements\\VDALibs VHDLAMS\\hybrid_emc_vda', 'megma;Simplorer Elements\\VDALibs VHDLAMS\\megma', 'modelica_rotational;Simplorer Elements\\VDALibs VHDLAMS\\modelica_rotational', 'modelica_thermal;Simplorer Elements\\VDALibs VHDLAMS\\modelica_thermal', 'modelica_translational;Simplorer Elements\\VDALibs VHDLAMS\\modelica_translational', 'spice2vhd;Simplorer Elements\\VDALibs VHDLAMS\\spice2vhd', 'spice2vhd_devices;Simplorer Elements\\VDALibs VHDLAMS\\spice2vhd_devices', 'aircraft_electrical_vhdlams;Simplorer Elements\\Aircraft Electrical VHDLAMS\\Aircraft Electrical VHDLAMS', 'power_system_vhdlams;Simplorer Elements\\Power System VHDLAMS\\Power System VHDLAMS') - $end 'DesignMgrEnvironment' - $begin 'ProjectDatasets' - NextUniqueID=0 - MoveBackwards=false - DatasetType='ProjectDatasetType' - $begin 'DatasetDefinitions' - $end 'DatasetDefinitions' - $end 'ProjectDatasets' - VariableOrders[0:] - $begin 'Definitions' - $begin 'Materials' - $begin 'vacuum' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=230 - Green=230 - Blue=230 - Transparency=0.949999988079071 - $end 'MatAppearanceData' - $end 'AttachedData' - permittivity='1' - ModTime=1499970477 - Library='pyaedt\\_unittest\\example_models\\T13\\material_sample' - LibLocation='PersonalLibrary' - ModSinceLib=false - $end 'vacuum' - $begin 'Copper (Annealed)_65C' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal', 'Structural') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=210 - Green=105 - Blue=30 - $end 'MatAppearanceData' - $end 'AttachedData' - permeability='1' - conductivity='49288048.9198' - ModTime=1679475611 - Library='' - LibLocation='Project' - ModSinceLib=true - $end 'Copper (Annealed)_65C' - $begin 'Arnold_Magnetics_N30UH_80C_new' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal', 'Structural') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=0 - Green=100 - Blue=0 - $end 'MatAppearanceData' - $end 'AttachedData' - $begin 'permeability' - property_type='nonlinear' - BTypeForSingleCurve='normal' - HUnit='A_per_meter' - BUnit='tesla' - IsTemperatureDependent=false - $begin 'BHCoordinates' - DimUnits[2: '', ''] - Points[174: -1406000, -1.8289, -1402000, -1.2532, -1394000, -0.9938, -1373000, -0.84, -1357000, -0.7872, -1340000, -0.7492, -1323000, -0.7175, -1307000, -0.6891, -1290000, -0.6626, -1274000, -0.6373, -1257000, -0.6129, -1241000, -0.589, -1224000, -0.5655, -1208000, -0.5424, -1191000, -0.5195, -1175000, -0.4968, -1158000, -0.4742, -1142000, -0.4518, -1125000, -0.4295, -1108000, -0.4073, -1092000, -0.3851, -1075000, -0.363, -1059000, -0.341, -1042000, -0.319, -1026000, -0.297, -1009000, -0.2751, -993000, -0.2532, -976000, -0.2314, -960000, -0.2096, -943000, -0.1877, -926000, -0.166, -910000, -0.1442, -893000, -0.1224, -877000, -0.1007, -860000, -0.079, -844000, -0.0573, -827000, -0.0356, -811000, -0.0139, -794000, 0.0078, -778000, 0.0295, -761000, 0.0512, -744000, 0.0728, -728000, 0.0945, -711000, 0.1161, -695000, 0.1377, -678000, 0.1594, -662000, 0.181, -645000, 0.2026, -629000, 0.2243, -612000, 0.2459, -596000, 0.2675, -579000, 0.2891, -562000, 0.3107, -546000, 0.3323, -529000, 0.3539, -513000, 0.3755, -496000, 0.3971, -480000, 0.4187, -463000, 0.4402, -447000, 0.4618, -430000, 0.4834, -414000, 0.505, -397000, 0.5266, -381000, 0.5481, -364000, 0.5697, -347000, 0.5913, -331000, 0.6129, -314000, 0.6344, -298000, 0.656, -281000, 0.6776, -265000, 0.6991, -248000, 0.7207, -232000, 0.7422, -215000, 0.7638, -199000, 0.7854, -182000, 0.8069, -165000, 0.8285, -149000, 0.85, -132000, 0.8716, -116000, 0.8931, -99000, 0.9147, -83000, 0.9363, -66000, 0.9578, -50000, 0.9794, -33000, 1.0009, -17000, 1.0225, 0, 1.044] - $end 'BHCoordinates' - $begin 'Temperatures' - $end 'Temperatures' - $end 'permeability' - conductivity='555555.5556' - $begin 'magnetic_coercivity' - property_type='VectorProperty' - Magnitude='-800146.66287534A_per_meter' - DirComp1='1' - DirComp2='0' - DirComp3='0' - $end 'magnetic_coercivity' - mass_density='7500' - ModTime=1679475611 - Library='' - LibLocation='Project' - ModSinceLib=true - $end 'Arnold_Magnetics_N30UH_80C_new' - $begin '30DH_20C_smooth' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal', 'Structural') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=255 - Green=69 - Blue=0 - $end 'MatAppearanceData' - $end 'AttachedData' - $begin 'permeability' - property_type='nonlinear' - BTypeForSingleCurve='normal' - HUnit='A_per_meter' - BUnit='tesla' - IsTemperatureDependent=false - $begin 'BHCoordinates' - DimUnits[2: '', ''] - Points[78: 0, 0, 10.005, 0.034, 15.007, 0.057, 20.01, 0.09, 30.015, 0.198, 40.034, 0.37, 50.048, 0.562, 60.061, 0.748, 67.279491252, 0.86001904448, 76.339295372, 0.9582625295, 87.601402595, 1.0436786143, 101.42680315, 1.1172154583, 118.17648728, 1.1798212206, 138.21144521, 1.2324440606, 161.89266717, 1.2760321375, 189.58114339, 1.3115336106, 221.63786412, 1.3398966392, 258.42381958, 1.3620693826, 300.3, 1.379, 400.8, 1.412, 500.8, 1.434, 600.8, 1.452, 800.9, 1.478, 1001, 1.498, 2005.5, 1.567, 2506, 1.593, 5013, 1.688, 8016, 1.769, 10017, 1.811, 14979.352, 1.871871516, 30018.718, 1.923961998, 55616.408, 1.963927948, 92665.593, 2.012536477, 142649.57, 2.076015733, 208013.6, 2.158412749, 293010.73, 2.265336973, 406010.2, 2.407391643, 568476.41, 2.611582176, 1000000, 3.153871481] - $end 'BHCoordinates' - $begin 'Temperatures' - $end 'Temperatures' - $end 'permeability' - conductivity='1694915.25424' - $begin 'core_loss_type' - property_type='ChoiceProperty' - Choice='Electrical Steel' - $end 'core_loss_type' - core_loss_kh='71.7180985413' - core_loss_kc='0.25092214579' - core_loss_ke='12.1625774023' - core_loss_kdc='0.001' - mass_density='7650' - core_loss_equiv_cut_depth='0.001meter' - ModTime=1679475611 - Library='' - LibLocation='Project' - ModSinceLib=true - $end '30DH_20C_smooth' - $end 'Materials' - $begin 'SurfaceMaterials' - $begin 'Steel-oxidised-surface' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=2 - $begin 'PhysicsTypes' - set('Thermal') - $end 'PhysicsTypes' - surface_emissivity='0.8' - ModTime=1461288057 - Library='SurfaceMaterials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'Steel-oxidised-surface' - $end 'SurfaceMaterials' - $begin 'Scripts' - $end 'Scripts' - $begin 'Symbols' - $begin 'Maxwell3DDesign1' - ModTime=1679558499 - Library='' - ModSinceLib=false - LibLocation='Project' - HighestLevel=1 - Normalize=true - InitialLevels(0, 1) - $begin 'Graphics' - Rect(0, 0, 0, 0, 0.00254, 0.00254, 0.00508, 0.00508, 0, 0, 0) - Rect(0, 1, 0, 0, 0.000423333333333333, 0.00254, 0.000423333333333333, 0.000423333333333334, 0, 0, 0) - $end 'Graphics' - $end 'Maxwell3DDesign1' - $end 'Symbols' - $begin 'DefInfo' - Maxwell3DDesign1(1002, 0, 0, 0, '', 1679558499, '', 'Maxwell3DDesign1', '', '', '', '', '', 'Design.bmp', '', 'Project', '', '', 1679558499, '', 0, 0) - $end 'DefInfo' - $begin 'Compdefs' - $begin 'Maxwell3DDesign1' - Library='' - CircuitEnv=0 - Refbase='U' - NumParts=1 - ModSinceLib=true - $begin 'Properties' - TextProp('Representation', 'SRD', '', 'Maxwell3DDesign1') - TextProp('Owner', 'SRD', '', 'Maxwell 3D') - $end 'Properties' - CompExtID=6 - $end 'Maxwell3DDesign1' - $end 'Compdefs' - $end 'Definitions' - DesignIDServer=4 - MoveBackwards=false - $begin 'Maxwell3DModel' - RepRewriteV2=true - Name='Maxwell3DDesign1' - DesignID=2 - 'Allow Material Override'=false - 'Perform Minimal validation'=false - $begin 'TemperatureSettings' - IncludeTemperatureDependence=false - EnableFeedback=false - Temperatures(6, '22cel', 970, '22cel', 982, '22cel', 1005, '22cel', 1022, '22cel', 1038, '22cel', 1052, '22cel', 1063, '22cel', 1074, '22cel', 1085, '22cel', 1096, '22cel', 1107, '22cel', 1113, '22cel', 1119, '22cel', 1125, '22cel', 1131, '22cel', 1137, '22cel', 1144, '22cel', 1150, '22cel', 1159, '22cel', 1169, '22cel', 1183, '22cel', 1196, '22cel', 1210, '22cel', 1222, '22cel', 1236, '22cel', 1248, '22cel', 1262, '22cel') - $end 'TemperatureSettings' - ObjsEnabledForDeformation() - ComputeIncrementalMatrix=false - PerfectConductorThreshold=1e+30 - InsulatorThreshold=1 - SkipMeshChecks=false - SolutionType='Magnetostatic' - $begin 'OutputVariable' - NextUniqueID=0 - MoveBackwards=false - $end 'OutputVariable' - $begin 'ModelSetup' - $begin 'DesignDatasets' - NextUniqueID=0 - MoveBackwards=false - DatasetType='DesignDatasetType' - $begin 'DatasetDefinitions' - $end 'DatasetDefinitions' - $end 'DesignDatasets' - $begin 'Properties' - VariableProp('DiaStatorYoke', 'UD', '', '198mm') - VariableProp('DiaGap', 'UD', '', '132mm') - VariableProp('SlotType', 'UD', '', '3') - VariableProp('SlotNumber', 'UD', '', '48') - VariableProp('Model_Length', 'UD', '', '80mm') - VariableProp('SymmetryFactor', 'UD', '', '8') - VariableProp('Stator_Lam_Length', 'UD', '', '0mm') - VariableProp('StatorSkewAngle', 'UD', '', '0deg') - VariableProp('DiaRotorLam', 'UD', '', '130mm') - VariableProp('Coil_Edge_Short', 'UD', '', '3.769235435mm') - VariableProp('Airgap', 'UD', '', '1mm') - VariableProp('Coil_SetBack', 'UD', '', '3.605732823mm') - VariableProp('Coil_Edge_Long', 'UD', '', '15.37828521mm') - VariableProp('CoilPitch', 'UD', '', '5') - VariableProp('DiaOuter', 'UD', '', '198mm') - VariableProp('SegAngle', 'UD', '', '0.25') - VariableProp('DiaShaft', 'UD', '', '44.45mm') - VariableProp('mapping_angle', 'UD', '', '0.125*4deg') - $end 'Properties' - VariableOrders[18: 'DiaStatorYoke', 'DiaGap', 'SlotType', 'SlotNumber', 'Model_Length', 'SymmetryFactor', 'Stator_Lam_Length', 'StatorSkewAngle', 'DiaRotorLam', 'Coil_Edge_Short', 'Airgap', 'Coil_SetBack', 'Coil_Edge_Long', 'CoilPitch', 'DiaOuter', 'SegAngle', 'DiaShaft', 'mapping_angle'] - $begin 'Editor3D Doc Preferences' - 'Plane Background'=true - BackgroundColor1=16777215 - BackgroundColor2=0 - 'Need Lights'=true - 'Ambient Light'=8355711 - 'Num Lights'=1 - Light0[4: 16777215, 0.75, -0.150000005960464, -0.629999995231628] - Ver=2 - $end 'Editor3D Doc Preferences' - SnapMode=31 - WorkingCS=1 - $begin 'GeometryCore' - BlockVersionID=3 - DataVersion=1 - NativeKernel='PARASOLID' - NativeKernelVersionID=23 - Units='mm' - ModelExtents=10000 - InstanceID=-1 - $begin 'ValidationOptions' - EntityCheckLevel='Strict' - IgnoreUnclassifiedObjects=false - SkipIntersectionChecks=false - $end 'ValidationOptions' - ContainsGeomLinkUDM=false - $begin 'GeometryOperations' - BlockVersionID=2 - $begin 'AnsoftRangedIDServerManager' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=0 - IDServerRangeMin=0 - IDServerRangeMax=2146483647 - NextUniqueID=2055 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=1 - IDServerRangeMin=2146483648 - IDServerRangeMax=2146485547 - NextUniqueID=2146483654 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $end 'AnsoftRangedIDServerManager' - StartBackGroundFaceID=2146483648 - $begin 'CoordinateSystems' - $begin 'Operation' - OperationType='CreateFaceCoordinateSystem' - ID=994 - $begin 'FaceCSFromParameters' - KernelVersion=23 - $end 'FaceCSFromParameters' - ParentPartID=970 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='CS_PM_I1' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=995 - PlaceHolderOperationID=993 - $end 'Operation' - $begin 'Operation' - OperationType='CreateFaceCoordinateSystem' - ID=999 - $begin 'FaceCSFromParameters' - KernelVersion=23 - $end 'FaceCSFromParameters' - ParentPartID=982 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='CS_PM_O1' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=1000 - PlaceHolderOperationID=998 - $end 'Operation' - $begin 'Operation' - OperationType='CreateFaceCoordinateSystem' - ID=1016 - $begin 'FaceCSFromParameters' - KernelVersion=23 - $end 'FaceCSFromParameters' - ParentPartID=1005 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='FaceCS1' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=1017 - PlaceHolderOperationID=1015 - $end 'Operation' - $begin 'Operation' - OperationType='CreateFaceCoordinateSystem' - ID=1033 - $begin 'FaceCSFromParameters' - KernelVersion=23 - $end 'FaceCSFromParameters' - ParentPartID=1022 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='FaceCS2' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=1034 - PlaceHolderOperationID=1032 - $end 'Operation' - $begin 'Operation' - OperationType='CreateRelativeCoordinateSystem' - ID=1297 - ReferenceCoordSystemID=1 - $begin 'RelativeCSParameters' - KernelVersion=23 - Mode='Axis/Position' - OriginX='0mm' - OriginY='0mm' - OriginZ='0mm' - XAxisXvec='cos(360deg/SymmetryFactor)' - XAxisYvec='sin(360deg/SymmetryFactor)' - XAxisZvec='0mm' - YAxisXvec='-sin(360deg/SymmetryFactor)' - YAxisYvec='cos(360deg/SymmetryFactor)' - YAxisZvec='0mm' - $end 'RelativeCSParameters' - ParentPartID=-1 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='Section' - UDMId=-1 - $end 'Attributes' - $begin 'Operations' - $end 'Operations' - XYPlaneID=1298 - $end 'Operation' - $end 'CoordinateSystems' - $begin 'OperandCSs' - $end 'OperandCSs' - $begin 'SubModelDefinitions' - $end 'SubModelDefinitions' - $begin 'Groups' - $end 'Groups' - $begin 'UserDefinedModels' - $end 'UserDefinedModels' - $begin 'OperandUserDefinedModels' - $end 'OperandUserDefinedModels' - $begin 'ToplevelParts' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator' - Flags='' - Color='(0 0 255)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"30DH_20C_smooth"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='UserDefinedPrimitive' - ID=5 - ReferenceCoordSystemID=1 - $begin 'UserDefinedPrimitiveParameters' - KernelVersion=23 - DllName='RMxprt/VentSlotCore.dll' - Version='12.1' - NoOfParameters=27 - PerformIDTranslation=false - Library='syslib' - $begin 'ParamVector' - $begin 'Pair' - Name='DiaGap' - Value='DiaGap' - $end 'Pair' - $begin 'Pair' - Name='DiaYoke' - Value='DiaStatorYoke' - $end 'Pair' - $begin 'Pair' - Name='Length' - Value='Stator_Lam_Length' - $end 'Pair' - $begin 'Pair' - Name='Skew' - Value='StatorSkewAngle' - $end 'Pair' - $begin 'Pair' - Name='Slots' - Value='SlotNumber' - $end 'Pair' - $begin 'Pair' - Name='SlotType' - Value='SlotType' - $end 'Pair' - $begin 'Pair' - Name='Hs0' - Value='1.2mm' - $end 'Pair' - $begin 'Pair' - Name='Hs01' - Value='0mm' - $end 'Pair' - $begin 'Pair' - Name='Hs1' - Value='0.48342273849989997mm' - $end 'Pair' - $begin 'Pair' - Name='Hs2' - Value='17.287669825502mm' - $end 'Pair' - $begin 'Pair' - Name='Bs0' - Value='2.8140000000000001mm' - $end 'Pair' - $begin 'Pair' - Name='Bs1' - Value='4.7115410903599999mm' - $end 'Pair' - $begin 'Pair' - Name='Bs2' - Value='6.9777285790998mm' - $end 'Pair' - $begin 'Pair' - Name='Rs' - Value='2mm' - $end 'Pair' - $begin 'Pair' - Name='FilletType' - Value='1' - $end 'Pair' - $begin 'Pair' - Name='HalfSlot' - Value='0' - $end 'Pair' - $begin 'Pair' - Name='VentHoles' - Value='0' - $end 'Pair' - $begin 'Pair' - Name='HoleDiaIn' - Value='0mm' - $end 'Pair' - $begin 'Pair' - Name='HoleDiaOut' - Value='0mm' - $end 'Pair' - $begin 'Pair' - Name='HoleLocIn' - Value='0mm' - $end 'Pair' - $begin 'Pair' - Name='HoleLocOut' - Value='0mm' - $end 'Pair' - $begin 'Pair' - Name='VentDucts' - Value='0' - $end 'Pair' - $begin 'Pair' - Name='DuctWidth' - Value='0mm' - $end 'Pair' - $begin 'Pair' - Name='DuctPitch' - Value='0mm' - $end 'Pair' - $begin 'Pair' - Name='SegAngle' - Value='0deg' - $end 'Pair' - $begin 'Pair' - Name='LenRegion' - Value='Model_Length' - $end 'Pair' - $begin 'Pair' - Name='InfoCore' - Value='0' - $end 'Pair' - $end 'ParamVector' - $end 'UserDefinedPrimitiveParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=2 - NumCoedges=481 - NumEdges=481 - NumVertices=480 - $end 'Topology' - BodyID=6 - StartFaceID=7 - StartEdgeID=8 - StartVertexID=489 - NumNewFaces=1 - NumNewEdges=481 - NumNewVertices=480 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=7 - $begin 'FaceGeomTopol' - FaceTopol(2, 481, 481, 480) - $begin 'FaceGeometry' - Area=11375.8742747729 - FcUVMid(0, 0, 0) - $begin 'FcTolVts' - TolVt(64.9916097469008, 11.4930701949718, 0, 5e-07) - TolVt(65.7516997997907, 5.71961304969216, 0, 5e-07) - TolVt(66.949130507677, 5.79809680476833, 0, 5e-07) - TolVt(67.3694656384094, 6.77645331922104, 0, 5e-07) - TolVt(84.5460133591964, 9.03778872659174, 0, 5e-07) - TolVt(86.8027835901137, 7.18570526230441, 0, 5e-07) - TolVt(86.9980964896653, 4.20580625846027, 0, 5e-07) - TolVt(85.0023786431881, 2.07499999999998, 0, 5e-07) - TolVt(67.6776151692153, 2.07499999999998, 0, 5e-07) - TolVt(67.1331749133306, 2.9901217947749, 0, 5e-07) - TolVt(65.9357442054443, 2.91163803969873, 0, 5e-07) - TolVt(65.9357442054443, -2.91163803969879, 0, 5e-07) - TolVt(67.1331749133306, -2.99012179477496, 0, 5e-07) - TolVt(67.6776151692153, -2.07500000000005, 0, 5e-07) - TolVt(85.0023786431881, -2.07500000000007, 0, 5e-07) - TolVt(86.9980964896653, -4.20580625846036, 0, 5e-07) - TolVt(86.8027835901137, -7.18570526230449, 0, 5e-07) - TolVt(84.5460133591964, -9.03778872659182, 0, 5e-07) - TolVt(67.3694656384094, -6.77645331922111, 0, 5e-07) - TolVt(66.949130507677, -5.79809680476839, 0, 5e-07) - TolVt(65.7516997997907, -5.71961304969222, 0, 5e-07) - TolVt(64.9916097469008, -11.4930701949718, 0, 5e-07) - TolVt(66.1685520833847, -11.7271785813912, 0, 5e-07) - TolVt(66.8277819406962, -10.8909494939224, 0, 5e-07) - TolVt(84.0043296614832, -13.1522849012931, 0, 5e-07) - TolVt(85.7048478378496, -15.525355268073, 0, 5e-07) - TolVt(85.122250997057, -18.4542673737772, 0, 5e-07) - TolVt(82.6430423460455, -19.9959383823231, 0, 5e-07) - TolVt(65.9086058721856, -15.5119596433624, 0, 5e-07) - TolVt(65.6195679172313, -14.4871083604459, 0, 5e-07) - TolVt(64.4426255807474, -14.2529999740265, 0, 5e-07) - TolVt(62.9354508265094, -19.8778527327279, 0, 5e-07) - TolVt(64.0717669819035, -20.2635800910917, 0, 5e-07) - TolVt(64.8345068350102, -19.520551822462, 0, 5e-07) - TolVt(81.56894330887, -24.0045305614227, 0, 5e-07) - TolVt(82.9451654776552, -26.5792611446072, 0, 5e-07) - TolVt(81.985253089094, -29.4070718539951, 0, 5e-07) - TolVt(79.3260259653736, -30.6119519884114, 0, 5e-07) - TolVt(63.320031586171, -23.9820520372781, 0, 5e-07) - TolVt(63.1672363265404, -22.9282414754909, 0, 5e-07) - TolVt(62.0309201711463, -22.5425141171271, 0, 5e-07) - TolVt(59.802448893473, -27.922519699045, 0, 5e-07) - TolVt(60.8786961833122, -28.4532661273078, 0, 5e-07) - TolVt(61.7318953418559, -27.8161520971999, 0, 5e-07) - TolVt(77.7378897210585, -34.4460520483332, 0, 5e-07) - TolVt(78.7662683393937, -37.1783884937938, 0, 5e-07) - TolVt(77.4454647701701, -39.8567131816105, 0, 5e-07) - TolVt(74.6517192871047, -40.7041866087414, 0, 5e-07) - TolVt(59.6480340040875, -32.041804871755, 0, 5e-07) - TolVt(59.6340958090359, -30.9770660219807, 0, 5e-07) - TolVt(58.5578485191967, -30.446319593718, 0, 5e-07) - TolVt(55.646210479498, -35.4894246117264, 0, 5e-07) - TolVt(56.643974014261, -36.1561088913499, 0, 5e-07) - TolVt(57.5730340040876, -35.6358102974604, 0, 5e-07) - TolVt(72.5767192871047, -44.2981920344468, 0, 5e-07) - TolVt(73.2396585117098, -47.1413833080549, 0, 5e-07) - TolVt(71.5805630770893, -49.62439509632, 0, 5e-07) - TolVt(68.7001009944667, -50.0999613108633, 0, 5e-07) - TolVt(54.9554420226348, -39.5533135412095, 0, 5e-07) - TolVt(55.0805993785439, -38.4958643803693, 0, 5e-07) - TolVt(54.0828358437808, -37.8291801007457, 0, 5e-07) - TolVt(50.5378499761745, -42.4490956297737, 0, 5e-07) - TolVt(51.4400577451493, -43.2403106078938, 0, 5e-07) - TolVt(52.4290820922487, -42.8457299034181, 0, 5e-07) - TolVt(66.1737410640805, -53.3923776730719, 0, 5e-07) - TolVt(66.4598978210211, -56.2977759838545, 0, 5e-07) - TolVt(64.490898103878, -58.5429898524499, 0, 5e-07) - TolVt(61.573004926547, -58.6385117846228, 0, 5e-07) - TolVt(49.3225471916478, -46.3880540497236, 0, 5e-07) - TolVt(49.5846586214577, -45.3559878261397, 0, 5e-07) - TolVt(48.6824508524829, -44.5647728480196, 0, 5e-07) - TolVt(44.5647728480195, -48.682450852483, 0, 5e-07) - TolVt(45.3559878261396, -49.5846586214577, 0, 5e-07) - TolVt(46.3880540497236, -49.3225471916478, 0, 5e-07) - TolVt(58.6385117846228, -61.573004926547, 0, 5e-07) - TolVt(58.5429898524498, -64.4908981038781, 0, 5e-07) - TolVt(56.2977759838544, -66.4598978210211, 0, 5e-07) - TolVt(53.3923776730718, -66.1737410640806, 0, 5e-07) - TolVt(42.845729903418, -52.4290820922487, 0, 5e-07) - TolVt(43.2403106078938, -51.4400577451493, 0, 5e-07) - TolVt(42.4490956297737, -50.5378499761746, 0, 5e-07) - TolVt(37.8291801007457, -54.0828358437808, 0, 5e-07) - TolVt(38.4958643803692, -55.0805993785439, 0, 5e-07) - TolVt(39.5533135412095, -54.9554420226349, 0, 5e-07) - TolVt(50.0999613108632, -68.7001009944668, 0, 5e-07) - TolVt(49.6243950963199, -71.5805630770893, 0, 5e-07) - TolVt(47.1413833080548, -73.2396585117099, 0, 5e-07) - TolVt(44.2981920344467, -72.5767192871048, 0, 5e-07) - TolVt(35.6358102974603, -57.5730340040876, 0, 5e-07) - TolVt(36.1561088913498, -56.6439740142611, 0, 5e-07) - TolVt(35.4894246117263, -55.646210479498, 0, 5e-07) - TolVt(30.4463195937179, -58.5578485191967, 0, 5e-07) - TolVt(30.9770660219807, -59.6340958090359, 0, 5e-07) - TolVt(32.0418048717549, -59.6480340040876, 0, 5e-07) - TolVt(40.7041866087413, -74.6517192871048, 0, 5e-07) - TolVt(39.8567131816104, -77.4454647701701, 0, 5e-07) - TolVt(37.1783884937937, -78.7662683393937, 0, 5e-07) - TolVt(34.4460520483331, -77.7378897210585, 0, 5e-07) - TolVt(27.8161520971999, -61.7318953418559, 0, 5e-07) - TolVt(28.4532661273077, -60.8786961833122, 0, 5e-07) - TolVt(27.9225196990449, -59.802448893473, 0, 5e-07) - TolVt(22.542514117127, -62.0309201711463, 0, 5e-07) - TolVt(22.9282414754908, -63.1672363265404, 0, 5e-07) - TolVt(23.9820520372781, -63.320031586171, 0, 5e-07) - TolVt(30.6119519884113, -79.3260259653736, 0, 5e-07) - TolVt(29.407071853995, -81.985253089094, 0, 5e-07) - TolVt(26.5792611446071, -82.9451654776552, 0, 5e-07) - TolVt(24.0045305614226, -81.56894330887, 0, 5e-07) - TolVt(19.520551822462, -64.8345068350102, 0, 5e-07) - TolVt(20.2635800910916, -64.0717669819036, 0, 5e-07) - TolVt(19.8778527327278, -62.9354508265094, 0, 5e-07) - TolVt(14.2529999740265, -64.4426255807474, 0, 5e-07) - TolVt(14.4871083604458, -65.6195679172313, 0, 5e-07) - TolVt(15.5119596433624, -65.9086058721856, 0, 5e-07) - TolVt(19.995938382323, -82.6430423460455, 0, 5e-07) - TolVt(18.4542673737771, -85.122250997057, 0, 5e-07) - TolVt(15.5253552680729, -85.7048478378496, 0, 5e-07) - TolVt(13.152284901293, -84.0043296614832, 0, 5e-07) - TolVt(10.8909494939223, -66.8277819406962, 0, 5e-07) - TolVt(11.7271785813911, -66.1685520833847, 0, 5e-07) - TolVt(11.4930701949718, -64.9916097469008, 0, 5e-07) - TolVt(5.71961304969214, -65.7516997997907, 0, 5e-07) - TolVt(5.79809680476832, -66.949130507677, 0, 5e-07) - TolVt(6.77645331922103, -67.3694656384094, 0, 5e-07) - TolVt(9.03778872659173, -84.5460133591964, 0, 5e-07) - TolVt(7.18570526230439, -86.8027835901137, 0, 5e-07) - TolVt(4.20580625846025, -86.9980964896653, 0, 5e-07) - TolVt(2.07499999999997, -85.0023786431881, 0, 5e-07) - TolVt(2.07499999999997, -67.6776151692153, 0, 5e-07) - TolVt(2.99012179477489, -67.1331749133306, 0, 5e-07) - TolVt(2.91163803969871, -65.9357442054443, 0, 5e-07) - TolVt(-2.91163803969879, -65.9357442054443, 0, 5e-07) - TolVt(-2.99012179477496, -67.1331749133306, 0, 5e-07) - TolVt(-2.07500000000004, -67.6776151692153, 0, 5e-07) - TolVt(-2.07500000000006, -85.0023786431881, 0, 5e-07) - TolVt(-4.20580625846035, -86.9980964896653, 0, 5e-07) - TolVt(-7.18570526230448, -86.8027835901137, 0, 5e-07) - TolVt(-9.03778872659182, -84.5460133591964, 0, 5e-07) - TolVt(-6.7764533192211, -67.3694656384094, 0, 5e-07) - TolVt(-5.79809680476839, -66.949130507677, 0, 5e-07) - TolVt(-5.71961304969222, -65.7516997997907, 0, 5e-07) - TolVt(-11.4930701949718, -64.9916097469008, 0, 5e-07) - TolVt(-11.7271785813912, -66.1685520833847, 0, 5e-07) - TolVt(-10.8909494939224, -66.8277819406962, 0, 5e-07) - TolVt(-13.1522849012931, -84.0043296614832, 0, 5e-07) - TolVt(-15.525355268073, -85.7048478378496, 0, 5e-07) - TolVt(-18.4542673737772, -85.122250997057, 0, 5e-07) - TolVt(-19.9959383823231, -82.6430423460455, 0, 5e-07) - TolVt(-15.5119596433624, -65.9086058721856, 0, 5e-07) - TolVt(-14.4871083604459, -65.6195679172313, 0, 5e-07) - TolVt(-14.2529999740265, -64.4426255807474, 0, 5e-07) - TolVt(-19.8778527327279, -62.9354508265094, 0, 5e-07) - TolVt(-20.2635800910917, -64.0717669819035, 0, 5e-07) - TolVt(-19.520551822462, -64.8345068350102, 0, 5e-07) - TolVt(-24.0045305614227, -81.56894330887, 0, 5e-07) - TolVt(-26.5792611446072, -82.9451654776552, 0, 5e-07) - TolVt(-29.4070718539951, -81.985253089094, 0, 5e-07) - TolVt(-30.6119519884114, -79.3260259653736, 0, 5e-07) - TolVt(-23.9820520372781, -63.320031586171, 0, 5e-07) - TolVt(-22.9282414754909, -63.1672363265404, 0, 5e-07) - TolVt(-22.5425141171271, -62.0309201711463, 0, 5e-07) - TolVt(-27.922519699045, -59.802448893473, 0, 5e-07) - TolVt(-28.4532661273078, -60.8786961833122, 0, 5e-07) - TolVt(-27.8161520971999, -61.7318953418559, 0, 5e-07) - TolVt(-34.4460520483332, -77.7378897210585, 0, 5e-07) - TolVt(-37.1783884937938, -78.7662683393937, 0, 5e-07) - TolVt(-39.8567131816105, -77.4454647701701, 0, 5e-07) - TolVt(-40.7041866087414, -74.6517192871047, 0, 5e-07) - TolVt(-32.041804871755, -59.6480340040875, 0, 5e-07) - TolVt(-30.9770660219807, -59.6340958090359, 0, 5e-07) - TolVt(-30.446319593718, -58.5578485191967, 0, 5e-07) - TolVt(-35.4894246117264, -55.646210479498, 0, 5e-07) - TolVt(-36.1561088913499, -56.643974014261, 0, 5e-07) - TolVt(-35.6358102974604, -57.5730340040876, 0, 5e-07) - TolVt(-44.2981920344468, -72.5767192871047, 0, 5e-07) - TolVt(-47.1413833080549, -73.2396585117098, 0, 5e-07) - TolVt(-49.62439509632, -71.5805630770893, 0, 5e-07) - TolVt(-50.0999613108633, -68.7001009944667, 0, 5e-07) - TolVt(-39.5533135412095, -54.9554420226348, 0, 5e-07) - TolVt(-38.4958643803693, -55.0805993785439, 0, 5e-07) - TolVt(-37.8291801007457, -54.0828358437808, 0, 5e-07) - TolVt(-42.4490956297738, -50.5378499761745, 0, 5e-07) - TolVt(-43.2403106078938, -51.4400577451493, 0, 5e-07) - TolVt(-42.8457299034181, -52.4290820922486, 0, 5e-07) - TolVt(-53.3923776730719, -66.1737410640805, 0, 5e-07) - TolVt(-56.2977759838545, -66.4598978210211, 0, 5e-07) - TolVt(-58.5429898524499, -64.490898103878, 0, 5e-07) - TolVt(-58.6385117846228, -61.5730049265469, 0, 5e-07) - TolVt(-46.3880540497237, -49.3225471916478, 0, 5e-07) - TolVt(-45.3559878261397, -49.5846586214577, 0, 5e-07) - TolVt(-44.5647728480196, -48.6824508524829, 0, 5e-07) - TolVt(-48.6824508524829, -44.5647728480196, 0, 5e-07) - TolVt(-49.5846586214577, -45.3559878261396, 0, 5e-07) - TolVt(-49.3225471916478, -46.3880540497236, 0, 5e-07) - TolVt(-61.573004926547, -58.6385117846228, 0, 5e-07) - TolVt(-64.4908981038781, -58.5429898524498, 0, 5e-07) - TolVt(-66.4598978210211, -56.2977759838545, 0, 5e-07) - TolVt(-66.1737410640806, -53.3923776730718, 0, 5e-07) - TolVt(-52.4290820922487, -42.8457299034181, 0, 5e-07) - TolVt(-51.4400577451493, -43.2403106078938, 0, 5e-07) - TolVt(-50.5378499761745, -42.4490956297737, 0, 5e-07) - TolVt(-54.0828358437808, -37.8291801007457, 0, 5e-07) - TolVt(-55.0805993785439, -38.4958643803692, 0, 5e-07) - TolVt(-54.9554420226349, -39.5533135412095, 0, 5e-07) - TolVt(-68.7001009944668, -50.0999613108632, 0, 5e-07) - TolVt(-71.5805630770893, -49.62439509632, 0, 5e-07) - TolVt(-73.2396585117098, -47.1413833080548, 0, 5e-07) - TolVt(-72.5767192871048, -44.2981920344467, 0, 5e-07) - TolVt(-57.5730340040876, -35.6358102974603, 0, 5e-07) - TolVt(-56.6439740142611, -36.1561088913499, 0, 5e-07) - TolVt(-55.646210479498, -35.4894246117263, 0, 5e-07) - TolVt(-58.5578485191967, -30.4463195937179, 0, 5e-07) - TolVt(-59.6340958090359, -30.9770660219807, 0, 5e-07) - TolVt(-59.6480340040876, -32.0418048717549, 0, 5e-07) - TolVt(-74.6517192871048, -40.7041866087413, 0, 5e-07) - TolVt(-77.4454647701701, -39.8567131816104, 0, 5e-07) - TolVt(-78.7662683393937, -37.1783884937937, 0, 5e-07) - TolVt(-77.7378897210585, -34.4460520483331, 0, 5e-07) - TolVt(-61.7318953418559, -27.8161520971999, 0, 5e-07) - TolVt(-60.8786961833122, -28.4532661273077, 0, 5e-07) - TolVt(-59.802448893473, -27.9225196990449, 0, 5e-07) - TolVt(-62.0309201711463, -22.542514117127, 0, 5e-07) - TolVt(-63.1672363265404, -22.9282414754908, 0, 5e-07) - TolVt(-63.320031586171, -23.9820520372781, 0, 5e-07) - TolVt(-79.3260259653736, -30.6119519884113, 0, 5e-07) - TolVt(-81.985253089094, -29.407071853995, 0, 5e-07) - TolVt(-82.9451654776552, -26.5792611446071, 0, 5e-07) - TolVt(-81.56894330887, -24.0045305614226, 0, 5e-07) - TolVt(-64.8345068350102, -19.520551822462, 0, 5e-07) - TolVt(-64.0717669819036, -20.2635800910916, 0, 5e-07) - TolVt(-62.9354508265094, -19.8778527327278, 0, 5e-07) - TolVt(-64.4426255807474, -14.2529999740265, 0, 5e-07) - TolVt(-65.6195679172313, -14.4871083604458, 0, 5e-07) - TolVt(-65.9086058721856, -15.5119596433624, 0, 5e-07) - TolVt(-82.6430423460455, -19.995938382323, 0, 5e-07) - TolVt(-85.122250997057, -18.4542673737772, 0, 5e-07) - TolVt(-85.7048478378496, -15.5253552680729, 0, 5e-07) - TolVt(-84.0043296614832, -13.152284901293, 0, 5e-07) - TolVt(-66.8277819406962, -10.8909494939223, 0, 5e-07) - TolVt(-66.1685520833847, -11.7271785813911, 0, 5e-07) - TolVt(-64.9916097469008, -11.4930701949718, 0, 5e-07) - TolVt(-65.7516997997907, -5.71961304969215, 0, 5e-07) - TolVt(-66.949130507677, -5.79809680476832, 0, 5e-07) - TolVt(-67.3694656384094, -6.77645331922104, 0, 5e-07) - TolVt(-84.5460133591964, -9.03778872659173, 0, 5e-07) - TolVt(-86.8027835901137, -7.1857052623044, 0, 5e-07) - TolVt(-86.9980964896653, -4.20580625846026, 0, 5e-07) - TolVt(-85.0023786431881, -2.07499999999997, 0, 5e-07) - TolVt(-67.6776151692153, -2.07499999999997, 0, 5e-07) - TolVt(-67.1331749133306, -2.99012179477489, 0, 5e-07) - TolVt(-65.9357442054443, -2.91163803969872, 0, 5e-07) - TolVt(-65.9357442054443, 2.91163803969875, 0, 5e-07) - TolVt(-67.1331749133306, 2.99012179477492, 0, 5e-07) - TolVt(-67.6776151692153, 2.07500000000001, 0, 5e-07) - TolVt(-85.0023786431881, 2.07500000000002, 0, 5e-07) - TolVt(-86.9980964896653, 4.20580625846031, 0, 5e-07) - TolVt(-86.8027835901137, 7.18570526230444, 0, 5e-07) - TolVt(-84.5460133591964, 9.03778872659178, 0, 5e-07) - TolVt(-67.3694656384094, 6.77645331922107, 0, 5e-07) - TolVt(-66.949130507677, 5.79809680476835, 0, 5e-07) - TolVt(-65.7516997997907, 5.71961304969218, 0, 5e-07) - TolVt(-64.9916097469008, 11.4930701949718, 0, 5e-07) - TolVt(-66.1685520833847, 11.7271785813912, 0, 5e-07) - TolVt(-66.8277819406962, 10.8909494939223, 0, 5e-07) - TolVt(-84.0043296614832, 13.152284901293, 0, 5e-07) - TolVt(-85.7048478378496, 15.5253552680729, 0, 5e-07) - TolVt(-85.122250997057, 18.4542673737772, 0, 5e-07) - TolVt(-82.6430423460455, 19.9959383823231, 0, 5e-07) - TolVt(-65.9086058721856, 15.5119596433624, 0, 5e-07) - TolVt(-65.6195679172313, 14.4871083604459, 0, 5e-07) - TolVt(-64.4426255807474, 14.2529999740265, 0, 5e-07) - TolVt(-62.9354508265094, 19.8778527327278, 0, 5e-07) - TolVt(-64.0717669819035, 20.2635800910916, 0, 5e-07) - TolVt(-64.8345068350102, 19.520551822462, 0, 5e-07) - TolVt(-81.56894330887, 24.0045305614227, 0, 5e-07) - TolVt(-82.9451654776552, 26.5792611446071, 0, 5e-07) - TolVt(-81.985253089094, 29.4070718539951, 0, 5e-07) - TolVt(-79.3260259653736, 30.6119519884113, 0, 5e-07) - TolVt(-63.320031586171, 23.9820520372781, 0, 5e-07) - TolVt(-63.1672363265404, 22.9282414754909, 0, 5e-07) - TolVt(-62.0309201711463, 22.5425141171271, 0, 5e-07) - TolVt(-59.802448893473, 27.922519699045, 0, 5e-07) - TolVt(-60.8786961833122, 28.4532661273078, 0, 5e-07) - TolVt(-61.7318953418559, 27.8161520971999, 0, 5e-07) - TolVt(-77.7378897210585, 34.4460520483332, 0, 5e-07) - TolVt(-78.7662683393937, 37.1783884937937, 0, 5e-07) - TolVt(-77.4454647701701, 39.8567131816105, 0, 5e-07) - TolVt(-74.6517192871047, 40.7041866087414, 0, 5e-07) - TolVt(-59.6480340040875, 32.041804871755, 0, 5e-07) - TolVt(-59.6340958090359, 30.9770660219807, 0, 5e-07) - TolVt(-58.5578485191967, 30.4463195937179, 0, 5e-07) - TolVt(-55.646210479498, 35.4894246117264, 0, 5e-07) - TolVt(-56.643974014261, 36.1561088913499, 0, 5e-07) - TolVt(-57.5730340040876, 35.6358102974604, 0, 5e-07) - TolVt(-72.5767192871047, 44.2981920344468, 0, 5e-07) - TolVt(-73.2396585117098, 47.1413833080549, 0, 5e-07) - TolVt(-71.5805630770893, 49.62439509632, 0, 5e-07) - TolVt(-68.7001009944667, 50.0999613108633, 0, 5e-07) - TolVt(-54.9554420226348, 39.5533135412095, 0, 5e-07) - TolVt(-55.0805993785439, 38.4958643803693, 0, 5e-07) - TolVt(-54.0828358437808, 37.8291801007457, 0, 5e-07) - TolVt(-50.5378499761745, 42.4490956297737, 0, 5e-07) - TolVt(-51.4400577451493, 43.2403106078938, 0, 5e-07) - TolVt(-52.4290820922487, 42.8457299034181, 0, 5e-07) - TolVt(-66.1737410640806, 53.3923776730719, 0, 5e-07) - TolVt(-66.4598978210211, 56.2977759838545, 0, 5e-07) - TolVt(-64.490898103878, 58.5429898524499, 0, 5e-07) - TolVt(-61.573004926547, 58.6385117846228, 0, 5e-07) - TolVt(-49.3225471916478, 46.3880540497236, 0, 5e-07) - TolVt(-49.5846586214577, 45.3559878261397, 0, 5e-07) - TolVt(-48.6824508524829, 44.5647728480196, 0, 5e-07) - TolVt(-44.5647728480196, 48.6824508524829, 0, 5e-07) - TolVt(-45.3559878261396, 49.5846586214577, 0, 5e-07) - TolVt(-46.3880540497236, 49.3225471916478, 0, 5e-07) - TolVt(-58.6385117846228, 61.573004926547, 0, 5e-07) - TolVt(-58.5429898524498, 64.4908981038781, 0, 5e-07) - TolVt(-56.2977759838545, 66.4598978210211, 0, 5e-07) - TolVt(-53.3923776730718, 66.1737410640806, 0, 5e-07) - TolVt(-42.8457299034181, 52.4290820922487, 0, 5e-07) - TolVt(-43.2403106078938, 51.4400577451493, 0, 5e-07) - TolVt(-42.4490956297737, 50.5378499761745, 0, 5e-07) - TolVt(-37.8291801007457, 54.0828358437808, 0, 5e-07) - TolVt(-38.4958643803692, 55.0805993785439, 0, 5e-07) - TolVt(-39.5533135412095, 54.9554420226348, 0, 5e-07) - TolVt(-50.0999613108633, 68.7001009944668, 0, 5e-07) - TolVt(-49.62439509632, 71.5805630770893, 0, 5e-07) - TolVt(-47.1413833080548, 73.2396585117098, 0, 5e-07) - TolVt(-44.2981920344467, 72.5767192871048, 0, 5e-07) - TolVt(-35.6358102974603, 57.5730340040876, 0, 5e-07) - TolVt(-36.1561088913499, 56.643974014261, 0, 5e-07) - TolVt(-35.4894246117263, 55.646210479498, 0, 5e-07) - TolVt(-30.4463195937179, 58.5578485191967, 0, 5e-07) - TolVt(-30.9770660219807, 59.6340958090359, 0, 5e-07) - TolVt(-32.041804871755, 59.6480340040876, 0, 5e-07) - TolVt(-40.7041866087413, 74.6517192871047, 0, 5e-07) - TolVt(-39.8567131816105, 77.4454647701701, 0, 5e-07) - TolVt(-37.1783884937937, 78.7662683393937, 0, 5e-07) - TolVt(-34.4460520483331, 77.7378897210585, 0, 5e-07) - TolVt(-27.8161520971999, 61.7318953418559, 0, 5e-07) - TolVt(-28.4532661273077, 60.8786961833122, 0, 5e-07) - TolVt(-27.9225196990449, 59.802448893473, 0, 5e-07) - TolVt(-22.542514117127, 62.0309201711463, 0, 5e-07) - TolVt(-22.9282414754908, 63.1672363265404, 0, 5e-07) - TolVt(-23.9820520372781, 63.320031586171, 0, 5e-07) - TolVt(-30.6119519884113, 79.3260259653736, 0, 5e-07) - TolVt(-29.4070718539951, 81.985253089094, 0, 5e-07) - TolVt(-26.5792611446071, 82.9451654776552, 0, 5e-07) - TolVt(-24.0045305614226, 81.56894330887, 0, 5e-07) - TolVt(-19.520551822462, 64.8345068350102, 0, 5e-07) - TolVt(-20.2635800910916, 64.0717669819035, 0, 5e-07) - TolVt(-19.8778527327278, 62.9354508265094, 0, 5e-07) - TolVt(-14.2529999740265, 64.4426255807474, 0, 5e-07) - TolVt(-14.4871083604458, 65.6195679172313, 0, 5e-07) - TolVt(-15.5119596433624, 65.9086058721856, 0, 5e-07) - TolVt(-19.995938382323, 82.6430423460455, 0, 5e-07) - TolVt(-18.4542673737772, 85.122250997057, 0, 5e-07) - TolVt(-15.5253552680729, 85.7048478378496, 0, 5e-07) - TolVt(-13.152284901293, 84.0043296614832, 0, 5e-07) - TolVt(-10.8909494939223, 66.8277819406962, 0, 5e-07) - TolVt(-11.7271785813911, 66.1685520833847, 0, 5e-07) - TolVt(-11.4930701949718, 64.9916097469008, 0, 5e-07) - TolVt(-5.71961304969215, 65.7516997997907, 0, 5e-07) - TolVt(-5.79809680476832, 66.949130507677, 0, 5e-07) - TolVt(-6.77645331922104, 67.3694656384094, 0, 5e-07) - TolVt(-9.03778872659174, 84.5460133591964, 0, 5e-07) - TolVt(-7.1857052623044, 86.8027835901137, 0, 5e-07) - TolVt(-4.20580625846026, 86.9980964896653, 0, 5e-07) - TolVt(-2.07499999999998, 85.0023786431881, 0, 5e-07) - TolVt(-2.07499999999998, 67.6776151692153, 0, 5e-07) - TolVt(-2.99012179477489, 67.1331749133306, 0, 5e-07) - TolVt(-2.91163803969872, 65.9357442054443, 0, 5e-07) - TolVt(2.91163803969873, 65.9357442054443, 0, 5e-07) - TolVt(2.99012179477491, 67.1331749133306, 0, 5e-07) - TolVt(2.07499999999999, 67.6776151692153, 0, 5e-07) - TolVt(2.07499999999999, 85.0023786431881, 0, 5e-07) - TolVt(4.20580625846028, 86.9980964896653, 0, 5e-07) - TolVt(7.18570526230442, 86.8027835901137, 0, 5e-07) - TolVt(9.03778872659175, 84.5460133591964, 0, 5e-07) - TolVt(6.77645331922105, 67.3694656384094, 0, 5e-07) - TolVt(5.79809680476834, 66.949130507677, 0, 5e-07) - TolVt(5.71961304969216, 65.7516997997907, 0, 5e-07) - TolVt(11.4930701949718, 64.9916097469008, 0, 5e-07) - TolVt(11.7271785813912, 66.1685520833847, 0, 5e-07) - TolVt(10.8909494939223, 66.8277819406962, 0, 5e-07) - TolVt(13.152284901293, 84.0043296614832, 0, 5e-07) - TolVt(15.5253552680729, 85.7048478378496, 0, 5e-07) - TolVt(18.4542673737772, 85.122250997057, 0, 5e-07) - TolVt(19.9959383823231, 82.6430423460455, 0, 5e-07) - TolVt(15.5119596433624, 65.9086058721856, 0, 5e-07) - TolVt(14.4871083604458, 65.6195679172313, 0, 5e-07) - TolVt(14.2529999740265, 64.4426255807474, 0, 5e-07) - TolVt(19.8778527327278, 62.9354508265094, 0, 5e-07) - TolVt(20.2635800910916, 64.0717669819035, 0, 5e-07) - TolVt(19.520551822462, 64.8345068350102, 0, 5e-07) - TolVt(24.0045305614227, 81.56894330887, 0, 5e-07) - TolVt(26.5792611446071, 82.9451654776552, 0, 5e-07) - TolVt(29.4070718539951, 81.985253089094, 0, 5e-07) - TolVt(30.6119519884113, 79.3260259653736, 0, 5e-07) - TolVt(23.9820520372781, 63.320031586171, 0, 5e-07) - TolVt(22.9282414754909, 63.1672363265404, 0, 5e-07) - TolVt(22.5425141171271, 62.0309201711463, 0, 5e-07) - TolVt(27.9225196990449, 59.802448893473, 0, 5e-07) - TolVt(28.4532661273077, 60.8786961833122, 0, 5e-07) - TolVt(27.8161520971999, 61.7318953418559, 0, 5e-07) - TolVt(34.4460520483332, 77.7378897210585, 0, 5e-07) - TolVt(37.1783884937937, 78.7662683393937, 0, 5e-07) - TolVt(39.8567131816105, 77.4454647701701, 0, 5e-07) - TolVt(40.7041866087414, 74.6517192871047, 0, 5e-07) - TolVt(32.041804871755, 59.6480340040875, 0, 5e-07) - TolVt(30.9770660219807, 59.6340958090359, 0, 5e-07) - TolVt(30.4463195937179, 58.5578485191967, 0, 5e-07) - TolVt(35.4894246117264, 55.646210479498, 0, 5e-07) - TolVt(36.1561088913499, 56.643974014261, 0, 5e-07) - TolVt(35.6358102974604, 57.5730340040876, 0, 5e-07) - TolVt(44.2981920344468, 72.5767192871048, 0, 5e-07) - TolVt(47.1413833080548, 73.2396585117098, 0, 5e-07) - TolVt(49.62439509632, 71.5805630770893, 0, 5e-07) - TolVt(50.0999613108633, 68.7001009944667, 0, 5e-07) - TolVt(39.5533135412095, 54.9554420226348, 0, 5e-07) - TolVt(38.4958643803692, 55.0805993785439, 0, 5e-07) - TolVt(37.8291801007457, 54.0828358437808, 0, 5e-07) - TolVt(42.4490956297737, 50.5378499761745, 0, 5e-07) - TolVt(43.2403106078938, 51.4400577451493, 0, 5e-07) - TolVt(42.8457299034181, 52.4290820922487, 0, 5e-07) - TolVt(53.3923776730719, 66.1737410640806, 0, 5e-07) - TolVt(56.2977759838545, 66.4598978210211, 0, 5e-07) - TolVt(58.5429898524499, 64.490898103878, 0, 5e-07) - TolVt(58.6385117846228, 61.573004926547, 0, 5e-07) - TolVt(46.3880540497236, 49.3225471916478, 0, 5e-07) - TolVt(45.3559878261397, 49.5846586214577, 0, 5e-07) - TolVt(44.5647728480196, 48.6824508524829, 0, 5e-07) - TolVt(48.6824508524829, 44.5647728480196, 0, 5e-07) - TolVt(49.5846586214577, 45.3559878261397, 0, 5e-07) - TolVt(49.3225471916478, 46.3880540497236, 0, 5e-07) - TolVt(61.573004926547, 58.6385117846228, 0, 5e-07) - TolVt(64.490898103878, 58.5429898524499, 0, 5e-07) - TolVt(66.4598978210211, 56.2977759838545, 0, 5e-07) - TolVt(66.1737410640806, 53.3923776730719, 0, 5e-07) - TolVt(52.4290820922487, 42.8457299034181, 0, 5e-07) - TolVt(51.4400577451493, 43.2403106078938, 0, 5e-07) - TolVt(50.5378499761745, 42.4490956297737, 0, 5e-07) - TolVt(54.0828358437808, 37.8291801007457, 0, 5e-07) - TolVt(55.0805993785439, 38.4958643803692, 0, 5e-07) - TolVt(54.9554420226348, 39.5533135412095, 0, 5e-07) - TolVt(68.7001009944668, 50.0999613108633, 0, 5e-07) - TolVt(71.5805630770893, 49.62439509632, 0, 5e-07) - TolVt(73.2396585117098, 47.1413833080548, 0, 5e-07) - TolVt(72.5767192871048, 44.2981920344468, 0, 5e-07) - TolVt(57.5730340040876, 35.6358102974604, 0, 5e-07) - TolVt(56.643974014261, 36.1561088913499, 0, 5e-07) - TolVt(55.646210479498, 35.4894246117264, 0, 5e-07) - TolVt(58.5578485191967, 30.4463195937179, 0, 5e-07) - TolVt(59.6340958090359, 30.9770660219807, 0, 5e-07) - TolVt(59.6480340040875, 32.041804871755, 0, 5e-07) - TolVt(74.6517192871047, 40.7041866087414, 0, 5e-07) - TolVt(77.4454647701701, 39.8567131816105, 0, 5e-07) - TolVt(78.7662683393937, 37.1783884937937, 0, 5e-07) - TolVt(77.7378897210585, 34.4460520483331, 0, 5e-07) - TolVt(61.7318953418559, 27.8161520971999, 0, 5e-07) - TolVt(60.8786961833122, 28.4532661273077, 0, 5e-07) - TolVt(59.802448893473, 27.9225196990449, 0, 5e-07) - TolVt(62.0309201711463, 22.5425141171271, 0, 5e-07) - TolVt(63.1672363265404, 22.9282414754909, 0, 5e-07) - TolVt(63.320031586171, 23.9820520372781, 0, 5e-07) - TolVt(79.3260259653736, 30.6119519884113, 0, 5e-07) - TolVt(81.985253089094, 29.4070718539951, 0, 5e-07) - TolVt(82.9451654776552, 26.5792611446071, 0, 5e-07) - TolVt(81.56894330887, 24.0045305614227, 0, 5e-07) - TolVt(64.8345068350102, 19.520551822462, 0, 5e-07) - TolVt(64.0717669819035, 20.2635800910916, 0, 5e-07) - TolVt(62.9354508265094, 19.8778527327278, 0, 5e-07) - TolVt(64.4426255807474, 14.2529999740265, 0, 5e-07) - TolVt(65.6195679172313, 14.4871083604458, 0, 5e-07) - TolVt(65.9086058721856, 15.5119596433624, 0, 5e-07) - TolVt(82.6430423460455, 19.9959383823231, 0, 5e-07) - TolVt(85.122250997057, 18.4542673737772, 0, 5e-07) - TolVt(85.7048478378496, 15.5253552680729, 0, 5e-07) - TolVt(84.0043296614832, 13.152284901293, 0, 5e-07) - TolVt(66.8277819406962, 10.8909494939223, 0, 5e-07) - TolVt(66.1685520833847, 11.7271785813911, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=8 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.1685520833847, 11.7271785813911, 0, 5e-07) - TolVt(64.9916097469008, 11.4930701949718, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.5800809151427, 11.6101243881815, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=9 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.1685520833847, 11.7271785813911, 0, 5e-07) - TolVt(66.8277819406962, 10.8909494939223, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(66.4981670120404, 11.3090640376567, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=10 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.8277819406962, 10.8909494939223, 0, 5e-07) - TolVt(84.0043296614832, 13.152284901293, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(75.4160558010897, 12.0216171976077, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=11 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(84.0043296614832, 13.152284901293, 0, 5e-07) - TolVt(85.7048478378496, 15.5253552680729, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(85.3689706462263, 13.970219230305, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=12 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(85.7048478378496, 15.5253552680729, 0, 5e-07) - TolVt(85.122250997057, 18.4542673737772, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(85.4135494174533, 16.989811320925, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=13 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(85.122250997057, 18.4542673737772, 0, 5e-07) - TolVt(82.6430423460455, 19.9959383823231, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(84.2168161375512, 19.7624910927981, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=14 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(82.6430423460455, 19.9959383823231, 0, 5e-07) - TolVt(65.9086058721856, 15.5119596433624, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(74.2758241091155, 17.7539490128427, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=15 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(65.9086058721856, 15.5119596433624, 0, 5e-07) - TolVt(65.6195679172313, 14.4871083604458, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.7640868947085, 14.9995340019041, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=8 - ID=16 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(65.6195679172313, 14.4871083604458, 0, 5e-07) - TolVt(64.4426255807474, 14.2529999740265, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.0310967489893, 14.3700541672362, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=9 - ID=17 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(64.0717669819035, 20.2635800910916, 0, 5e-07) - TolVt(62.9354508265094, 19.8778527327278, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(63.5036089042065, 20.0707164119097, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=10 - ID=18 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(64.0717669819035, 20.2635800910916, 0, 5e-07) - TolVt(64.8345068350102, 19.520551822462, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(64.4531369084569, 19.8920659567768, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=11 - ID=19 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(64.8345068350102, 19.520551822462, 0, 5e-07) - TolVt(81.56894330887, 24.0045305614227, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(73.2017250719401, 21.7625411919423, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=12 - ID=20 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(81.56894330887, 24.0045305614227, 0, 5e-07) - TolVt(82.9451654776552, 26.5792611446071, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(82.8151477473617, 24.9935887403488, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=13 - ID=21 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(82.9451654776552, 26.5792611446071, 0, 5e-07) - TolVt(81.985253089094, 29.4070718539951, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(82.4652092833746, 27.9931664993011, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=14 - ID=22 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(81.985253089094, 29.4070718539951, 0, 5e-07) - TolVt(79.3260259653736, 30.6119519884113, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(80.9168068897126, 30.5859205732311, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=15 - ID=23 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(79.3260259653736, 30.6119519884113, 0, 5e-07) - TolVt(63.320031586171, 23.9820520372781, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(71.3230287757723, 27.2970020128447, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=16 - ID=24 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(63.320031586171, 23.9820520372781, 0, 5e-07) - TolVt(63.1672363265404, 22.9282414754909, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(63.2436339563557, 23.4551467563845, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=17 - ID=25 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(63.1672363265404, 22.9282414754909, 0, 5e-07) - TolVt(62.0309201711463, 22.5425141171271, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(62.5990782488434, 22.735377796309, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=18 - ID=26 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(60.8786961833122, 28.4532661273077, 0, 5e-07) - TolVt(59.802448893473, 27.9225196990449, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(60.3405725383926, 28.1878929131763, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=19 - ID=27 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(60.8786961833122, 28.4532661273077, 0, 5e-07) - TolVt(61.7318953418559, 27.8161520971999, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(61.305295762584, 28.1347091122538, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=20 - ID=28 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(61.7318953418559, 27.8161520971999, 0, 5e-07) - TolVt(77.7378897210585, 34.4460520483331, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(69.7348925314572, 31.1311020727665, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=21 - ID=29 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(77.7378897210585, 34.4460520483331, 0, 5e-07) - TolVt(78.7662683393937, 37.1783884937937, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(78.8443347098429, 35.5893110175132, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=22 - ID=30 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(78.7662683393937, 37.1783884937937, 0, 5e-07) - TolVt(77.4454647701701, 39.8567131816105, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(78.1058665547819, 38.5175508377021, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=23 - ID=31 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(77.4454647701701, 39.8567131816105, 0, 5e-07) - TolVt(74.6517192871047, 40.7041866087414, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(76.2322886416137, 40.8860164726369, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=24 - ID=32 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(74.6517192871047, 40.7041866087414, 0, 5e-07) - TolVt(59.6480340040875, 32.041804871755, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(67.1498766455961, 36.3729957402482, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=25 - ID=33 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(59.6480340040875, 32.041804871755, 0, 5e-07) - TolVt(59.6340958090359, 30.9770660219807, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(59.6410649065617, 31.5094354468679, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=26 - ID=34 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(59.6340958090359, 30.9770660219807, 0, 5e-07) - TolVt(58.5578485191967, 30.4463195937179, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(59.0959721641163, 30.7116928078493, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=27 - ID=35 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(56.643974014261, 36.1561088913499, 0, 5e-07) - TolVt(55.646210479498, 35.4894246117264, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(56.1450922468795, 35.8227667515381, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=28 - ID=36 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(56.643974014261, 36.1561088913499, 0, 5e-07) - TolVt(57.5730340040876, 35.6358102974604, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(57.1085040091743, 35.8959595944051, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=29 - ID=37 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(57.5730340040876, 35.6358102974604, 0, 5e-07) - TolVt(72.5767192871048, 44.2981920344468, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.0748766455962, 39.9670011659536, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=30 - ID=38 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(72.5767192871048, 44.2981920344468, 0, 5e-07) - TolVt(73.2396585117098, 47.1413833080548, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(73.5244732456594, 45.5760903159469, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=31 - ID=39 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(73.2396585117098, 47.1413833080548, 0, 5e-07) - TolVt(71.5805630770893, 49.62439509632, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(72.4101107943996, 48.3828892021874, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=32 - ID=40 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(71.5805630770893, 49.62439509632, 0, 5e-07) - TolVt(68.7001009944668, 50.0999613108633, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(70.2434147992734, 50.4865412944505, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=33 - ID=41 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(68.7001009944668, 50.0999613108633, 0, 5e-07) - TolVt(54.9554420226348, 39.5533135412095, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(61.8277715085508, 44.8266374260364, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=34 - ID=42 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(54.9554420226348, 39.5533135412095, 0, 5e-07) - TolVt(55.0805993785439, 38.4958643803692, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(55.0180207005894, 39.0245889607894, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=35 - ID=43 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(55.0805993785439, 38.4958643803692, 0, 5e-07) - TolVt(54.0828358437808, 37.8291801007457, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(54.5817176111623, 38.1625222405575, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=36 - ID=44 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(51.4400577451493, 43.2403106078938, 0, 5e-07) - TolVt(50.5378499761745, 42.4490956297737, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(50.9889538606619, 42.8447031188338, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=37 - ID=45 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(51.4400577451493, 43.2403106078938, 0, 5e-07) - TolVt(52.4290820922487, 42.8457299034181, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(51.934569918699, 43.043020255656, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=38 - ID=46 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(52.4290820922487, 42.8457299034181, 0, 5e-07) - TolVt(66.1737410640806, 53.3923776730719, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(59.3014115781646, 48.119053788245, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=39 - ID=47 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.1737410640806, 53.3923776730719, 0, 5e-07) - TolVt(66.4598978210211, 56.2977759838545, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(66.9465876594075, 54.7830500729952, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=40 - ID=48 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.4598978210211, 56.2977759838545, 0, 5e-07) - TolVt(64.490898103878, 58.5429898524499, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.4753979624495, 57.4203829181522, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=41 - ID=49 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(64.490898103878, 58.5429898524499, 0, 5e-07) - TolVt(61.573004926547, 58.6385117846228, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(63.0526566545636, 59.2232273972025, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=42 - ID=50 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(61.573004926547, 58.6385117846228, 0, 5e-07) - TolVt(49.3225471916478, 46.3880540497236, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(55.4477760590974, 52.5132829171732, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=43 - ID=51 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(49.3225471916478, 46.3880540497236, 0, 5e-07) - TolVt(49.5846586214577, 45.3559878261397, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(49.4536029065528, 45.8720209379317, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=44 - ID=52 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(49.5846586214577, 45.3559878261397, 0, 5e-07) - TolVt(48.6824508524829, 44.5647728480196, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(49.1335547369703, 44.9603803370796, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=45 - ID=53 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(45.3559878261397, 49.5846586214577, 0, 5e-07) - TolVt(44.5647728480196, 48.6824508524829, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(44.9603803370796, 49.1335547369703, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=46 - ID=54 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(45.3559878261397, 49.5846586214577, 0, 5e-07) - TolVt(46.3880540497236, 49.3225471916478, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(45.8720209379317, 49.4536029065528, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=47 - ID=55 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(46.3880540497236, 49.3225471916478, 0, 5e-07) - TolVt(58.6385117846228, 61.573004926547, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(52.5132829171732, 55.4477760590974, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=48 - ID=56 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(58.6385117846228, 61.573004926547, 0, 5e-07) - TolVt(58.5429898524499, 64.490898103878, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(59.2232273972025, 63.0526566545636, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=49 - ID=57 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(58.5429898524499, 64.490898103878, 0, 5e-07) - TolVt(56.2977759838545, 66.4598978210211, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(57.4203829181522, 65.4753979624495, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=50 - ID=58 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(56.2977759838545, 66.4598978210211, 0, 5e-07) - TolVt(53.3923776730719, 66.1737410640806, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(54.7830500729952, 66.9465876594075, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=51 - ID=59 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(53.3923776730719, 66.1737410640806, 0, 5e-07) - TolVt(42.8457299034181, 52.4290820922487, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(48.119053788245, 59.3014115781646, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=52 - ID=60 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(42.8457299034181, 52.4290820922487, 0, 5e-07) - TolVt(43.2403106078938, 51.4400577451493, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.043020255656, 51.934569918699, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=53 - ID=61 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(43.2403106078938, 51.4400577451493, 0, 5e-07) - TolVt(42.4490956297737, 50.5378499761745, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(42.8447031188338, 50.9889538606619, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=54 - ID=62 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(38.4958643803692, 55.0805993785439, 0, 5e-07) - TolVt(37.8291801007457, 54.0828358437808, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.1625222405575, 54.5817176111623, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=55 - ID=63 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(38.4958643803692, 55.0805993785439, 0, 5e-07) - TolVt(39.5533135412095, 54.9554420226348, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(39.0245889607894, 55.0180207005894, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=56 - ID=64 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(39.5533135412095, 54.9554420226348, 0, 5e-07) - TolVt(50.0999613108633, 68.7001009944667, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(44.8266374260364, 61.8277715085508, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=57 - ID=65 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(50.0999613108633, 68.7001009944667, 0, 5e-07) - TolVt(49.62439509632, 71.5805630770893, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(50.4865412944505, 70.2434147992734, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=58 - ID=66 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(49.62439509632, 71.5805630770893, 0, 5e-07) - TolVt(47.1413833080548, 73.2396585117098, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(48.3828892021874, 72.4101107943996, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=59 - ID=67 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(47.1413833080548, 73.2396585117098, 0, 5e-07) - TolVt(44.2981920344468, 72.5767192871048, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(45.5760903159469, 73.5244732456594, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=60 - ID=68 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(44.2981920344468, 72.5767192871048, 0, 5e-07) - TolVt(35.6358102974604, 57.5730340040876, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(39.9670011659536, 65.0748766455962, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=61 - ID=69 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(35.6358102974604, 57.5730340040876, 0, 5e-07) - TolVt(36.1561088913499, 56.643974014261, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(35.8959595944051, 57.1085040091743, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=62 - ID=70 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(36.1561088913499, 56.643974014261, 0, 5e-07) - TolVt(35.4894246117264, 55.646210479498, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(35.8227667515381, 56.1450922468795, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=63 - ID=71 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(30.9770660219807, 59.6340958090359, 0, 5e-07) - TolVt(30.4463195937179, 58.5578485191967, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(30.7116928078493, 59.0959721641163, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=64 - ID=72 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(30.9770660219807, 59.6340958090359, 0, 5e-07) - TolVt(32.041804871755, 59.6480340040875, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(31.5094354468679, 59.6410649065617, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=65 - ID=73 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(32.041804871755, 59.6480340040875, 0, 5e-07) - TolVt(40.7041866087414, 74.6517192871047, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.3729957402482, 67.1498766455961, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=66 - ID=74 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(40.7041866087414, 74.6517192871047, 0, 5e-07) - TolVt(39.8567131816105, 77.4454647701701, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(40.8860164726369, 76.2322886416136, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=67 - ID=75 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(39.8567131816105, 77.4454647701701, 0, 5e-07) - TolVt(37.1783884937937, 78.7662683393937, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.5175508377021, 78.1058665547819, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=68 - ID=76 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(37.1783884937937, 78.7662683393937, 0, 5e-07) - TolVt(34.4460520483332, 77.7378897210585, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(35.5893110175133, 78.844334709843, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=69 - ID=77 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(34.4460520483332, 77.7378897210585, 0, 5e-07) - TolVt(27.8161520971999, 61.7318953418559, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(31.1311020727665, 69.7348925314572, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=70 - ID=78 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(27.8161520971999, 61.7318953418559, 0, 5e-07) - TolVt(28.4532661273077, 60.8786961833122, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.1347091122538, 61.305295762584, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=71 - ID=79 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(28.4532661273077, 60.8786961833122, 0, 5e-07) - TolVt(27.9225196990449, 59.802448893473, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.1878929131763, 60.3405725383926, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=72 - ID=80 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(22.9282414754909, 63.1672363265404, 0, 5e-07) - TolVt(22.5425141171271, 62.0309201711463, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(22.735377796309, 62.5990782488434, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=73 - ID=81 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(22.9282414754909, 63.1672363265404, 0, 5e-07) - TolVt(23.9820520372781, 63.320031586171, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.4551467563845, 63.2436339563557, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=74 - ID=82 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(23.9820520372781, 63.320031586171, 0, 5e-07) - TolVt(30.6119519884113, 79.3260259653736, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(27.2970020128447, 71.3230287757723, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=75 - ID=83 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(30.6119519884113, 79.3260259653736, 0, 5e-07) - TolVt(29.4070718539951, 81.985253089094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(30.5859205732311, 80.9168068897126, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=76 - ID=84 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(29.4070718539951, 81.985253089094, 0, 5e-07) - TolVt(26.5792611446071, 82.9451654776552, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(27.9931664993011, 82.4652092833746, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=77 - ID=85 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(26.5792611446071, 82.9451654776552, 0, 5e-07) - TolVt(24.0045305614227, 81.56894330887, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(24.9935887403488, 82.8151477473617, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=78 - ID=86 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(24.0045305614227, 81.56894330887, 0, 5e-07) - TolVt(19.520551822462, 64.8345068350102, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(21.7625411919423, 73.2017250719401, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=79 - ID=87 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(19.520551822462, 64.8345068350102, 0, 5e-07) - TolVt(20.2635800910916, 64.0717669819035, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(19.8920659567768, 64.4531369084569, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=80 - ID=88 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(20.2635800910916, 64.0717669819035, 0, 5e-07) - TolVt(19.8778527327278, 62.9354508265094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(20.0707164119097, 63.5036089042065, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=81 - ID=89 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(14.4871083604458, 65.6195679172313, 0, 5e-07) - TolVt(14.2529999740265, 64.4426255807474, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3700541672362, 65.0310967489893, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=82 - ID=90 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(14.4871083604458, 65.6195679172313, 0, 5e-07) - TolVt(15.5119596433624, 65.9086058721856, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.9995340019041, 65.7640868947085, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=83 - ID=91 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(15.5119596433624, 65.9086058721856, 0, 5e-07) - TolVt(19.9959383823231, 82.6430423460455, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(17.7539490128427, 74.2758241091155, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=84 - ID=92 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(19.9959383823231, 82.6430423460455, 0, 5e-07) - TolVt(18.4542673737772, 85.122250997057, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(19.7624910927981, 84.2168161375512, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=85 - ID=93 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(18.4542673737772, 85.122250997057, 0, 5e-07) - TolVt(15.5253552680729, 85.7048478378496, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(16.9898113209251, 85.4135494174533, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=86 - ID=94 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(15.5253552680729, 85.7048478378496, 0, 5e-07) - TolVt(13.152284901293, 84.0043296614832, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(13.9702192303051, 85.3689706462263, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=87 - ID=95 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(13.152284901293, 84.0043296614832, 0, 5e-07) - TolVt(10.8909494939223, 66.8277819406962, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(12.0216171976077, 75.4160558010897, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=88 - ID=96 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(10.8909494939223, 66.8277819406962, 0, 5e-07) - TolVt(11.7271785813912, 66.1685520833847, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(11.3090640376567, 66.4981670120404, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=89 - ID=97 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(11.7271785813912, 66.1685520833847, 0, 5e-07) - TolVt(11.4930701949718, 64.9916097469008, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(11.6101243881815, 65.5800809151427, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=90 - ID=98 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(5.79809680476834, 66.949130507677, 0, 5e-07) - TolVt(5.71961304969216, 65.7516997997907, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(5.75885492723025, 66.3504151537338, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=91 - ID=99 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(5.79809680476834, 66.949130507677, 0, 5e-07) - TolVt(6.77645331922105, 67.3694656384094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(6.28727506199469, 67.1592980730432, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=92 - ID=100 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(6.77645331922105, 67.3694656384094, 0, 5e-07) - TolVt(9.03778872659175, 84.5460133591964, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(7.9071210229064, 75.9577394988029, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=93 - ID=101 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(9.03778872659175, 84.5460133591964, 0, 5e-07) - TolVt(7.18570526230442, 86.8027835901137, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.6009199105696, 86.0758523119638, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=94 - ID=102 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(7.18570526230442, 86.8027835901137, 0, 5e-07) - TolVt(4.20580625846028, 86.9980964896653, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(5.69575576038235, 86.9004400398895, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=95 - ID=103 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(4.20580625846028, 86.9980964896653, 0, 5e-07) - TolVt(2.07499999999999, 85.0023786431881, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.70781539595425, 86.4621067885838, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=96 - ID=104 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(2.07499999999999, 85.0023786431881, 0, 5e-07) - TolVt(2.07499999999999, 67.6776151692153, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.07499999999999, 76.3399969062017, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=97 - ID=105 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(2.07499999999999, 67.6776151692153, 0, 5e-07) - TolVt(2.99012179477491, 67.1331749133306, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.53256089738745, 67.405395041273, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=98 - ID=106 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(2.99012179477491, 67.1331749133306, 0, 5e-07) - TolVt(2.91163803969873, 65.9357442054443, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.95087991723682, 66.5344595593874, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=99 - ID=107 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-2.99012179477489, 67.1331749133306, 0, 5e-07) - TolVt(-2.91163803969872, 65.9357442054443, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.95087991723681, 66.5344595593874, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=100 - ID=108 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-2.99012179477489, 67.1331749133306, 0, 5e-07) - TolVt(-2.07499999999998, 67.6776151692153, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.53256089738744, 67.405395041273, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=101 - ID=109 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-2.07499999999998, 67.6776151692153, 0, 5e-07) - TolVt(-2.07499999999998, 85.0023786431881, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.07499999999998, 76.3399969062017, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=102 - ID=110 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-2.07499999999998, 85.0023786431881, 0, 5e-07) - TolVt(-4.20580625846026, 86.9980964896653, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.70781539595424, 86.4621067885838, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=103 - ID=111 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-4.20580625846026, 86.9980964896653, 0, 5e-07) - TolVt(-7.1857052623044, 86.8027835901137, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-5.69575576038233, 86.9004400398895, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=104 - ID=112 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-7.1857052623044, 86.8027835901137, 0, 5e-07) - TolVt(-9.03778872659174, 84.5460133591964, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.60091991056959, 86.0758523119638, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=105 - ID=113 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-9.03778872659174, 84.5460133591964, 0, 5e-07) - TolVt(-6.77645331922104, 67.3694656384094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-7.90712102290639, 75.9577394988029, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=106 - ID=114 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-6.77645331922104, 67.3694656384094, 0, 5e-07) - TolVt(-5.79809680476832, 66.949130507677, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.28727506199468, 67.1592980730432, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=107 - ID=115 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-5.79809680476832, 66.949130507677, 0, 5e-07) - TolVt(-5.71961304969215, 65.7516997997907, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-5.75885492723024, 66.3504151537338, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=108 - ID=116 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-11.7271785813911, 66.1685520833847, 0, 5e-07) - TolVt(-11.4930701949718, 64.9916097469008, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-11.6101243881815, 65.5800809151427, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=109 - ID=117 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-11.7271785813911, 66.1685520833847, 0, 5e-07) - TolVt(-10.8909494939223, 66.8277819406962, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-11.3090640376567, 66.4981670120404, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=110 - ID=118 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-10.8909494939223, 66.8277819406962, 0, 5e-07) - TolVt(-13.152284901293, 84.0043296614832, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-12.0216171976077, 75.4160558010897, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=111 - ID=119 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-13.152284901293, 84.0043296614832, 0, 5e-07) - TolVt(-15.5253552680729, 85.7048478378496, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-13.970219230305, 85.3689706462263, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=112 - ID=120 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-15.5253552680729, 85.7048478378496, 0, 5e-07) - TolVt(-18.4542673737772, 85.122250997057, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-16.989811320925, 85.4135494174533, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=113 - ID=121 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-18.4542673737772, 85.122250997057, 0, 5e-07) - TolVt(-19.995938382323, 82.6430423460455, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.7624910927981, 84.2168161375513, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=114 - ID=122 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-19.995938382323, 82.6430423460455, 0, 5e-07) - TolVt(-15.5119596433624, 65.9086058721856, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-17.7539490128427, 74.2758241091156, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=115 - ID=123 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-15.5119596433624, 65.9086058721856, 0, 5e-07) - TolVt(-14.4871083604458, 65.6195679172313, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.9995340019041, 65.7640868947085, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=116 - ID=124 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-14.4871083604458, 65.6195679172313, 0, 5e-07) - TolVt(-14.2529999740265, 64.4426255807474, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3700541672361, 65.0310967489894, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=117 - ID=125 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-20.2635800910916, 64.0717669819035, 0, 5e-07) - TolVt(-19.8778527327278, 62.9354508265094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-20.0707164119097, 63.5036089042065, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=118 - ID=126 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-20.2635800910916, 64.0717669819035, 0, 5e-07) - TolVt(-19.520551822462, 64.8345068350102, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.8920659567768, 64.4531369084569, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=119 - ID=127 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-19.520551822462, 64.8345068350102, 0, 5e-07) - TolVt(-24.0045305614226, 81.56894330887, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-21.7625411919423, 73.2017250719401, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=120 - ID=128 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-24.0045305614226, 81.56894330887, 0, 5e-07) - TolVt(-26.5792611446071, 82.9451654776552, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-24.9935887403488, 82.8151477473617, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=121 - ID=129 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-26.5792611446071, 82.9451654776552, 0, 5e-07) - TolVt(-29.4070718539951, 81.985253089094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-27.9931664993011, 82.4652092833746, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=122 - ID=130 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-29.4070718539951, 81.985253089094, 0, 5e-07) - TolVt(-30.6119519884113, 79.3260259653736, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-30.5859205732311, 80.9168068897126, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=123 - ID=131 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-30.6119519884113, 79.3260259653736, 0, 5e-07) - TolVt(-23.9820520372781, 63.320031586171, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-27.2970020128447, 71.3230287757723, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=124 - ID=132 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-23.9820520372781, 63.320031586171, 0, 5e-07) - TolVt(-22.9282414754908, 63.1672363265404, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.4551467563845, 63.2436339563557, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=125 - ID=133 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-22.9282414754908, 63.1672363265404, 0, 5e-07) - TolVt(-22.542514117127, 62.0309201711463, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-22.7353777963089, 62.5990782488434, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=126 - ID=134 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-28.4532661273077, 60.8786961833122, 0, 5e-07) - TolVt(-27.9225196990449, 59.802448893473, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-28.1878929131763, 60.3405725383926, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=127 - ID=135 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-28.4532661273077, 60.8786961833122, 0, 5e-07) - TolVt(-27.8161520971999, 61.7318953418559, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-28.1347091122538, 61.305295762584, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=128 - ID=136 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-27.8161520971999, 61.7318953418559, 0, 5e-07) - TolVt(-34.4460520483331, 77.7378897210585, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-31.1311020727665, 69.7348925314572, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=129 - ID=137 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-34.4460520483331, 77.7378897210585, 0, 5e-07) - TolVt(-37.1783884937937, 78.7662683393937, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-35.5893110175132, 78.844334709843, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=130 - ID=138 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-37.1783884937937, 78.7662683393937, 0, 5e-07) - TolVt(-39.8567131816105, 77.4454647701701, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-38.5175508377021, 78.1058665547819, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=131 - ID=139 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-39.8567131816105, 77.4454647701701, 0, 5e-07) - TolVt(-40.7041866087413, 74.6517192871047, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.8860164726369, 76.2322886416137, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=132 - ID=140 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-40.7041866087413, 74.6517192871047, 0, 5e-07) - TolVt(-32.041804871755, 59.6480340040876, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.3729957402482, 67.1498766455962, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=133 - ID=141 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-32.041804871755, 59.6480340040876, 0, 5e-07) - TolVt(-30.9770660219807, 59.6340958090359, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-31.5094354468678, 59.6410649065618, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=134 - ID=142 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-30.9770660219807, 59.6340958090359, 0, 5e-07) - TolVt(-30.4463195937179, 58.5578485191967, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-30.7116928078493, 59.0959721641163, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=135 - ID=143 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-36.1561088913499, 56.643974014261, 0, 5e-07) - TolVt(-35.4894246117263, 55.646210479498, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-35.8227667515381, 56.1450922468795, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=136 - ID=144 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-36.1561088913499, 56.643974014261, 0, 5e-07) - TolVt(-35.6358102974603, 57.5730340040876, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-35.8959595944051, 57.1085040091743, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=137 - ID=145 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-35.6358102974603, 57.5730340040876, 0, 5e-07) - TolVt(-44.2981920344467, 72.5767192871048, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-39.9670011659535, 65.0748766455962, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=138 - ID=146 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-44.2981920344467, 72.5767192871048, 0, 5e-07) - TolVt(-47.1413833080548, 73.2396585117098, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-45.5760903159469, 73.5244732456594, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=139 - ID=147 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-47.1413833080548, 73.2396585117098, 0, 5e-07) - TolVt(-49.62439509632, 71.5805630770893, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-48.3828892021874, 72.4101107943996, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=140 - ID=148 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-49.62439509632, 71.5805630770893, 0, 5e-07) - TolVt(-50.0999613108633, 68.7001009944668, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-50.4865412944505, 70.2434147992734, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=141 - ID=149 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-50.0999613108633, 68.7001009944668, 0, 5e-07) - TolVt(-39.5533135412095, 54.9554420226348, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-44.8266374260364, 61.8277715085508, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=142 - ID=150 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-39.5533135412095, 54.9554420226348, 0, 5e-07) - TolVt(-38.4958643803692, 55.0805993785439, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-39.0245889607894, 55.0180207005894, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=143 - ID=151 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-38.4958643803692, 55.0805993785439, 0, 5e-07) - TolVt(-37.8291801007457, 54.0828358437808, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-38.1625222405575, 54.5817176111623, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=144 - ID=152 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-43.2403106078938, 51.4400577451493, 0, 5e-07) - TolVt(-42.4490956297737, 50.5378499761745, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.8447031188338, 50.9889538606619, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=145 - ID=153 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-43.2403106078938, 51.4400577451493, 0, 5e-07) - TolVt(-42.8457299034181, 52.4290820922487, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.0430202556559, 51.934569918699, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=146 - ID=154 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-42.8457299034181, 52.4290820922487, 0, 5e-07) - TolVt(-53.3923776730718, 66.1737410640806, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-48.119053788245, 59.3014115781646, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=147 - ID=155 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-53.3923776730718, 66.1737410640806, 0, 5e-07) - TolVt(-56.2977759838545, 66.4598978210211, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-54.7830500729952, 66.9465876594075, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=148 - ID=156 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-56.2977759838545, 66.4598978210211, 0, 5e-07) - TolVt(-58.5429898524498, 64.4908981038781, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-57.4203829181521, 65.4753979624496, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=149 - ID=157 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-58.5429898524498, 64.4908981038781, 0, 5e-07) - TolVt(-58.6385117846228, 61.573004926547, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-59.2232273972024, 63.0526566545636, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=150 - ID=158 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-58.6385117846228, 61.573004926547, 0, 5e-07) - TolVt(-46.3880540497236, 49.3225471916478, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-52.5132829171732, 55.4477760590974, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=151 - ID=159 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-46.3880540497236, 49.3225471916478, 0, 5e-07) - TolVt(-45.3559878261396, 49.5846586214577, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-45.8720209379316, 49.4536029065528, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=152 - ID=160 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-45.3559878261396, 49.5846586214577, 0, 5e-07) - TolVt(-44.5647728480196, 48.6824508524829, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-44.9603803370796, 49.1335547369703, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=153 - ID=161 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-49.5846586214577, 45.3559878261397, 0, 5e-07) - TolVt(-48.6824508524829, 44.5647728480196, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-49.1335547369703, 44.9603803370796, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=154 - ID=162 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-49.5846586214577, 45.3559878261397, 0, 5e-07) - TolVt(-49.3225471916478, 46.3880540497236, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-49.4536029065527, 45.8720209379317, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=155 - ID=163 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-49.3225471916478, 46.3880540497236, 0, 5e-07) - TolVt(-61.573004926547, 58.6385117846228, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-55.4477760590974, 52.5132829171732, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=156 - ID=164 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-61.573004926547, 58.6385117846228, 0, 5e-07) - TolVt(-64.490898103878, 58.5429898524499, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-63.0526566545636, 59.2232273972025, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=157 - ID=165 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-64.490898103878, 58.5429898524499, 0, 5e-07) - TolVt(-66.4598978210211, 56.2977759838545, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.4753979624495, 57.4203829181522, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=158 - ID=166 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.4598978210211, 56.2977759838545, 0, 5e-07) - TolVt(-66.1737410640806, 53.3923776730719, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-66.9465876594075, 54.7830500729952, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=159 - ID=167 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.1737410640806, 53.3923776730719, 0, 5e-07) - TolVt(-52.4290820922487, 42.8457299034181, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-59.3014115781646, 48.119053788245, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=160 - ID=168 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-52.4290820922487, 42.8457299034181, 0, 5e-07) - TolVt(-51.4400577451493, 43.2403106078938, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-51.934569918699, 43.043020255656, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=161 - ID=169 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-51.4400577451493, 43.2403106078938, 0, 5e-07) - TolVt(-50.5378499761745, 42.4490956297737, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-50.9889538606619, 42.8447031188338, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=162 - ID=170 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-55.0805993785439, 38.4958643803693, 0, 5e-07) - TolVt(-54.0828358437808, 37.8291801007457, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-54.5817176111623, 38.1625222405575, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=163 - ID=171 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-55.0805993785439, 38.4958643803693, 0, 5e-07) - TolVt(-54.9554420226348, 39.5533135412095, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-55.0180207005894, 39.0245889607894, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=164 - ID=172 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-54.9554420226348, 39.5533135412095, 0, 5e-07) - TolVt(-68.7001009944667, 50.0999613108633, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-61.8277715085508, 44.8266374260364, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=165 - ID=173 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-68.7001009944667, 50.0999613108633, 0, 5e-07) - TolVt(-71.5805630770893, 49.62439509632, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-70.2434147992734, 50.4865412944506, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=166 - ID=174 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-71.5805630770893, 49.62439509632, 0, 5e-07) - TolVt(-73.2396585117098, 47.1413833080549, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-72.4101107943995, 48.3828892021874, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=167 - ID=175 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-73.2396585117098, 47.1413833080549, 0, 5e-07) - TolVt(-72.5767192871047, 44.2981920344468, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-73.5244732456594, 45.5760903159469, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=168 - ID=176 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-72.5767192871047, 44.2981920344468, 0, 5e-07) - TolVt(-57.5730340040876, 35.6358102974604, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.0748766455962, 39.9670011659536, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=169 - ID=177 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-57.5730340040876, 35.6358102974604, 0, 5e-07) - TolVt(-56.643974014261, 36.1561088913499, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-57.1085040091743, 35.8959595944051, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=170 - ID=178 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-56.643974014261, 36.1561088913499, 0, 5e-07) - TolVt(-55.646210479498, 35.4894246117264, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-56.1450922468795, 35.8227667515381, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=171 - ID=179 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-59.6340958090359, 30.9770660219807, 0, 5e-07) - TolVt(-58.5578485191967, 30.4463195937179, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-59.0959721641163, 30.7116928078493, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=172 - ID=180 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-59.6340958090359, 30.9770660219807, 0, 5e-07) - TolVt(-59.6480340040875, 32.041804871755, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-59.6410649065617, 31.5094354468679, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=173 - ID=181 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-59.6480340040875, 32.041804871755, 0, 5e-07) - TolVt(-74.6517192871047, 40.7041866087414, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-67.1498766455961, 36.3729957402482, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=174 - ID=182 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-74.6517192871047, 40.7041866087414, 0, 5e-07) - TolVt(-77.4454647701701, 39.8567131816105, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-76.2322886416136, 40.8860164726369, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=175 - ID=183 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-77.4454647701701, 39.8567131816105, 0, 5e-07) - TolVt(-78.7662683393937, 37.1783884937937, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-78.1058665547819, 38.5175508377021, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=176 - ID=184 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-78.7662683393937, 37.1783884937937, 0, 5e-07) - TolVt(-77.7378897210585, 34.4460520483332, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-78.8443347098429, 35.5893110175133, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=177 - ID=185 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-77.7378897210585, 34.4460520483332, 0, 5e-07) - TolVt(-61.7318953418559, 27.8161520971999, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-69.7348925314572, 31.1311020727665, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=178 - ID=186 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-61.7318953418559, 27.8161520971999, 0, 5e-07) - TolVt(-60.8786961833122, 28.4532661273078, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-61.305295762584, 28.1347091122538, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=179 - ID=187 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-60.8786961833122, 28.4532661273078, 0, 5e-07) - TolVt(-59.802448893473, 27.922519699045, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-60.3405725383926, 28.1878929131764, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=180 - ID=188 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-63.1672363265404, 22.9282414754909, 0, 5e-07) - TolVt(-62.0309201711463, 22.5425141171271, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-62.5990782488434, 22.735377796309, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=181 - ID=189 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-63.1672363265404, 22.9282414754909, 0, 5e-07) - TolVt(-63.320031586171, 23.9820520372781, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-63.2436339563557, 23.4551467563845, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=182 - ID=190 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-63.320031586171, 23.9820520372781, 0, 5e-07) - TolVt(-79.3260259653736, 30.6119519884113, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-71.3230287757723, 27.2970020128447, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=183 - ID=191 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-79.3260259653736, 30.6119519884113, 0, 5e-07) - TolVt(-81.985253089094, 29.4070718539951, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-80.9168068897126, 30.5859205732311, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=184 - ID=192 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-81.985253089094, 29.4070718539951, 0, 5e-07) - TolVt(-82.9451654776552, 26.5792611446071, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-82.4652092833746, 27.9931664993011, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=185 - ID=193 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-82.9451654776552, 26.5792611446071, 0, 5e-07) - TolVt(-81.56894330887, 24.0045305614227, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-82.8151477473617, 24.9935887403488, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=186 - ID=194 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-81.56894330887, 24.0045305614227, 0, 5e-07) - TolVt(-64.8345068350102, 19.520551822462, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-73.2017250719401, 21.7625411919423, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=187 - ID=195 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-64.8345068350102, 19.520551822462, 0, 5e-07) - TolVt(-64.0717669819035, 20.2635800910916, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-64.4531369084569, 19.8920659567768, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=188 - ID=196 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-64.0717669819035, 20.2635800910916, 0, 5e-07) - TolVt(-62.9354508265094, 19.8778527327278, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-63.5036089042065, 20.0707164119097, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=189 - ID=197 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-65.6195679172313, 14.4871083604459, 0, 5e-07) - TolVt(-64.4426255807474, 14.2529999740265, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.0310967489893, 14.3700541672362, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=190 - ID=198 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-65.6195679172313, 14.4871083604459, 0, 5e-07) - TolVt(-65.9086058721856, 15.5119596433624, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.7640868947085, 14.9995340019041, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=191 - ID=199 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-65.9086058721856, 15.5119596433624, 0, 5e-07) - TolVt(-82.6430423460455, 19.9959383823231, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-74.2758241091155, 17.7539490128427, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=192 - ID=200 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-82.6430423460455, 19.9959383823231, 0, 5e-07) - TolVt(-85.122250997057, 18.4542673737772, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-84.2168161375512, 19.7624910927981, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=193 - ID=201 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-85.122250997057, 18.4542673737772, 0, 5e-07) - TolVt(-85.7048478378496, 15.5253552680729, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-85.4135494174533, 16.9898113209251, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=194 - ID=202 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-85.7048478378496, 15.5253552680729, 0, 5e-07) - TolVt(-84.0043296614832, 13.152284901293, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-85.3689706462263, 13.9702192303051, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=195 - ID=203 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-84.0043296614832, 13.152284901293, 0, 5e-07) - TolVt(-66.8277819406962, 10.8909494939223, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-75.4160558010897, 12.0216171976077, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=196 - ID=204 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.8277819406962, 10.8909494939223, 0, 5e-07) - TolVt(-66.1685520833847, 11.7271785813912, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-66.4981670120404, 11.3090640376567, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=197 - ID=205 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.1685520833847, 11.7271785813912, 0, 5e-07) - TolVt(-64.9916097469008, 11.4930701949718, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.5800809151427, 11.6101243881815, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=198 - ID=206 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.949130507677, 5.79809680476835, 0, 5e-07) - TolVt(-65.7516997997907, 5.71961304969218, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-66.3504151537338, 5.75885492723027, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=199 - ID=207 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.949130507677, 5.79809680476835, 0, 5e-07) - TolVt(-67.3694656384094, 6.77645331922107, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-67.1592980730432, 6.28727506199471, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=200 - ID=208 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-67.3694656384094, 6.77645331922107, 0, 5e-07) - TolVt(-84.5460133591964, 9.03778872659178, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-75.9577394988029, 7.90712102290642, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=201 - ID=209 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-84.5460133591964, 9.03778872659178, 0, 5e-07) - TolVt(-86.8027835901137, 7.18570526230444, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-86.0758523119638, 8.60091991056962, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=202 - ID=210 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-86.8027835901137, 7.18570526230444, 0, 5e-07) - TolVt(-86.9980964896653, 4.20580625846031, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-86.9004400398895, 5.69575576038237, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=203 - ID=211 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-86.9980964896653, 4.20580625846031, 0, 5e-07) - TolVt(-85.0023786431881, 2.07500000000002, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-86.4621067885838, 2.70781539595428, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=204 - ID=212 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-85.0023786431881, 2.07500000000002, 0, 5e-07) - TolVt(-67.6776151692153, 2.07500000000001, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-76.3399969062017, 2.07500000000001, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=205 - ID=213 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-67.6776151692153, 2.07500000000001, 0, 5e-07) - TolVt(-67.1331749133306, 2.99012179477492, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-67.405395041273, 2.53256089738746, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=206 - ID=214 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-67.1331749133306, 2.99012179477492, 0, 5e-07) - TolVt(-65.9357442054443, 2.91163803969875, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-66.5344595593874, 2.95087991723684, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=207 - ID=215 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-67.1331749133306, -2.99012179477489, 0, 5e-07) - TolVt(-65.9357442054443, -2.91163803969872, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-66.5344595593874, -2.9508799172368, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=208 - ID=216 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-67.1331749133306, -2.99012179477489, 0, 5e-07) - TolVt(-67.6776151692153, -2.07499999999997, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-67.405395041273, -2.53256089738743, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=209 - ID=217 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-67.6776151692153, -2.07499999999997, 0, 5e-07) - TolVt(-85.0023786431881, -2.07499999999997, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-76.3399969062017, -2.07499999999997, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=210 - ID=218 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-85.0023786431881, -2.07499999999997, 0, 5e-07) - TolVt(-86.9980964896653, -4.20580625846026, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-86.4621067885838, -2.70781539595424, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=211 - ID=219 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-86.9980964896653, -4.20580625846026, 0, 5e-07) - TolVt(-86.8027835901137, -7.1857052623044, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-86.9004400398895, -5.69575576038233, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=212 - ID=220 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-86.8027835901137, -7.1857052623044, 0, 5e-07) - TolVt(-84.5460133591964, -9.03778872659173, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-86.0758523119638, -8.60091991056959, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=213 - ID=221 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-84.5460133591964, -9.03778872659173, 0, 5e-07) - TolVt(-67.3694656384094, -6.77645331922104, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-75.9577394988029, -7.90712102290639, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=214 - ID=222 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-67.3694656384094, -6.77645331922104, 0, 5e-07) - TolVt(-66.949130507677, -5.79809680476832, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-67.1592980730432, -6.28727506199468, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=215 - ID=223 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.949130507677, -5.79809680476832, 0, 5e-07) - TolVt(-65.7516997997907, -5.71961304969215, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-66.3504151537338, -5.75885492723023, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=216 - ID=224 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.1685520833847, -11.7271785813911, 0, 5e-07) - TolVt(-64.9916097469008, -11.4930701949718, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.5800809151427, -11.6101243881815, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=217 - ID=225 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.1685520833847, -11.7271785813911, 0, 5e-07) - TolVt(-66.8277819406962, -10.8909494939223, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-66.4981670120404, -11.3090640376567, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=218 - ID=226 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.8277819406962, -10.8909494939223, 0, 5e-07) - TolVt(-84.0043296614832, -13.152284901293, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-75.4160558010897, -12.0216171976076, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=219 - ID=227 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-84.0043296614832, -13.152284901293, 0, 5e-07) - TolVt(-85.7048478378496, -15.5253552680729, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-85.3689706462263, -13.970219230305, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=220 - ID=228 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-85.7048478378496, -15.5253552680729, 0, 5e-07) - TolVt(-85.122250997057, -18.4542673737772, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-85.4135494174533, -16.989811320925, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=221 - ID=229 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-85.122250997057, -18.4542673737772, 0, 5e-07) - TolVt(-82.6430423460455, -19.995938382323, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-84.2168161375513, -19.7624910927981, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=222 - ID=230 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-82.6430423460455, -19.995938382323, 0, 5e-07) - TolVt(-65.9086058721856, -15.5119596433624, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-74.2758241091156, -17.7539490128427, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=223 - ID=231 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-65.9086058721856, -15.5119596433624, 0, 5e-07) - TolVt(-65.6195679172313, -14.4871083604458, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.7640868947085, -14.9995340019041, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=224 - ID=232 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-65.6195679172313, -14.4871083604458, 0, 5e-07) - TolVt(-64.4426255807474, -14.2529999740265, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.0310967489894, -14.3700541672361, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=225 - ID=233 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-64.0717669819036, -20.2635800910916, 0, 5e-07) - TolVt(-62.9354508265094, -19.8778527327278, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-63.5036089042065, -20.0707164119097, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=226 - ID=234 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-64.0717669819036, -20.2635800910916, 0, 5e-07) - TolVt(-64.8345068350102, -19.520551822462, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-64.4531369084569, -19.8920659567768, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=227 - ID=235 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-64.8345068350102, -19.520551822462, 0, 5e-07) - TolVt(-81.56894330887, -24.0045305614226, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-73.2017250719401, -21.7625411919423, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=228 - ID=236 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-81.56894330887, -24.0045305614226, 0, 5e-07) - TolVt(-82.9451654776552, -26.5792611446071, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-82.8151477473617, -24.9935887403488, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=229 - ID=237 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-82.9451654776552, -26.5792611446071, 0, 5e-07) - TolVt(-81.985253089094, -29.407071853995, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-82.4652092833746, -27.9931664993011, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=230 - ID=238 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-81.985253089094, -29.407071853995, 0, 5e-07) - TolVt(-79.3260259653736, -30.6119519884113, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-80.9168068897126, -30.5859205732311, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=231 - ID=239 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-79.3260259653736, -30.6119519884113, 0, 5e-07) - TolVt(-63.320031586171, -23.9820520372781, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-71.3230287757723, -27.2970020128447, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=232 - ID=240 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-63.320031586171, -23.9820520372781, 0, 5e-07) - TolVt(-63.1672363265404, -22.9282414754908, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-63.2436339563557, -23.4551467563844, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=233 - ID=241 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-63.1672363265404, -22.9282414754908, 0, 5e-07) - TolVt(-62.0309201711463, -22.542514117127, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-62.5990782488434, -22.7353777963089, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=234 - ID=242 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-60.8786961833122, -28.4532661273077, 0, 5e-07) - TolVt(-59.802448893473, -27.9225196990449, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-60.3405725383926, -28.1878929131763, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=235 - ID=243 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-60.8786961833122, -28.4532661273077, 0, 5e-07) - TolVt(-61.7318953418559, -27.8161520971999, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-61.3052957625841, -28.1347091122538, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=236 - ID=244 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-61.7318953418559, -27.8161520971999, 0, 5e-07) - TolVt(-77.7378897210585, -34.4460520483331, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-69.7348925314572, -31.1311020727665, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=237 - ID=245 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-77.7378897210585, -34.4460520483331, 0, 5e-07) - TolVt(-78.7662683393937, -37.1783884937937, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-78.844334709843, -35.5893110175132, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=238 - ID=246 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-78.7662683393937, -37.1783884937937, 0, 5e-07) - TolVt(-77.4454647701701, -39.8567131816104, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-78.1058665547819, -38.5175508377021, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=239 - ID=247 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-77.4454647701701, -39.8567131816104, 0, 5e-07) - TolVt(-74.6517192871048, -40.7041866087413, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-76.2322886416137, -40.8860164726369, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=240 - ID=248 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-74.6517192871048, -40.7041866087413, 0, 5e-07) - TolVt(-59.6480340040876, -32.0418048717549, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-67.1498766455962, -36.3729957402481, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=241 - ID=249 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-59.6480340040876, -32.0418048717549, 0, 5e-07) - TolVt(-59.6340958090359, -30.9770660219807, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-59.6410649065618, -31.5094354468678, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=242 - ID=250 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-59.6340958090359, -30.9770660219807, 0, 5e-07) - TolVt(-58.5578485191967, -30.4463195937179, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-59.0959721641163, -30.7116928078493, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=243 - ID=251 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-56.6439740142611, -36.1561088913499, 0, 5e-07) - TolVt(-55.646210479498, -35.4894246117263, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-56.1450922468795, -35.8227667515381, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=244 - ID=252 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-56.6439740142611, -36.1561088913499, 0, 5e-07) - TolVt(-57.5730340040876, -35.6358102974603, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-57.1085040091743, -35.8959595944051, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=245 - ID=253 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-57.5730340040876, -35.6358102974603, 0, 5e-07) - TolVt(-72.5767192871048, -44.2981920344467, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.0748766455962, -39.9670011659535, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=246 - ID=254 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-72.5767192871048, -44.2981920344467, 0, 5e-07) - TolVt(-73.2396585117098, -47.1413833080548, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-73.5244732456594, -45.5760903159469, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=247 - ID=255 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-73.2396585117098, -47.1413833080548, 0, 5e-07) - TolVt(-71.5805630770893, -49.62439509632, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-72.4101107943996, -48.3828892021874, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=248 - ID=256 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-71.5805630770893, -49.62439509632, 0, 5e-07) - TolVt(-68.7001009944668, -50.0999613108632, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-70.2434147992734, -50.4865412944505, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=249 - ID=257 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-68.7001009944668, -50.0999613108632, 0, 5e-07) - TolVt(-54.9554420226349, -39.5533135412095, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-61.8277715085508, -44.8266374260364, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=250 - ID=258 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-54.9554420226349, -39.5533135412095, 0, 5e-07) - TolVt(-55.0805993785439, -38.4958643803692, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-55.0180207005894, -39.0245889607894, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=251 - ID=259 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-55.0805993785439, -38.4958643803692, 0, 5e-07) - TolVt(-54.0828358437808, -37.8291801007457, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-54.5817176111624, -38.1625222405575, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=252 - ID=260 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-51.4400577451493, -43.2403106078938, 0, 5e-07) - TolVt(-50.5378499761745, -42.4490956297737, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-50.9889538606619, -42.8447031188338, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=253 - ID=261 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-51.4400577451493, -43.2403106078938, 0, 5e-07) - TolVt(-52.4290820922487, -42.8457299034181, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-51.934569918699, -43.0430202556559, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=254 - ID=262 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-52.4290820922487, -42.8457299034181, 0, 5e-07) - TolVt(-66.1737410640806, -53.3923776730718, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-59.3014115781646, -48.119053788245, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=255 - ID=263 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.1737410640806, -53.3923776730718, 0, 5e-07) - TolVt(-66.4598978210211, -56.2977759838545, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-66.9465876594075, -54.7830500729952, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=256 - ID=264 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-66.4598978210211, -56.2977759838545, 0, 5e-07) - TolVt(-64.4908981038781, -58.5429898524498, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.4753979624496, -57.4203829181521, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=257 - ID=265 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-64.4908981038781, -58.5429898524498, 0, 5e-07) - TolVt(-61.573004926547, -58.6385117846228, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-63.0526566545636, -59.2232273972024, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=258 - ID=266 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-61.573004926547, -58.6385117846228, 0, 5e-07) - TolVt(-49.3225471916478, -46.3880540497236, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-55.4477760590974, -52.5132829171732, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=259 - ID=267 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-49.3225471916478, -46.3880540497236, 0, 5e-07) - TolVt(-49.5846586214577, -45.3559878261396, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-49.4536029065528, -45.8720209379316, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=260 - ID=268 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-49.5846586214577, -45.3559878261396, 0, 5e-07) - TolVt(-48.6824508524829, -44.5647728480196, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-49.1335547369703, -44.9603803370796, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=261 - ID=269 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-45.3559878261397, -49.5846586214577, 0, 5e-07) - TolVt(-44.5647728480196, -48.6824508524829, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-44.9603803370796, -49.1335547369703, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=262 - ID=270 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-45.3559878261397, -49.5846586214577, 0, 5e-07) - TolVt(-46.3880540497237, -49.3225471916478, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-45.8720209379317, -49.4536029065527, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=263 - ID=271 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-46.3880540497237, -49.3225471916478, 0, 5e-07) - TolVt(-58.6385117846228, -61.5730049265469, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-52.5132829171732, -55.4477760590973, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=264 - ID=272 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-58.6385117846228, -61.5730049265469, 0, 5e-07) - TolVt(-58.5429898524499, -64.490898103878, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-59.2232273972025, -63.0526566545636, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=265 - ID=273 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-58.5429898524499, -64.490898103878, 0, 5e-07) - TolVt(-56.2977759838545, -66.4598978210211, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-57.4203829181522, -65.4753979624495, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=266 - ID=274 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-56.2977759838545, -66.4598978210211, 0, 5e-07) - TolVt(-53.3923776730719, -66.1737410640805, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-54.7830500729952, -66.9465876594075, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=267 - ID=275 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-53.3923776730719, -66.1737410640805, 0, 5e-07) - TolVt(-42.8457299034181, -52.4290820922486, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-48.119053788245, -59.3014115781646, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=268 - ID=276 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-42.8457299034181, -52.4290820922486, 0, 5e-07) - TolVt(-43.2403106078938, -51.4400577451493, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.043020255656, -51.934569918699, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=269 - ID=277 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-43.2403106078938, -51.4400577451493, 0, 5e-07) - TolVt(-42.4490956297738, -50.5378499761745, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.8447031188338, -50.9889538606619, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=270 - ID=278 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-38.4958643803693, -55.0805993785439, 0, 5e-07) - TolVt(-37.8291801007457, -54.0828358437808, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-38.1625222405575, -54.5817176111623, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=271 - ID=279 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-38.4958643803693, -55.0805993785439, 0, 5e-07) - TolVt(-39.5533135412095, -54.9554420226348, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-39.0245889607894, -55.0180207005893, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=272 - ID=280 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-39.5533135412095, -54.9554420226348, 0, 5e-07) - TolVt(-50.0999613108633, -68.7001009944667, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-44.8266374260364, -61.8277715085508, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=273 - ID=281 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-50.0999613108633, -68.7001009944667, 0, 5e-07) - TolVt(-49.62439509632, -71.5805630770893, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-50.4865412944506, -70.2434147992733, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=274 - ID=282 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-49.62439509632, -71.5805630770893, 0, 5e-07) - TolVt(-47.1413833080549, -73.2396585117098, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-48.3828892021874, -72.4101107943995, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=275 - ID=283 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-47.1413833080549, -73.2396585117098, 0, 5e-07) - TolVt(-44.2981920344468, -72.5767192871047, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-45.5760903159469, -73.5244732456594, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=276 - ID=284 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-44.2981920344468, -72.5767192871047, 0, 5e-07) - TolVt(-35.6358102974604, -57.5730340040876, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-39.9670011659536, -65.0748766455962, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=277 - ID=285 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-35.6358102974604, -57.5730340040876, 0, 5e-07) - TolVt(-36.1561088913499, -56.643974014261, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-35.8959595944051, -57.1085040091743, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=278 - ID=286 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-36.1561088913499, -56.643974014261, 0, 5e-07) - TolVt(-35.4894246117264, -55.646210479498, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-35.8227667515381, -56.1450922468795, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=279 - ID=287 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-30.9770660219807, -59.6340958090359, 0, 5e-07) - TolVt(-30.446319593718, -58.5578485191967, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-30.7116928078493, -59.0959721641163, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=280 - ID=288 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-30.9770660219807, -59.6340958090359, 0, 5e-07) - TolVt(-32.041804871755, -59.6480340040875, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-31.5094354468679, -59.6410649065617, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=281 - ID=289 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-32.041804871755, -59.6480340040875, 0, 5e-07) - TolVt(-40.7041866087414, -74.6517192871047, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.3729957402482, -67.1498766455961, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=282 - ID=290 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-40.7041866087414, -74.6517192871047, 0, 5e-07) - TolVt(-39.8567131816105, -77.4454647701701, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.8860164726369, -76.2322886416136, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=283 - ID=291 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-39.8567131816105, -77.4454647701701, 0, 5e-07) - TolVt(-37.1783884937938, -78.7662683393937, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-38.5175508377021, -78.1058665547819, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=284 - ID=292 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-37.1783884937938, -78.7662683393937, 0, 5e-07) - TolVt(-34.4460520483332, -77.7378897210585, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-35.5893110175133, -78.8443347098429, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=285 - ID=293 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-34.4460520483332, -77.7378897210585, 0, 5e-07) - TolVt(-27.8161520971999, -61.7318953418559, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-31.1311020727666, -69.7348925314572, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=286 - ID=294 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-27.8161520971999, -61.7318953418559, 0, 5e-07) - TolVt(-28.4532661273078, -60.8786961833122, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-28.1347091122538, -61.305295762584, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=287 - ID=295 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-28.4532661273078, -60.8786961833122, 0, 5e-07) - TolVt(-27.922519699045, -59.802448893473, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-28.1878929131764, -60.3405725383926, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=288 - ID=296 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-22.9282414754909, -63.1672363265404, 0, 5e-07) - TolVt(-22.5425141171271, -62.0309201711463, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-22.735377796309, -62.5990782488434, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=289 - ID=297 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-22.9282414754909, -63.1672363265404, 0, 5e-07) - TolVt(-23.9820520372781, -63.320031586171, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.4551467563845, -63.2436339563557, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=290 - ID=298 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-23.9820520372781, -63.320031586171, 0, 5e-07) - TolVt(-30.6119519884114, -79.3260259653736, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-27.2970020128448, -71.3230287757723, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=291 - ID=299 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-30.6119519884114, -79.3260259653736, 0, 5e-07) - TolVt(-29.4070718539951, -81.985253089094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-30.5859205732312, -80.9168068897125, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=292 - ID=300 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-29.4070718539951, -81.985253089094, 0, 5e-07) - TolVt(-26.5792611446072, -82.9451654776552, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-27.9931664993012, -82.4652092833746, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=293 - ID=301 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-26.5792611446072, -82.9451654776552, 0, 5e-07) - TolVt(-24.0045305614227, -81.56894330887, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-24.9935887403488, -82.8151477473617, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=294 - ID=302 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-24.0045305614227, -81.56894330887, 0, 5e-07) - TolVt(-19.520551822462, -64.8345068350102, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-21.7625411919424, -73.2017250719401, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=295 - ID=303 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-19.520551822462, -64.8345068350102, 0, 5e-07) - TolVt(-20.2635800910917, -64.0717669819035, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.8920659567768, -64.4531369084569, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=296 - ID=304 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-20.2635800910917, -64.0717669819035, 0, 5e-07) - TolVt(-19.8778527327279, -62.9354508265094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-20.0707164119098, -63.5036089042065, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=297 - ID=305 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-14.4871083604459, -65.6195679172313, 0, 5e-07) - TolVt(-14.2529999740265, -64.4426255807474, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3700541672362, -65.0310967489893, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=298 - ID=306 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-14.4871083604459, -65.6195679172313, 0, 5e-07) - TolVt(-15.5119596433624, -65.9086058721856, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.9995340019042, -65.7640868947085, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=299 - ID=307 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-15.5119596433624, -65.9086058721856, 0, 5e-07) - TolVt(-19.9959383823231, -82.6430423460455, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-17.7539490128428, -74.2758241091155, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=300 - ID=308 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-19.9959383823231, -82.6430423460455, 0, 5e-07) - TolVt(-18.4542673737772, -85.122250997057, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.7624910927981, -84.2168161375512, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=301 - ID=309 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-18.4542673737772, -85.122250997057, 0, 5e-07) - TolVt(-15.525355268073, -85.7048478378496, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-16.9898113209251, -85.4135494174533, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=302 - ID=310 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-15.525355268073, -85.7048478378496, 0, 5e-07) - TolVt(-13.1522849012931, -84.0043296614832, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-13.9702192303051, -85.3689706462263, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=303 - ID=311 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-13.1522849012931, -84.0043296614832, 0, 5e-07) - TolVt(-10.8909494939224, -66.8277819406962, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-12.0216171976077, -75.4160558010897, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=304 - ID=312 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-10.8909494939224, -66.8277819406962, 0, 5e-07) - TolVt(-11.7271785813912, -66.1685520833847, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-11.3090640376568, -66.4981670120404, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=305 - ID=313 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-11.7271785813912, -66.1685520833847, 0, 5e-07) - TolVt(-11.4930701949718, -64.9916097469008, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-11.6101243881815, -65.5800809151427, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=306 - ID=314 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-5.79809680476839, -66.949130507677, 0, 5e-07) - TolVt(-5.71961304969222, -65.7516997997907, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-5.7588549272303, -66.3504151537338, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=307 - ID=315 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-5.79809680476839, -66.949130507677, 0, 5e-07) - TolVt(-6.7764533192211, -67.3694656384094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.28727506199474, -67.1592980730432, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=308 - ID=316 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-6.7764533192211, -67.3694656384094, 0, 5e-07) - TolVt(-9.03778872659182, -84.5460133591964, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-7.90712102290646, -75.9577394988029, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=309 - ID=317 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-9.03778872659182, -84.5460133591964, 0, 5e-07) - TolVt(-7.18570526230448, -86.8027835901137, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.60091991056967, -86.0758523119638, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=310 - ID=318 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-7.18570526230448, -86.8027835901137, 0, 5e-07) - TolVt(-4.20580625846035, -86.9980964896653, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-5.69575576038242, -86.9004400398895, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=311 - ID=319 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-4.20580625846035, -86.9980964896653, 0, 5e-07) - TolVt(-2.07500000000006, -85.0023786431881, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.70781539595432, -86.4621067885838, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=312 - ID=320 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-2.07500000000006, -85.0023786431881, 0, 5e-07) - TolVt(-2.07500000000004, -67.6776151692153, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.07500000000005, -76.3399969062017, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=313 - ID=321 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-2.07500000000004, -67.6776151692153, 0, 5e-07) - TolVt(-2.99012179477496, -67.1331749133306, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.5325608973875, -67.405395041273, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=314 - ID=322 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-2.99012179477496, -67.1331749133306, 0, 5e-07) - TolVt(-2.91163803969879, -65.9357442054443, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.95087991723687, -66.5344595593874, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=315 - ID=323 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(2.99012179477489, -67.1331749133306, 0, 5e-07) - TolVt(2.91163803969871, -65.9357442054443, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.9508799172368, -66.5344595593874, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=316 - ID=324 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(2.99012179477489, -67.1331749133306, 0, 5e-07) - TolVt(2.07499999999997, -67.6776151692153, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.53256089738743, -67.405395041273, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=317 - ID=325 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(2.07499999999997, -67.6776151692153, 0, 5e-07) - TolVt(2.07499999999997, -85.0023786431881, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.07499999999997, -76.3399969062017, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=318 - ID=326 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(2.07499999999997, -85.0023786431881, 0, 5e-07) - TolVt(4.20580625846025, -86.9980964896653, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.70781539595423, -86.4621067885838, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=319 - ID=327 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(4.20580625846025, -86.9980964896653, 0, 5e-07) - TolVt(7.18570526230439, -86.8027835901137, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(5.69575576038232, -86.9004400398895, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=320 - ID=328 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(7.18570526230439, -86.8027835901137, 0, 5e-07) - TolVt(9.03778872659173, -84.5460133591964, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.60091991056958, -86.0758523119638, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=321 - ID=329 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(9.03778872659173, -84.5460133591964, 0, 5e-07) - TolVt(6.77645331922103, -67.3694656384094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(7.90712102290638, -75.9577394988029, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=322 - ID=330 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(6.77645331922103, -67.3694656384094, 0, 5e-07) - TolVt(5.79809680476832, -66.949130507677, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(6.28727506199467, -67.1592980730432, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=323 - ID=331 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(5.79809680476832, -66.949130507677, 0, 5e-07) - TolVt(5.71961304969214, -65.7516997997907, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(5.75885492723023, -66.3504151537338, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=324 - ID=332 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(11.7271785813911, -66.1685520833847, 0, 5e-07) - TolVt(11.4930701949718, -64.9916097469008, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(11.6101243881814, -65.5800809151427, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=325 - ID=333 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(11.7271785813911, -66.1685520833847, 0, 5e-07) - TolVt(10.8909494939223, -66.8277819406962, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(11.3090640376567, -66.4981670120404, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=326 - ID=334 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(10.8909494939223, -66.8277819406962, 0, 5e-07) - TolVt(13.152284901293, -84.0043296614832, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(12.0216171976076, -75.4160558010897, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=327 - ID=335 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(13.152284901293, -84.0043296614832, 0, 5e-07) - TolVt(15.5253552680729, -85.7048478378496, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(13.970219230305, -85.3689706462263, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=328 - ID=336 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(15.5253552680729, -85.7048478378496, 0, 5e-07) - TolVt(18.4542673737771, -85.122250997057, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(16.989811320925, -85.4135494174533, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=329 - ID=337 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(18.4542673737771, -85.122250997057, 0, 5e-07) - TolVt(19.995938382323, -82.6430423460455, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(19.7624910927981, -84.2168161375513, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=330 - ID=338 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(19.995938382323, -82.6430423460455, 0, 5e-07) - TolVt(15.5119596433624, -65.9086058721856, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(17.7539490128427, -74.2758241091156, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=331 - ID=339 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(15.5119596433624, -65.9086058721856, 0, 5e-07) - TolVt(14.4871083604458, -65.6195679172313, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.9995340019041, -65.7640868947085, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=332 - ID=340 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(14.4871083604458, -65.6195679172313, 0, 5e-07) - TolVt(14.2529999740265, -64.4426255807474, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3700541672361, -65.0310967489894, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=333 - ID=341 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(20.2635800910916, -64.0717669819036, 0, 5e-07) - TolVt(19.8778527327278, -62.9354508265094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(20.0707164119097, -63.5036089042065, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=334 - ID=342 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(20.2635800910916, -64.0717669819036, 0, 5e-07) - TolVt(19.520551822462, -64.8345068350102, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(19.8920659567768, -64.4531369084569, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=335 - ID=343 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(19.520551822462, -64.8345068350102, 0, 5e-07) - TolVt(24.0045305614226, -81.56894330887, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(21.7625411919423, -73.2017250719401, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=336 - ID=344 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(24.0045305614226, -81.56894330887, 0, 5e-07) - TolVt(26.5792611446071, -82.9451654776552, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(24.9935887403488, -82.8151477473617, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=337 - ID=345 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(26.5792611446071, -82.9451654776552, 0, 5e-07) - TolVt(29.407071853995, -81.985253089094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(27.9931664993011, -82.4652092833746, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=338 - ID=346 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(29.407071853995, -81.985253089094, 0, 5e-07) - TolVt(30.6119519884113, -79.3260259653736, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(30.5859205732311, -80.9168068897126, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=339 - ID=347 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(30.6119519884113, -79.3260259653736, 0, 5e-07) - TolVt(23.9820520372781, -63.320031586171, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(27.2970020128447, -71.3230287757723, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=340 - ID=348 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(23.9820520372781, -63.320031586171, 0, 5e-07) - TolVt(22.9282414754908, -63.1672363265404, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.4551467563844, -63.2436339563557, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=341 - ID=349 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(22.9282414754908, -63.1672363265404, 0, 5e-07) - TolVt(22.542514117127, -62.0309201711463, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(22.7353777963089, -62.5990782488434, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=342 - ID=350 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(28.4532661273077, -60.8786961833122, 0, 5e-07) - TolVt(27.9225196990449, -59.802448893473, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.1878929131763, -60.3405725383926, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=343 - ID=351 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(28.4532661273077, -60.8786961833122, 0, 5e-07) - TolVt(27.8161520971999, -61.7318953418559, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.1347091122538, -61.3052957625841, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=344 - ID=352 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(27.8161520971999, -61.7318953418559, 0, 5e-07) - TolVt(34.4460520483331, -77.7378897210585, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(31.1311020727665, -69.7348925314572, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=345 - ID=353 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(34.4460520483331, -77.7378897210585, 0, 5e-07) - TolVt(37.1783884937937, -78.7662683393937, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(35.5893110175132, -78.844334709843, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=346 - ID=354 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(37.1783884937937, -78.7662683393937, 0, 5e-07) - TolVt(39.8567131816104, -77.4454647701701, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.5175508377021, -78.1058665547819, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=347 - ID=355 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(39.8567131816104, -77.4454647701701, 0, 5e-07) - TolVt(40.7041866087413, -74.6517192871048, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(40.8860164726369, -76.2322886416137, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=348 - ID=356 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(40.7041866087413, -74.6517192871048, 0, 5e-07) - TolVt(32.0418048717549, -59.6480340040876, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.3729957402481, -67.1498766455962, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=349 - ID=357 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(32.0418048717549, -59.6480340040876, 0, 5e-07) - TolVt(30.9770660219807, -59.6340958090359, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(31.5094354468678, -59.6410649065618, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=350 - ID=358 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(30.9770660219807, -59.6340958090359, 0, 5e-07) - TolVt(30.4463195937179, -58.5578485191967, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(30.7116928078493, -59.0959721641163, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=351 - ID=359 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(36.1561088913498, -56.6439740142611, 0, 5e-07) - TolVt(35.4894246117263, -55.646210479498, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(35.8227667515381, -56.1450922468795, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=352 - ID=360 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(36.1561088913498, -56.6439740142611, 0, 5e-07) - TolVt(35.6358102974603, -57.5730340040876, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(35.8959595944051, -57.1085040091743, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=353 - ID=361 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(35.6358102974603, -57.5730340040876, 0, 5e-07) - TolVt(44.2981920344467, -72.5767192871048, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(39.9670011659535, -65.0748766455962, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=354 - ID=362 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(44.2981920344467, -72.5767192871048, 0, 5e-07) - TolVt(47.1413833080548, -73.2396585117099, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(45.5760903159468, -73.5244732456595, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=355 - ID=363 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(47.1413833080548, -73.2396585117099, 0, 5e-07) - TolVt(49.6243950963199, -71.5805630770893, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(48.3828892021874, -72.4101107943996, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=356 - ID=364 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(49.6243950963199, -71.5805630770893, 0, 5e-07) - TolVt(50.0999613108632, -68.7001009944668, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(50.4865412944505, -70.2434147992734, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=357 - ID=365 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(50.0999613108632, -68.7001009944668, 0, 5e-07) - TolVt(39.5533135412095, -54.9554420226349, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(44.8266374260363, -61.8277715085508, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=358 - ID=366 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(39.5533135412095, -54.9554420226349, 0, 5e-07) - TolVt(38.4958643803692, -55.0805993785439, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(39.0245889607893, -55.0180207005894, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=359 - ID=367 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(38.4958643803692, -55.0805993785439, 0, 5e-07) - TolVt(37.8291801007457, -54.0828358437808, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.1625222405574, -54.5817176111624, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=360 - ID=368 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(43.2403106078938, -51.4400577451493, 0, 5e-07) - TolVt(42.4490956297737, -50.5378499761746, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(42.8447031188337, -50.988953860662, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=361 - ID=369 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(43.2403106078938, -51.4400577451493, 0, 5e-07) - TolVt(42.845729903418, -52.4290820922487, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.0430202556559, -51.934569918699, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=362 - ID=370 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(42.845729903418, -52.4290820922487, 0, 5e-07) - TolVt(53.3923776730718, -66.1737410640806, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(48.1190537882449, -59.3014115781647, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=363 - ID=371 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(53.3923776730718, -66.1737410640806, 0, 5e-07) - TolVt(56.2977759838544, -66.4598978210211, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(54.7830500729952, -66.9465876594076, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=364 - ID=372 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(56.2977759838544, -66.4598978210211, 0, 5e-07) - TolVt(58.5429898524498, -64.4908981038781, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(57.4203829181521, -65.4753979624496, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=365 - ID=373 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(58.5429898524498, -64.4908981038781, 0, 5e-07) - TolVt(58.6385117846228, -61.573004926547, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(59.2232273972024, -63.0526566545637, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=366 - ID=374 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(58.6385117846228, -61.573004926547, 0, 5e-07) - TolVt(46.3880540497236, -49.3225471916478, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(52.5132829171732, -55.4477760590974, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=367 - ID=375 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(46.3880540497236, -49.3225471916478, 0, 5e-07) - TolVt(45.3559878261396, -49.5846586214577, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(45.8720209379316, -49.4536029065528, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=368 - ID=376 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(45.3559878261396, -49.5846586214577, 0, 5e-07) - TolVt(44.5647728480195, -48.682450852483, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(44.9603803370796, -49.1335547369704, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=369 - ID=377 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(49.5846586214577, -45.3559878261397, 0, 5e-07) - TolVt(48.6824508524829, -44.5647728480196, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(49.1335547369703, -44.9603803370796, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=370 - ID=378 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(49.5846586214577, -45.3559878261397, 0, 5e-07) - TolVt(49.3225471916478, -46.3880540497236, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(49.4536029065527, -45.8720209379317, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=371 - ID=379 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(49.3225471916478, -46.3880540497236, 0, 5e-07) - TolVt(61.573004926547, -58.6385117846228, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(55.4477760590974, -52.5132829171732, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=372 - ID=380 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(61.573004926547, -58.6385117846228, 0, 5e-07) - TolVt(64.490898103878, -58.5429898524499, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(63.0526566545636, -59.2232273972025, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=373 - ID=381 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(64.490898103878, -58.5429898524499, 0, 5e-07) - TolVt(66.4598978210211, -56.2977759838545, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.4753979624495, -57.4203829181522, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=374 - ID=382 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.4598978210211, -56.2977759838545, 0, 5e-07) - TolVt(66.1737410640805, -53.3923776730719, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(66.9465876594075, -54.7830500729952, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=375 - ID=383 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.1737410640805, -53.3923776730719, 0, 5e-07) - TolVt(52.4290820922487, -42.8457299034181, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(59.3014115781646, -48.119053788245, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=376 - ID=384 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(52.4290820922487, -42.8457299034181, 0, 5e-07) - TolVt(51.4400577451493, -43.2403106078938, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(51.934569918699, -43.043020255656, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=377 - ID=385 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(51.4400577451493, -43.2403106078938, 0, 5e-07) - TolVt(50.5378499761745, -42.4490956297737, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(50.9889538606619, -42.8447031188338, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=378 - ID=386 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(55.0805993785439, -38.4958643803693, 0, 5e-07) - TolVt(54.0828358437808, -37.8291801007457, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(54.5817176111623, -38.1625222405575, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=379 - ID=387 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(55.0805993785439, -38.4958643803693, 0, 5e-07) - TolVt(54.9554420226348, -39.5533135412095, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(55.0180207005893, -39.0245889607894, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=380 - ID=388 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(54.9554420226348, -39.5533135412095, 0, 5e-07) - TolVt(68.7001009944667, -50.0999613108633, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(61.8277715085508, -44.8266374260364, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=381 - ID=389 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(68.7001009944667, -50.0999613108633, 0, 5e-07) - TolVt(71.5805630770893, -49.62439509632, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(70.2434147992733, -50.4865412944506, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=382 - ID=390 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(71.5805630770893, -49.62439509632, 0, 5e-07) - TolVt(73.2396585117098, -47.1413833080549, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(72.4101107943995, -48.3828892021874, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=383 - ID=391 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(73.2396585117098, -47.1413833080549, 0, 5e-07) - TolVt(72.5767192871047, -44.2981920344468, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(73.5244732456594, -45.5760903159469, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=384 - ID=392 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(72.5767192871047, -44.2981920344468, 0, 5e-07) - TolVt(57.5730340040876, -35.6358102974604, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.0748766455962, -39.9670011659536, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=385 - ID=393 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(57.5730340040876, -35.6358102974604, 0, 5e-07) - TolVt(56.643974014261, -36.1561088913499, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(57.1085040091743, -35.8959595944051, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=386 - ID=394 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(56.643974014261, -36.1561088913499, 0, 5e-07) - TolVt(55.646210479498, -35.4894246117264, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(56.1450922468795, -35.8227667515381, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=387 - ID=395 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(59.6340958090359, -30.9770660219807, 0, 5e-07) - TolVt(58.5578485191967, -30.446319593718, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(59.0959721641163, -30.7116928078493, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=388 - ID=396 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(59.6340958090359, -30.9770660219807, 0, 5e-07) - TolVt(59.6480340040875, -32.041804871755, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(59.6410649065617, -31.5094354468679, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=389 - ID=397 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(59.6480340040875, -32.041804871755, 0, 5e-07) - TolVt(74.6517192871047, -40.7041866087414, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(67.1498766455961, -36.3729957402482, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=390 - ID=398 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(74.6517192871047, -40.7041866087414, 0, 5e-07) - TolVt(77.4454647701701, -39.8567131816105, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(76.2322886416136, -40.8860164726369, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=391 - ID=399 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(77.4454647701701, -39.8567131816105, 0, 5e-07) - TolVt(78.7662683393937, -37.1783884937938, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(78.1058665547819, -38.5175508377021, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=392 - ID=400 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(78.7662683393937, -37.1783884937938, 0, 5e-07) - TolVt(77.7378897210585, -34.4460520483332, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(78.8443347098429, -35.5893110175133, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=393 - ID=401 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(77.7378897210585, -34.4460520483332, 0, 5e-07) - TolVt(61.7318953418559, -27.8161520971999, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(69.7348925314572, -31.1311020727666, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=394 - ID=402 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(61.7318953418559, -27.8161520971999, 0, 5e-07) - TolVt(60.8786961833122, -28.4532661273078, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(61.305295762584, -28.1347091122538, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=395 - ID=403 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(60.8786961833122, -28.4532661273078, 0, 5e-07) - TolVt(59.802448893473, -27.922519699045, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(60.3405725383926, -28.1878929131764, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=396 - ID=404 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(63.1672363265404, -22.9282414754909, 0, 5e-07) - TolVt(62.0309201711463, -22.5425141171271, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(62.5990782488434, -22.735377796309, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=397 - ID=405 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(63.1672363265404, -22.9282414754909, 0, 5e-07) - TolVt(63.320031586171, -23.9820520372781, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(63.2436339563557, -23.4551467563845, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=398 - ID=406 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(63.320031586171, -23.9820520372781, 0, 5e-07) - TolVt(79.3260259653736, -30.6119519884114, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(71.3230287757723, -27.2970020128448, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=399 - ID=407 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(79.3260259653736, -30.6119519884114, 0, 5e-07) - TolVt(81.985253089094, -29.4070718539951, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(80.9168068897125, -30.5859205732312, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=400 - ID=408 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(81.985253089094, -29.4070718539951, 0, 5e-07) - TolVt(82.9451654776552, -26.5792611446072, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(82.4652092833746, -27.9931664993012, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=401 - ID=409 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(82.9451654776552, -26.5792611446072, 0, 5e-07) - TolVt(81.56894330887, -24.0045305614227, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(82.8151477473617, -24.9935887403489, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=402 - ID=410 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(81.56894330887, -24.0045305614227, 0, 5e-07) - TolVt(64.8345068350102, -19.520551822462, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(73.2017250719401, -21.7625411919424, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=403 - ID=411 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(64.8345068350102, -19.520551822462, 0, 5e-07) - TolVt(64.0717669819035, -20.2635800910917, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(64.4531369084569, -19.8920659567769, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=404 - ID=412 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(64.0717669819035, -20.2635800910917, 0, 5e-07) - TolVt(62.9354508265094, -19.8778527327279, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(63.5036089042065, -20.0707164119098, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=405 - ID=413 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(65.6195679172313, -14.4871083604459, 0, 5e-07) - TolVt(64.4426255807474, -14.2529999740265, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.0310967489893, -14.3700541672362, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=406 - ID=414 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(65.6195679172313, -14.4871083604459, 0, 5e-07) - TolVt(65.9086058721856, -15.5119596433624, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.7640868947085, -14.9995340019042, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=407 - ID=415 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(65.9086058721856, -15.5119596433624, 0, 5e-07) - TolVt(82.6430423460455, -19.9959383823231, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(74.2758241091155, -17.7539490128428, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=408 - ID=416 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(82.6430423460455, -19.9959383823231, 0, 5e-07) - TolVt(85.122250997057, -18.4542673737772, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(84.2168161375512, -19.7624910927981, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=409 - ID=417 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(85.122250997057, -18.4542673737772, 0, 5e-07) - TolVt(85.7048478378496, -15.525355268073, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(85.4135494174533, -16.9898113209251, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=410 - ID=418 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(85.7048478378496, -15.525355268073, 0, 5e-07) - TolVt(84.0043296614832, -13.1522849012931, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(85.3689706462263, -13.9702192303051, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=411 - ID=419 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(84.0043296614832, -13.1522849012931, 0, 5e-07) - TolVt(66.8277819406962, -10.8909494939224, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(75.4160558010897, -12.0216171976077, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=412 - ID=420 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.8277819406962, -10.8909494939224, 0, 5e-07) - TolVt(66.1685520833847, -11.7271785813912, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(66.4981670120404, -11.3090640376568, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=413 - ID=421 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.1685520833847, -11.7271785813912, 0, 5e-07) - TolVt(64.9916097469008, -11.4930701949718, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.5800809151427, -11.6101243881815, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=414 - ID=422 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.949130507677, -5.79809680476839, 0, 5e-07) - TolVt(65.7516997997907, -5.71961304969222, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(66.3504151537338, -5.75885492723031, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=415 - ID=423 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.949130507677, -5.79809680476839, 0, 5e-07) - TolVt(67.3694656384094, -6.77645331922111, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(67.1592980730432, -6.28727506199475, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=416 - ID=424 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(67.3694656384094, -6.77645331922111, 0, 5e-07) - TolVt(84.5460133591964, -9.03778872659182, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(75.9577394988029, -7.90712102290647, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=417 - ID=425 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(84.5460133591964, -9.03778872659182, 0, 5e-07) - TolVt(86.8027835901137, -7.18570526230449, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(86.0758523119638, -8.60091991056968, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=418 - ID=426 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(86.8027835901137, -7.18570526230449, 0, 5e-07) - TolVt(86.9980964896653, -4.20580625846036, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(86.9004400398895, -5.69575576038243, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=419 - ID=427 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(86.9980964896653, -4.20580625846036, 0, 5e-07) - TolVt(85.0023786431881, -2.07500000000007, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(86.4621067885838, -2.70781539595433, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=420 - ID=428 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(85.0023786431881, -2.07500000000007, 0, 5e-07) - TolVt(67.6776151692153, -2.07500000000005, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(76.3399969062017, -2.07500000000006, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=421 - ID=429 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(67.6776151692153, -2.07500000000005, 0, 5e-07) - TolVt(67.1331749133306, -2.99012179477496, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(67.405395041273, -2.53256089738751, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=422 - ID=430 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(67.1331749133306, -2.99012179477496, 0, 5e-07) - TolVt(65.9357442054443, -2.91163803969879, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(66.5344595593874, -2.95087991723688, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=423 - ID=431 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(67.1331749133306, 2.9901217947749, 0, 5e-07) - TolVt(65.9357442054443, 2.91163803969873, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(66.5344595593874, 2.95087991723681, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=424 - ID=432 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(67.1331749133306, 2.9901217947749, 0, 5e-07) - TolVt(67.6776151692153, 2.07499999999998, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(67.405395041273, 2.53256089738744, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=425 - ID=433 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(67.6776151692153, 2.07499999999998, 0, 5e-07) - TolVt(85.0023786431881, 2.07499999999998, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(76.3399969062017, 2.07499999999998, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=426 - ID=434 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(85.0023786431881, 2.07499999999998, 0, 5e-07) - TolVt(86.9980964896653, 4.20580625846027, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(86.4621067885838, 2.70781539595425, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=427 - ID=435 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(86.9980964896653, 4.20580625846027, 0, 5e-07) - TolVt(86.8027835901137, 7.18570526230441, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(86.9004400398895, 5.69575576038234, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=428 - ID=436 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(86.8027835901137, 7.18570526230441, 0, 5e-07) - TolVt(84.5460133591964, 9.03778872659174, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(86.0758523119638, 8.6009199105696, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=429 - ID=437 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(84.5460133591964, 9.03778872659174, 0, 5e-07) - TolVt(67.3694656384094, 6.77645331922104, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(75.9577394988029, 7.90712102290639, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=430 - ID=438 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(67.3694656384094, 6.77645331922104, 0, 5e-07) - TolVt(66.949130507677, 5.79809680476833, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(67.1592980730432, 6.28727506199469, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=431 - ID=439 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(66.949130507677, 5.79809680476833, 0, 5e-07) - TolVt(65.7516997997907, 5.71961304969216, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(66.3504151537338, 5.75885492723024, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=432 - ID=440 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(64.9916097469008, 11.4930701949718, 0, 5e-07) - TolVt(65.7516997997907, 5.71961304969216, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.4353608506715, 8.6147286865234, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=433 - ID=441 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(62.9354508265094, 19.8778527327278, 0, 5e-07) - TolVt(64.4426255807474, 14.2529999740265, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(63.7511045350785, 17.0820569767664, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=434 - ID=442 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(59.802448893473, 27.9225196990449, 0, 5e-07) - TolVt(62.0309201711463, 22.5425141171271, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(60.9760491457449, 25.2571065360959, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=435 - ID=443 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(55.646210479498, 35.4894246117264, 0, 5e-07) - TolVt(58.5578485191967, 30.4463195937179, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(57.157676649773, 33, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=436 - ID=444 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(50.5378499761745, 42.4490956297737, 0, 5e-07) - TolVt(54.0828358437808, 37.8291801007457, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(52.3613204592215, 40.1782543145756, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=437 - ID=445 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(44.5647728480196, 48.6824508524829, 0, 5e-07) - TolVt(48.6824508524829, 44.5647728480196, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(46.6690475583121, 46.6690475583121, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=438 - ID=446 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(37.8291801007457, 54.0828358437808, 0, 5e-07) - TolVt(42.4490956297737, 50.5378499761745, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(40.1782543145756, 52.3613204592215, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=439 - ID=447 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(30.4463195937179, 58.5578485191967, 0, 5e-07) - TolVt(35.4894246117264, 55.646210479498, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(33, 57.157676649773, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=440 - ID=448 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(22.5425141171271, 62.0309201711463, 0, 5e-07) - TolVt(27.9225196990449, 59.802448893473, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(25.2571065360959, 60.9760491457449, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=441 - ID=449 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(14.2529999740265, 64.4426255807474, 0, 5e-07) - TolVt(19.8778527327278, 62.9354508265094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(17.0820569767664, 63.7511045350785, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=442 - ID=450 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(5.71961304969216, 65.7516997997907, 0, 5e-07) - TolVt(11.4930701949718, 64.9916097469008, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.61472868652343, 65.4353608506715, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=443 - ID=451 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-2.91163803969872, 65.9357442054443, 0, 5e-07) - TolVt(2.91163803969873, 65.9357442054443, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(4.04133443718627e-15, 66, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=444 - ID=452 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-11.4930701949718, 64.9916097469008, 0, 5e-07) - TolVt(-5.71961304969215, 65.7516997997907, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.61472868652339, 65.4353608506715, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=445 - ID=453 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-19.8778527327278, 62.9354508265094, 0, 5e-07) - TolVt(-14.2529999740265, 64.4426255807474, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-17.0820569767663, 63.7511045350785, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=446 - ID=454 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-27.9225196990449, 59.802448893473, 0, 5e-07) - TolVt(-22.542514117127, 62.0309201711463, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-25.2571065360959, 60.9760491457449, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=447 - ID=455 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-35.4894246117263, 55.646210479498, 0, 5e-07) - TolVt(-30.4463195937179, 58.5578485191967, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-33, 57.157676649773, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=448 - ID=456 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-42.4490956297737, 50.5378499761745, 0, 5e-07) - TolVt(-37.8291801007457, 54.0828358437808, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.1782543145755, 52.3613204592215, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=449 - ID=457 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-48.6824508524829, 44.5647728480196, 0, 5e-07) - TolVt(-44.5647728480196, 48.6824508524829, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-46.6690475583121, 46.6690475583121, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=450 - ID=458 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-54.0828358437808, 37.8291801007457, 0, 5e-07) - TolVt(-50.5378499761745, 42.4490956297737, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-52.3613204592215, 40.1782543145756, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=451 - ID=459 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-58.5578485191967, 30.4463195937179, 0, 5e-07) - TolVt(-55.646210479498, 35.4894246117264, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-57.1576766497729, 33, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=452 - ID=460 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-62.0309201711463, 22.5425141171271, 0, 5e-07) - TolVt(-59.802448893473, 27.922519699045, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-60.9760491457449, 25.2571065360959, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=453 - ID=461 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-64.4426255807474, 14.2529999740265, 0, 5e-07) - TolVt(-62.9354508265094, 19.8778527327278, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-63.7511045350785, 17.0820569767664, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=454 - ID=462 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-65.7516997997907, 5.71961304969218, 0, 5e-07) - TolVt(-64.9916097469008, 11.4930701949718, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.4353608506715, 8.6147286865234, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=455 - ID=463 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-65.9357442054443, -2.91163803969872, 0, 5e-07) - TolVt(-65.9357442054443, 2.91163803969875, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-66, 8.08266887437253e-15, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=456 - ID=464 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-64.9916097469008, -11.4930701949718, 0, 5e-07) - TolVt(-65.7516997997907, -5.71961304969215, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-65.4353608506715, -8.61472868652339, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=457 - ID=465 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-62.9354508265094, -19.8778527327278, 0, 5e-07) - TolVt(-64.4426255807474, -14.2529999740265, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-63.7511045350785, -17.0820569767663, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=458 - ID=466 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-59.802448893473, -27.9225196990449, 0, 5e-07) - TolVt(-62.0309201711463, -22.542514117127, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-60.9760491457449, -25.2571065360959, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=459 - ID=467 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-55.646210479498, -35.4894246117263, 0, 5e-07) - TolVt(-58.5578485191967, -30.4463195937179, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-57.157676649773, -33, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=460 - ID=468 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-50.5378499761745, -42.4490956297737, 0, 5e-07) - TolVt(-54.0828358437808, -37.8291801007457, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-52.3613204592216, -40.1782543145755, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=461 - ID=469 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-44.5647728480196, -48.6824508524829, 0, 5e-07) - TolVt(-48.6824508524829, -44.5647728480196, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-46.6690475583122, -46.6690475583121, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=462 - ID=470 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-37.8291801007457, -54.0828358437808, 0, 5e-07) - TolVt(-42.4490956297738, -50.5378499761745, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.1782543145756, -52.3613204592215, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=463 - ID=471 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-30.446319593718, -58.5578485191967, 0, 5e-07) - TolVt(-35.4894246117264, -55.646210479498, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-33, -57.1576766497729, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=464 - ID=472 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-22.5425141171271, -62.0309201711463, 0, 5e-07) - TolVt(-27.922519699045, -59.802448893473, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-25.257106536096, -60.9760491457449, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=465 - ID=473 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-14.2529999740265, -64.4426255807474, 0, 5e-07) - TolVt(-19.8778527327279, -62.9354508265094, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-17.0820569767664, -63.7511045350785, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=466 - ID=474 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-5.71961304969222, -65.7516997997907, 0, 5e-07) - TolVt(-11.4930701949718, -64.9916097469008, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.61472868652347, -65.4353608506715, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=467 - ID=475 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(2.91163803969871, -65.9357442054443, 0, 5e-07) - TolVt(-2.91163803969879, -65.9357442054443, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-7.07437790117671e-14, -66, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=468 - ID=476 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(11.4930701949718, -64.9916097469008, 0, 5e-07) - TolVt(5.71961304969214, -65.7516997997907, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.61472868652339, -65.4353608506715, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=469 - ID=477 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(19.8778527327278, -62.9354508265094, 0, 5e-07) - TolVt(14.2529999740265, -64.4426255807474, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(17.0820569767663, -63.7511045350785, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=470 - ID=478 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(27.9225196990449, -59.802448893473, 0, 5e-07) - TolVt(22.542514117127, -62.0309201711463, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(25.2571065360959, -60.9760491457449, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=471 - ID=479 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(35.4894246117263, -55.646210479498, 0, 5e-07) - TolVt(30.4463195937179, -58.5578485191967, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(33, -57.157676649773, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=472 - ID=480 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(42.4490956297737, -50.5378499761746, 0, 5e-07) - TolVt(37.8291801007457, -54.0828358437808, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(40.1782543145755, -52.3613204592216, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=473 - ID=481 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(48.6824508524829, -44.5647728480196, 0, 5e-07) - TolVt(44.5647728480195, -48.682450852483, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(46.6690475583121, -46.6690475583122, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=474 - ID=482 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(54.0828358437808, -37.8291801007457, 0, 5e-07) - TolVt(50.5378499761745, -42.4490956297737, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(52.3613204592215, -40.1782543145756, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=475 - ID=483 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(58.5578485191967, -30.446319593718, 0, 5e-07) - TolVt(55.646210479498, -35.4894246117264, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(57.1576766497729, -33.0000000000001, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=476 - ID=484 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(62.0309201711463, -22.5425141171271, 0, 5e-07) - TolVt(59.802448893473, -27.922519699045, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(60.9760491457449, -25.257106536096, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=477 - ID=485 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(64.4426255807474, -14.2529999740265, 0, 5e-07) - TolVt(62.9354508265094, -19.8778527327279, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(63.7511045350785, -17.0820569767664, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=478 - ID=486 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(65.7516997997907, -5.71961304969222, 0, 5e-07) - TolVt(64.9916097469008, -11.4930701949718, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(65.4353608506715, -8.61472868652347, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=479 - ID=487 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(65.9357442054443, -2.91163803969879, 0, 5e-07) - TolVt(65.9357442054443, 2.91163803969873, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(66, 0, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=480 - ID=488 - EdgeFaces(7) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(-99, 1.21240033115588e-14, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=489 - VtPos(66.1685520833847, 11.7271785813911, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=490 - VtPos(66.8277819406962, 10.8909494939223, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=491 - VtPos(84.0043296614832, 13.152284901293, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=492 - VtPos(85.7048478378496, 15.5253552680729, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=493 - VtPos(85.122250997057, 18.4542673737772, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=494 - VtPos(82.6430423460455, 19.9959383823231, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=495 - VtPos(65.9086058721856, 15.5119596433624, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=496 - VtPos(65.6195679172313, 14.4871083604458, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=8 - ID=497 - VtPos(64.0717669819035, 20.2635800910916, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=9 - ID=498 - VtPos(64.8345068350102, 19.520551822462, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=10 - ID=499 - VtPos(81.56894330887, 24.0045305614227, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=11 - ID=500 - VtPos(82.9451654776552, 26.5792611446071, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=12 - ID=501 - VtPos(81.985253089094, 29.4070718539951, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=13 - ID=502 - VtPos(79.3260259653736, 30.6119519884113, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=14 - ID=503 - VtPos(63.320031586171, 23.9820520372781, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=15 - ID=504 - VtPos(63.1672363265404, 22.9282414754909, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=16 - ID=505 - VtPos(60.8786961833122, 28.4532661273077, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=17 - ID=506 - VtPos(61.7318953418559, 27.8161520971999, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=18 - ID=507 - VtPos(77.7378897210585, 34.4460520483331, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=19 - ID=508 - VtPos(78.7662683393937, 37.1783884937937, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=20 - ID=509 - VtPos(77.4454647701701, 39.8567131816105, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=21 - ID=510 - VtPos(74.6517192871047, 40.7041866087414, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=22 - ID=511 - VtPos(59.6480340040875, 32.041804871755, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=23 - ID=512 - VtPos(59.6340958090359, 30.9770660219807, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=24 - ID=513 - VtPos(56.643974014261, 36.1561088913499, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=25 - ID=514 - VtPos(57.5730340040876, 35.6358102974604, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=26 - ID=515 - VtPos(72.5767192871048, 44.2981920344468, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=27 - ID=516 - VtPos(73.2396585117098, 47.1413833080548, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=28 - ID=517 - VtPos(71.5805630770893, 49.62439509632, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=29 - ID=518 - VtPos(68.7001009944668, 50.0999613108633, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=30 - ID=519 - VtPos(54.9554420226348, 39.5533135412095, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=31 - ID=520 - VtPos(55.0805993785439, 38.4958643803692, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=32 - ID=521 - VtPos(51.4400577451493, 43.2403106078938, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=33 - ID=522 - VtPos(52.4290820922487, 42.8457299034181, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=34 - ID=523 - VtPos(66.1737410640806, 53.3923776730719, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=35 - ID=524 - VtPos(66.4598978210211, 56.2977759838545, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=36 - ID=525 - VtPos(64.490898103878, 58.5429898524499, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=37 - ID=526 - VtPos(61.573004926547, 58.6385117846228, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=38 - ID=527 - VtPos(49.3225471916478, 46.3880540497236, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=39 - ID=528 - VtPos(49.5846586214577, 45.3559878261397, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=40 - ID=529 - VtPos(45.3559878261397, 49.5846586214577, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=41 - ID=530 - VtPos(46.3880540497236, 49.3225471916478, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=42 - ID=531 - VtPos(58.6385117846228, 61.573004926547, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=43 - ID=532 - VtPos(58.5429898524499, 64.490898103878, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=44 - ID=533 - VtPos(56.2977759838545, 66.4598978210211, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=45 - ID=534 - VtPos(53.3923776730719, 66.1737410640806, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=46 - ID=535 - VtPos(42.8457299034181, 52.4290820922487, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=47 - ID=536 - VtPos(43.2403106078938, 51.4400577451493, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=48 - ID=537 - VtPos(38.4958643803692, 55.0805993785439, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=49 - ID=538 - VtPos(39.5533135412095, 54.9554420226348, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=50 - ID=539 - VtPos(50.0999613108633, 68.7001009944667, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=51 - ID=540 - VtPos(49.62439509632, 71.5805630770893, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=52 - ID=541 - VtPos(47.1413833080548, 73.2396585117098, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=53 - ID=542 - VtPos(44.2981920344468, 72.5767192871048, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=54 - ID=543 - VtPos(35.6358102974604, 57.5730340040876, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=55 - ID=544 - VtPos(36.1561088913499, 56.643974014261, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=56 - ID=545 - VtPos(30.9770660219807, 59.6340958090359, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=57 - ID=546 - VtPos(32.041804871755, 59.6480340040875, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=58 - ID=547 - VtPos(40.7041866087414, 74.6517192871047, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=59 - ID=548 - VtPos(39.8567131816105, 77.4454647701701, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=60 - ID=549 - VtPos(37.1783884937937, 78.7662683393937, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=61 - ID=550 - VtPos(34.4460520483332, 77.7378897210585, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=62 - ID=551 - VtPos(27.8161520971999, 61.7318953418559, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=63 - ID=552 - VtPos(28.4532661273077, 60.8786961833122, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=64 - ID=553 - VtPos(22.9282414754909, 63.1672363265404, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=65 - ID=554 - VtPos(23.9820520372781, 63.320031586171, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=66 - ID=555 - VtPos(30.6119519884113, 79.3260259653736, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=67 - ID=556 - VtPos(29.4070718539951, 81.985253089094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=68 - ID=557 - VtPos(26.5792611446071, 82.9451654776552, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=69 - ID=558 - VtPos(24.0045305614227, 81.56894330887, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=70 - ID=559 - VtPos(19.520551822462, 64.8345068350102, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=71 - ID=560 - VtPos(20.2635800910916, 64.0717669819035, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=72 - ID=561 - VtPos(14.4871083604458, 65.6195679172313, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=73 - ID=562 - VtPos(15.5119596433624, 65.9086058721856, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=74 - ID=563 - VtPos(19.9959383823231, 82.6430423460455, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=75 - ID=564 - VtPos(18.4542673737772, 85.122250997057, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=76 - ID=565 - VtPos(15.5253552680729, 85.7048478378496, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=77 - ID=566 - VtPos(13.152284901293, 84.0043296614832, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=78 - ID=567 - VtPos(10.8909494939223, 66.8277819406962, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=79 - ID=568 - VtPos(11.7271785813912, 66.1685520833847, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=80 - ID=569 - VtPos(5.79809680476834, 66.949130507677, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=81 - ID=570 - VtPos(6.77645331922105, 67.3694656384094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=82 - ID=571 - VtPos(9.03778872659175, 84.5460133591964, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=83 - ID=572 - VtPos(7.18570526230442, 86.8027835901137, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=84 - ID=573 - VtPos(4.20580625846028, 86.9980964896653, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=85 - ID=574 - VtPos(2.07499999999999, 85.0023786431881, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=86 - ID=575 - VtPos(2.07499999999999, 67.6776151692153, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=87 - ID=576 - VtPos(2.99012179477491, 67.1331749133306, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=88 - ID=577 - VtPos(-2.99012179477489, 67.1331749133306, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=89 - ID=578 - VtPos(-2.07499999999998, 67.6776151692153, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=90 - ID=579 - VtPos(-2.07499999999998, 85.0023786431881, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=91 - ID=580 - VtPos(-4.20580625846026, 86.9980964896653, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=92 - ID=581 - VtPos(-7.1857052623044, 86.8027835901137, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=93 - ID=582 - VtPos(-9.03778872659174, 84.5460133591964, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=94 - ID=583 - VtPos(-6.77645331922104, 67.3694656384094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=95 - ID=584 - VtPos(-5.79809680476832, 66.949130507677, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=96 - ID=585 - VtPos(-11.7271785813911, 66.1685520833847, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=97 - ID=586 - VtPos(-10.8909494939223, 66.8277819406962, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=98 - ID=587 - VtPos(-13.152284901293, 84.0043296614832, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=99 - ID=588 - VtPos(-15.5253552680729, 85.7048478378496, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=100 - ID=589 - VtPos(-18.4542673737772, 85.122250997057, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=101 - ID=590 - VtPos(-19.995938382323, 82.6430423460455, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=102 - ID=591 - VtPos(-15.5119596433624, 65.9086058721856, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=103 - ID=592 - VtPos(-14.4871083604458, 65.6195679172313, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=104 - ID=593 - VtPos(-20.2635800910916, 64.0717669819035, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=105 - ID=594 - VtPos(-19.520551822462, 64.8345068350102, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=106 - ID=595 - VtPos(-24.0045305614226, 81.56894330887, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=107 - ID=596 - VtPos(-26.5792611446071, 82.9451654776552, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=108 - ID=597 - VtPos(-29.4070718539951, 81.985253089094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=109 - ID=598 - VtPos(-30.6119519884113, 79.3260259653736, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=110 - ID=599 - VtPos(-23.9820520372781, 63.320031586171, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=111 - ID=600 - VtPos(-22.9282414754908, 63.1672363265404, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=112 - ID=601 - VtPos(-28.4532661273077, 60.8786961833122, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=113 - ID=602 - VtPos(-27.8161520971999, 61.7318953418559, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=114 - ID=603 - VtPos(-34.4460520483331, 77.7378897210585, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=115 - ID=604 - VtPos(-37.1783884937937, 78.7662683393937, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=116 - ID=605 - VtPos(-39.8567131816105, 77.4454647701701, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=117 - ID=606 - VtPos(-40.7041866087413, 74.6517192871047, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=118 - ID=607 - VtPos(-32.041804871755, 59.6480340040876, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=119 - ID=608 - VtPos(-30.9770660219807, 59.6340958090359, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=120 - ID=609 - VtPos(-36.1561088913499, 56.643974014261, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=121 - ID=610 - VtPos(-35.6358102974603, 57.5730340040876, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=122 - ID=611 - VtPos(-44.2981920344467, 72.5767192871048, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=123 - ID=612 - VtPos(-47.1413833080548, 73.2396585117098, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=124 - ID=613 - VtPos(-49.62439509632, 71.5805630770893, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=125 - ID=614 - VtPos(-50.0999613108633, 68.7001009944668, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=126 - ID=615 - VtPos(-39.5533135412095, 54.9554420226348, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=127 - ID=616 - VtPos(-38.4958643803692, 55.0805993785439, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=128 - ID=617 - VtPos(-43.2403106078938, 51.4400577451493, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=129 - ID=618 - VtPos(-42.8457299034181, 52.4290820922487, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=130 - ID=619 - VtPos(-53.3923776730718, 66.1737410640806, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=131 - ID=620 - VtPos(-56.2977759838545, 66.4598978210211, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=132 - ID=621 - VtPos(-58.5429898524498, 64.4908981038781, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=133 - ID=622 - VtPos(-58.6385117846228, 61.573004926547, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=134 - ID=623 - VtPos(-46.3880540497236, 49.3225471916478, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=135 - ID=624 - VtPos(-45.3559878261396, 49.5846586214577, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=136 - ID=625 - VtPos(-49.5846586214577, 45.3559878261397, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=137 - ID=626 - VtPos(-49.3225471916478, 46.3880540497236, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=138 - ID=627 - VtPos(-61.573004926547, 58.6385117846228, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=139 - ID=628 - VtPos(-64.490898103878, 58.5429898524499, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=140 - ID=629 - VtPos(-66.4598978210211, 56.2977759838545, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=141 - ID=630 - VtPos(-66.1737410640806, 53.3923776730719, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=142 - ID=631 - VtPos(-52.4290820922487, 42.8457299034181, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=143 - ID=632 - VtPos(-51.4400577451493, 43.2403106078938, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=144 - ID=633 - VtPos(-55.0805993785439, 38.4958643803693, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=145 - ID=634 - VtPos(-54.9554420226348, 39.5533135412095, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=146 - ID=635 - VtPos(-68.7001009944667, 50.0999613108633, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=147 - ID=636 - VtPos(-71.5805630770893, 49.62439509632, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=148 - ID=637 - VtPos(-73.2396585117098, 47.1413833080549, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=149 - ID=638 - VtPos(-72.5767192871047, 44.2981920344468, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=150 - ID=639 - VtPos(-57.5730340040876, 35.6358102974604, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=151 - ID=640 - VtPos(-56.643974014261, 36.1561088913499, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=152 - ID=641 - VtPos(-59.6340958090359, 30.9770660219807, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=153 - ID=642 - VtPos(-59.6480340040875, 32.041804871755, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=154 - ID=643 - VtPos(-74.6517192871047, 40.7041866087414, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=155 - ID=644 - VtPos(-77.4454647701701, 39.8567131816105, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=156 - ID=645 - VtPos(-78.7662683393937, 37.1783884937937, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=157 - ID=646 - VtPos(-77.7378897210585, 34.4460520483332, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=158 - ID=647 - VtPos(-61.7318953418559, 27.8161520971999, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=159 - ID=648 - VtPos(-60.8786961833122, 28.4532661273078, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=160 - ID=649 - VtPos(-63.1672363265404, 22.9282414754909, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=161 - ID=650 - VtPos(-63.320031586171, 23.9820520372781, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=162 - ID=651 - VtPos(-79.3260259653736, 30.6119519884113, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=163 - ID=652 - VtPos(-81.985253089094, 29.4070718539951, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=164 - ID=653 - VtPos(-82.9451654776552, 26.5792611446071, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=165 - ID=654 - VtPos(-81.56894330887, 24.0045305614227, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=166 - ID=655 - VtPos(-64.8345068350102, 19.520551822462, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=167 - ID=656 - VtPos(-64.0717669819035, 20.2635800910916, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=168 - ID=657 - VtPos(-65.6195679172313, 14.4871083604459, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=169 - ID=658 - VtPos(-65.9086058721856, 15.5119596433624, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=170 - ID=659 - VtPos(-82.6430423460455, 19.9959383823231, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=171 - ID=660 - VtPos(-85.122250997057, 18.4542673737772, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=172 - ID=661 - VtPos(-85.7048478378496, 15.5253552680729, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=173 - ID=662 - VtPos(-84.0043296614832, 13.152284901293, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=174 - ID=663 - VtPos(-66.8277819406962, 10.8909494939223, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=175 - ID=664 - VtPos(-66.1685520833847, 11.7271785813912, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=176 - ID=665 - VtPos(-66.949130507677, 5.79809680476835, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=177 - ID=666 - VtPos(-67.3694656384094, 6.77645331922107, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=178 - ID=667 - VtPos(-84.5460133591964, 9.03778872659178, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=179 - ID=668 - VtPos(-86.8027835901137, 7.18570526230444, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=180 - ID=669 - VtPos(-86.9980964896653, 4.20580625846031, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=181 - ID=670 - VtPos(-85.0023786431881, 2.07500000000002, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=182 - ID=671 - VtPos(-67.6776151692153, 2.07500000000001, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=183 - ID=672 - VtPos(-67.1331749133306, 2.99012179477492, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=184 - ID=673 - VtPos(-67.1331749133306, -2.99012179477489, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=185 - ID=674 - VtPos(-67.6776151692153, -2.07499999999997, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=186 - ID=675 - VtPos(-85.0023786431881, -2.07499999999997, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=187 - ID=676 - VtPos(-86.9980964896653, -4.20580625846026, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=188 - ID=677 - VtPos(-86.8027835901137, -7.1857052623044, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=189 - ID=678 - VtPos(-84.5460133591964, -9.03778872659173, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=190 - ID=679 - VtPos(-67.3694656384094, -6.77645331922104, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=191 - ID=680 - VtPos(-66.949130507677, -5.79809680476832, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=192 - ID=681 - VtPos(-66.1685520833847, -11.7271785813911, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=193 - ID=682 - VtPos(-66.8277819406962, -10.8909494939223, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=194 - ID=683 - VtPos(-84.0043296614832, -13.152284901293, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=195 - ID=684 - VtPos(-85.7048478378496, -15.5253552680729, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=196 - ID=685 - VtPos(-85.122250997057, -18.4542673737772, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=197 - ID=686 - VtPos(-82.6430423460455, -19.995938382323, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=198 - ID=687 - VtPos(-65.9086058721856, -15.5119596433624, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=199 - ID=688 - VtPos(-65.6195679172313, -14.4871083604458, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=200 - ID=689 - VtPos(-64.0717669819036, -20.2635800910916, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=201 - ID=690 - VtPos(-64.8345068350102, -19.520551822462, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=202 - ID=691 - VtPos(-81.56894330887, -24.0045305614226, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=203 - ID=692 - VtPos(-82.9451654776552, -26.5792611446071, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=204 - ID=693 - VtPos(-81.985253089094, -29.407071853995, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=205 - ID=694 - VtPos(-79.3260259653736, -30.6119519884113, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=206 - ID=695 - VtPos(-63.320031586171, -23.9820520372781, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=207 - ID=696 - VtPos(-63.1672363265404, -22.9282414754908, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=208 - ID=697 - VtPos(-60.8786961833122, -28.4532661273077, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=209 - ID=698 - VtPos(-61.7318953418559, -27.8161520971999, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=210 - ID=699 - VtPos(-77.7378897210585, -34.4460520483331, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=211 - ID=700 - VtPos(-78.7662683393937, -37.1783884937937, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=212 - ID=701 - VtPos(-77.4454647701701, -39.8567131816104, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=213 - ID=702 - VtPos(-74.6517192871048, -40.7041866087413, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=214 - ID=703 - VtPos(-59.6480340040876, -32.0418048717549, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=215 - ID=704 - VtPos(-59.6340958090359, -30.9770660219807, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=216 - ID=705 - VtPos(-56.6439740142611, -36.1561088913499, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=217 - ID=706 - VtPos(-57.5730340040876, -35.6358102974603, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=218 - ID=707 - VtPos(-72.5767192871048, -44.2981920344467, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=219 - ID=708 - VtPos(-73.2396585117098, -47.1413833080548, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=220 - ID=709 - VtPos(-71.5805630770893, -49.62439509632, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=221 - ID=710 - VtPos(-68.7001009944668, -50.0999613108632, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=222 - ID=711 - VtPos(-54.9554420226349, -39.5533135412095, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=223 - ID=712 - VtPos(-55.0805993785439, -38.4958643803692, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=224 - ID=713 - VtPos(-51.4400577451493, -43.2403106078938, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=225 - ID=714 - VtPos(-52.4290820922487, -42.8457299034181, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=226 - ID=715 - VtPos(-66.1737410640806, -53.3923776730718, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=227 - ID=716 - VtPos(-66.4598978210211, -56.2977759838545, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=228 - ID=717 - VtPos(-64.4908981038781, -58.5429898524498, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=229 - ID=718 - VtPos(-61.573004926547, -58.6385117846228, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=230 - ID=719 - VtPos(-49.3225471916478, -46.3880540497236, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=231 - ID=720 - VtPos(-49.5846586214577, -45.3559878261396, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=232 - ID=721 - VtPos(-45.3559878261397, -49.5846586214577, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=233 - ID=722 - VtPos(-46.3880540497237, -49.3225471916478, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=234 - ID=723 - VtPos(-58.6385117846228, -61.5730049265469, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=235 - ID=724 - VtPos(-58.5429898524499, -64.490898103878, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=236 - ID=725 - VtPos(-56.2977759838545, -66.4598978210211, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=237 - ID=726 - VtPos(-53.3923776730719, -66.1737410640805, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=238 - ID=727 - VtPos(-42.8457299034181, -52.4290820922486, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=239 - ID=728 - VtPos(-43.2403106078938, -51.4400577451493, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=240 - ID=729 - VtPos(-38.4958643803693, -55.0805993785439, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=241 - ID=730 - VtPos(-39.5533135412095, -54.9554420226348, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=242 - ID=731 - VtPos(-50.0999613108633, -68.7001009944667, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=243 - ID=732 - VtPos(-49.62439509632, -71.5805630770893, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=244 - ID=733 - VtPos(-47.1413833080549, -73.2396585117098, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=245 - ID=734 - VtPos(-44.2981920344468, -72.5767192871047, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=246 - ID=735 - VtPos(-35.6358102974604, -57.5730340040876, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=247 - ID=736 - VtPos(-36.1561088913499, -56.643974014261, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=248 - ID=737 - VtPos(-30.9770660219807, -59.6340958090359, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=249 - ID=738 - VtPos(-32.041804871755, -59.6480340040875, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=250 - ID=739 - VtPos(-40.7041866087414, -74.6517192871047, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=251 - ID=740 - VtPos(-39.8567131816105, -77.4454647701701, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=252 - ID=741 - VtPos(-37.1783884937938, -78.7662683393937, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=253 - ID=742 - VtPos(-34.4460520483332, -77.7378897210585, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=254 - ID=743 - VtPos(-27.8161520971999, -61.7318953418559, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=255 - ID=744 - VtPos(-28.4532661273078, -60.8786961833122, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=256 - ID=745 - VtPos(-22.9282414754909, -63.1672363265404, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=257 - ID=746 - VtPos(-23.9820520372781, -63.320031586171, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=258 - ID=747 - VtPos(-30.6119519884114, -79.3260259653736, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=259 - ID=748 - VtPos(-29.4070718539951, -81.985253089094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=260 - ID=749 - VtPos(-26.5792611446072, -82.9451654776552, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=261 - ID=750 - VtPos(-24.0045305614227, -81.56894330887, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=262 - ID=751 - VtPos(-19.520551822462, -64.8345068350102, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=263 - ID=752 - VtPos(-20.2635800910917, -64.0717669819035, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=264 - ID=753 - VtPos(-14.4871083604459, -65.6195679172313, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=265 - ID=754 - VtPos(-15.5119596433624, -65.9086058721856, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=266 - ID=755 - VtPos(-19.9959383823231, -82.6430423460455, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=267 - ID=756 - VtPos(-18.4542673737772, -85.122250997057, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=268 - ID=757 - VtPos(-15.525355268073, -85.7048478378496, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=269 - ID=758 - VtPos(-13.1522849012931, -84.0043296614832, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=270 - ID=759 - VtPos(-10.8909494939224, -66.8277819406962, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=271 - ID=760 - VtPos(-11.7271785813912, -66.1685520833847, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=272 - ID=761 - VtPos(-5.79809680476839, -66.949130507677, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=273 - ID=762 - VtPos(-6.7764533192211, -67.3694656384094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=274 - ID=763 - VtPos(-9.03778872659182, -84.5460133591964, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=275 - ID=764 - VtPos(-7.18570526230448, -86.8027835901137, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=276 - ID=765 - VtPos(-4.20580625846035, -86.9980964896653, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=277 - ID=766 - VtPos(-2.07500000000006, -85.0023786431881, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=278 - ID=767 - VtPos(-2.07500000000004, -67.6776151692153, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=279 - ID=768 - VtPos(-2.99012179477496, -67.1331749133306, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=280 - ID=769 - VtPos(2.99012179477489, -67.1331749133306, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=281 - ID=770 - VtPos(2.07499999999997, -67.6776151692153, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=282 - ID=771 - VtPos(2.07499999999997, -85.0023786431881, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=283 - ID=772 - VtPos(4.20580625846025, -86.9980964896653, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=284 - ID=773 - VtPos(7.18570526230439, -86.8027835901137, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=285 - ID=774 - VtPos(9.03778872659173, -84.5460133591964, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=286 - ID=775 - VtPos(6.77645331922103, -67.3694656384094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=287 - ID=776 - VtPos(5.79809680476832, -66.949130507677, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=288 - ID=777 - VtPos(11.7271785813911, -66.1685520833847, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=289 - ID=778 - VtPos(10.8909494939223, -66.8277819406962, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=290 - ID=779 - VtPos(13.152284901293, -84.0043296614832, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=291 - ID=780 - VtPos(15.5253552680729, -85.7048478378496, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=292 - ID=781 - VtPos(18.4542673737771, -85.122250997057, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=293 - ID=782 - VtPos(19.995938382323, -82.6430423460455, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=294 - ID=783 - VtPos(15.5119596433624, -65.9086058721856, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=295 - ID=784 - VtPos(14.4871083604458, -65.6195679172313, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=296 - ID=785 - VtPos(20.2635800910916, -64.0717669819036, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=297 - ID=786 - VtPos(19.520551822462, -64.8345068350102, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=298 - ID=787 - VtPos(24.0045305614226, -81.56894330887, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=299 - ID=788 - VtPos(26.5792611446071, -82.9451654776552, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=300 - ID=789 - VtPos(29.407071853995, -81.985253089094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=301 - ID=790 - VtPos(30.6119519884113, -79.3260259653736, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=302 - ID=791 - VtPos(23.9820520372781, -63.320031586171, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=303 - ID=792 - VtPos(22.9282414754908, -63.1672363265404, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=304 - ID=793 - VtPos(28.4532661273077, -60.8786961833122, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=305 - ID=794 - VtPos(27.8161520971999, -61.7318953418559, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=306 - ID=795 - VtPos(34.4460520483331, -77.7378897210585, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=307 - ID=796 - VtPos(37.1783884937937, -78.7662683393937, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=308 - ID=797 - VtPos(39.8567131816104, -77.4454647701701, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=309 - ID=798 - VtPos(40.7041866087413, -74.6517192871048, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=310 - ID=799 - VtPos(32.0418048717549, -59.6480340040876, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=311 - ID=800 - VtPos(30.9770660219807, -59.6340958090359, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=312 - ID=801 - VtPos(36.1561088913498, -56.6439740142611, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=313 - ID=802 - VtPos(35.6358102974603, -57.5730340040876, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=314 - ID=803 - VtPos(44.2981920344467, -72.5767192871048, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=315 - ID=804 - VtPos(47.1413833080548, -73.2396585117099, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=316 - ID=805 - VtPos(49.6243950963199, -71.5805630770893, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=317 - ID=806 - VtPos(50.0999613108632, -68.7001009944668, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=318 - ID=807 - VtPos(39.5533135412095, -54.9554420226349, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=319 - ID=808 - VtPos(38.4958643803692, -55.0805993785439, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=320 - ID=809 - VtPos(43.2403106078938, -51.4400577451493, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=321 - ID=810 - VtPos(42.845729903418, -52.4290820922487, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=322 - ID=811 - VtPos(53.3923776730718, -66.1737410640806, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=323 - ID=812 - VtPos(56.2977759838544, -66.4598978210211, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=324 - ID=813 - VtPos(58.5429898524498, -64.4908981038781, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=325 - ID=814 - VtPos(58.6385117846228, -61.573004926547, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=326 - ID=815 - VtPos(46.3880540497236, -49.3225471916478, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=327 - ID=816 - VtPos(45.3559878261396, -49.5846586214577, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=328 - ID=817 - VtPos(49.5846586214577, -45.3559878261397, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=329 - ID=818 - VtPos(49.3225471916478, -46.3880540497236, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=330 - ID=819 - VtPos(61.573004926547, -58.6385117846228, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=331 - ID=820 - VtPos(64.490898103878, -58.5429898524499, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=332 - ID=821 - VtPos(66.4598978210211, -56.2977759838545, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=333 - ID=822 - VtPos(66.1737410640805, -53.3923776730719, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=334 - ID=823 - VtPos(52.4290820922487, -42.8457299034181, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=335 - ID=824 - VtPos(51.4400577451493, -43.2403106078938, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=336 - ID=825 - VtPos(55.0805993785439, -38.4958643803693, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=337 - ID=826 - VtPos(54.9554420226348, -39.5533135412095, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=338 - ID=827 - VtPos(68.7001009944667, -50.0999613108633, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=339 - ID=828 - VtPos(71.5805630770893, -49.62439509632, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=340 - ID=829 - VtPos(73.2396585117098, -47.1413833080549, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=341 - ID=830 - VtPos(72.5767192871047, -44.2981920344468, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=342 - ID=831 - VtPos(57.5730340040876, -35.6358102974604, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=343 - ID=832 - VtPos(56.643974014261, -36.1561088913499, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=344 - ID=833 - VtPos(59.6340958090359, -30.9770660219807, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=345 - ID=834 - VtPos(59.6480340040875, -32.041804871755, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=346 - ID=835 - VtPos(74.6517192871047, -40.7041866087414, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=347 - ID=836 - VtPos(77.4454647701701, -39.8567131816105, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=348 - ID=837 - VtPos(78.7662683393937, -37.1783884937938, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=349 - ID=838 - VtPos(77.7378897210585, -34.4460520483332, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=350 - ID=839 - VtPos(61.7318953418559, -27.8161520971999, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=351 - ID=840 - VtPos(60.8786961833122, -28.4532661273078, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=352 - ID=841 - VtPos(63.1672363265404, -22.9282414754909, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=353 - ID=842 - VtPos(63.320031586171, -23.9820520372781, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=354 - ID=843 - VtPos(79.3260259653736, -30.6119519884114, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=355 - ID=844 - VtPos(81.985253089094, -29.4070718539951, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=356 - ID=845 - VtPos(82.9451654776552, -26.5792611446072, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=357 - ID=846 - VtPos(81.56894330887, -24.0045305614227, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=358 - ID=847 - VtPos(64.8345068350102, -19.520551822462, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=359 - ID=848 - VtPos(64.0717669819035, -20.2635800910917, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=360 - ID=849 - VtPos(65.6195679172313, -14.4871083604459, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=361 - ID=850 - VtPos(65.9086058721856, -15.5119596433624, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=362 - ID=851 - VtPos(82.6430423460455, -19.9959383823231, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=363 - ID=852 - VtPos(85.122250997057, -18.4542673737772, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=364 - ID=853 - VtPos(85.7048478378496, -15.525355268073, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=365 - ID=854 - VtPos(84.0043296614832, -13.1522849012931, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=366 - ID=855 - VtPos(66.8277819406962, -10.8909494939224, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=367 - ID=856 - VtPos(66.1685520833847, -11.7271785813912, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=368 - ID=857 - VtPos(66.949130507677, -5.79809680476839, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=369 - ID=858 - VtPos(67.3694656384094, -6.77645331922111, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=370 - ID=859 - VtPos(84.5460133591964, -9.03778872659182, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=371 - ID=860 - VtPos(86.8027835901137, -7.18570526230449, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=372 - ID=861 - VtPos(86.9980964896653, -4.20580625846036, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=373 - ID=862 - VtPos(85.0023786431881, -2.07500000000007, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=374 - ID=863 - VtPos(67.6776151692153, -2.07500000000005, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=375 - ID=864 - VtPos(67.1331749133306, -2.99012179477496, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=376 - ID=865 - VtPos(67.1331749133306, 2.9901217947749, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=377 - ID=866 - VtPos(67.6776151692153, 2.07499999999998, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=378 - ID=867 - VtPos(85.0023786431881, 2.07499999999998, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=379 - ID=868 - VtPos(86.9980964896653, 4.20580625846027, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=380 - ID=869 - VtPos(86.8027835901137, 7.18570526230441, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=381 - ID=870 - VtPos(84.5460133591964, 9.03778872659174, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=382 - ID=871 - VtPos(67.3694656384094, 6.77645331922104, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=383 - ID=872 - VtPos(66.949130507677, 5.79809680476833, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=384 - ID=873 - VtPos(65.9357442054443, -2.91163803969879, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=385 - ID=874 - VtPos(65.7516997997907, -5.71961304969222, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=386 - ID=875 - VtPos(64.9916097469008, -11.4930701949718, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=387 - ID=876 - VtPos(64.4426255807474, -14.2529999740265, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=388 - ID=877 - VtPos(62.9354508265094, -19.8778527327279, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=389 - ID=878 - VtPos(62.0309201711463, -22.5425141171271, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=390 - ID=879 - VtPos(59.802448893473, -27.922519699045, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=391 - ID=880 - VtPos(58.5578485191967, -30.446319593718, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=392 - ID=881 - VtPos(55.646210479498, -35.4894246117264, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=393 - ID=882 - VtPos(54.0828358437808, -37.8291801007457, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=394 - ID=883 - VtPos(50.5378499761745, -42.4490956297737, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=395 - ID=884 - VtPos(48.6824508524829, -44.5647728480196, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=396 - ID=885 - VtPos(44.5647728480195, -48.682450852483, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=397 - ID=886 - VtPos(42.4490956297737, -50.5378499761746, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=398 - ID=887 - VtPos(37.8291801007457, -54.0828358437808, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=399 - ID=888 - VtPos(35.4894246117263, -55.646210479498, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=400 - ID=889 - VtPos(30.4463195937179, -58.5578485191967, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=401 - ID=890 - VtPos(27.9225196990449, -59.802448893473, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=402 - ID=891 - VtPos(22.542514117127, -62.0309201711463, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=403 - ID=892 - VtPos(19.8778527327278, -62.9354508265094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=404 - ID=893 - VtPos(14.2529999740265, -64.4426255807474, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=405 - ID=894 - VtPos(11.4930701949718, -64.9916097469008, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=406 - ID=895 - VtPos(5.71961304969214, -65.7516997997907, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=407 - ID=896 - VtPos(2.91163803969871, -65.9357442054443, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=408 - ID=897 - VtPos(-2.91163803969879, -65.9357442054443, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=409 - ID=898 - VtPos(-5.71961304969222, -65.7516997997907, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=410 - ID=899 - VtPos(-11.4930701949718, -64.9916097469008, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=411 - ID=900 - VtPos(-14.2529999740265, -64.4426255807474, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=412 - ID=901 - VtPos(-19.8778527327279, -62.9354508265094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=413 - ID=902 - VtPos(-22.5425141171271, -62.0309201711463, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=414 - ID=903 - VtPos(-27.922519699045, -59.802448893473, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=415 - ID=904 - VtPos(-30.446319593718, -58.5578485191967, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=416 - ID=905 - VtPos(-35.4894246117264, -55.646210479498, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=417 - ID=906 - VtPos(-37.8291801007457, -54.0828358437808, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=418 - ID=907 - VtPos(-42.4490956297738, -50.5378499761745, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=419 - ID=908 - VtPos(-44.5647728480196, -48.6824508524829, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=420 - ID=909 - VtPos(-48.6824508524829, -44.5647728480196, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=421 - ID=910 - VtPos(-50.5378499761745, -42.4490956297737, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=422 - ID=911 - VtPos(-54.0828358437808, -37.8291801007457, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=423 - ID=912 - VtPos(-55.646210479498, -35.4894246117263, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=424 - ID=913 - VtPos(-58.5578485191967, -30.4463195937179, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=425 - ID=914 - VtPos(-59.802448893473, -27.9225196990449, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=426 - ID=915 - VtPos(-62.0309201711463, -22.542514117127, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=427 - ID=916 - VtPos(-62.9354508265094, -19.8778527327278, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=428 - ID=917 - VtPos(-64.4426255807474, -14.2529999740265, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=429 - ID=918 - VtPos(-64.9916097469008, -11.4930701949718, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=430 - ID=919 - VtPos(-65.7516997997907, -5.71961304969215, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=431 - ID=920 - VtPos(-65.9357442054443, -2.91163803969872, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=432 - ID=921 - VtPos(-65.9357442054443, 2.91163803969875, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=433 - ID=922 - VtPos(-65.7516997997907, 5.71961304969218, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=434 - ID=923 - VtPos(-64.9916097469008, 11.4930701949718, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=435 - ID=924 - VtPos(-64.4426255807474, 14.2529999740265, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=436 - ID=925 - VtPos(-62.9354508265094, 19.8778527327278, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=437 - ID=926 - VtPos(-62.0309201711463, 22.5425141171271, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=438 - ID=927 - VtPos(-59.802448893473, 27.922519699045, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=439 - ID=928 - VtPos(-58.5578485191967, 30.4463195937179, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=440 - ID=929 - VtPos(-55.646210479498, 35.4894246117264, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=441 - ID=930 - VtPos(-54.0828358437808, 37.8291801007457, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=442 - ID=931 - VtPos(-50.5378499761745, 42.4490956297737, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=443 - ID=932 - VtPos(-48.6824508524829, 44.5647728480196, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=444 - ID=933 - VtPos(-44.5647728480196, 48.6824508524829, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=445 - ID=934 - VtPos(-42.4490956297737, 50.5378499761745, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=446 - ID=935 - VtPos(-37.8291801007457, 54.0828358437808, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=447 - ID=936 - VtPos(-35.4894246117263, 55.646210479498, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=448 - ID=937 - VtPos(-30.4463195937179, 58.5578485191967, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=449 - ID=938 - VtPos(-27.9225196990449, 59.802448893473, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=450 - ID=939 - VtPos(-22.542514117127, 62.0309201711463, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=451 - ID=940 - VtPos(-19.8778527327278, 62.9354508265094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=452 - ID=941 - VtPos(-14.2529999740265, 64.4426255807474, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=453 - ID=942 - VtPos(-11.4930701949718, 64.9916097469008, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=454 - ID=943 - VtPos(-5.71961304969215, 65.7516997997907, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=455 - ID=944 - VtPos(-2.91163803969872, 65.9357442054443, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=456 - ID=945 - VtPos(2.91163803969873, 65.9357442054443, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=457 - ID=946 - VtPos(5.71961304969216, 65.7516997997907, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=458 - ID=947 - VtPos(11.4930701949718, 64.9916097469008, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=459 - ID=948 - VtPos(14.2529999740265, 64.4426255807474, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=460 - ID=949 - VtPos(19.8778527327278, 62.9354508265094, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=461 - ID=950 - VtPos(22.5425141171271, 62.0309201711463, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=462 - ID=951 - VtPos(27.9225196990449, 59.802448893473, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=463 - ID=952 - VtPos(30.4463195937179, 58.5578485191967, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=464 - ID=953 - VtPos(35.4894246117264, 55.646210479498, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=465 - ID=954 - VtPos(37.8291801007457, 54.0828358437808, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=466 - ID=955 - VtPos(42.4490956297737, 50.5378499761745, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=467 - ID=956 - VtPos(44.5647728480196, 48.6824508524829, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=468 - ID=957 - VtPos(48.6824508524829, 44.5647728480196, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=469 - ID=958 - VtPos(50.5378499761745, 42.4490956297737, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=470 - ID=959 - VtPos(54.0828358437808, 37.8291801007457, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=471 - ID=960 - VtPos(55.646210479498, 35.4894246117264, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=472 - ID=961 - VtPos(58.5578485191967, 30.4463195937179, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=473 - ID=962 - VtPos(59.802448893473, 27.9225196990449, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=474 - ID=963 - VtPos(62.0309201711463, 22.5425141171271, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=475 - ID=964 - VtPos(62.9354508265094, 19.8778527327278, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=476 - ID=965 - VtPos(64.4426255807474, 14.2529999740265, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=477 - ID=966 - VtPos(64.9916097469008, 11.4930701949718, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=478 - ID=967 - VtPos(65.7516997997907, 5.71961304969216, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=479 - ID=968 - VtPos(65.9357442054443, 2.91163803969873, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1301 - ReferenceCoordSystemID=1297 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=6 - SplitPlane='ZX' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=6 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1302 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=244 - NumEdges=244 - NumVertices=244 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1303 - StartVertexID=1305 - NumNewFaces=0 - NumNewEdges=2 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1303 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(-46.6690475583122, -46.6690475583121, 0, 5e-07) - TolVt(-70.0035713374682, -70.0035713374682, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-58.3363094478902, -58.3363094478902, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1304 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(46.6690475583122, 46.6690475583121, 0, 5e-07) - TolVt(70.0035713374682, 70.0035713374682, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(58.3363094478902, 58.3363094478902, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1305 - VtPos(-70.0035713374682, -70.0035713374682, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1306 - VtPos(70.0035713374682, 70.0035713374682, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1307 - VtPos(46.6690475583122, 46.6690475583121, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1308 - VtPos(-46.6690475583122, -46.6690475583121, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1301 - ParentOperation=5 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1345 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=6 - SplitPlane='ZX' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=6 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1346 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=64 - NumEdges=64 - NumVertices=64 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1347 - StartVertexID=1348 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1347 - EdgeFaces(7) - $begin 'EdTolVts' - TolVt(99, 0, 0, 5e-07) - TolVt(66, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(82.5, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1348 - VtPos(66, 0, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1349 - VtPos(99, 0, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1345 - ParentOperation=1302 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1383 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=6 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=66 - NumWires=0 - NumLoops=66 - NumCoedges=384 - NumEdges=192 - NumVertices=128 - $end 'Topology' - BodyID=-1 - StartFaceID=1384 - StartEdgeID=1449 - StartVertexID=1577 - NumNewFaces=65 - NumNewEdges=128 - NumNewVertices=64 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1384 - InputIDs[1: 8] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1385 - InputIDs[1: 9] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1386 - InputIDs[1: 10] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1387 - InputIDs[1: 11] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1388 - InputIDs[1: 12] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1389 - InputIDs[1: 13] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1390 - InputIDs[1: 14] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1391 - InputIDs[1: 15] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1392 - InputIDs[1: 16] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1393 - InputIDs[1: 17] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1394 - InputIDs[1: 18] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1395 - InputIDs[1: 19] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1396 - InputIDs[1: 20] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1397 - InputIDs[1: 21] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1398 - InputIDs[1: 22] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1399 - InputIDs[1: 23] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1400 - InputIDs[1: 24] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1401 - InputIDs[1: 25] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1402 - InputIDs[1: 26] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1403 - InputIDs[1: 27] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1404 - InputIDs[1: 28] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1405 - InputIDs[1: 29] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1406 - InputIDs[1: 30] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1407 - InputIDs[1: 31] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1408 - InputIDs[1: 32] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1409 - InputIDs[1: 33] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1410 - InputIDs[1: 34] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1411 - InputIDs[1: 35] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1412 - InputIDs[1: 36] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1413 - InputIDs[1: 37] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1414 - InputIDs[1: 38] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1415 - InputIDs[1: 39] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1416 - InputIDs[1: 40] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1417 - InputIDs[1: 41] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1418 - InputIDs[1: 42] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1419 - InputIDs[1: 43] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1420 - InputIDs[1: 44] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1421 - InputIDs[1: 45] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1422 - InputIDs[1: 46] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1423 - InputIDs[1: 47] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1424 - InputIDs[1: 48] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1425 - InputIDs[1: 49] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1426 - InputIDs[1: 50] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1427 - InputIDs[1: 51] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1428 - InputIDs[1: 52] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1429 - InputIDs[1: 431] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1430 - InputIDs[1: 432] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1431 - InputIDs[1: 433] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1432 - InputIDs[1: 434] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1433 - InputIDs[1: 435] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1434 - InputIDs[1: 436] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1435 - InputIDs[1: 437] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1436 - InputIDs[1: 438] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1437 - InputIDs[1: 439] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1438 - InputIDs[1: 440] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1439 - InputIDs[1: 441] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1440 - InputIDs[1: 442] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1441 - InputIDs[1: 443] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1442 - InputIDs[1: 444] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1443 - InputIDs[1: 445] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1444 - InputIDs[1: 487] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1445 - InputIDs[1: 488] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1446 - InputIDs[1: 1304] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1447 - InputIDs[1: 1347] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1448 - InputIDs[1: 7] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1449 - InputIDs[1: 8] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1450 - InputIDs[1: 9] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1451 - InputIDs[1: 10] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1452 - InputIDs[1: 11] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1453 - InputIDs[1: 12] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1454 - InputIDs[1: 13] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1455 - InputIDs[1: 14] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1456 - InputIDs[1: 15] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1457 - InputIDs[1: 16] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1458 - InputIDs[1: 17] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1459 - InputIDs[1: 18] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1460 - InputIDs[1: 19] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1461 - InputIDs[1: 20] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1462 - InputIDs[1: 21] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1463 - InputIDs[1: 22] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1464 - InputIDs[1: 23] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1465 - InputIDs[1: 24] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1466 - InputIDs[1: 25] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1467 - InputIDs[1: 26] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1468 - InputIDs[1: 27] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1469 - InputIDs[1: 28] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1470 - InputIDs[1: 29] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1471 - InputIDs[1: 30] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1472 - InputIDs[1: 31] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1473 - InputIDs[1: 32] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1474 - InputIDs[1: 33] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1475 - InputIDs[1: 34] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1476 - InputIDs[1: 35] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1477 - InputIDs[1: 36] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1478 - InputIDs[1: 37] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1479 - InputIDs[1: 38] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1480 - InputIDs[1: 39] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1481 - InputIDs[1: 40] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1482 - InputIDs[1: 41] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1483 - InputIDs[1: 42] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1484 - InputIDs[1: 43] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1485 - InputIDs[1: 44] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1486 - InputIDs[1: 45] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1487 - InputIDs[1: 46] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1488 - InputIDs[1: 47] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1489 - InputIDs[1: 48] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1490 - InputIDs[1: 49] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1491 - InputIDs[1: 50] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1492 - InputIDs[1: 51] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1493 - InputIDs[1: 52] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1494 - InputIDs[1: 431] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1495 - InputIDs[1: 432] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1496 - InputIDs[1: 433] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1497 - InputIDs[1: 434] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1498 - InputIDs[1: 435] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1499 - InputIDs[1: 436] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1500 - InputIDs[1: 437] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1501 - InputIDs[1: 438] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1502 - InputIDs[1: 439] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1503 - InputIDs[1: 440] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1504 - InputIDs[1: 441] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1505 - InputIDs[1: 442] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1506 - InputIDs[1: 443] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1507 - InputIDs[1: 444] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1508 - InputIDs[1: 445] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1509 - InputIDs[1: 487] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1510 - InputIDs[1: 488] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1511 - InputIDs[1: 489] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1512 - InputIDs[1: 490] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1513 - InputIDs[1: 491] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1514 - InputIDs[1: 492] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1515 - InputIDs[1: 493] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1516 - InputIDs[1: 494] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1517 - InputIDs[1: 495] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1518 - InputIDs[1: 496] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1519 - InputIDs[1: 497] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1520 - InputIDs[1: 498] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1521 - InputIDs[1: 499] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1522 - InputIDs[1: 500] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1523 - InputIDs[1: 501] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1524 - InputIDs[1: 502] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1525 - InputIDs[1: 503] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1526 - InputIDs[1: 504] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1527 - InputIDs[1: 505] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1528 - InputIDs[1: 506] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1529 - InputIDs[1: 507] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1530 - InputIDs[1: 508] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1531 - InputIDs[1: 509] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1532 - InputIDs[1: 510] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1533 - InputIDs[1: 511] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1534 - InputIDs[1: 512] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1535 - InputIDs[1: 513] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1536 - InputIDs[1: 514] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1537 - InputIDs[1: 515] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1538 - InputIDs[1: 516] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1539 - InputIDs[1: 517] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1540 - InputIDs[1: 518] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1541 - InputIDs[1: 519] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1542 - InputIDs[1: 520] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1543 - InputIDs[1: 521] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1544 - InputIDs[1: 522] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1545 - InputIDs[1: 523] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1546 - InputIDs[1: 524] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1547 - InputIDs[1: 525] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1548 - InputIDs[1: 526] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1549 - InputIDs[1: 527] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1550 - InputIDs[1: 528] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1551 - InputIDs[1: 865] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1552 - InputIDs[1: 866] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1553 - InputIDs[1: 867] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1554 - InputIDs[1: 868] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1555 - InputIDs[1: 869] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1556 - InputIDs[1: 870] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1557 - InputIDs[1: 871] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1558 - InputIDs[1: 872] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1559 - InputIDs[1: 957] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1560 - InputIDs[1: 958] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1561 - InputIDs[1: 959] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1562 - InputIDs[1: 960] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1563 - InputIDs[1: 961] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1564 - InputIDs[1: 962] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1565 - InputIDs[1: 963] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1566 - InputIDs[1: 964] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1567 - InputIDs[1: 965] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1568 - InputIDs[1: 966] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1569 - InputIDs[1: 967] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1570 - InputIDs[1: 968] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1571 - InputIDs[1: 1304] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1572 - InputIDs[1: 1306] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1573 - InputIDs[1: 1307] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1574 - InputIDs[1: 1347] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1575 - InputIDs[1: 1348] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1576 - InputIDs[1: 1349] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1577 - InputIDs[1: 489] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1578 - InputIDs[1: 490] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1579 - InputIDs[1: 491] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1580 - InputIDs[1: 492] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1581 - InputIDs[1: 493] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1582 - InputIDs[1: 494] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1583 - InputIDs[1: 495] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1584 - InputIDs[1: 496] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1585 - InputIDs[1: 497] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1586 - InputIDs[1: 498] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1587 - InputIDs[1: 499] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1588 - InputIDs[1: 500] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1589 - InputIDs[1: 501] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1590 - InputIDs[1: 502] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1591 - InputIDs[1: 503] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1592 - InputIDs[1: 504] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1593 - InputIDs[1: 505] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1594 - InputIDs[1: 506] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1595 - InputIDs[1: 507] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1596 - InputIDs[1: 508] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1597 - InputIDs[1: 509] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1598 - InputIDs[1: 510] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1599 - InputIDs[1: 511] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1600 - InputIDs[1: 512] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1601 - InputIDs[1: 513] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1602 - InputIDs[1: 514] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1603 - InputIDs[1: 515] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1604 - InputIDs[1: 516] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1605 - InputIDs[1: 517] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1606 - InputIDs[1: 518] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1607 - InputIDs[1: 519] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1608 - InputIDs[1: 520] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1609 - InputIDs[1: 521] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1610 - InputIDs[1: 522] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1611 - InputIDs[1: 523] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1612 - InputIDs[1: 524] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1613 - InputIDs[1: 525] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1614 - InputIDs[1: 526] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1615 - InputIDs[1: 527] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1616 - InputIDs[1: 528] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1617 - InputIDs[1: 865] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1618 - InputIDs[1: 866] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1619 - InputIDs[1: 867] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1620 - InputIDs[1: 868] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1621 - InputIDs[1: 869] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1622 - InputIDs[1: 870] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1623 - InputIDs[1: 871] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1624 - InputIDs[1: 872] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1625 - InputIDs[1: 957] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1626 - InputIDs[1: 958] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1627 - InputIDs[1: 959] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1628 - InputIDs[1: 960] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1629 - InputIDs[1: 961] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1630 - InputIDs[1: 962] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1631 - InputIDs[1: 963] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1632 - InputIDs[1: 964] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1633 - InputIDs[1: 965] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1634 - InputIDs[1: 966] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1635 - InputIDs[1: 967] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1636 - InputIDs[1: 968] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1637 - InputIDs[1: 1306] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1638 - InputIDs[1: 1307] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1639 - InputIDs[1: 1348] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1640 - InputIDs[1: 1349] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 64, 64, 64) - $begin 'FaceGeometry' - Area=1421.98428434661 - FcUVMid(72.8345237791561, 35.2117963827465, 0) - $begin 'FcTolVts' - TolVt(66, 0, 0, 5e-07) - TolVt(65.9357442054443, 2.91163803969873, 0, 5e-07) - TolVt(67.1331749133306, 2.9901217947749, 0, 5e-07) - TolVt(67.6776151692153, 2.07499999999998, 0, 5e-07) - TolVt(85.0023786431881, 2.07499999999998, 0, 5e-07) - TolVt(86.9980964896653, 4.20580625846027, 0, 5e-07) - TolVt(86.8027835901137, 7.18570526230441, 0, 5e-07) - TolVt(84.5460133591964, 9.03778872659174, 0, 5e-07) - TolVt(67.3694656384094, 6.77645331922104, 0, 5e-07) - TolVt(66.949130507677, 5.79809680476833, 0, 5e-07) - TolVt(65.7516997997907, 5.71961304969216, 0, 5e-07) - TolVt(64.9916097469008, 11.4930701949718, 0, 5e-07) - TolVt(66.1685520833847, 11.7271785813911, 0, 5e-07) - TolVt(66.8277819406962, 10.8909494939223, 0, 5e-07) - TolVt(84.0043296614832, 13.152284901293, 0, 5e-07) - TolVt(85.7048478378496, 15.5253552680729, 0, 5e-07) - TolVt(85.122250997057, 18.4542673737772, 0, 5e-07) - TolVt(82.6430423460455, 19.9959383823231, 0, 5e-07) - TolVt(65.9086058721856, 15.5119596433624, 0, 5e-07) - TolVt(65.6195679172313, 14.4871083604458, 0, 5e-07) - TolVt(64.4426255807474, 14.2529999740265, 0, 5e-07) - TolVt(62.9354508265094, 19.8778527327278, 0, 5e-07) - TolVt(64.0717669819035, 20.2635800910916, 0, 5e-07) - TolVt(64.8345068350102, 19.520551822462, 0, 5e-07) - TolVt(81.56894330887, 24.0045305614227, 0, 5e-07) - TolVt(82.9451654776552, 26.5792611446071, 0, 5e-07) - TolVt(81.985253089094, 29.4070718539951, 0, 5e-07) - TolVt(79.3260259653736, 30.6119519884113, 0, 5e-07) - TolVt(63.320031586171, 23.9820520372781, 0, 5e-07) - TolVt(63.1672363265404, 22.9282414754909, 0, 5e-07) - TolVt(62.0309201711463, 22.5425141171271, 0, 5e-07) - TolVt(59.802448893473, 27.9225196990449, 0, 5e-07) - TolVt(60.8786961833122, 28.4532661273077, 0, 5e-07) - TolVt(61.7318953418559, 27.8161520971999, 0, 5e-07) - TolVt(77.7378897210585, 34.4460520483331, 0, 5e-07) - TolVt(78.7662683393937, 37.1783884937937, 0, 5e-07) - TolVt(77.4454647701701, 39.8567131816105, 0, 5e-07) - TolVt(74.6517192871047, 40.7041866087414, 0, 5e-07) - TolVt(59.6480340040875, 32.041804871755, 0, 5e-07) - TolVt(59.6340958090359, 30.9770660219807, 0, 5e-07) - TolVt(58.5578485191967, 30.4463195937179, 0, 5e-07) - TolVt(55.646210479498, 35.4894246117264, 0, 5e-07) - TolVt(56.643974014261, 36.1561088913499, 0, 5e-07) - TolVt(57.5730340040876, 35.6358102974604, 0, 5e-07) - TolVt(72.5767192871048, 44.2981920344468, 0, 5e-07) - TolVt(73.2396585117098, 47.1413833080548, 0, 5e-07) - TolVt(71.5805630770893, 49.62439509632, 0, 5e-07) - TolVt(68.7001009944668, 50.0999613108633, 0, 5e-07) - TolVt(54.9554420226348, 39.5533135412095, 0, 5e-07) - TolVt(55.0805993785439, 38.4958643803692, 0, 5e-07) - TolVt(54.0828358437808, 37.8291801007457, 0, 5e-07) - TolVt(50.5378499761745, 42.4490956297737, 0, 5e-07) - TolVt(51.4400577451493, 43.2403106078938, 0, 5e-07) - TolVt(52.4290820922487, 42.8457299034181, 0, 5e-07) - TolVt(66.1737410640806, 53.3923776730719, 0, 5e-07) - TolVt(66.4598978210211, 56.2977759838545, 0, 5e-07) - TolVt(64.490898103878, 58.5429898524499, 0, 5e-07) - TolVt(61.573004926547, 58.6385117846228, 0, 5e-07) - TolVt(49.3225471916478, 46.3880540497236, 0, 5e-07) - TolVt(49.5846586214577, 45.3559878261397, 0, 5e-07) - TolVt(48.6824508524829, 44.5647728480196, 0, 5e-07) - TolVt(46.6690475583122, 46.6690475583121, 0, 5e-07) - TolVt(70.0035713374682, 70.0035713374682, 0, 5e-07) - TolVt(99, 0, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1346 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PM_I1' - Flags='' - Color='(0 128 64)' - Transparency=0.2 - PartCoordinateSystem=994 - UDMId=-1 - GroupId=-1 - MaterialValue='"Arnold_Magnetics_N30UH_80C_new"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Polyline' - ID=969 - ReferenceCoordSystemID=1 - $begin 'PolylineParameters' - KernelVersion=23 - IsPolylineClosed=true - $begin 'PolylinePoints' - $begin 'PLPoint' - X='56.70957112mm' - Y='3.104886585mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='40.25081875mm' - Y='16.67243502mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='38.59701538mm' - Y='14.66621111mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='55.05576774mm' - Y='1.098662669mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='56.70957112mm' - Y='3.104886585mm' - Z='0mm' - $end 'PLPoint' - $end 'PolylinePoints' - $begin 'PolylineSegments' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=0 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=1 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=2 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=3 - NoOfPoints=2 - $end 'PLSegment' - $end 'PolylineSegments' - $begin 'PolylineXSection' - XSectionType='None' - XSectionOrient='Auto' - XSectionWidth='1mm' - XSectionTopWidth='1mm' - XSectionHeight='1mm' - XSectionNumSegments='0' - XSectionBendType='Corner' - $end 'PolylineXSection' - $end 'PolylineParameters' - ParentPartID=970 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=970 - StartFaceID=-1 - StartEdgeID=971 - StartVertexID=975 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=979 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=970 - $end 'LocalOperationParameters' - ParentPartID=970 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=980 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=980 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=55.4579999700486 - FcUVMid(47.65329325, 8.8855488445, 0) - $begin 'FcTolVts' - TolVt(56.70957112, 3.104886585, 0, 5e-07) - TolVt(40.25081875, 16.67243502, 0, 5e-07) - TolVt(38.59701538, 14.66621111, 0, 5e-07) - TolVt(55.05576774, 1.098662669, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=969 - $end 'Operation' - $begin 'CloneToOperation' - OperationType='DuplicateMirror' - ID=1003 - ReferenceCoordSystemID=1 - $begin 'DuplicateToMirrorParameters' - DuplicateMirrorBaseX='0mm' - DuplicateMirrorBaseY='0mm' - DuplicateMirrorBaseZ='0mm' - DuplicateMirrorNormalX='cos((360deg/SymmetryFactor/2)+90deg)' - DuplicateMirrorNormalY='sin((360deg/SymmetryFactor/2)+90deg)' - DuplicateMirrorNormalZ='0mm' - $end 'DuplicateToMirrorParameters' - ParentPartID=970 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1641 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=970 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=970 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1642 - StartEdgeID=1647 - StartVertexID=1655 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1642 - InputIDs[1: 971] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1643 - InputIDs[1: 972] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1644 - InputIDs[1: 973] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1645 - InputIDs[1: 974] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1646 - InputIDs[1: 980] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1647 - InputIDs[1: 971] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1648 - InputIDs[1: 972] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1649 - InputIDs[1: 973] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1650 - InputIDs[1: 974] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1651 - InputIDs[1: 975] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1652 - InputIDs[1: 976] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1653 - InputIDs[1: 977] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1654 - InputIDs[1: 978] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1655 - InputIDs[1: 975] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1656 - InputIDs[1: 976] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1657 - InputIDs[1: 977] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1658 - InputIDs[1: 978] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=55.4579999700486 - FcUVMid(47.65329325, 8.8855488445, 0) - $begin 'FcTolVts' - TolVt(55.05576774, 1.098662669, 0, 5e-07) - TolVt(38.59701538, 14.66621111, 0, 5e-07) - TolVt(40.25081875, 16.67243502, 0, 5e-07) - TolVt(56.70957112, 3.104886585, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=979 - TreatAllFacesAsNew=false - $end 'Operation' - $begin 'FaceCSHolderOperation' - OperationType='FaceCSPlaceHolder' - ID=993 - $begin 'FaceCSParameters' - KernelVersion=23 - PartID=970 - $begin 'Origin' - IsAttachedToEntity=true - EntityID=980 - FacetedBodyTriangleIndex=-1 - TriangleVertexIndex=-1 - hasXYZ=true - PositionType='FaceCenter' - UParam=0 - VParam=0 - XPosition='47.6532932533229' - YPosition='8.88554884125124' - ZPosition='0' - $end 'Origin' - MoveToEnd=true - FaceID=980 - $begin 'AxisPosn' - IsAttachedToEntity=true - EntityID=971 - FacetedBodyTriangleIndex=-1 - TriangleVertexIndex=-1 - hasXYZ=true - PositionType='EdgeCenter' - UParam=0 - VParam=0 - XPosition='48.480194935' - YPosition='9.8886608025' - ZPosition='0' - $end 'AxisPosn' - WhichAxis='X' - ZRotationAngle='0deg' - XOffset='0mm' - YOffset='0mm' - AutoAxis=false - HaveFaceNormal=true - FaceNormal(0, 0, -1) - FlipFaceNormal=false - $end 'FaceCSParameters' - ParentPartID=970 - ReferenceUDMID=-1 - $end 'FaceCSHolderOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PM_O1' - Flags='' - Color='(0 128 64)' - Transparency=0.2 - PartCoordinateSystem=999 - UDMId=-1 - GroupId=-1 - MaterialValue='"Arnold_Magnetics_N30UH_80C_new"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Polyline' - ID=981 - ReferenceCoordSystemID=1 - $begin 'PolylineParameters' - KernelVersion=23 - IsPolylineClosed=true - $begin 'PolylinePoints' - $begin 'PLPoint' - X='54.37758185mm' - Y='22.52393189mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='59.69688156mm' - Y='9.68200639mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='63.26490432mm' - Y='11.15992981mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='57.94560461mm' - Y='24.00185531mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='54.37758185mm' - Y='22.52393189mm' - Z='0mm' - $end 'PLPoint' - $end 'PolylinePoints' - $begin 'PolylineSegments' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=0 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=1 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=2 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=3 - NoOfPoints=2 - $end 'PLSegment' - $end 'PolylineSegments' - $begin 'PolylineXSection' - XSectionType='None' - XSectionOrient='Auto' - XSectionWidth='1mm' - XSectionTopWidth='1mm' - XSectionHeight='1mm' - XSectionNumSegments='0' - XSectionBendType='Corner' - $end 'PolylineXSection' - $end 'PolylineParameters' - ParentPartID=982 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=982 - StartFaceID=-1 - StartEdgeID=983 - StartVertexID=987 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=991 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=982 - $end 'LocalOperationParameters' - ParentPartID=982 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=992 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=992 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=53.6818000856325 - FcUVMid(58.821243085, 16.84193085, 0) - $begin 'FcTolVts' - TolVt(54.37758185, 22.52393189, 0, 5e-07) - TolVt(59.69688156, 9.68200639, 0, 5e-07) - TolVt(63.26490432, 11.15992981, 0, 5e-07) - TolVt(57.94560461, 24.00185531, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=981 - $end 'Operation' - $begin 'CloneToOperation' - OperationType='DuplicateMirror' - ID=1020 - ReferenceCoordSystemID=1 - $begin 'DuplicateToMirrorParameters' - DuplicateMirrorBaseX='0mm' - DuplicateMirrorBaseY='0mm' - DuplicateMirrorBaseZ='0mm' - DuplicateMirrorNormalX='cos((360deg/SymmetryFactor/2)+90deg)' - DuplicateMirrorNormalY='sin((360deg/SymmetryFactor/2)+90deg)' - DuplicateMirrorNormalZ='0mm' - $end 'DuplicateToMirrorParameters' - ParentPartID=982 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1659 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=982 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=982 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1660 - StartEdgeID=1665 - StartVertexID=1673 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1660 - InputIDs[1: 983] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1661 - InputIDs[1: 984] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1662 - InputIDs[1: 985] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1663 - InputIDs[1: 986] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1664 - InputIDs[1: 992] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1665 - InputIDs[1: 983] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1666 - InputIDs[1: 984] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1667 - InputIDs[1: 985] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1668 - InputIDs[1: 986] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1669 - InputIDs[1: 987] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1670 - InputIDs[1: 988] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1671 - InputIDs[1: 989] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1672 - InputIDs[1: 990] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1673 - InputIDs[1: 987] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1674 - InputIDs[1: 988] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1675 - InputIDs[1: 989] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1676 - InputIDs[1: 990] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=53.6818000856325 - FcUVMid(58.821243085, 16.84193085, 0) - $begin 'FcTolVts' - TolVt(57.94560461, 24.00185531, 0, 5e-07) - TolVt(63.26490432, 11.15992981, 0, 5e-07) - TolVt(59.69688156, 9.68200639, 0, 5e-07) - TolVt(54.37758185, 22.52393189, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=991 - TreatAllFacesAsNew=false - $end 'Operation' - $begin 'FaceCSHolderOperation' - OperationType='FaceCSPlaceHolder' - ID=998 - $begin 'FaceCSParameters' - KernelVersion=23 - PartID=982 - $begin 'Origin' - IsAttachedToEntity=true - EntityID=992 - FacetedBodyTriangleIndex=-1 - TriangleVertexIndex=-1 - hasXYZ=true - PositionType='FaceCenter' - UParam=0 - VParam=0 - XPosition='58.821243085' - YPosition='16.84193085' - ZPosition='0' - $end 'Origin' - MoveToEnd=true - FaceID=992 - $begin 'AxisPosn' - IsAttachedToEntity=true - EntityID=985 - FacetedBodyTriangleIndex=-1 - TriangleVertexIndex=-1 - hasXYZ=true - PositionType='EdgeCenter' - UParam=0 - VParam=0 - XPosition='60.605254465' - YPosition='17.58089256' - ZPosition='0' - $end 'AxisPosn' - WhichAxis='X' - ZRotationAngle='0deg' - XOffset='0mm' - YOffset='0mm' - AutoAxis=false - HaveFaceNormal=true - FaceNormal(-0, -0, -1) - FlipFaceNormal=false - $end 'FaceCSParameters' - ParentPartID=982 - ReferenceUDMID=-1 - $end 'FaceCSHolderOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PM_I1_1' - Flags='' - Color='(0 128 64)' - Transparency=0.2 - PartCoordinateSystem=1016 - UDMId=-1 - GroupId=-1 - MaterialValue='"Arnold_Magnetics_N30UH_80C_new"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyMirror' - ID=1004 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=970 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=1005 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1005 - StartFaceID=1006 - StartEdgeID=1007 - StartVertexID=1011 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('980'='1006') - CloneEdges('971'='1007', '972'='1008', '973'='1009', '974'='1010') - CloneVertices('975'='1011', '976'='1012', '977'='1013', '978'='1014') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(980) - OriginalEdgeIDs(971, 972, 973, 974) - OriginalVertexIDs(975, 976, 977, 978) - $end 'OperationIdentity' - PlaceHolderOpnId=1003 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1677 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1005 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1005 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1678 - StartEdgeID=1683 - StartVertexID=1691 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1678 - InputIDs[1: 1007] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1679 - InputIDs[1: 1008] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1680 - InputIDs[1: 1009] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1681 - InputIDs[1: 1010] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1682 - InputIDs[1: 1006] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1683 - InputIDs[1: 1007] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1684 - InputIDs[1: 1008] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1685 - InputIDs[1: 1009] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1686 - InputIDs[1: 1010] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1687 - InputIDs[1: 1011] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1688 - InputIDs[1: 1012] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1689 - InputIDs[1: 1013] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1690 - InputIDs[1: 1014] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1691 - InputIDs[1: 1011] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1692 - InputIDs[1: 1012] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1693 - InputIDs[1: 1013] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1694 - InputIDs[1: 1014] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=55.4579999700486 - FcUVMid(39.9789986454564, 27.4129349604359, 0) - $begin 'FcTolVts' - TolVt(42.2952086562014, 37.9042359380641, 0, 5e-07) - TolVt(40.2508187479697, 16.6724350249016, 0, 5e-07) - TolVt(37.6627886389539, 16.921633978565, 0, 5e-07) - TolVt(39.707178535872, 38.1534348888991, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1004 - TreatAllFacesAsNew=false - $end 'Operation' - $begin 'FaceCSHolderOperation' - OperationType='FaceCSPlaceHolder' - ID=1015 - $begin 'FaceCSParameters' - KernelVersion=23 - PartID=1005 - $begin 'Origin' - IsAttachedToEntity=true - EntityID=1006 - FacetedBodyTriangleIndex=-1 - TriangleVertexIndex=-1 - hasXYZ=true - PositionType='FaceCenter' - UParam=0 - VParam=0 - XPosition='39.9789986455088' - YPosition='27.4129349650828' - ZPosition='0' - $end 'Origin' - MoveToEnd=true - FaceID=1006 - $begin 'AxisPosn' - IsAttachedToEntity=true - EntityID=1007 - FacetedBodyTriangleIndex=-1 - TriangleVertexIndex=-1 - hasXYZ=true - PositionType='EdgeCenter' - UParam=0 - VParam=0 - XPosition='41.2730137020856' - YPosition='27.2883354814829' - ZPosition='0' - $end 'AxisPosn' - WhichAxis='X' - ZRotationAngle='0deg' - XOffset='0mm' - YOffset='0mm' - AutoAxis=false - HaveFaceNormal=true - FaceNormal(0, 0, -1) - FlipFaceNormal=false - $end 'FaceCSParameters' - ParentPartID=1005 - ReferenceUDMID=-1 - $end 'FaceCSHolderOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PM_O1_1' - Flags='' - Color='(0 128 64)' - Transparency=0.2 - PartCoordinateSystem=1033 - UDMId=-1 - GroupId=-1 - MaterialValue='"Arnold_Magnetics_N30UH_80C_new"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyMirror' - ID=1021 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=982 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=1022 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1022 - StartFaceID=1023 - StartEdgeID=1024 - StartVertexID=1028 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('992'='1023') - CloneEdges('983'='1024', '984'='1025', '985'='1026', '986'='1027') - CloneVertices('987'='1028', '988'='1029', '989'='1030', '990'='1031') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(992) - OriginalEdgeIDs(983, 984, 985, 986) - OriginalVertexIDs(987, 988, 989, 990) - $end 'OperationIdentity' - PlaceHolderOpnId=1020 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1695 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1022 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1022 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1696 - StartEdgeID=1701 - StartVertexID=1709 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1696 - InputIDs[1: 1024] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1697 - InputIDs[1: 1025] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1698 - InputIDs[1: 1026] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1699 - InputIDs[1: 1027] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1700 - InputIDs[1: 1023] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1701 - InputIDs[1: 1024] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1702 - InputIDs[1: 1025] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1703 - InputIDs[1: 1026] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1704 - InputIDs[1: 1027] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1705 - InputIDs[1: 1028] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1706 - InputIDs[1: 1029] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1707 - InputIDs[1: 1030] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1708 - InputIDs[1: 1031] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1709 - InputIDs[1: 1028] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1710 - InputIDs[1: 1029] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1711 - InputIDs[1: 1030] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1712 - InputIDs[1: 1031] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=53.6818000856325 - FcUVMid(53.5019433755357, 29.6838563509159, 0) - $begin 'FcTolVts' - TolVt(54.3775818490644, 22.5239318922586, 0, 5e-07) - TolVt(49.0582821406266, 35.3658573929057, 0, 5e-07) - TolVt(52.626304902007, 36.8437808095732, 0, 5e-07) - TolVt(57.9456046104448, 24.0018553089261, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1021 - TreatAllFacesAsNew=false - $end 'Operation' - $begin 'FaceCSHolderOperation' - OperationType='FaceCSPlaceHolder' - ID=1032 - $begin 'FaceCSParameters' - KernelVersion=23 - PartID=1022 - $begin 'Origin' - IsAttachedToEntity=true - EntityID=1023 - FacetedBodyTriangleIndex=-1 - TriangleVertexIndex=-1 - hasXYZ=true - PositionType='FaceCenter' - UParam=0 - VParam=0 - XPosition='53.5019433755357' - YPosition='29.6838563509159' - ZPosition='0' - $end 'Origin' - MoveToEnd=true - FaceID=1023 - $begin 'AxisPosn' - IsAttachedToEntity=true - EntityID=1026 - FacetedBodyTriangleIndex=-1 - TriangleVertexIndex=-1 - hasXYZ=true - PositionType='EdgeCenter' - UParam=0 - VParam=0 - XPosition='55.2859547562259' - YPosition='30.4228180592497' - ZPosition='0' - $end 'AxisPosn' - WhichAxis='X' - ZRotationAngle='0deg' - XOffset='0mm' - YOffset='0mm' - AutoAxis=false - HaveFaceNormal=true - FaceNormal(-0, -0, -1) - FlipFaceNormal=false - $end 'FaceCSParameters' - ParentPartID=1022 - ReferenceUDMID=-1 - $end 'FaceCSHolderOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil' - Flags='' - Color='(255 128 0)' - Transparency=0.2 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper (Annealed)_65C"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Rectangle' - ID=1037 - ReferenceCoordSystemID=1 - $begin 'RectangleParameters' - KernelVersion=23 - XStart='DiaRotorLam/2+Airgap+Coil_SetBack' - YStart='-Coil_Edge_Short/2' - ZStart='0mm' - Width='Coil_Edge_Long' - Height='Coil_Edge_Short' - WhichAxis='Z' - $end 'RectangleParameters' - ParentPartID=1038 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1038 - StartFaceID=-1 - StartEdgeID=1039 - StartVertexID=1043 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1047 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1038 - $end 'LocalOperationParameters' - ParentPartID=1038 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=1048 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1048 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=57.9643775430684 - FcUVMid(77.294875428, 0, 0) - $begin 'FcTolVts' - TolVt(69.605732823, -1.8846177175, 0, 5e-07) - TolVt(84.984018033, -1.8846177175, 0, 5e-07) - TolVt(84.984018033, 1.8846177175, 0, 5e-07) - TolVt(69.605732823, 1.8846177175, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1037 - $end 'Operation' - $begin 'Operation' - OperationType='Rotate' - ID=1049 - ReferenceCoordSystemID=1 - $begin 'RotateParameters' - KernelVersion=23 - TargetID=1038 - RotateAxis='Z' - RotateAngle='360deg/SlotNumber/2' - $end 'RotateParameters' - ParentPartID=1038 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=1047 - $end 'Operation' - $begin 'CloneToOperation' - OperationType='DuplicateAroundAxis' - ID=1050 - ReferenceCoordSystemID=1 - $begin 'DuplicateAroundAxisParameters' - KernelVersion=23 - ClonedEntity=1038 - CreateNewObjects=true - WhichAxis='Z' - AngleStr='360deg/SlotNumber' - NumClones='CoilPitch+1' - $end 'DuplicateAroundAxisParameters' - ParentPartID=1038 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1713 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1038 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1038 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1714 - StartEdgeID=1719 - StartVertexID=1727 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1714 - InputIDs[1: 1039] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1715 - InputIDs[1: 1040] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1716 - InputIDs[1: 1041] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1717 - InputIDs[1: 1042] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1718 - InputIDs[1: 1048] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1719 - InputIDs[1: 1039] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1720 - InputIDs[1: 1040] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1721 - InputIDs[1: 1041] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1722 - InputIDs[1: 1042] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1723 - InputIDs[1: 1043] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1724 - InputIDs[1: 1044] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1725 - InputIDs[1: 1045] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1726 - InputIDs[1: 1046] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1727 - InputIDs[1: 1043] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1728 - InputIDs[1: 1044] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1729 - InputIDs[1: 1045] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1730 - InputIDs[1: 1046] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=57.9643775430684 - FcUVMid(77.1293811664461, 5.05532672644529, 0) - $begin 'FcTolVts' - TolVt(69.3334417098656, 6.43301534528243, 0, 5e-07) - TolVt(84.6788008307724, 7.43880332021005, 0, 5e-07) - TolVt(84.9253206230265, 3.67763810760816, 0, 5e-07) - TolVt(69.5799615021198, 2.67185013268053, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1049 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_1' - Flags='' - Color='(255 128 0)' - Transparency=0.2 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper (Annealed)_65C"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyAroundAxis' - ID=1051 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1038 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=1052 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1052 - StartFaceID=1053 - StartEdgeID=1054 - StartVertexID=1058 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1048'='1053') - CloneEdges('1039'='1054', '1040'='1055', '1041'='1056', '1042'='1057') - CloneVertices('1043'='1058', '1044'='1059', '1045'='1060', '1046'='1061') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1048) - OriginalEdgeIDs(1039, 1040, 1041, 1042) - OriginalVertexIDs(1043, 1044, 1045, 1046) - $end 'OperationIdentity' - PlaceHolderOpnId=1050 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1731 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1052 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1052 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1732 - StartEdgeID=1737 - StartVertexID=1745 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1732 - InputIDs[1: 1054] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1733 - InputIDs[1: 1055] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1734 - InputIDs[1: 1056] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1735 - InputIDs[1: 1057] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1736 - InputIDs[1: 1053] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1737 - InputIDs[1: 1054] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1738 - InputIDs[1: 1055] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1739 - InputIDs[1: 1056] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1740 - InputIDs[1: 1057] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1741 - InputIDs[1: 1058] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1742 - InputIDs[1: 1059] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1743 - InputIDs[1: 1060] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1744 - InputIDs[1: 1061] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1745 - InputIDs[1: 1058] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1746 - InputIDs[1: 1059] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1747 - InputIDs[1: 1060] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1748 - InputIDs[1: 1061] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=57.9643775430685 - FcUVMid(75.8096760703837, 15.079482137445, 0) - $begin 'FcTolVts' - TolVt(67.900607507094, 15.4278101471188, 0, 5e-07) - TolVt(82.9834032789047, 18.4279647607936, 0, 5e-07) - TolVt(83.7187446336735, 14.7311541277713, 0, 5e-07) - TolVt(68.6359488618628, 11.7309995140965, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1051 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_2' - Flags='' - Color='(255 128 0)' - Transparency=0.2 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper (Annealed)_65C"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyAroundAxis' - ID=1062 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1038 - WhichClone=1 - $end 'CloneFromParameters' - ParentPartID=1063 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1063 - StartFaceID=1064 - StartEdgeID=1065 - StartVertexID=1069 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1048'='1064') - CloneEdges('1039'='1065', '1040'='1066', '1041'='1067', '1042'='1068') - CloneVertices('1043'='1069', '1044'='1070', '1045'='1071', '1046'='1072') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1048) - OriginalEdgeIDs(1039, 1040, 1041, 1042) - OriginalVertexIDs(1043, 1044, 1045, 1046) - $end 'OperationIdentity' - PlaceHolderOpnId=1050 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1749 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1063 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1063 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1750 - StartEdgeID=1755 - StartVertexID=1763 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1750 - InputIDs[1: 1065] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1751 - InputIDs[1: 1066] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1752 - InputIDs[1: 1067] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1753 - InputIDs[1: 1068] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1754 - InputIDs[1: 1064] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1755 - InputIDs[1: 1065] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1756 - InputIDs[1: 1066] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1757 - InputIDs[1: 1067] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1758 - InputIDs[1: 1068] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1759 - InputIDs[1: 1069] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1760 - InputIDs[1: 1070] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1761 - InputIDs[1: 1071] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1762 - InputIDs[1: 1072] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1763 - InputIDs[1: 1069] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1764 - InputIDs[1: 1070] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1765 - InputIDs[1: 1071] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1766 - InputIDs[1: 1072] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=57.9643775430684 - FcUVMid(73.1928463983441, 24.8456234282508, 0) - $begin 'FcTolVts' - TolVt(65.3059750842711, 24.1586308399409, 0, 5e-07) - TolVt(79.868136689589, 29.1018186151228, 0, 5e-07) - TolVt(81.0797177124171, 25.5326160165607, 0, 5e-07) - TolVt(66.5175561070992, 20.5894282413788, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1062 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_3' - Flags='' - Color='(255 128 0)' - Transparency=0.2 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper (Annealed)_65C"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyAroundAxis' - ID=1073 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1038 - WhichClone=2 - $end 'CloneFromParameters' - ParentPartID=1074 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1074 - StartFaceID=1075 - StartEdgeID=1076 - StartVertexID=1080 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1048'='1075') - CloneEdges('1039'='1076', '1040'='1077', '1041'='1078', '1042'='1079') - CloneVertices('1043'='1080', '1044'='1081', '1045'='1082', '1046'='1083') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1048) - OriginalEdgeIDs(1039, 1040, 1041, 1042) - OriginalVertexIDs(1043, 1044, 1045, 1046) - $end 'OperationIdentity' - PlaceHolderOpnId=1050 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1767 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1074 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1074 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1768 - StartEdgeID=1773 - StartVertexID=1781 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1768 - InputIDs[1: 1076] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1769 - InputIDs[1: 1077] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1770 - InputIDs[1: 1078] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1771 - InputIDs[1: 1079] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1772 - InputIDs[1: 1075] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1773 - InputIDs[1: 1076] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1774 - InputIDs[1: 1077] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1775 - InputIDs[1: 1078] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1776 - InputIDs[1: 1079] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1777 - InputIDs[1: 1080] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1778 - InputIDs[1: 1081] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1779 - InputIDs[1: 1082] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1780 - InputIDs[1: 1083] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1781 - InputIDs[1: 1080] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1782 - InputIDs[1: 1081] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1783 - InputIDs[1: 1082] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1784 - InputIDs[1: 1083] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=57.9643775430684 - FcUVMid(69.323666831538, 34.186649213691, 0) - $begin 'FcTolVts' - TolVt(61.5939393215192, 32.4760906610537, 0, 5e-07) - TolVt(75.3863041378835, 39.2777322843989, 0, 5e-07) - TolVt(77.0533943415567, 35.8972077663283, 0, 5e-07) - TolVt(63.2610295251924, 29.0955661429831, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1073 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_4' - Flags='' - Color='(255 128 0)' - Transparency=0.2 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper (Annealed)_65C"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyAroundAxis' - ID=1084 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1038 - WhichClone=3 - $end 'CloneFromParameters' - ParentPartID=1085 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1085 - StartFaceID=1086 - StartEdgeID=1087 - StartVertexID=1091 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1048'='1086') - CloneEdges('1039'='1087', '1040'='1088', '1041'='1089', '1042'='1090') - CloneVertices('1043'='1091', '1044'='1092', '1045'='1093', '1046'='1094') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1048) - OriginalEdgeIDs(1039, 1040, 1041, 1042) - OriginalVertexIDs(1043, 1044, 1045, 1046) - $end 'OperationIdentity' - PlaceHolderOpnId=1050 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1785 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1085 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1085 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1786 - StartEdgeID=1791 - StartVertexID=1799 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1786 - InputIDs[1: 1087] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1787 - InputIDs[1: 1088] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1788 - InputIDs[1: 1089] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1789 - InputIDs[1: 1090] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1790 - InputIDs[1: 1086] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1791 - InputIDs[1: 1087] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1792 - InputIDs[1: 1088] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1793 - InputIDs[1: 1089] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1794 - InputIDs[1: 1090] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1795 - InputIDs[1: 1091] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1796 - InputIDs[1: 1092] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1797 - InputIDs[1: 1093] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1798 - InputIDs[1: 1094] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1799 - InputIDs[1: 1091] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1800 - InputIDs[1: 1092] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1801 - InputIDs[1: 1093] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1802 - InputIDs[1: 1094] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=57.9643775430684 - FcUVMid(64.2683401050927, 42.9427319527551, 0) - $begin 'FcTolVts' - TolVt(56.82801417991, 40.2378755668825, 0, 5e-07) - TolVt(69.6145910213467, 48.7815930644441, 0, 5e-07) - TolVt(71.7086660302754, 45.6475883386276, 0, 5e-07) - TolVt(58.9220891888387, 37.103870841066, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1084 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_5' - Flags='' - Color='(255 128 0)' - Transparency=0.2 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper (Annealed)_65C"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyAroundAxis' - ID=1095 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1038 - WhichClone=4 - $end 'CloneFromParameters' - ParentPartID=1096 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1096 - StartFaceID=1097 - StartEdgeID=1098 - StartVertexID=1102 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1048'='1097') - CloneEdges('1039'='1098', '1040'='1099', '1041'='1100', '1042'='1101') - CloneVertices('1043'='1102', '1044'='1103', '1045'='1104', '1046'='1105') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1048) - OriginalEdgeIDs(1039, 1040, 1041, 1042) - OriginalVertexIDs(1043, 1044, 1045, 1046) - $end 'OperationIdentity' - PlaceHolderOpnId=1050 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1803 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1096 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1096 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1804 - StartEdgeID=1809 - StartVertexID=1817 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1804 - InputIDs[1: 1098] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1805 - InputIDs[1: 1099] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1806 - InputIDs[1: 1100] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1807 - InputIDs[1: 1101] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1808 - InputIDs[1: 1097] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1809 - InputIDs[1: 1098] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1810 - InputIDs[1: 1099] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1811 - InputIDs[1: 1100] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1812 - InputIDs[1: 1101] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1813 - InputIDs[1: 1102] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1814 - InputIDs[1: 1103] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1815 - InputIDs[1: 1104] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1816 - InputIDs[1: 1105] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1817 - InputIDs[1: 1102] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1818 - InputIDs[1: 1103] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1819 - InputIDs[1: 1104] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1820 - InputIDs[1: 1105] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=57.9643775430684 - FcUVMid(58.1133642608991, 50.9640526421329, 0) - $begin 'FcTolVts' - TolVt(51.0897459599804, 47.3111792657152, 0, 5e-07) - TolVt(62.6517529516236, 57.450787262344, 0, 5e-07) - TolVt(65.1369825618177, 54.6169260185507, 0, 5e-07) - TolVt(53.5749755701745, 44.4773180219219, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1095 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Region' - Flags='' - Color='(128 255 255)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=1106 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=23 - XCenter='0mm' - YCenter='0mm' - ZCenter='0mm' - Radius='DiaOuter/2' - WhichAxis='Z' - NumSegments='SegAngle' - $end 'CircleParameters' - ParentPartID=1107 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=1107 - StartFaceID=-1 - StartEdgeID=1108 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1110 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1107 - $end 'LocalOperationParameters' - ParentPartID=1107 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=1111 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1111 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=30790.7495978336 - FcUVMid(0, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1106 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1325 - ReferenceCoordSystemID=1297 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1107 - SplitPlane='ZX' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1107 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1326 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1107 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=2 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1327 - StartVertexID=1328 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1327 - EdgeFaces(1111) - $begin 'EdTolVts' - TolVt(70.0035713374682, 70.0035713374682, 0, 5e-07) - TolVt(-70.0035713374682, -70.0035713374682, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1328 - VtPos(-70.0035713374682, -70.0035713374682, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1329 - VtPos(70.0035713374682, 70.0035713374682, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1325 - ParentOperation=1110 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1363 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1107 - SplitPlane='ZX' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1107 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1364 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1107 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=3 - NumEdges=3 - NumVertices=3 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1365 - StartVertexID=1366 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1365 - EdgeFaces(1111) - $begin 'EdTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(99, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(49.5, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1366 - VtPos(99, 0, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1367 - VtPos(0, 0, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1363 - ParentOperation=1326 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1821 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1107 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1107 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=5 - NumWires=0 - NumLoops=5 - NumCoedges=18 - NumEdges=9 - NumVertices=6 - $end 'Topology' - BodyID=-1 - StartFaceID=1822 - StartEdgeID=1826 - StartVertexID=1832 - NumNewFaces=4 - NumNewEdges=6 - NumNewVertices=3 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1822 - InputIDs[1: 1108] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1823 - InputIDs[1: 1327] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1824 - InputIDs[1: 1365] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1825 - InputIDs[1: 1111] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1826 - InputIDs[1: 1108] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1827 - InputIDs[1: 1327] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1828 - InputIDs[1: 1329] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1829 - InputIDs[1: 1365] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1830 - InputIDs[1: 1366] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1831 - InputIDs[1: 1367] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1832 - InputIDs[1: 1329] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1833 - InputIDs[1: 1366] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1834 - InputIDs[1: 1367] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 3, 3, 3) - $begin 'FaceGeometry' - Area=3848.84369972919 - FcUVMid(49.5, 35.2117963827465, 0) - $begin 'FcTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(70.0035713374682, 70.0035713374682, 0, 5e-07) - TolVt(99, 0, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1364 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Shaft' - Flags='' - Color='(128 255 255)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=1112 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=23 - XCenter='0mm' - YCenter='0mm' - ZCenter='0mm' - Radius='DiaShaft/2' - WhichAxis='Z' - NumSegments='SegAngle' - $end 'CircleParameters' - ParentPartID=1113 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=1113 - StartFaceID=-1 - StartEdgeID=1114 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1116 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1113 - $end 'LocalOperationParameters' - ParentPartID=1113 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=1117 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1117 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=1551.79165473609 - FcUVMid(0, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1112 - $end 'Operation' - $begin 'CloneToOperation' - OperationType='CloneTo' - ID=1142 - $begin 'CloneToParameters' - KernelVersion=23 - ClonedEntity=1113 - CreateNewObjects=true - $end 'CloneToParameters' - ParentPartID=1113 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'Operation' - OperationType='Split' - ID=1320 - ReferenceCoordSystemID=1297 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1113 - SplitPlane='ZX' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1113 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1321 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1113 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=2 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1322 - StartVertexID=1323 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1322 - EdgeFaces(1117) - $begin 'EdTolVts' - TolVt(15.715448211871, 15.715448211871, 0, 5e-07) - TolVt(-15.715448211871, -15.715448211871, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1323 - VtPos(-15.715448211871, -15.715448211871, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1324 - VtPos(15.715448211871, 15.715448211871, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1320 - ParentOperation=1116 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1358 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1113 - SplitPlane='ZX' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1113 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1359 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1113 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=3 - NumEdges=3 - NumVertices=3 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1360 - StartVertexID=1361 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1360 - EdgeFaces(1117) - $begin 'EdTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(22.225, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(11.1125, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1361 - VtPos(22.225, 0, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1362 - VtPos(0, 0, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1358 - ParentOperation=1321 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1835 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1113 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1113 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=5 - NumWires=0 - NumLoops=5 - NumCoedges=18 - NumEdges=9 - NumVertices=6 - $end 'Topology' - BodyID=-1 - StartFaceID=1836 - StartEdgeID=1840 - StartVertexID=1846 - NumNewFaces=4 - NumNewEdges=6 - NumNewVertices=3 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1836 - InputIDs[1: 1114] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1837 - InputIDs[1: 1322] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1838 - InputIDs[1: 1360] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1839 - InputIDs[1: 1117] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1840 - InputIDs[1: 1114] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1841 - InputIDs[1: 1322] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1842 - InputIDs[1: 1324] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1843 - InputIDs[1: 1360] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1844 - InputIDs[1: 1361] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1845 - InputIDs[1: 1362] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1846 - InputIDs[1: 1324] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1847 - InputIDs[1: 1361] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1848 - InputIDs[1: 1362] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 3, 3, 3) - $begin 'FaceGeometry' - Area=193.973956842011 - FcUVMid(11.1125, 7.90487045057112, 0) - $begin 'FcTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(15.715448211871, 15.715448211871, 0, 5e-07) - TolVt(22.225, 0, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1359 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Inner_Band' - Flags='' - Color='(128 255 255)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=1118 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=23 - XCenter='0mm' - YCenter='0mm' - ZCenter='0mm' - Radius='(DiaGap - (1.5 * Airgap))/2' - WhichAxis='Z' - NumSegments='mapping_angle' - $end 'CircleParameters' - ParentPartID=1119 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=1119 - StartFaceID=-1 - StartEdgeID=1120 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1122 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1119 - $end 'LocalOperationParameters' - ParentPartID=1119 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=1123 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1123 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=13375.5270721994 - FcUVMid(0, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1118 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1330 - ReferenceCoordSystemID=1297 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1119 - SplitPlane='ZX' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1119 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1331 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1119 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=2 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1332 - StartVertexID=1333 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1332 - EdgeFaces(1123) - $begin 'EdTolVts' - TolVt(46.1387174724222, 46.1387174724222, 0, 5e-07) - TolVt(-46.1387174724222, -46.1387174724222, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1333 - VtPos(-46.1387174724222, -46.1387174724222, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1334 - VtPos(46.1387174724222, 46.1387174724222, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1330 - ParentOperation=1122 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1368 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1119 - SplitPlane='ZX' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1119 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1369 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1119 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=3 - NumEdges=3 - NumVertices=3 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1370 - StartVertexID=1371 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1370 - EdgeFaces(1123) - $begin 'EdTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(65.25, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(32.625, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1371 - VtPos(65.25, 0, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1372 - VtPos(0, 0, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1368 - ParentOperation=1331 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1849 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1119 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1119 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=5 - NumWires=0 - NumLoops=5 - NumCoedges=18 - NumEdges=9 - NumVertices=6 - $end 'Topology' - BodyID=-1 - StartFaceID=1850 - StartEdgeID=1854 - StartVertexID=1860 - NumNewFaces=4 - NumNewEdges=6 - NumNewVertices=3 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1850 - InputIDs[1: 1120] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1851 - InputIDs[1: 1332] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1852 - InputIDs[1: 1370] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1853 - InputIDs[1: 1123] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1854 - InputIDs[1: 1120] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1855 - InputIDs[1: 1332] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1856 - InputIDs[1: 1334] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1857 - InputIDs[1: 1370] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1858 - InputIDs[1: 1371] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1859 - InputIDs[1: 1372] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1860 - InputIDs[1: 1334] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1861 - InputIDs[1: 1371] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1862 - InputIDs[1: 1372] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 3, 3, 3) - $begin 'FaceGeometry' - Area=1671.94088402492 - FcUVMid(32.625, 23.2077748886284, 0) - $begin 'FcTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(46.1387174724222, 46.1387174724222, 0, 5e-07) - TolVt(65.25, 0, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1369 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Band' - Flags='' - Color='(128 255 255)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=1124 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=23 - XCenter='0mm' - YCenter='0mm' - ZCenter='0mm' - Radius='(DiaGap - (1.0 * Airgap))/2' - WhichAxis='Z' - NumSegments='mapping_angle' - $end 'CircleParameters' - ParentPartID=1125 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=1125 - StartFaceID=-1 - StartEdgeID=1126 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1128 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1125 - $end 'LocalOperationParameters' - ParentPartID=1125 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=1129 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1129 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=13478.2178820636 - FcUVMid(0, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1124 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1335 - ReferenceCoordSystemID=1297 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1125 - SplitPlane='ZX' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1125 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1336 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1125 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=2 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1337 - StartVertexID=1338 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1337 - EdgeFaces(1129) - $begin 'EdTolVts' - TolVt(46.3154941677189, 46.3154941677189, 0, 5e-07) - TolVt(-46.3154941677189, -46.3154941677189, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1338 - VtPos(-46.3154941677189, -46.3154941677189, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1339 - VtPos(46.3154941677189, 46.3154941677189, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1335 - ParentOperation=1128 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1373 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1125 - SplitPlane='ZX' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1125 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1374 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1125 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=3 - NumEdges=3 - NumVertices=3 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1375 - StartVertexID=1376 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1375 - EdgeFaces(1129) - $begin 'EdTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(65.5, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(32.75, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1376 - VtPos(65.5, 0, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1377 - VtPos(0, 0, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1373 - ParentOperation=1336 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1863 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1125 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1125 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=5 - NumWires=0 - NumLoops=5 - NumCoedges=18 - NumEdges=9 - NumVertices=6 - $end 'Topology' - BodyID=-1 - StartFaceID=1864 - StartEdgeID=1868 - StartVertexID=1874 - NumNewFaces=4 - NumNewEdges=6 - NumNewVertices=3 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1864 - InputIDs[1: 1126] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1865 - InputIDs[1: 1337] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1866 - InputIDs[1: 1375] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1867 - InputIDs[1: 1129] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1868 - InputIDs[1: 1126] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1869 - InputIDs[1: 1337] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1870 - InputIDs[1: 1339] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1871 - InputIDs[1: 1375] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1872 - InputIDs[1: 1376] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1873 - InputIDs[1: 1377] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1874 - InputIDs[1: 1339] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1875 - InputIDs[1: 1376] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1876 - InputIDs[1: 1377] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 3, 3, 3) - $begin 'FaceGeometry' - Area=1684.77723525795 - FcUVMid(32.75, 23.2966935663626, 0) - $begin 'FcTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(46.3154941677189, 46.3154941677189, 0, 5e-07) - TolVt(65.5, 0, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1374 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Outer_Band' - Flags='' - Color='(128 255 255)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=1130 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=23 - XCenter='0mm' - YCenter='0mm' - ZCenter='0mm' - Radius='(DiaGap - (0.5 * Airgap))/2' - WhichAxis='Z' - NumSegments='mapping_angle' - $end 'CircleParameters' - ParentPartID=1131 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=1131 - StartFaceID=-1 - StartEdgeID=1132 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1134 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1131 - $end 'LocalOperationParameters' - ParentPartID=1131 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=1135 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1135 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=13581.3013910095 - FcUVMid(0, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1130 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1340 - ReferenceCoordSystemID=1297 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1131 - SplitPlane='ZX' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1131 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1341 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1131 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=2 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1342 - StartVertexID=1343 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1342 - EdgeFaces(1135) - $begin 'EdTolVts' - TolVt(46.4922708630155, 46.4922708630155, 0, 5e-07) - TolVt(-46.4922708630155, -46.4922708630155, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1343 - VtPos(-46.4922708630155, -46.4922708630155, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1344 - VtPos(46.4922708630155, 46.4922708630155, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1340 - ParentOperation=1134 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1378 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1131 - SplitPlane='ZX' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1131 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1379 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1131 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=3 - NumEdges=3 - NumVertices=3 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1380 - StartVertexID=1381 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1380 - EdgeFaces(1135) - $begin 'EdTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(65.75, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(32.875, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1381 - VtPos(65.75, 0, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1382 - VtPos(0, 0, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1378 - ParentOperation=1341 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1877 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1131 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1131 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=5 - NumWires=0 - NumLoops=5 - NumCoedges=18 - NumEdges=9 - NumVertices=6 - $end 'Topology' - BodyID=-1 - StartFaceID=1878 - StartEdgeID=1882 - StartVertexID=1888 - NumNewFaces=4 - NumNewEdges=6 - NumNewVertices=3 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1878 - InputIDs[1: 1132] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1879 - InputIDs[1: 1342] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1880 - InputIDs[1: 1380] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1881 - InputIDs[1: 1135] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1882 - InputIDs[1: 1132] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1883 - InputIDs[1: 1342] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1884 - InputIDs[1: 1344] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1885 - InputIDs[1: 1380] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1886 - InputIDs[1: 1381] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1887 - InputIDs[1: 1382] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1888 - InputIDs[1: 1344] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1889 - InputIDs[1: 1381] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1890 - InputIDs[1: 1382] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 3, 3, 3) - $begin 'FaceGeometry' - Area=1697.66267387619 - FcUVMid(32.875, 23.3856122440968, 0) - $begin 'FcTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(46.4922708630155, 46.4922708630155, 0, 5e-07) - TolVt(65.75, 0, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1379 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Rotor' - Flags='' - Color='(0 128 255)' - Transparency=0.2 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"30DH_20C_smooth"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=1136 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=23 - XCenter='0mm' - YCenter='0mm' - ZCenter='0mm' - Radius='DiaRotorLam/2' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=1137 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=1137 - StartFaceID=-1 - StartEdgeID=1138 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1140 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1137 - $end 'LocalOperationParameters' - ParentPartID=1137 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=1141 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1141 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=13273.2289614169 - FcUVMid(0, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1136 - $end 'Operation' - $begin 'Operation' - OperationType='Substract' - ID=1147 - $begin 'SubtractParameters' - KernelVersion=23 - KeepOriginals=true - TurnOnNBodyBoolean=false - BlankPart=1137 - NumToolParts=1 - ToolParts(1144) - $end 'SubtractParameters' - ParentPartID=1137 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=2 - NumCoedges=2 - NumEdges=2 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1148 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1148 - EdgeFaces(1141) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(-22.225, 2.72177751110499e-15, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=1140 - NumToolOperations=1 - ToolOperations(1143) - $end 'Operation' - $begin 'Operation' - OperationType='Substract' - ID=1164 - $begin 'SubtractParameters' - KernelVersion=23 - KeepOriginals=false - TurnOnNBodyBoolean=false - BlankPart=1137 - NumToolParts=2 - ToolParts(1150, 1159) - $end 'SubtractParameters' - ParentPartID=1137 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=5 - NumCoedges=5 - NumEdges=5 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1165 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=3 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1165 - EdgeFaces(1141) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(24.6243, 12.234389332712, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1166 - EdgeFaces(1141) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(59.45, 3.12284933782575e-16, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1167 - EdgeFaces(1141) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(42.0374981415403, 42.0374981415403, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=1147 - NumToolOperations=2 - ToolOperations(1155, 1162) - $end 'Operation' - $begin 'Operation' - OperationType='Substract' - ID=1272 - $begin 'SubtractParameters' - KernelVersion=23 - KeepOriginals=true - TurnOnNBodyBoolean=false - BlankPart=1137 - NumToolParts=4 - ToolParts(1222, 1236, 1248, 1262) - $end 'SubtractParameters' - ParentPartID=1137 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=7 - NumCoedges=17 - NumEdges=17 - NumVertices=12 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1273 - StartVertexID=1285 - NumNewFaces=0 - NumNewEdges=12 - NumNewVertices=12 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1273 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(49.0582821406266, 35.3658573929057, 0, 5e-07) - TolVt(52.3529530191759, 37.5037106142584, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(50.7056175799013, 36.434784003582, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1274 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(40.25081875, 16.67243502, 0, 5e-07) - TolVt(42.3672832683477, 38.6527593960231, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(41.3090510079342, 27.6625972081309, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1275 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(41.426823676963, 39.6590567239967, 0, 5e-07) - TolVt(42.3672832683477, 38.6527593960231, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(41.8970534726554, 39.1559080600099, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=1276 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(39.707178535872, 38.1534348888991, 0, 5e-07) - TolVt(41.426823676963, 39.6590567239967, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(40.5670011064175, 38.9062458064479, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=1277 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(37.5302872, 15.54555396, 0, 5e-07) - TolVt(39.707178535872, 38.1534348888991, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.6187328688006, 26.8494944243663, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=1278 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(59.69688156, 9.68200639, 0, 5e-07) - TolVt(49.0582821406266, 35.3658573929057, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(54.3775818495322, 22.5239318911293, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=1279 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(63.53825619, 10.5, 0, 5e-07) - TolVt(59.69688156, 9.68200639, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(61.617568875, 10.091003195, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=1280 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(63.53825619, 10.5, 0, 5e-07) - TolVt(52.3529530191759, 37.5037106142584, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(57.9456046102224, 24.0018553094631, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=8 - ID=1281 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(55.05576774, 1.098662669, 0, 5e-07) - TolVt(37.5302872, 15.54555396, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(46.29302747, 8.3221083145, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=9 - ID=1282 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(57.33637589, 1.25, 0, 5e-07) - TolVt(55.05576774, 1.098662669, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(56.196071815, 1.1743313345, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=10 - ID=1283 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(57.28982158, 2.626565019, 0, 5e-07) - TolVt(57.33637589, 1.25, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(57.313098735, 1.9382825095, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=11 - ID=1284 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(57.28982158, 2.626565019, 0, 5e-07) - TolVt(40.25081875, 16.67243502, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(48.770320165, 9.6495000195, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1285 - VtPos(52.3529530191759, 37.5037106142584, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1286 - VtPos(49.0582821406266, 35.3658573929057, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1287 - VtPos(42.3672832683477, 38.6527593960231, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1288 - VtPos(41.426823676963, 39.6590567239967, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=1289 - VtPos(39.707178535872, 38.1534348888991, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=1290 - VtPos(59.69688156, 9.68200639, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=1291 - VtPos(63.53825619, 10.5, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=1292 - VtPos(37.5302872, 15.54555396, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=8 - ID=1293 - VtPos(55.05576774, 1.098662669, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=9 - ID=1294 - VtPos(57.33637589, 1.25, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=10 - ID=1295 - VtPos(40.25081875, 16.67243502, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=11 - ID=1296 - VtPos(57.28982158, 2.626565019, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=1164 - NumToolOperations=4 - ToolOperations(1221, 1235, 1247, 1261) - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1309 - ReferenceCoordSystemID=1297 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1137 - SplitPlane='ZX' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1137 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1310 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1137 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=5 - NumCoedges=20 - NumEdges=20 - NumVertices=18 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1311 - StartVertexID=1314 - NumNewFaces=0 - NumNewEdges=3 - NumNewVertices=6 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1311 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(-15.715448211871, -15.715448211871, 0, 5e-07) - TolVt(-45.9619407771256, -45.9619407771256, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-30.8386944944983, -30.8386944944983, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1312 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(42.0374981415403, 42.0374981415402, 0, 5e-07) - TolVt(15.715448211871, 15.715448211871, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.8764731767056, 28.8764731767056, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1313 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(45.6437427255916, 45.6437427255916, 0, 5e-07) - TolVt(45.9619407771256, 45.9619407771256, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(45.8028417513586, 45.8028417513586, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1314 - VtPos(-45.9619407771256, -45.9619407771256, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1315 - VtPos(45.9619407771256, 45.9619407771256, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1316 - VtPos(-15.715448211871, -15.715448211871, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1317 - VtPos(15.715448211871, 15.715448211871, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=1318 - VtPos(42.0374981415403, 42.0374981415402, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=1319 - VtPos(45.6437427255916, 45.6437427255916, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1309 - ParentOperation=1272 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1350 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=23 - SourcePartID=1137 - SplitPlane='ZX' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1137 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1351 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1137 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=4 - NumCoedges=21 - NumEdges=21 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=1352 - StartVertexID=1354 - NumNewFaces=0 - NumNewEdges=2 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1352 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(65, 0, 0, 5e-07) - TolVt(64.55, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(64.775, 0, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1353 - EdgeFaces(1141) - $begin 'EdTolVts' - TolVt(22.225, 0, 0, 5e-07) - TolVt(59.45, 0, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(40.8375, 0, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1354 - VtPos(59.45, 0, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1355 - VtPos(64.55, 0, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1356 - VtPos(22.225, 0, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1357 - VtPos(65, 0, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1350 - ParentOperation=1310 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1891 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1137 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1137 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=23 - NumWires=0 - NumLoops=30 - NumCoedges=124 - NumEdges=62 - NumVertices=40 - $end 'Topology' - BodyID=-1 - StartFaceID=1892 - StartEdgeID=1914 - StartVertexID=1955 - NumNewFaces=22 - NumNewEdges=41 - NumNewVertices=20 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1892 - InputIDs[1: 1138] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1893 - InputIDs[1: 1148] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1894 - InputIDs[1: 1165] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1895 - InputIDs[1: 1166] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1896 - InputIDs[1: 1167] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1897 - InputIDs[1: 1273] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1898 - InputIDs[1: 1274] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1899 - InputIDs[1: 1275] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1900 - InputIDs[1: 1276] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1901 - InputIDs[1: 1277] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1902 - InputIDs[1: 1278] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1903 - InputIDs[1: 1279] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1904 - InputIDs[1: 1280] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1905 - InputIDs[1: 1281] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1906 - InputIDs[1: 1282] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1907 - InputIDs[1: 1283] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1908 - InputIDs[1: 1284] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1909 - InputIDs[1: 1312] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1910 - InputIDs[1: 1313] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1911 - InputIDs[1: 1352] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1912 - InputIDs[1: 1353] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1913 - InputIDs[1: 1141] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1914 - InputIDs[1: 1138] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1915 - InputIDs[1: 1148] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1916 - InputIDs[1: 1165] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1917 - InputIDs[1: 1166] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1918 - InputIDs[1: 1167] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1919 - InputIDs[1: 1273] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1920 - InputIDs[1: 1274] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1921 - InputIDs[1: 1275] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1922 - InputIDs[1: 1276] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1923 - InputIDs[1: 1277] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1924 - InputIDs[1: 1278] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1925 - InputIDs[1: 1279] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1926 - InputIDs[1: 1280] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1927 - InputIDs[1: 1281] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1928 - InputIDs[1: 1282] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1929 - InputIDs[1: 1283] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1930 - InputIDs[1: 1284] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1931 - InputIDs[1: 1285] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1932 - InputIDs[1: 1286] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1933 - InputIDs[1: 1287] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1934 - InputIDs[1: 1288] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1935 - InputIDs[1: 1289] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1936 - InputIDs[1: 1290] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1937 - InputIDs[1: 1291] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1938 - InputIDs[1: 1292] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1939 - InputIDs[1: 1293] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1940 - InputIDs[1: 1294] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1941 - InputIDs[1: 1295] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1942 - InputIDs[1: 1296] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1943 - InputIDs[1: 1312] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1944 - InputIDs[1: 1313] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1945 - InputIDs[1: 1315] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1946 - InputIDs[1: 1317] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1947 - InputIDs[1: 1318] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1948 - InputIDs[1: 1319] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1949 - InputIDs[1: 1352] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1950 - InputIDs[1: 1353] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1951 - InputIDs[1: 1354] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1952 - InputIDs[1: 1355] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1953 - InputIDs[1: 1356] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1954 - InputIDs[1: 1357] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1955 - InputIDs[1: 1285] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1956 - InputIDs[1: 1286] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1957 - InputIDs[1: 1287] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1958 - InputIDs[1: 1288] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1959 - InputIDs[1: 1289] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1960 - InputIDs[1: 1290] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1961 - InputIDs[1: 1291] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1962 - InputIDs[1: 1292] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1963 - InputIDs[1: 1293] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1964 - InputIDs[1: 1294] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1965 - InputIDs[1: 1295] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1966 - InputIDs[1: 1296] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1967 - InputIDs[1: 1315] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1968 - InputIDs[1: 1317] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1969 - InputIDs[1: 1318] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1970 - InputIDs[1: 1319] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1971 - InputIDs[1: 1354] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1972 - InputIDs[1: 1355] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1973 - InputIDs[1: 1356] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1974 - InputIDs[1: 1357] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(4, 21, 21, 20) - $begin 'FaceGeometry' - Area=1138.35108015765 - FcUVMid(40.3577241059355, 23.1188562108942, 0) - $begin 'FcTolVts' - TolVt(64.55, 0, 0, 5e-07) - TolVt(59.45, 0, 0, 5e-07) - TolVt(22.225, 0, 0, 5e-07) - TolVt(15.715448211871, 15.715448211871, 0, 5e-07) - TolVt(42.0374981415403, 42.0374981415402, 0, 5e-07) - TolVt(45.6437427255916, 45.6437427255916, 0, 5e-07) - TolVt(45.9619407771256, 45.9619407771256, 0, 5e-07) - TolVt(65, 0, 0, 5e-07) - TolVt(41.426823676963, 39.6590567239967, 0, 5e-07) - TolVt(39.707178535872, 38.1534348888991, 0, 5e-07) - TolVt(37.5302872, 15.54555396, 0, 5e-07) - TolVt(55.05576774, 1.098662669, 0, 5e-07) - TolVt(57.33637589, 1.25, 0, 5e-07) - TolVt(57.28982158, 2.626565019, 0, 5e-07) - TolVt(40.25081875, 16.67243502, 0, 5e-07) - TolVt(42.3672832683477, 38.6527593960231, 0, 5e-07) - TolVt(49.0582821406266, 35.3658573929057, 0, 5e-07) - TolVt(59.69688156, 9.68200639, 0, 5e-07) - TolVt(63.53825619, 10.5, 0, 5e-07) - TolVt(52.3529530191759, 37.5037106142584, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1351 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='slot_IM1' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Polyline' - ID=1168 - ReferenceCoordSystemID=1 - $begin 'PolylineParameters' - KernelVersion=23 - IsPolylineClosed=true - $begin 'PolylinePoints' - $begin 'PLPoint' - X='37.5302872mm' - Y='15.54555396mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='55.05576774mm' - Y='1.098662669mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='57.33637589mm' - Y='1.25mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='57.28982158mm' - Y='2.626565019mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='40.25081875mm' - Y='16.67243502mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='37.5302872mm' - Y='15.54555396mm' - Z='0mm' - $end 'PLPoint' - $end 'PolylinePoints' - $begin 'PolylineSegments' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=0 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=1 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=2 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=3 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=4 - NoOfPoints=2 - $end 'PLSegment' - $end 'PolylineSegments' - $begin 'PolylineXSection' - XSectionType='None' - XSectionOrient='Auto' - XSectionWidth='1mm' - XSectionTopWidth='1mm' - XSectionHeight='1mm' - XSectionNumSegments='0' - XSectionBendType='Corner' - $end 'PolylineXSection' - $end 'PolylineParameters' - ParentPartID=1169 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=5 - NumVertices=5 - $end 'Topology' - BodyID=1169 - StartFaceID=-1 - StartEdgeID=1170 - StartVertexID=1175 - NumNewFaces=0 - NumNewEdges=5 - NumNewVertices=5 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1180 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1169 - $end 'LocalOperationParameters' - ParentPartID=1169 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=5 - NumEdges=5 - NumVertices=5 - $end 'Topology' - BodyID=-1 - StartFaceID=1181 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1181 - $begin 'FaceGeomTopol' - FaceTopol(1, 5, 5, 5) - $begin 'FaceGeometry' - Area=59.8059843641786 - FcUVMid(47.433331545, 8.8855488445, 0) - $begin 'FcTolVts' - TolVt(37.5302872, 15.54555396, 0, 5e-07) - TolVt(55.05576774, 1.098662669, 0, 5e-07) - TolVt(57.33637589, 1.25, 0, 5e-07) - TolVt(57.28982158, 2.626565019, 0, 5e-07) - TolVt(40.25081875, 16.67243502, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1168 - $end 'Operation' - $begin 'CloneToOperation' - OperationType='DuplicateMirror' - ID=1194 - ReferenceCoordSystemID=1 - $begin 'DuplicateToMirrorParameters' - DuplicateMirrorBaseX='0mm' - DuplicateMirrorBaseY='0mm' - DuplicateMirrorBaseZ='0mm' - DuplicateMirrorNormalX='cos((360deg/SymmetryFactor/2)+90deg)' - DuplicateMirrorNormalY='sin((360deg/SymmetryFactor/2)+90deg)' - DuplicateMirrorNormalZ='0mm' - $end 'DuplicateToMirrorParameters' - ParentPartID=1169 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'CloneToOperation' - OperationType='CloneTo' - ID=1220 - $begin 'CloneToParameters' - KernelVersion=23 - ClonedEntity=1169 - CreateNewObjects=true - $end 'CloneToParameters' - ParentPartID=1169 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1975 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1169 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1169 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=7 - NumWires=0 - NumLoops=7 - NumCoedges=30 - NumEdges=15 - NumVertices=10 - $end 'Topology' - BodyID=-1 - StartFaceID=1976 - StartEdgeID=1982 - StartVertexID=1992 - NumNewFaces=6 - NumNewEdges=10 - NumNewVertices=5 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1976 - InputIDs[1: 1170] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1977 - InputIDs[1: 1171] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1978 - InputIDs[1: 1172] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1979 - InputIDs[1: 1173] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1980 - InputIDs[1: 1174] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1981 - InputIDs[1: 1181] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=1982 - InputIDs[1: 1170] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1983 - InputIDs[1: 1171] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1984 - InputIDs[1: 1172] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1985 - InputIDs[1: 1173] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1986 - InputIDs[1: 1174] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1987 - InputIDs[1: 1175] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1988 - InputIDs[1: 1176] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1989 - InputIDs[1: 1177] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1990 - InputIDs[1: 1178] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1991 - InputIDs[1: 1179] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=1992 - InputIDs[1: 1175] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1993 - InputIDs[1: 1176] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1994 - InputIDs[1: 1177] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1995 - InputIDs[1: 1178] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1996 - InputIDs[1: 1179] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 5, 5, 5) - $begin 'FaceGeometry' - Area=59.8059843641785 - FcUVMid(47.433331545, 8.8855488445, 0) - $begin 'FcTolVts' - TolVt(40.25081875, 16.67243502, 0, 5e-07) - TolVt(57.28982158, 2.626565019, 0, 5e-07) - TolVt(57.33637589, 1.25, 0, 5e-07) - TolVt(55.05576774, 1.098662669, 0, 5e-07) - TolVt(37.5302872, 15.54555396, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1180 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='slot_OM1' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Polyline' - ID=1182 - ReferenceCoordSystemID=1 - $begin 'PolylineParameters' - KernelVersion=23 - IsPolylineClosed=true - $begin 'PolylinePoints' - $begin 'PLPoint' - X='54.37758185mm' - Y='22.52393189mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='59.69688156mm' - Y='9.68200639mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='63.53825619mm' - Y='10.5mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='57.94560461mm' - Y='24.00185531mm' - Z='0mm' - $end 'PLPoint' - $begin 'PLPoint' - X='54.37758185mm' - Y='22.52393189mm' - Z='0mm' - $end 'PLPoint' - $end 'PolylinePoints' - $begin 'PolylineSegments' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=0 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=1 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=2 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=3 - NoOfPoints=2 - $end 'PLSegment' - $end 'PolylineSegments' - $begin 'PolylineXSection' - XSectionType='None' - XSectionOrient='Auto' - XSectionWidth='1mm' - XSectionTopWidth='1mm' - XSectionHeight='1mm' - XSectionNumSegments='0' - XSectionBendType='Corner' - $end 'PolylineXSection' - $end 'PolylineParameters' - ParentPartID=1183 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1183 - StartFaceID=-1 - StartEdgeID=1184 - StartVertexID=1188 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1192 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1183 - $end 'LocalOperationParameters' - ParentPartID=1183 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=1193 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1193 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=55.0611188933968 - FcUVMid(58.95791902, 16.84193085, 0) - $begin 'FcTolVts' - TolVt(54.37758185, 22.52393189, 0, 5e-07) - TolVt(59.69688156, 9.68200639, 0, 5e-07) - TolVt(63.53825619, 10.5, 0, 5e-07) - TolVt(57.94560461, 24.00185531, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1182 - $end 'Operation' - $begin 'CloneToOperation' - OperationType='DuplicateMirror' - ID=1208 - ReferenceCoordSystemID=1 - $begin 'DuplicateToMirrorParameters' - DuplicateMirrorBaseX='0mm' - DuplicateMirrorBaseY='0mm' - DuplicateMirrorBaseZ='0mm' - DuplicateMirrorNormalX='cos((360deg/SymmetryFactor/2)+90deg)' - DuplicateMirrorNormalY='sin((360deg/SymmetryFactor/2)+90deg)' - DuplicateMirrorNormalZ='0mm' - $end 'DuplicateToMirrorParameters' - ParentPartID=1183 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'CloneToOperation' - OperationType='CloneTo' - ID=1234 - $begin 'CloneToParameters' - KernelVersion=23 - ClonedEntity=1183 - CreateNewObjects=true - $end 'CloneToParameters' - ParentPartID=1183 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=1997 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1183 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1183 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=1998 - StartEdgeID=2003 - StartVertexID=2011 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=1998 - InputIDs[1: 1184] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=1999 - InputIDs[1: 1185] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2000 - InputIDs[1: 1186] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2001 - InputIDs[1: 1187] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2002 - InputIDs[1: 1193] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=2003 - InputIDs[1: 1184] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2004 - InputIDs[1: 1185] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2005 - InputIDs[1: 1186] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2006 - InputIDs[1: 1187] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2007 - InputIDs[1: 1188] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2008 - InputIDs[1: 1189] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2009 - InputIDs[1: 1190] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2010 - InputIDs[1: 1191] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=2011 - InputIDs[1: 1188] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2012 - InputIDs[1: 1189] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2013 - InputIDs[1: 1190] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2014 - InputIDs[1: 1191] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=55.0611188933969 - FcUVMid(58.95791902, 16.84193085, 0) - $begin 'FcTolVts' - TolVt(57.94560461, 24.00185531, 0, 5e-07) - TolVt(63.53825619, 10.5, 0, 5e-07) - TolVt(59.69688156, 9.68200639, 0, 5e-07) - TolVt(54.37758185, 22.52393189, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1192 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='slot_IM1_1' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyMirror' - ID=1195 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1169 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=1196 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=5 - NumEdges=5 - NumVertices=5 - $end 'Topology' - BodyID=1196 - StartFaceID=1197 - StartEdgeID=1198 - StartVertexID=1203 - NumNewFaces=1 - NumNewEdges=5 - NumNewVertices=5 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1181'='1197') - CloneEdges('1170'='1198', '1171'='1199', '1172'='1200', '1173'='1201', '1174'='1202') - CloneVertices('1175'='1203', '1176'='1204', '1177'='1205', '1178'='1206', '1179'='1207') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1181) - OriginalEdgeIDs(1170, 1171, 1172, 1173, 1174) - OriginalVertexIDs(1175, 1176, 1177, 1178, 1179) - $end 'OperationIdentity' - PlaceHolderOpnId=1194 - $end 'Operation' - $begin 'CloneToOperation' - OperationType='CloneTo' - ID=1246 - $begin 'CloneToParameters' - KernelVersion=23 - ClonedEntity=1196 - CreateNewObjects=true - $end 'CloneToParameters' - ParentPartID=1196 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=2015 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1196 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1196 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=7 - NumWires=0 - NumLoops=7 - NumCoedges=30 - NumEdges=15 - NumVertices=10 - $end 'Topology' - BodyID=-1 - StartFaceID=2016 - StartEdgeID=2022 - StartVertexID=2032 - NumNewFaces=6 - NumNewEdges=10 - NumNewVertices=5 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=2016 - InputIDs[1: 1198] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2017 - InputIDs[1: 1199] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2018 - InputIDs[1: 1200] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2019 - InputIDs[1: 1201] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2020 - InputIDs[1: 1202] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2021 - InputIDs[1: 1197] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=2022 - InputIDs[1: 1198] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2023 - InputIDs[1: 1199] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2024 - InputIDs[1: 1200] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2025 - InputIDs[1: 1201] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2026 - InputIDs[1: 1202] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2027 - InputIDs[1: 1203] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2028 - InputIDs[1: 1204] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2029 - InputIDs[1: 1205] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2030 - InputIDs[1: 1206] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2031 - InputIDs[1: 1207] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=2032 - InputIDs[1: 1203] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2033 - InputIDs[1: 1204] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2034 - InputIDs[1: 1205] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2035 - InputIDs[1: 1206] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2036 - InputIDs[1: 1207] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 5, 5, 5) - $begin 'FaceGeometry' - Area=59.8059843641784 - FcUVMid(39.8234622322495, 27.257398547229, -0) - $begin 'FcTolVts' - TolVt(37.5302872014161, 15.5455539565813, 0, 5e-07) - TolVt(39.707178535872, 38.1534348888991, 0, 5e-07) - TolVt(41.426823676963, 39.6590567239967, 0, 5e-07) - TolVt(42.3672832683477, 38.6527593960231, 0, 5e-07) - TolVt(40.2508187479697, 16.6724350249016, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1195 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='slot_OM1_1' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyMirror' - ID=1209 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1183 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=1210 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1210 - StartFaceID=1211 - StartEdgeID=1212 - StartVertexID=1216 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1193'='1211') - CloneEdges('1184'='1212', '1185'='1213', '1186'='1214', '1187'='1215') - CloneVertices('1188'='1216', '1189'='1217', '1190'='1218', '1191'='1219') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1193) - OriginalEdgeIDs(1184, 1185, 1186, 1187) - OriginalVertexIDs(1188, 1189, 1190, 1191) - $end 'OperationIdentity' - PlaceHolderOpnId=1208 - $end 'Operation' - $begin 'CloneToOperation' - OperationType='CloneTo' - ID=1260 - $begin 'CloneToParameters' - KernelVersion=23 - ClonedEntity=1210 - CreateNewObjects=true - $end 'CloneToParameters' - ParentPartID=1210 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=2037 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=23 - ProfileID=1210 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - ClearAllIDs=false - SweepVectorX='0meter' - SweepVectorY='0meter' - SweepVectorZ='100mm' - $end 'VectorSweepParameters' - ParentPartID=1210 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=2038 - StartEdgeID=2043 - StartVertexID=2051 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=2038 - InputIDs[1: 1212] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2039 - InputIDs[1: 1213] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2040 - InputIDs[1: 1214] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2041 - InputIDs[1: 1215] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2042 - InputIDs[1: 1211] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=2043 - InputIDs[1: 1212] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2044 - InputIDs[1: 1213] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2045 - InputIDs[1: 1214] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2046 - InputIDs[1: 1215] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2047 - InputIDs[1: 1216] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2048 - InputIDs[1: 1217] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2049 - InputIDs[1: 1218] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2050 - InputIDs[1: 1219] - PathInd=0 - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=2051 - InputIDs[1: 1216] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2052 - InputIDs[1: 1217] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2053 - InputIDs[1: 1218] - PathInd=0 - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=2054 - InputIDs[1: 1219] - PathInd=0 - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=55.0611188933968 - FcUVMid(53.5985878559992, 29.7805008313794, 0) - $begin 'FcTolVts' - TolVt(54.3775818490644, 22.5239318922586, 0, 5e-07) - TolVt(49.0582821406266, 35.3658573929057, 0, 5e-07) - TolVt(52.3529530191759, 37.5037106142584, 0, 5e-07) - TolVt(57.9456046104448, 24.0018553089261, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - ResetAllIDs=false - StartFaceGeomTopoValid=true - FaceIDMap() - EdgeIDMap() - VertexIDMap() - $end 'OperationIdentity' - SweepProfileOperationID=1209 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $end 'ToplevelParts' - $begin 'OperandParts' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Shaft_1' - Flags='' - Color='(128 255 255)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='CloneFrom' - ID=1143 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1113 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=1144 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=1144 - StartFaceID=1145 - StartEdgeID=1146 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1117'='1145') - CloneEdges('1114'='1146') - CloneVertices() - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1117) - OriginalEdgeIDs(1114) - OriginalVertexIDs() - $end 'OperationIdentity' - PlaceHolderOpnId=1142 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='void1' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=1149 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=23 - XCenter='62mm' - YCenter='0mm' - ZCenter='0mm' - Radius='2.55mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=1150 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=1150 - StartFaceID=-1 - StartEdgeID=1151 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1153 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1150 - $end 'LocalOperationParameters' - ParentPartID=1150 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=1154 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1154 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=20.4282062299676 - FcUVMid(62, 0, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1149 - $end 'Operation' - $begin 'Operation' - OperationType='DuplicateAroundAxisEdit' - ID=1155 - ReferenceCoordSystemID=1 - $begin 'DuplicateAroundAxisParameters' - KernelVersion=23 - ClonedEntity=1150 - CreateNewObjects=false - WhichAxis='Z' - AngleStr='360deg/SymmetryFactor' - NumClones='2' - $end 'DuplicateAroundAxisParameters' - ParentPartID=1150 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=2 - NumShells=2 - NumFaces=2 - NumWires=0 - NumLoops=2 - NumCoedges=2 - NumEdges=2 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=1156 - StartEdgeID=1157 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - NumClones=2 - StartFaceIDs[1: 1156] - StartEdgeIDs[1: 1157] - StartVertexIDs[1: -1] - OriginalFaceIDs[1: 1154] - OriginalEdgeIDs[1: 1151] - OriginalVertexIDs[0:] - $end 'OperationIdentity' - ParentOperationID=1153 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='void_big' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=1158 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=23 - XCenter='29.5643mm' - YCenter='12.234389332712mm' - ZCenter='0mm' - Radius='9.88mm/2' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=1159 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=1159 - StartFaceID=-1 - StartEdgeID=1160 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=1162 - $begin 'LocalOperationParameters' - KernelVersion=23 - LocalOpPart=1159 - $end 'LocalOperationParameters' - ParentPartID=1159 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=1 - NumEdges=1 - NumVertices=0 - $end 'Topology' - BodyID=-1 - StartFaceID=1163 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1163 - $begin 'FaceGeomTopol' - FaceTopol(1, 1, 1, 0) - $begin 'FaceGeometry' - Area=76.6661704811439 - FcUVMid(29.5643, 12.234389332712, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=1158 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='slot_IM1_2' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='CloneFrom' - ID=1221 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1169 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=1222 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=5 - NumEdges=5 - NumVertices=5 - $end 'Topology' - BodyID=1222 - StartFaceID=1223 - StartEdgeID=1224 - StartVertexID=1229 - NumNewFaces=1 - NumNewEdges=5 - NumNewVertices=5 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1181'='1223') - CloneEdges('1170'='1224', '1171'='1225', '1172'='1226', '1173'='1227', '1174'='1228') - CloneVertices('1175'='1229', '1176'='1230', '1177'='1231', '1178'='1232', '1179'='1233') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1181) - OriginalEdgeIDs(1170, 1171, 1172, 1173, 1174) - OriginalVertexIDs(1175, 1176, 1177, 1178, 1179) - $end 'OperationIdentity' - PlaceHolderOpnId=1220 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='slot_OM1_2' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='CloneFrom' - ID=1235 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1183 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=1236 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1236 - StartFaceID=1237 - StartEdgeID=1238 - StartVertexID=1242 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1193'='1237') - CloneEdges('1184'='1238', '1185'='1239', '1186'='1240', '1187'='1241') - CloneVertices('1188'='1242', '1189'='1243', '1190'='1244', '1191'='1245') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1193) - OriginalEdgeIDs(1184, 1185, 1186, 1187) - OriginalVertexIDs(1188, 1189, 1190, 1191) - $end 'OperationIdentity' - PlaceHolderOpnId=1234 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='slot_IM1_1_1' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='CloneFrom' - ID=1247 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1196 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=1248 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=5 - NumEdges=5 - NumVertices=5 - $end 'Topology' - BodyID=1248 - StartFaceID=1249 - StartEdgeID=1250 - StartVertexID=1255 - NumNewFaces=1 - NumNewEdges=5 - NumNewVertices=5 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1197'='1249') - CloneEdges('1198'='1250', '1199'='1251', '1200'='1252', '1201'='1253', '1202'='1254') - CloneVertices('1203'='1255', '1204'='1256', '1205'='1257', '1206'='1258', '1207'='1259') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1197) - OriginalEdgeIDs(1198, 1199, 1200, 1201, 1202) - OriginalVertexIDs(1203, 1204, 1205, 1206, 1207) - $end 'OperationIdentity' - PlaceHolderOpnId=1246 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='slot_OM1_1_1' - Flags='' - Color='(230 230 230)' - Transparency=0.8 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='CloneFrom' - ID=1261 - $begin 'CloneFromParameters' - KernelVersion=23 - SourceID=1210 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=1262 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=1262 - StartFaceID=1263 - StartEdgeID=1264 - StartVertexID=1268 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('1211'='1263') - CloneEdges('1212'='1264', '1213'='1265', '1214'='1266', '1215'='1267') - CloneVertices('1216'='1268', '1217'='1269', '1218'='1270', '1219'='1271') - CloneIdentityHelperKernelType=1 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(1211) - OriginalEdgeIDs(1212, 1213, 1214, 1215) - OriginalVertexIDs(1216, 1217, 1218, 1219) - $end 'OperationIdentity' - PlaceHolderOpnId=1260 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $end 'OperandParts' - $begin 'Planes' - $end 'Planes' - $begin 'Points' - $end 'Points' - $begin 'GeometryEntityLists' - $end 'GeometryEntityLists' - $begin 'CachedNames' - $begin 'allobjects' - allobjects(-1) - $end 'allobjects' - $begin 'band' - band(-1) - $end 'band' - $begin 'coil' - coil(-1) - $end 'coil' - $begin 'coil_' - coil_(1, 2, 3, 4, 5) - $end 'coil_' - $begin 'cs_pm_i' - cs_pm_i(1) - $end 'cs_pm_i' - $begin 'cs_pm_i1:xy' - 'cs_pm_i1:xy'(-1) - $end 'cs_pm_i1:xy' - $begin 'cs_pm_i1:xz' - 'cs_pm_i1:xz'(-1) - $end 'cs_pm_i1:xz' - $begin 'cs_pm_i1:yz' - 'cs_pm_i1:yz'(-1) - $end 'cs_pm_i1:yz' - $begin 'cs_pm_o' - cs_pm_o(1) - $end 'cs_pm_o' - $begin 'cs_pm_o1:xy' - 'cs_pm_o1:xy'(-1) - $end 'cs_pm_o1:xy' - $begin 'cs_pm_o1:xz' - 'cs_pm_o1:xz'(-1) - $end 'cs_pm_o1:xz' - $begin 'cs_pm_o1:yz' - 'cs_pm_o1:yz'(-1) - $end 'cs_pm_o1:yz' - $begin 'facecs' - facecs(1, 2) - $end 'facecs' - $begin 'facecs1:xy' - 'facecs1:xy'(-1) - $end 'facecs1:xy' - $begin 'facecs1:xz' - 'facecs1:xz'(-1) - $end 'facecs1:xz' - $begin 'facecs1:yz' - 'facecs1:yz'(-1) - $end 'facecs1:yz' - $begin 'facecs2:xy' - 'facecs2:xy'(-1) - $end 'facecs2:xy' - $begin 'facecs2:xz' - 'facecs2:xz'(-1) - $end 'facecs2:xz' - $begin 'facecs2:yz' - 'facecs2:yz'(-1) - $end 'facecs2:yz' - $begin 'global' - global(-1) - $end 'global' - $begin 'inner_band' - inner_band(-1) - $end 'inner_band' - $begin 'model' - model(-1) - $end 'model' - $begin 'outer_band' - outer_band(-1) - $end 'outer_band' - $begin 'pm_i' - pm_i(1) - $end 'pm_i' - $begin 'pm_i1_' - pm_i1_(1) - $end 'pm_i1_' - $begin 'pm_o' - pm_o(1) - $end 'pm_o' - $begin 'pm_o1_' - pm_o1_(1) - $end 'pm_o1_' - $begin 'region' - region(-1) - $end 'region' - $begin 'rotor' - rotor(-1) - $end 'rotor' - $begin 'section' - section(-1) - $end 'section' - $begin 'section:xy' - 'section:xy'(-1) - $end 'section:xy' - $begin 'section:xz' - 'section:xz'(-1) - $end 'section:xz' - $begin 'section:yz' - 'section:yz'(-1) - $end 'section:yz' - $begin 'shaft' - shaft(-1) - $end 'shaft' - $begin 'shaft_' - shaft_(1) - $end 'shaft_' - $begin 'slot_im' - slot_im(1) - $end 'slot_im' - $begin 'slot_im1_' - slot_im1_(1, 2) - $end 'slot_im1_' - $begin 'slot_im1_1_' - slot_im1_1_(1) - $end 'slot_im1_1_' - $begin 'slot_om' - slot_om(1) - $end 'slot_om' - $begin 'slot_om1_' - slot_om1_(1, 2) - $end 'slot_om1_' - $begin 'slot_om1_1_' - slot_om1_1_(1) - $end 'slot_om1_1_' - $begin 'stator' - stator(-1) - $end 'stator' - $begin 'void' - void(1) - $end 'void' - $begin 'void_big' - void_big(-1) - $end 'void_big' - $end 'CachedNames' - $end 'GeometryOperations' - $begin 'GeometryDependencies' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 5) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1301) - DependencyObject('CoordinateSystem', 1297) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1302) - DependencyObject('GeometryBodyOperation', 5) - DependencyObject('GeometryOperation', 1301) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1345) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1346) - DependencyObject('GeometryBodyOperation', 1302) - DependencyObject('GeometryOperation', 1345) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1383) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1346) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 969) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 979) - DependencyObject('GeometryBodyOperation', 969) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1003) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1641) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 979) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 993) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 981) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 991) - DependencyObject('GeometryBodyOperation', 981) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1020) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1659) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 991) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 998) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1004) - DependencyObject('GeometryOperation', 1003) - DependencyObject('GeometryBodyOperation', 979) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1677) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1004) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1015) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1021) - DependencyObject('GeometryOperation', 1020) - DependencyObject('GeometryBodyOperation', 991) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1695) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1021) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1032) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1037) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1047) - DependencyObject('GeometryBodyOperation', 1037) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1049) - DependencyObject('GeometryBodyOperation', 1047) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1050) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1713) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1049) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1051) - DependencyObject('GeometryOperation', 1050) - DependencyObject('GeometryBodyOperation', 1049) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1731) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1051) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1062) - DependencyObject('GeometryOperation', 1050) - DependencyObject('GeometryBodyOperation', 1049) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1749) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1062) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1073) - DependencyObject('GeometryOperation', 1050) - DependencyObject('GeometryBodyOperation', 1049) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1767) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1073) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1084) - DependencyObject('GeometryOperation', 1050) - DependencyObject('GeometryBodyOperation', 1049) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1785) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1084) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1095) - DependencyObject('GeometryOperation', 1050) - DependencyObject('GeometryBodyOperation', 1049) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1803) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1095) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1106) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1110) - DependencyObject('GeometryBodyOperation', 1106) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1325) - DependencyObject('CoordinateSystem', 1297) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1326) - DependencyObject('GeometryBodyOperation', 1110) - DependencyObject('GeometryOperation', 1325) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1363) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1364) - DependencyObject('GeometryBodyOperation', 1326) - DependencyObject('GeometryOperation', 1363) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1821) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1364) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1112) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1116) - DependencyObject('GeometryBodyOperation', 1112) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=0 - DependencyObject('GeometryOperation', 1142) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1320) - DependencyObject('CoordinateSystem', 1297) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1321) - DependencyObject('GeometryBodyOperation', 1116) - DependencyObject('GeometryOperation', 1320) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1358) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1359) - DependencyObject('GeometryBodyOperation', 1321) - DependencyObject('GeometryOperation', 1358) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1835) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1359) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1118) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1122) - DependencyObject('GeometryBodyOperation', 1118) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1330) - DependencyObject('CoordinateSystem', 1297) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1331) - DependencyObject('GeometryBodyOperation', 1122) - DependencyObject('GeometryOperation', 1330) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1368) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1369) - DependencyObject('GeometryBodyOperation', 1331) - DependencyObject('GeometryOperation', 1368) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1849) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1369) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1124) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1128) - DependencyObject('GeometryBodyOperation', 1124) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1335) - DependencyObject('CoordinateSystem', 1297) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1336) - DependencyObject('GeometryBodyOperation', 1128) - DependencyObject('GeometryOperation', 1335) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1373) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1374) - DependencyObject('GeometryBodyOperation', 1336) - DependencyObject('GeometryOperation', 1373) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1863) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1374) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1130) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1134) - DependencyObject('GeometryBodyOperation', 1130) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1340) - DependencyObject('CoordinateSystem', 1297) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1341) - DependencyObject('GeometryBodyOperation', 1134) - DependencyObject('GeometryOperation', 1340) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1378) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1379) - DependencyObject('GeometryBodyOperation', 1341) - DependencyObject('GeometryOperation', 1378) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1877) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1379) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1136) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1140) - DependencyObject('GeometryBodyOperation', 1136) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1147) - DependencyObject('GeometryBodyOperation', 1140) - DependencyObject('GeometryBodyOperation', 1143) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=3 - DependencyObject('GeometryBodyOperation', 1164) - DependencyObject('GeometryBodyOperation', 1147) - DependencyObject('GeometryBodyOperation', 1155) - DependencyObject('GeometryBodyOperation', 1162) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=5 - DependencyObject('GeometryBodyOperation', 1272) - DependencyObject('GeometryBodyOperation', 1164) - DependencyObject('GeometryBodyOperation', 1221) - DependencyObject('GeometryBodyOperation', 1235) - DependencyObject('GeometryBodyOperation', 1247) - DependencyObject('GeometryBodyOperation', 1261) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1309) - DependencyObject('CoordinateSystem', 1297) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1310) - DependencyObject('GeometryBodyOperation', 1272) - DependencyObject('GeometryOperation', 1309) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1350) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1351) - DependencyObject('GeometryBodyOperation', 1310) - DependencyObject('GeometryOperation', 1350) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1891) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1351) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1168) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1180) - DependencyObject('GeometryBodyOperation', 1168) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1194) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=0 - DependencyObject('GeometryOperation', 1220) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1975) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1180) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1182) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1192) - DependencyObject('GeometryBodyOperation', 1182) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1208) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=0 - DependencyObject('GeometryOperation', 1234) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1997) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1192) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1195) - DependencyObject('GeometryOperation', 1194) - DependencyObject('GeometryBodyOperation', 1180) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=0 - DependencyObject('GeometryOperation', 1246) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2015) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1195) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1209) - DependencyObject('GeometryOperation', 1208) - DependencyObject('GeometryBodyOperation', 1192) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=0 - DependencyObject('GeometryOperation', 1260) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2037) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1209) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1143) - DependencyObject('GeometryBodyOperation', 1116) - DependencyObject('GeometryOperation', 1142) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1149) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1153) - DependencyObject('GeometryBodyOperation', 1149) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1155) - DependencyObject('GeometryBodyOperation', 1153) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1158) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1162) - DependencyObject('GeometryBodyOperation', 1158) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1221) - DependencyObject('GeometryBodyOperation', 1180) - DependencyObject('GeometryOperation', 1220) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1235) - DependencyObject('GeometryBodyOperation', 1192) - DependencyObject('GeometryOperation', 1234) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1247) - DependencyObject('GeometryBodyOperation', 1195) - DependencyObject('GeometryOperation', 1246) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1261) - DependencyObject('GeometryBodyOperation', 1209) - DependencyObject('GeometryOperation', 1260) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('CoordinateSystem', 994) - DependencyObject('GeometryOperation', 993) - DependencyObject('GeometryBodyOperation', 1641) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('CoordinateSystem', 999) - DependencyObject('GeometryOperation', 998) - DependencyObject('GeometryBodyOperation', 1659) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('CoordinateSystem', 1016) - DependencyObject('GeometryOperation', 1015) - DependencyObject('GeometryBodyOperation', 1677) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('CoordinateSystem', 1033) - DependencyObject('GeometryOperation', 1032) - DependencyObject('GeometryBodyOperation', 1695) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('CoordinateSystem', 1297) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $end 'GeometryDependencies' - $end 'GeometryCore' - $begin 'AssignedEntities' - AssignedObject[8: 6, 1038, 1052, 1063, 1074, 1085, 1096, 1137] - $end 'AssignedEntities' - GroupByMaterial=true - GroupSheetByMaterial=true - GroupCompByDefID=true - DoNotOrganizeUnderGroup=false - DoNotOrganizeUnderComponent=false - OrganizeLightweight=false - ShowGroup=true - $begin 'LastUserInputs' - $end 'LastUserInputs' - $end 'ModelSetup' - $begin '3DComponent' - $begin 'NativeComponentVisualization' - $end 'NativeComponentVisualization' - $end '3DComponent' - $begin 'BoundarySetup' - $begin 'GlobalBoundData' - $begin 'OP_Option' - LinkType='None' - $end 'OP_Option' - $end 'GlobalBoundData' - $begin 'Boundaries' - NextUniqueID=6 - MoveBackwards=false - $end 'Boundaries' - $begin 'ProductSpecificData' - $end 'ProductSpecificData' - $end 'BoundarySetup' - $begin 'MaxwellParameterSetup' - $begin 'MaxwellParameters' - NextUniqueID=0 - MoveBackwards=false - $end 'MaxwellParameters' - MotionParams() - $end 'MaxwellParameterSetup' - $begin 'MeshSetup' - $begin 'MeshSettings' - $begin 'GlobalSurfApproximation' - CurvedSurfaceApproxChoice='UseSlider' - SliderMeshSettings=5 - $end 'GlobalSurfApproximation' - $begin 'GlobalCurvilinear' - Apply=true - $end 'GlobalCurvilinear' - $begin 'GlobalModelRes' - UseAutoLength=true - $end 'GlobalModelRes' - MeshMethod='Auto' - UseLegacyFaceterForTauVolumeMesh=false - DynamicSurfaceResolution=false - UseFlexMeshingForTAUvolumeMesh=false - UseAlternativeMeshMethodsAsFallBack=true - AllowPhiForLayeredGeometry=false - $end 'MeshSettings' - $begin 'MeshOperations' - NextUniqueID=3 - MoveBackwards=false - $begin 'coils' - RefineInside=true - ID=0 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(1038, 1052, 1063, 1074, 1085, 1096) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='3mm' - $end 'coils' - $begin 'stator' - RefineInside=true - ID=1 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(6) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='3mm' - $end 'stator' - $begin 'rotor' - RefineInside=true - ID=2 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(1137) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='3mm' - $end 'rotor' - $end 'MeshOperations' - $end 'MeshSetup' - $begin 'AnalysisSetup' - $begin 'SolveSetups' - NextUniqueID=0 - MoveBackwards=false - $end 'SolveSetups' - $end 'AnalysisSetup' - $begin 'Optimetrics' - $begin 'OptimetricsSetups' - NextUniqueID=0 - MoveBackwards=false - $end 'OptimetricsSetups' - $end 'Optimetrics' - $begin 'Solutions' - $end 'Solutions' - $begin 'FieldsReporter' - $begin 'FieldsCalculator' - Line_Discretization=1000 - $end 'FieldsCalculator' - $begin 'PlotDefaults' - Default_SolutionId=-1 - Default_PlotFolder='Automatic' - $end 'PlotDefaults' - $begin 'FieldsPlotManagerID' - NextUniqueID=0 - MoveBackwards=false - NumQuantityType=0 - NumPlots=0 - $end 'FieldsPlotManagerID' - $begin 'Report3dInGeomWnd' - Report3dNum=0 - $end 'Report3dInGeomWnd' - $begin 'Report2dInGeomWnd' - Report2dNum=0 - $end 'Report2dInGeomWnd' - $begin 'AntennaParametersInGeomWnd' - AntennaParametersNum=0 - $end 'AntennaParametersInGeomWnd' - AntennaParametersPlotTablesOrder() - $end 'FieldsReporter' - $begin 'SolutionManager' - $begin 'Version ID Map' - V=2 - $end 'Version ID Map' - ValidationCacheHeader='' - $end 'SolutionManager' - $begin 'UserDefinedSolutionMgr' - NextUniqueID=1000000 - MoveBackwards=false - $end 'UserDefinedSolutionMgr' - $begin 'DatasetSolutionMgr' - NextUniqueID=2000000 - MoveBackwards=false - $end 'DatasetSolutionMgr' - Notes=$begin_cdata$ $end_cdata$ - $begin 'AnimationSetups' - $end 'AnimationSetups' - CacheHeaderFile='HDR5C0B1298016795585073.tmp' - $end 'Maxwell3DModel' - $begin 'DataInstances' - DesignEditor='TopLevel' - Refdes('0', 'U1') - Refdes('1', 'U2') - $begin 'CompInstances' - $begin 'Compinst' - ID='1' - Status='Status' - CompName='Maxwell3DDesign1' - GatesInUse() - $begin 'Properties' - TextProp('ID', 'SRID', '', '1') - $end 'Properties' - $end 'Compinst' - $end 'CompInstances' - $begin 'Instance' - DesignEditor='Maxwell3DDesign1' - ID='1' - $begin 'MaxwellDesignInstance' - DesignInstanceID=3 - $begin 'WindowPosition' - $begin 'EditorWindow' - Circuit(Editor3d(View('View Orientation Gadget'=1, WindowPos(3, -1, -1, -16, -72, 61, 61, 2480, 893), OrientationMatrix(-0.0038840570487082, -0.00622834730893373, 0.00984788406640291, 0, 0.0116521725431085, -0.00207611592486501, 0.00328262778930366, 0, 0, 0.0103805800899863, 0.00656525604426861, 0, -0.21558590233326, -0.138057827949524, -6.66126155853271, 1, 0, -1.92127299308777, 1.92127299308777, -1, 1, 0.904630661010742, 10.5566310882568), Drawings[24: 'Stator', 'PM_I1', 'PM_O1', 'PM_I1_1', 'PM_O1_1', 'Coil', 'Coil_1', 'Coil_2', 'Coil_3', 'Coil_4', 'Coil_5', 'Region', 'Shaft', 'Inner_Band', 'Band', 'Outer_Band', 'Rotor', 'slot_IM1', 'slot_OM1', 'slot_IM1_1', 'slot_OM1_1', 'coils', 'stator', 'rotor'], 'View Data'('Render Mode'=1, 'Show Ruler'=1, 'Coordinate Systems View Mode'=1, 'CS Triad View Mode'=0, 'Render Facets'=1, GridVisible=1, GridAutoAdjust=1, GridAutoExtents=1, GridType='Rect', GridStyle='Line', NumPixels=30, dXForGrid=5, dYForGrid=5, dZForGrid=5, dRForGrid=5, dThetaForGrid=10), ClipPlanes(ClipPlaneOptions(DisableWhenDrawingNewPlane=true, ForceOpqaueForUnclipped=false, ShowClipped=false, Transparency=0, HandleColor=16776960))))) - $end 'EditorWindow' - $end 'WindowPosition' - $begin 'ReportSetup' - $begin 'ReportManager' - $begin 'Reports' - $end 'Reports' - NextUniqueID=0 - MoveBackwards=false - $begin 'NextVersID' - NextUniqueID=0 - MoveBackwards=false - $end 'NextVersID' - $end 'ReportManager' - $begin 'Reports' - $end 'Reports' - $begin 'ReportsWindowInfoList' - $end 'ReportsWindowInfoList' - $end 'ReportSetup' - $begin 'Properties' - $end 'Properties' - $begin 'UserDefinedDocument' - $begin 'Data' - $end 'Data' - $end 'UserDefinedDocument' - $end 'MaxwellDesignInstance' - $end 'Instance' - $begin 'SODInfo' - $end 'SODInfo' - $end 'DataInstances' - $begin 'WBSystemIDToDesignInstanceIDMap' - $end 'WBSystemIDToDesignInstanceIDMap' - $begin 'WBSysIDSysDetails' - $end 'WBSysIDSysDetails' - $begin 'WBConnIDConnDetails' - $end 'WBConnIDConnDetails' - $begin 'WBMaterialGuidDetails' - WBMaterialGuidMap() - $end 'WBMaterialGuidDetails' - $begin 'MinervaProjectSettingsBlk' - MinervaRemoteFilePath='' - FolderContainerString='' - $end 'MinervaProjectSettingsBlk' -$end 'AnsoftProject' -$begin 'AllReferencedFilesForProject' -$end 'AllReferencedFilesForProject' -$begin 'ProjectPreview' - IsEncrypted=false - Thumbnail64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCABgAGADASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAoorjviB8QPBfwq8F+I/iJ8RPEemeEv\ -BXhLTJtX8Q+IdXmaKy0+yiZI1+WNGku7yW4lggtraBJbm7ubmG1tYZriaKJ9aNGtia1LD4elKviK8ow\ -hCEXKc5yajGEIxTlKUpNKMUm22kk2znxmMwmX4TFY/H4qngcDgqc61atWnGlSo0qUXOpVq1JuMKdOnC\ -MpznOSjCKcpNJNnkPxz/aZ8E/AfU/Bum6/a6hrcmu6vaHxXb+H457/VfAfga9tNdht/iBqel21pIb+w\ -bxJpdvZwackkeqanBFq91odrq02hX1jX0BpWq6Xrul6breialYazous2FnqukavpV5b6jpeq6XqNvHd\ -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' - $begin 'DesignInfo' - DesignName='Maxwell3DDesign1' - Notes='' - Factory='Maxwell 3D' - IsSolved=false - 'Nominal Setups'[0:] - 'Nominal Setup Types'[0:] - 'Optimetrics Setups'[0:] - 'Optimetrics Experiment Types'[0:] - Image64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCADIAMgDASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAooooAKKKKACiiigAoor4m/av/AGgfG\ -fw3kj8LfDCfR7TxLo3h7TfiL4v1jWdLl1i30zQ7jxTFo3g3wwNJlmtUvIfEl/o3jVLy7trqS50/TfBV\ -9aomnahrWi63p/oZXlmKzfG0sDhEva1Ltyk2oQjFXcpySdorbZtycYxTlJJ/H8d8cZF4d8NY3ijiGdT\ -6jhHThGlQjGpicRWqzUKdDD05TpqpUk25S5pwhSpQq1606dClVqQ+2aK8G/Z+/aB8JftAeEn1rRU/sX\ -xRov2S08ceB7u8S71Pwtqd2k5tZYrkQRf214Xvfsl4+laqkMUd5HaTwTwWWqWWp6ZYe81zYnDV8HXq4\ -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' - $end 'DesignInfo' -$end 'ProjectPreview' diff --git a/tests/system/general/example_models/TMaxwell/PlanarTransformer.aedt b/tests/system/general/example_models/TMaxwell/PlanarTransformer.aedt deleted file mode 100644 index c970281e64a..00000000000 --- a/tests/system/general/example_models/TMaxwell/PlanarTransformer.aedt +++ /dev/null @@ -1,10910 +0,0 @@ -$begin 'AnsoftProject' - Created='Sun Feb 10 09:34:40 2019' - Product='ElectronicsDesktop' - FileOwnedByWorkbench=false - $begin 'Desktop' - Version(2021, 2) - InfrastructureVersion(1, 0) - $begin 'FactoryHeader' - $end 'FactoryHeader' - $end 'Desktop' - UsesAdvancedFeatures=false - NextUniqueID=0 - MoveBackwards=false - $begin 'HFSSEnvironment' - Version(1, 0) - $end 'HFSSEnvironment' - $begin 'PlanarEMEnvironment' - Version(1, 0) - $end 'PlanarEMEnvironment' - $begin 'Q3DEnvironment' - Version(1, 0) - $end 'Q3DEnvironment' - $begin '2DExtractorEnvironment' - Version(1, 0) - $end '2DExtractorEnvironment' - $begin 'NexximEnvironment' - Version(1, 0) - $end 'NexximEnvironment' - $begin 'NexximNetlistEnvironment' - Version(1, 0) - $end 'NexximNetlistEnvironment' - $begin 'EmitEnvironment' - Version(1, 0) - $end 'EmitEnvironment' - $begin 'Maxwell3DEnvironment' - Version(1, 0) - $end 'Maxwell3DEnvironment' - $begin 'Maxwell2DEnvironment' - Version(1, 0) - $end 'Maxwell2DEnvironment' - $begin 'RMxprtEnvironment' - Version(1, 0) - $end 'RMxprtEnvironment' - $begin 'MaxCirEnvironment' - Version(1, 0) - $end 'MaxCirEnvironment' - $begin 'SimplorerEnvironment' - Version(1, 0) - $end 'SimplorerEnvironment' - $begin 'IcepakEnvironment' - Version(1, 0) - $end 'IcepakEnvironment' - $begin 'MechanicalEnvironment' - Version(1, 0) - $end 'MechanicalEnvironment' - $begin 'FilterDesignEnvironment' - $end 'FilterDesignEnvironment' - $begin 'SchematicEnvironment' - Version(1, 0) - $end 'SchematicEnvironment' - $begin 'geometry3deditor' - Version(1, 0) - $end 'geometry3deditor' - ReadVersion=9 - $begin 'DesignMgrEnvironment' - CompInstCounter=7 - GPortCounter=0 - NetCounter=0 - Alias('Ieee;Simplorer Elements\\Ieee', 'Std;Simplorer Elements\\Std', 'Basic_VHDLAMS;Simplorer Elements\\Basic Elements VHDLAMS\\Basic Elements VHDLAMS', 'Digital_Elements;Simplorer Elements\\Digital Elements\\Digital Elements', 'Transformations;Simplorer Elements\\Tools\\Transformations\\Transformations', 'HEV_VHDLAMS;Simplorer Elements\\HEV VHDLAMS\\HEV VHDLAMS', 'automotive_vda;Simplorer Elements\\VDALibs VHDLAMS\\automotive_vda', 'example_boardnet;Simplorer Elements\\VDALibs VHDLAMS\\example_boardnet', 'example_ecar;Simplorer Elements\\VDALibs VHDLAMS\\example_ecar', 'fundamentals_vda;Simplorer Elements\\VDALibs VHDLAMS\\fundamentals_vda', 'hybrid_emc_vda;Simplorer Elements\\VDALibs VHDLAMS\\hybrid_emc_vda', 'megma;Simplorer Elements\\VDALibs VHDLAMS\\megma', 'modelica_rotational;Simplorer Elements\\VDALibs VHDLAMS\\modelica_rotational', 'modelica_thermal;Simplorer Elements\\VDALibs VHDLAMS\\modelica_thermal', 'modelica_translational;Simplorer Elements\\VDALibs VHDLAMS\\modelica_translational', 'spice2vhd;Simplorer Elements\\VDALibs VHDLAMS\\spice2vhd', 'spice2vhd_devices;Simplorer Elements\\VDALibs VHDLAMS\\spice2vhd_devices', 'aircraft_electrical_vhdlams;Simplorer Elements\\Aircraft Electrical VHDLAMS\\Aircraft Electrical VHDLAMS', 'power_system_vhdlams;Simplorer Elements\\Power System VHDLAMS\\Power System VHDLAMS') - $end 'DesignMgrEnvironment' - $begin 'ProjectDatasets' - NextUniqueID=1 - MoveBackwards=false - DatasetType='ProjectDatasetType' - $begin 'DatasetDefinitions' - $begin '$Mu_3F3' - ID=0 - $begin 'Coordinates' - DimUnits[2: '', ''] - Points[70: 0, 2000, 98459.6815894695, 2027.2, 197983.598439825, 2051, 398107.170553497, 2100, 494745.693364606, 2124, 596047.538592714, 2174, 696140.064601457, 2251.3, 788186.901908786, 2304.4, 892404.594894609, 2386.3, 994839.015358011, 2500.2, 1126381.2001137, 2589.1, 1255672.56203026, 2619.4, 1378243.15007929, 2619.4, 1536444.41791644, 2559.1, 1712804.77556574, 2414.3, 1822527.78210077, 2251.3, 1969618.08128912, 2075, 2161879.38710699, 1846.9, 2372907.99104522, 1550.8, 2604535.83467541, 1242.9, 2814739.4644536, 1019.6, 3287410.45931894, 603.6, 3780315.8735092, 300, 4214238.41031241, 188.3, 4625604.95263426, 122.3, 4846109.89543321, 100.3, 5156553.7681451, 88.3, 5402369.31126385, 77.7, 5659903.00645773, 70, 6116695.39929428, 60.1, 6713767.41844878, 49.3, 7963859.60989012, 39.5, 9016877.71231702, 34.3, 10209130.7056581, 31.3, 11559028.8668147, 28.8] - $end 'Coordinates' - $end '$Mu_3F3' - $end 'DatasetDefinitions' - $end 'ProjectDatasets' - VariableOrders[0:] - $begin 'Definitions' - $begin 'Folders' - Definitions(1604, 10000, 1, 1, 0, false, false) - Materials(1604, 9500, 9, 2, 1, false, false) - 'Surface Materials'(1604, 9501, 33503, 3, 1, false, false) - Scripts(1604, 9502, 33500, 4, 1, false, false) - Padstacks(1604, 9003, 12, 105, 1, false, false) - Symbols(1604, 9001, 10, 103, 1, false, false) - Footprints(1604, 9002, 11, 104, 1, false, false) - Bondwires(1604, 9006, 12, 108, 1, false, false) - Components(1604, 9000, 8, 102, 1, false, false) - Models(1604, 9004, 13, 106, 1, false, false) - Packages(1604, 9005, 33502, 107, 1, false, false) - $end 'Folders' - $begin 'Materials' - $begin 'vacuum' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=230 - Green=230 - Blue=230 - Transparency=0.949999988079071 - $end 'MatAppearanceData' - $end 'AttachedData' - permittivity='1' - ModTime=1499970477 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'vacuum' - $begin 'Material_3F3' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal') - $end 'PhysicsTypes' - permeability='pwl($Mu_3F3,Freq)' - conductivity='0.5' - thermal_conductivity='5.5' - $begin 'core_loss_type' - property_type='ChoiceProperty' - Choice='Power Ferrite' - $end 'core_loss_type' - core_loss_cm='0.195' - core_loss_x='1.561' - core_loss_y='2.15' - core_loss_kdc='0' - mass_density='0' - specific_heat='0' - thermal_expansion_coefficient='0' - ModTime=1549984218 - Library='' - LibLocation='Project' - ModSinceLib=true - $end 'Material_3F3' - $begin 'copper' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal', 'Structural') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=242 - Green=140 - Blue=102 - $end 'MatAppearanceData' - $end 'AttachedData' - permeability='0.999991' - conductivity='58000000' - thermal_conductivity='400' - mass_density='8933' - specific_heat='385' - youngs_modulus='120000000000' - poissons_ratio='0.38' - thermal_expansion_coefficient='1.77e-05' - ModTime=1499970477 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'copper' - $begin 'polyamide' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=90 - Green=90 - Blue=90 - $end 'MatAppearanceData' - $end 'AttachedData' - permittivity='4.3' - dielectric_loss_tangent='0.004' - thermal_conductivity='0.26' - ModTime=1499970477 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'polyamide' - $begin 'copper_temp' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal', 'Structural') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=242 - Green=140 - Blue=102 - $end 'MatAppearanceData' - $end 'AttachedData' - $begin 'ModifierData' - $begin 'ThermalModifierData' - modifier_data='thermal_modifier_data' - $begin 'all_thermal_modifiers' - $begin 'one_thermal_modifier' - 'Property:'='conductivity' - 'Index:'=0 - prop_modifier='thermal_modifier' - use_free_form=true - free_form_value='1/(1+0.0039*(Temp-22))' - $end 'one_thermal_modifier' - $end 'all_thermal_modifiers' - $end 'ThermalModifierData' - $end 'ModifierData' - permeability='0.999991' - conductivity='58000000' - thermal_conductivity='400' - mass_density='8933' - specific_heat='385' - youngs_modulus='120000000000' - poissons_ratio='0.38' - thermal_expansion_coefficient='1.77e-05' - ModTime=1549809453 - Library='' - LibLocation='Project' - ModSinceLib=false - $end 'copper_temp' - $begin 'air' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=230 - Green=230 - Blue=230 - Transparency=0.949999988079071 - $end 'MatAppearanceData' - $end 'AttachedData' - permittivity='1.0006' - permeability='1.0000004' - thermal_conductivity='0.0261' - mass_density='1.1614' - specific_heat='1005' - thermal_expansion_coefficient='0.00333' - $begin 'thermal_material_type' - property_type='ChoiceProperty' - Choice='Fluid' - $end 'thermal_material_type' - diffusivity='2.88e-05' - molecular_mass='0.028966' - viscosity='1.84e-05' - material_refractive_index='1.000293' - $begin 'clarity_type' - property_type='ChoiceProperty' - Choice='Transparent' - $end 'clarity_type' - ModTime=1592011950 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'air' - $begin 'Al-Extruded' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Thermal') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=232 - Green=235 - Blue=235 - $end 'MatAppearanceData' - $end 'AttachedData' - thermal_conductivity='205' - mass_density='2800' - specific_heat='900' - $begin 'thermal_material_type' - property_type='ChoiceProperty' - Choice='Solid' - $end 'thermal_material_type' - $begin 'clarity_type' - property_type='ChoiceProperty' - Choice='Opaque' - $end 'clarity_type' - ModTime=1592011950 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'Al-Extruded' - $end 'Materials' - $begin 'SurfaceMaterials' - $begin 'Steel-oxidised-surface' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=2 - $begin 'PhysicsTypes' - set('Thermal') - $end 'PhysicsTypes' - surface_emissivity='0.8' - ModTime=1461288057 - Library='SurfaceMaterials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'Steel-oxidised-surface' - $end 'SurfaceMaterials' - $begin 'Scripts' - $end 'Scripts' - $begin 'Symbols' - $begin 'Maxwell3D' - ModTime=1549809270 - Library='' - ModSinceLib=false - LibLocation='Project' - HighestLevel=1 - Normalize=true - InitialLevels(0, 1) - $begin 'Graphics' - Rect(0, 0, 0, 0, 0.00254, 0.00254, 0.00508, 0.00508, 0, 0, 0) - $end 'Graphics' - $end 'Maxwell3D' - $end 'Symbols' - $begin 'DefInfo' - Maxwell3D(0, 0, '', 1549809270, '', 'Maxwell3D', '', '', '', '', '', 'Design.bmp', '', 'Project', '', '', 1549809270, '', 0) - $end 'DefInfo' - $begin 'Compdefs' - $begin 'Maxwell3D' - Library='' - CircuitEnv=1 - Refbase='U' - NumParts=1 - ModSinceLib=true - $begin 'Properties' - TextProp('Representation', 'SRD', '', 'Maxwell3D') - TextProp('Owner', 'SRD', '', 'Maxwell 3D') - $end 'Properties' - CompExtID=6 - $end 'Maxwell3D' - $end 'Compdefs' - $end 'Definitions' - DesignIDServer=15 - MoveBackwards=false - $begin 'Maxwell3DModel' - RepRewriteV2=true - Name='Maxwell3D' - DesignID=2 - 'Allow Material Override'=false - 'Perform Minimal validation'=false - $begin 'TemperatureSettings' - IncludeTemperatureDependence=true - EnableFeedback=true - Temperatures(6, '22cel', 180, '22cel', 307, '22cel', 335, '20cel', 357, '22cel', 385, '20cel', 407, '22cel', 435, '20cel', 457, '22cel', 485, '20cel', 507, '22cel', 535, '20cel', 557, '22cel', 585, '20cel', 608, '22cel', 629, '22cel', 650, '22cel', 671, '22cel', 692, '22cel', 713, '22cel', 751, '22cel') - BoundaryTemperatures() - $end 'TemperatureSettings' - ObjsEnabledForDeformation() - PerfectConductorThreshold=1e+30 - InsulatorThreshold=1 - SolveFraction=false - Multiplier='1' - SolutionType='EddyCurrent' - $begin 'OutputVariable' - NextUniqueID=2 - MoveBackwards=false - $begin 'OutputVariables' - Lleakage12_from_L11(ID=0, 'L(pri,pri)-2*L(pri,sec)-2*L(sec,pri)+4*L(sec,sec)', 1, 'nH', 1, 'nH', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - Lleakage12_from_CC(ID=1, 'L(pri,pri)*(1-CplCoef(sec,pri)*CplCoef(sec,pri))', 1, 'nH', 1, 'nH', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'OutputVariables' - $end 'OutputVariable' - $begin 'ModelSetup' - $begin 'DesignDatasets' - NextUniqueID=0 - MoveBackwards=false - DatasetType='DesignDatasetType' - $begin 'DatasetDefinitions' - $end 'DatasetDefinitions' - $end 'DesignDatasets' - $begin 'Properties' - VariableProp('Vp', 'UD', '', '50V') - VariableProp('Rload', 'UD', '', '0.4ohm') - $end 'Properties' - VariableOrders[2: 'Vp', 'Rload'] - $begin 'Editor3D Doc Preferences' - 'Plane Background'=true - BackgroundColor1=16777215 - BackgroundColor2=0 - 'Need Lights'=true - 'Ambient Light'=9671571 - 'Num Lights'=4 - Light0[4: 6710886, 0, -1, -0.150000005960464] - Light1[4: 6710886, -0.600000023841858, 0.100000001490116, -0.5] - Light2[4: 6710886, 0.5, 0.100000001490116, -0.5] - Light3[4: 6710886, 0.200000002980232, 0.400000005960464, 1] - Ver=2 - $end 'Editor3D Doc Preferences' - SnapMode=31 - WorkingCS=1 - $begin 'GeometryCore' - BlockVersionID=3 - DataVersion=9 - NativeKernel='ACIS' - NativeKernelVersionID=13 - Units='mm' - InstanceID=-1 - $begin 'ValidationOptions' - EntityCheckLevel='Strict' - IgnoreUnclassifiedObjects=false - SkipIntersectionChecks=false - $end 'ValidationOptions' - $begin 'GeometryOperations' - BlockVersionID=2 - $begin 'AnsoftRangedIDServerManager' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=0 - IDServerRangeMin=0 - IDServerRangeMax=2146483647 - NextUniqueID=778 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=1 - IDServerRangeMin=2146483648 - IDServerRangeMax=2146485547 - NextUniqueID=2146483654 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $end 'AnsoftRangedIDServerManager' - StartBackGroundFaceID=2146483648 - $begin 'CoordinateSystems' - $end 'CoordinateSystems' - $begin 'OperandCSs' - $end 'OperandCSs' - $begin 'SubModelDefinitions' - $end 'SubModelDefinitions' - $begin 'Groups' - $end 'Groups' - $begin 'UserDefinedModels' - $end 'UserDefinedModels' - $begin 'OperandUserDefinedModels' - $end 'OperandUserDefinedModels' - $begin 'ToplevelParts' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PQ_Core_Bottom' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Material_3F3"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Box' - ID=5 - ReferenceCoordSystemID=1 - $begin 'BoxParameters' - KernelVersion=11 - XPosition='-10.65mm' - YPosition='-7mm' - ZPosition='-3.5mm' - XSize='4.65mm' - YSize='14mm' - ZSize='3.5mm' - $end 'BoxParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=6 - StartFaceID=7 - StartEdgeID=13 - StartVertexID=25 - NumNewFaces=6 - NumNewEdges=12 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Unite' - ID=63 - $begin 'UniteParameters' - KernelVersion=11 - KeepOriginals=false - BlankPart=6 - NumToolParts=1 - ToolParts(34) - $end 'UniteParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=10 - NumWires=0 - NumLoops=10 - NumCoedges=48 - NumEdges=24 - NumVertices=16 - $end 'Topology' - BodyID=-1 - StartFaceID=64 - StartEdgeID=66 - StartVertexID=-1 - NumNewFaces=2 - NumNewEdges=4 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=64 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=4.9 - FcUVMid(-6, -6.3, -1.75) - $begin 'FcTolVts' - TolVt(-6, -5.6, -3.5, 0) - TolVt(-6, -5.6, 0, 0) - TolVt(-6, -7, 0, 0) - TolVt(-6, -7, -3.5, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=65 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=4.9 - FcUVMid(-6, 6.3, -1.75) - $begin 'FcTolVts' - TolVt(-6, 5.6, 0, 0) - TolVt(-6, 5.6, -3.5, 0) - TolVt(-6, 7, -3.5, 0) - TolVt(-6, 7, 0, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=66 - EdgeFaces(7, 64) - $begin 'EdTolVts' - TolVt(-6, -7, 0, 0) - TolVt(-6, -5.6, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(-6, -6.3, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=67 - EdgeFaces(8, 64) - $begin 'EdTolVts' - TolVt(-6, -5.6, -3.5, 0) - TolVt(-6, -7, -3.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-6, -6.3, -3.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=68 - EdgeFaces(8, 65) - $begin 'EdTolVts' - TolVt(-6, 7, -3.5, 0) - TolVt(-6, 5.6, -3.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-6, 6.3, -3.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=69 - EdgeFaces(7, 65) - $begin 'EdTolVts' - TolVt(-6, 5.6, 0, 0) - TolVt(-6, 7, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(-6, 6.3, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=5 - NumToolOperations=1 - ToolOperations(45) - $end 'Operation' - $begin 'Operation' - OperationType='Substract' - ID=79 - $begin 'SubtractParameters' - KernelVersion=11 - KeepOriginals=false - BlankPart=6 - NumToolParts=1 - ToolParts(71) - $end 'SubtractParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=80 - StartEdgeID=82 - StartVertexID=91 - NumNewFaces=2 - NumNewEdges=9 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=80 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=22.7088541053341 - FcUVMid(-9, -5.09898500788318e-15, -0.75) - $begin 'FcTolVts' - TolVt(-6, -6.70820393249937, 0, 0) - TolVt(-6, -6.70820393249937, -1.5, 0) - TolVt(-6, 6.70820393249937, -1.5, 0) - TolVt(-6, 6.70820393249937, 0, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=81 - $begin 'FaceGeomTopol' - FaceTopol(1, 6, 6, 6) - $begin 'FaceGeometry' - Area=65.9540730748062 - FcUVMid(-5.5, -3.10862446895044e-15, -1.5) - $begin 'FcTolVts' - TolVt(-6, -6.70820393249937, -1.5, 0) - TolVt(-6, -5.6, -1.5, 0) - TolVt(-2, -3.91918358845, -1.5, 0) - TolVt(-2, 3.91918358845, -1.5, 0) - TolVt(-6, 5.6, -1.5, 0) - TolVt(-6, 6.70820393249937, -1.5, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=82 - EdgeFaces(64, 80) - $begin 'EdTolVts' - TolVt(-6, -6.70820393249937, -1.5, 0) - TolVt(-6, -6.70820393249937, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(-6, -6.70820393249937, -0.75) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=83 - EdgeFaces(80, 81) - $begin 'EdTolVts' - TolVt(-6, -6.70820393249937, -1.5, 0) - TolVt(-6, 6.70820393249937, -1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-9, -5.09898500788318e-15, -1.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=84 - EdgeFaces(65, 80) - $begin 'EdTolVts' - TolVt(-6, 6.70820393249937, 0, 0) - TolVt(-6, 6.70820393249937, -1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-6, 6.70820393249937, -0.75) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=85 - EdgeFaces(7, 80) - $begin 'EdTolVts' - TolVt(-6, -6.70820393249937, 0, 0) - TolVt(-6, 6.70820393249937, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(-9, -1.10218211923262e-15, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=86 - EdgeFaces(64, 81) - $begin 'EdTolVts' - TolVt(-6, -5.6, -1.5, 0) - TolVt(-6, -6.70820393249937, -1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-6, -6.15410196624968, -1.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=87 - EdgeFaces(48, 81) - $begin 'EdTolVts' - TolVt(-2, -3.91918358845, -1.5, 0) - TolVt(-6, -5.6, -1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-4, -4.759591794225, -1.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=88 - EdgeFaces(47, 81) - $begin 'EdTolVts' - TolVt(-2, 3.91918358845, -1.5, 0) - TolVt(-2, -3.91918358845, -1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-2, 0, -1.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=89 - EdgeFaces(46, 81) - $begin 'EdTolVts' - TolVt(-6, 5.6, -1.5, 0) - TolVt(-2, 3.91918358845, -1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-4, 4.759591794225, -1.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=8 - ID=90 - EdgeFaces(65, 81) - $begin 'EdTolVts' - TolVt(-6, 6.70820393249937, -1.5, 0) - TolVt(-6, 5.6, -1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-6, 6.15410196624968, -1.5) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=91 - VtPos(-6, -6.70820393249937, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=92 - VtPos(-6, -6.70820393249937, -1.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=93 - VtPos(-6, 6.70820393249937, -1.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=94 - VtPos(-6, 6.70820393249937, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=95 - VtPos(-6, -5.6, -1.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=96 - VtPos(-2, -3.91918358845, -1.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=97 - VtPos(-2, 3.91918358845, -1.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=98 - VtPos(-6, 5.6, -1.5) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=63 - NumToolOperations=1 - ToolOperations(70) - $end 'Operation' - $begin 'CloneToOperation' - OperationType='DuplicateMirror' - ID=99 - ReferenceCoordSystemID=1 - $begin 'DuplicateToMirrorParameters' - DuplicateMirrorBaseX='0mm' - DuplicateMirrorBaseY='0mm' - DuplicateMirrorBaseZ='0mm' - DuplicateMirrorNormalX='1mm' - DuplicateMirrorNormalY='0mm' - DuplicateMirrorNormalZ='0mm' - $end 'DuplicateToMirrorParameters' - ParentPartID=6 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'Operation' - OperationType='Unite' - ID=173 - $begin 'UniteParameters' - KernelVersion=11 - KeepOriginals=false - BlankPart=6 - NumToolParts=2 - ToolParts(101, 165) - $end 'UniteParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=23 - NumWires=0 - NumLoops=24 - NumCoedges=122 - NumEdges=61 - NumVertices=41 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=174 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=174 - EdgeFaces(81, 166) - $begin 'EdTolVts' - TolVt(-2, -3.91918358845, -1.5, 0) - TolVt(-2, 3.91918358845, -1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.4, -5.38844591624835e-16, -1.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=175 - EdgeFaces(8, 166) - $begin 'EdTolVts' - TolVt(2, -3.91918358845, -3.5, 0) - TolVt(-2, -3.91918358845, -3.5, 0) - $end 'EdTolVts' - EdgeMidPoint(1.24641855748256e-15, -4.4, -3.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=176 - EdgeFaces(103, 166) - $begin 'EdTolVts' - TolVt(2, 3.91918358845, -1.5, 0) - TolVt(2, -3.91918358845, -1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(4.4, 0, -1.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=177 - EdgeFaces(8, 166) - $begin 'EdTolVts' - TolVt(-2, 3.91918358845, -3.5, 0) - TolVt(2, 3.91918358845, -3.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-8.08266887437253e-16, 4.4, -3.5) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $begin 'Element' - RetainedID=8 - MergedIDs(110, 167) - $end 'Element' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=79 - NumToolOperations=2 - ToolOperations(100, 164) - $end 'Operation' - $begin 'CloneToOperation' - OperationType='DuplicateMirror' - ID=178 - ReferenceCoordSystemID=1 - $begin 'DuplicateToMirrorParameters' - DuplicateMirrorBaseX='0mm' - DuplicateMirrorBaseY='0mm' - DuplicateMirrorBaseZ='0mm' - DuplicateMirrorNormalX='0mm' - DuplicateMirrorNormalY='0mm' - DuplicateMirrorNormalZ='1mm' - $end 'DuplicateToMirrorParameters' - ParentPartID=6 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PQ_Core_Top' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Material_3F3"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyMirror' - ID=179 - $begin 'CloneFromParameters' - KernelVersion=11 - SourceID=6 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=180 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=23 - NumWires=0 - NumLoops=24 - NumCoedges=122 - NumEdges=61 - NumVertices=41 - $end 'Topology' - BodyID=180 - StartFaceID=181 - StartEdgeID=204 - StartVertexID=265 - NumNewFaces=23 - NumNewEdges=61 - NumNewVertices=41 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('7'='198', '8'='193', '9'='201', '10'='202', '11'='203', '46'='199', '48'='196', '64'='197', '65'='200', '80'='194', '81'='195', '102'='183', '103'='184', '104'='185', '105'='186', '106'='187', '107'='188', '109'='189', '111'='190', '112'='191', '113'='192', '166'='181', '168'='182') - CloneEdges('14'='259', '15'='258', '16'='257', '18'='243', '19'='242', '20'='241', '21'='263', '22'='255', '23'='264', '24'='262', '36'='239', '38'='245', '52'='205', '53'='261', '55'='211', '57'='254', '66'='256', '67'='244', '68'='240', '69'='260', '82'='246', '83'='249', '84'='248', '85'='247', '86'='251', '87'='250', '89'='253', '90'='252', '114'='213', '115'='216', '116'='215', '117'='214', '118'='219', '119'='218', '120'='217', '122'='220', '123'='209', '124'='222', '125'='221', '126'='225', '127'='224', '128'='223', '129'='229', '130'='228', '131'='227', '132'='226', '133'='231', '134'='230', '135'='207', '137'='233', '138'='232', '139'='238', '140'='237', '141'='235', '142'='234', '143'='236', '170'='204', '174'='212', '175'='210', '176'='208', '177'='206') - CloneVertices('25'='302', '26'='305', '27'='304', '28'='303', '29'='291', '30'='294', '31'='293', '32'='292', '39'='295', '40'='290', '41'='267', '42'='272', '91'='297', '92'='296', '93'='299', '94'='298', '95'='300', '96'='273', '97'='266', '98'='301', '144'='275', '145'='274', '146'='277', '147'='276', '148'='279', '149'='278', '150'='269', '151'='270', '152'='271', '153'='280', '154'='282', '155'='281', '156'='285', '157'='284', '158'='283', '159'='286', '160'='268', '161'='287', '162'='289', '163'='288', '172'='265') - CloneIdentityHelperKernelType=0 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(7, 8, 9, 10, 11, 46, 48, 64, 65, 80, 81, 102, 103, 104, 105, 106, 107, 109, 111, 112, 113, 166, 168) - OriginalEdgeIDs(14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 36, 38, 52, 53, 55, 57, 66, 67, 68, 69, 82, 83, 84, 85, 86, 87, 89, 90, 114, 115, 116, 117, 118, 119, 120, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 137, 138, 139, 140, 141, 142, 143, 170, 174, 175, 176, 177) - OriginalVertexIDs(25, 26, 27, 28, 29, 30, 31, 32, 39, 40, 41, 42, 91, 92, 93, 94, 95, 96, 97, 98, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 172) - $end 'OperationIdentity' - PlaceHolderOpnId=178 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_1' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=306 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-1.5mm' - Radius='9mm' - Height='0.2mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=307 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=307 - StartFaceID=308 - StartEdgeID=311 - StartVertexID=313 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Substract' - ID=324 - $begin 'SubtractParameters' - KernelVersion=11 - KeepOriginals=false - BlankPart=307 - NumToolParts=1 - ToolParts(316) - $end 'SubtractParameters' - ParentPartID=307 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=325 - StartEdgeID=326 - StartVertexID=328 - NumNewFaces=1 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=325 - $begin 'FaceGeomTopol' - FaceTopol(2, 2, 2, 2) - $begin 'FaceGeometry' - Area=5.52920307031804 - FcUVMid(4.4, 0, -1.4) - $begin 'FcTolVts' - TolVt(-4.4, 5.38844591624835e-16, -1.3, 0) - TolVt(4.4, 0, -1.5, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=326 - EdgeFaces(310, 325) - $begin 'EdTolVts' - TolVt(-4.4, 5.38844591624835e-16, -1.3, 0) - $end 'EdTolVts' - EdgeMidPoint(4.4, 0, -1.3) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=327 - EdgeFaces(309, 325) - $begin 'EdTolVts' - TolVt(4.4, 0, -1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.4, 5.38844591624835e-16, -1.5) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=328 - VtPos(-4.4, 5.38844591624835e-16, -1.3) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=329 - VtPos(4.4, 0, -1.5) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=306 - NumToolOperations=1 - ToolOperations(315) - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer1_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Rectangle' - ID=334 - ReferenceCoordSystemID=1 - $begin 'RectangleParameters' - KernelVersion=11 - XStart='4.45mm' - YStart='0mm' - ZStart='-0.3mm' - Width='0.3mm' - Height='4mm' - WhichAxis='Y' - $end 'RectangleParameters' - ParentPartID=335 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=335 - StartFaceID=-1 - StartEdgeID=336 - StartVertexID=340 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=344 - $begin 'LocalOperationParameters' - KernelVersion=11 - LocalOpPart=335 - $end 'LocalOperationParameters' - ParentPartID=335 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=345 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=345 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 2.23281689765741e-16, -0.15) - $begin 'FcTolVts' - TolVt(4.45, 0, -0.3, 0) - TolVt(4.45, 4.82436794902991e-17, 0, 0) - TolVt(8.45, 4.46563379531483e-16, -7.21644966006352e-16, 0) - TolVt(8.45, 3.98319700041184e-16, -0.300000000000001, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=334 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongPath' - ID=346 - $begin 'PathSweepParameters' - KernelVersion=11 - ProfileID=335 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - PathID=331 - TwistAngle='0deg' - $end 'PathSweepParameters' - ParentPartID=335 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=347 - StartEdgeID=351 - StartVertexID=-1 - NumNewFaces=4 - NumNewEdges=4 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=347 - InputIDs[2: 332, 339] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=348 - InputIDs[2: 332, 338] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=349 - InputIDs[2: 332, 337] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=350 - InputIDs[2: 332, 336] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=351 - InputIDs[2: 332, 343] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=352 - InputIDs[2: 332, 340] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=353 - InputIDs[2: 332, 342] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=354 - InputIDs[2: 332, 341] - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - $end 'OperationIdentity' - SweepProfileOperationID=344 - TreatAllFacesAsNew=false - SweepPathOperationID=330 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=355 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=11 - TargetID=335 - TranslateVectorX='0mm' - TranslateVectorY='0mm' - TranslateVectorZ='-1mm' - $end 'TranslateParameters' - ParentPartID=335 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=346 - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=606 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=11 - ClonedEntity=335 - CreateNewObjects=true - SectionPlane='ZX' - $end 'SectionToParameters' - ParentPartID=335 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_2' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=356 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-1mm' - Radius='9mm' - Height='0.2mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=357 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=357 - StartFaceID=358 - StartEdgeID=361 - StartVertexID=363 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Substract' - ID=374 - $begin 'SubtractParameters' - KernelVersion=11 - KeepOriginals=false - BlankPart=357 - NumToolParts=1 - ToolParts(366) - $end 'SubtractParameters' - ParentPartID=357 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=375 - StartEdgeID=376 - StartVertexID=378 - NumNewFaces=1 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=375 - $begin 'FaceGeomTopol' - FaceTopol(2, 2, 2, 2) - $begin 'FaceGeometry' - Area=5.52920307031803 - FcUVMid(4.4, 0, -0.9) - $begin 'FcTolVts' - TolVt(-4.4, 5.38844591624835e-16, -0.8, 0) - TolVt(4.4, 0, -1, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=376 - EdgeFaces(360, 375) - $begin 'EdTolVts' - TolVt(-4.4, 5.38844591624835e-16, -0.8, 0) - $end 'EdTolVts' - EdgeMidPoint(4.4, 0, -0.8) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=377 - EdgeFaces(359, 375) - $begin 'EdTolVts' - TolVt(4.4, 0, -1, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.4, 5.38844591624835e-16, -1) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=378 - VtPos(-4.4, 5.38844591624835e-16, -0.8) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=379 - VtPos(4.4, 0, -1) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=356 - NumToolOperations=1 - ToolOperations(365) - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer2_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Rectangle' - ID=384 - ReferenceCoordSystemID=1 - $begin 'RectangleParameters' - KernelVersion=11 - XStart='4.45mm' - YStart='0mm' - ZStart='-0.3mm' - Width='0.3mm' - Height='4mm' - WhichAxis='Y' - $end 'RectangleParameters' - ParentPartID=385 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=385 - StartFaceID=-1 - StartEdgeID=386 - StartVertexID=390 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=394 - $begin 'LocalOperationParameters' - KernelVersion=11 - LocalOpPart=385 - $end 'LocalOperationParameters' - ParentPartID=385 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=395 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=395 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 2.23281689765741e-16, -0.15) - $begin 'FcTolVts' - TolVt(4.45, 0, -0.3, 0) - TolVt(4.45, 4.82436794902991e-17, 0, 0) - TolVt(8.45, 4.46563379531483e-16, -7.21644966006352e-16, 0) - TolVt(8.45, 3.98319700041184e-16, -0.300000000000001, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=384 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongPath' - ID=396 - $begin 'PathSweepParameters' - KernelVersion=11 - ProfileID=385 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - PathID=381 - TwistAngle='0deg' - $end 'PathSweepParameters' - ParentPartID=385 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=397 - StartEdgeID=401 - StartVertexID=-1 - NumNewFaces=4 - NumNewEdges=4 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=397 - InputIDs[2: 382, 389] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=398 - InputIDs[2: 382, 388] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=399 - InputIDs[2: 382, 387] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=400 - InputIDs[2: 382, 386] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=401 - InputIDs[2: 382, 393] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=402 - InputIDs[2: 382, 390] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=403 - InputIDs[2: 382, 392] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=404 - InputIDs[2: 382, 391] - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - $end 'OperationIdentity' - SweepProfileOperationID=394 - TreatAllFacesAsNew=false - SweepPathOperationID=380 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=405 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=11 - TargetID=385 - TranslateVectorX='0mm' - TranslateVectorY='0mm' - TranslateVectorZ='-0.5mm' - $end 'TranslateParameters' - ParentPartID=385 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=396 - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=627 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=11 - ClonedEntity=385 - CreateNewObjects=true - SectionPlane='ZX' - $end 'SectionToParameters' - ParentPartID=385 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_3' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=406 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-0.5mm' - Radius='9mm' - Height='0.2mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=407 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=407 - StartFaceID=408 - StartEdgeID=411 - StartVertexID=413 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Substract' - ID=424 - $begin 'SubtractParameters' - KernelVersion=11 - KeepOriginals=false - BlankPart=407 - NumToolParts=1 - ToolParts(416) - $end 'SubtractParameters' - ParentPartID=407 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=425 - StartEdgeID=426 - StartVertexID=428 - NumNewFaces=1 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=425 - $begin 'FaceGeomTopol' - FaceTopol(2, 2, 2, 2) - $begin 'FaceGeometry' - Area=5.52920307031803 - FcUVMid(4.4, 0, -0.4) - $begin 'FcTolVts' - TolVt(-4.4, 5.38844591624835e-16, -0.3, 0) - TolVt(4.4, 0, -0.5, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=426 - EdgeFaces(410, 425) - $begin 'EdTolVts' - TolVt(-4.4, 5.38844591624835e-16, -0.3, 0) - $end 'EdTolVts' - EdgeMidPoint(4.4, 0, -0.3) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=427 - EdgeFaces(409, 425) - $begin 'EdTolVts' - TolVt(4.4, 0, -0.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.4, 5.38844591624835e-16, -0.5) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=428 - VtPos(-4.4, 5.38844591624835e-16, -0.3) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=429 - VtPos(4.4, 0, -0.5) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=406 - NumToolOperations=1 - ToolOperations(415) - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer3_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Rectangle' - ID=434 - ReferenceCoordSystemID=1 - $begin 'RectangleParameters' - KernelVersion=11 - XStart='4.45mm' - YStart='0mm' - ZStart='-0.3mm' - Width='0.3mm' - Height='4mm' - WhichAxis='Y' - $end 'RectangleParameters' - ParentPartID=435 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=435 - StartFaceID=-1 - StartEdgeID=436 - StartVertexID=440 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=444 - $begin 'LocalOperationParameters' - KernelVersion=11 - LocalOpPart=435 - $end 'LocalOperationParameters' - ParentPartID=435 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=445 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=445 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 2.23281689765741e-16, -0.15) - $begin 'FcTolVts' - TolVt(4.45, 0, -0.3, 0) - TolVt(4.45, 4.82436794902991e-17, 0, 0) - TolVt(8.45, 4.46563379531483e-16, -7.21644966006352e-16, 0) - TolVt(8.45, 3.98319700041184e-16, -0.300000000000001, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=434 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongPath' - ID=446 - $begin 'PathSweepParameters' - KernelVersion=11 - ProfileID=435 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - PathID=431 - TwistAngle='0deg' - $end 'PathSweepParameters' - ParentPartID=435 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=447 - StartEdgeID=451 - StartVertexID=-1 - NumNewFaces=4 - NumNewEdges=4 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=447 - InputIDs[2: 432, 439] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=448 - InputIDs[2: 432, 438] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=449 - InputIDs[2: 432, 437] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=450 - InputIDs[2: 432, 436] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=451 - InputIDs[2: 432, 443] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=452 - InputIDs[2: 432, 440] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=453 - InputIDs[2: 432, 442] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=454 - InputIDs[2: 432, 441] - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - $end 'OperationIdentity' - SweepProfileOperationID=444 - TreatAllFacesAsNew=false - SweepPathOperationID=430 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=455 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=11 - TargetID=435 - TranslateVectorX='0mm' - TranslateVectorY='0mm' - TranslateVectorZ='0mm' - $end 'TranslateParameters' - ParentPartID=435 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=446 - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=648 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=11 - ClonedEntity=435 - CreateNewObjects=true - SectionPlane='ZX' - $end 'SectionToParameters' - ParentPartID=435 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_4' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=456 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='0mm' - Radius='9mm' - Height='0.2mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=457 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=457 - StartFaceID=458 - StartEdgeID=461 - StartVertexID=463 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Substract' - ID=474 - $begin 'SubtractParameters' - KernelVersion=11 - KeepOriginals=false - BlankPart=457 - NumToolParts=1 - ToolParts(466) - $end 'SubtractParameters' - ParentPartID=457 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=475 - StartEdgeID=476 - StartVertexID=478 - NumNewFaces=1 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=475 - $begin 'FaceGeomTopol' - FaceTopol(2, 2, 2, 2) - $begin 'FaceGeometry' - Area=5.52920307031803 - FcUVMid(4.4, 0, 0.1) - $begin 'FcTolVts' - TolVt(-4.4, 5.38844591624835e-16, 0.2, 0) - TolVt(4.4, 0, 0, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=476 - EdgeFaces(460, 475) - $begin 'EdTolVts' - TolVt(-4.4, 5.38844591624835e-16, 0.2, 0) - $end 'EdTolVts' - EdgeMidPoint(4.4, 0, 0.2) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=477 - EdgeFaces(459, 475) - $begin 'EdTolVts' - TolVt(4.4, 0, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.4, 5.38844591624835e-16, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=478 - VtPos(-4.4, 5.38844591624835e-16, 0.2) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=479 - VtPos(4.4, 0, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=456 - NumToolOperations=1 - ToolOperations(465) - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer4_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Rectangle' - ID=484 - ReferenceCoordSystemID=1 - $begin 'RectangleParameters' - KernelVersion=11 - XStart='4.45mm' - YStart='0mm' - ZStart='-0.3mm' - Width='0.3mm' - Height='4mm' - WhichAxis='Y' - $end 'RectangleParameters' - ParentPartID=485 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=485 - StartFaceID=-1 - StartEdgeID=486 - StartVertexID=490 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=494 - $begin 'LocalOperationParameters' - KernelVersion=11 - LocalOpPart=485 - $end 'LocalOperationParameters' - ParentPartID=485 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=495 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=495 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 2.23281689765741e-16, -0.15) - $begin 'FcTolVts' - TolVt(4.45, 0, -0.3, 0) - TolVt(4.45, 4.82436794902991e-17, 0, 0) - TolVt(8.45, 4.46563379531483e-16, -7.21644966006352e-16, 0) - TolVt(8.45, 3.98319700041184e-16, -0.300000000000001, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=484 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongPath' - ID=496 - $begin 'PathSweepParameters' - KernelVersion=11 - ProfileID=485 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - PathID=481 - TwistAngle='0deg' - $end 'PathSweepParameters' - ParentPartID=485 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=497 - StartEdgeID=501 - StartVertexID=-1 - NumNewFaces=4 - NumNewEdges=4 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=497 - InputIDs[2: 482, 489] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=498 - InputIDs[2: 482, 488] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=499 - InputIDs[2: 482, 487] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=500 - InputIDs[2: 482, 486] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=501 - InputIDs[2: 482, 493] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=502 - InputIDs[2: 482, 490] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=503 - InputIDs[2: 482, 492] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=504 - InputIDs[2: 482, 491] - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - $end 'OperationIdentity' - SweepProfileOperationID=494 - TreatAllFacesAsNew=false - SweepPathOperationID=480 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=505 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=11 - TargetID=485 - TranslateVectorX='0mm' - TranslateVectorY='0mm' - TranslateVectorZ='0.5mm' - $end 'TranslateParameters' - ParentPartID=485 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=496 - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=669 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=11 - ClonedEntity=485 - CreateNewObjects=true - SectionPlane='ZX' - $end 'SectionToParameters' - ParentPartID=485 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_5' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=506 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='0.5mm' - Radius='9mm' - Height='0.2mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=507 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=507 - StartFaceID=508 - StartEdgeID=511 - StartVertexID=513 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Substract' - ID=524 - $begin 'SubtractParameters' - KernelVersion=11 - KeepOriginals=false - BlankPart=507 - NumToolParts=1 - ToolParts(516) - $end 'SubtractParameters' - ParentPartID=507 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=525 - StartEdgeID=526 - StartVertexID=528 - NumNewFaces=1 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=525 - $begin 'FaceGeomTopol' - FaceTopol(2, 2, 2, 2) - $begin 'FaceGeometry' - Area=5.52920307031803 - FcUVMid(4.4, 0, 0.6) - $begin 'FcTolVts' - TolVt(-4.4, 5.38844591624835e-16, 0.7, 0) - TolVt(4.4, 0, 0.5, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=526 - EdgeFaces(510, 525) - $begin 'EdTolVts' - TolVt(-4.4, 5.38844591624835e-16, 0.7, 0) - $end 'EdTolVts' - EdgeMidPoint(4.4, 0, 0.7) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=527 - EdgeFaces(509, 525) - $begin 'EdTolVts' - TolVt(4.4, 0, 0.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.4, 5.38844591624835e-16, 0.5) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=528 - VtPos(-4.4, 5.38844591624835e-16, 0.7) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=529 - VtPos(4.4, 0, 0.5) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=506 - NumToolOperations=1 - ToolOperations(515) - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer5_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Rectangle' - ID=534 - ReferenceCoordSystemID=1 - $begin 'RectangleParameters' - KernelVersion=11 - XStart='4.45mm' - YStart='0mm' - ZStart='-0.3mm' - Width='0.3mm' - Height='4mm' - WhichAxis='Y' - $end 'RectangleParameters' - ParentPartID=535 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=535 - StartFaceID=-1 - StartEdgeID=536 - StartVertexID=540 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=544 - $begin 'LocalOperationParameters' - KernelVersion=11 - LocalOpPart=535 - $end 'LocalOperationParameters' - ParentPartID=535 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=545 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=545 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 2.23281689765741e-16, -0.15) - $begin 'FcTolVts' - TolVt(4.45, 0, -0.3, 0) - TolVt(4.45, 4.82436794902991e-17, 0, 0) - TolVt(8.45, 4.46563379531483e-16, -7.21644966006352e-16, 0) - TolVt(8.45, 3.98319700041184e-16, -0.300000000000001, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=534 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongPath' - ID=546 - $begin 'PathSweepParameters' - KernelVersion=11 - ProfileID=535 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - PathID=531 - TwistAngle='0deg' - $end 'PathSweepParameters' - ParentPartID=535 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=547 - StartEdgeID=551 - StartVertexID=-1 - NumNewFaces=4 - NumNewEdges=4 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=547 - InputIDs[2: 532, 539] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=548 - InputIDs[2: 532, 538] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=549 - InputIDs[2: 532, 537] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=550 - InputIDs[2: 532, 536] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=551 - InputIDs[2: 532, 543] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=552 - InputIDs[2: 532, 540] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=553 - InputIDs[2: 532, 542] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=554 - InputIDs[2: 532, 541] - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - $end 'OperationIdentity' - SweepProfileOperationID=544 - TreatAllFacesAsNew=false - SweepPathOperationID=530 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=555 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=11 - TargetID=535 - TranslateVectorX='0mm' - TranslateVectorY='0mm' - TranslateVectorZ='1mm' - $end 'TranslateParameters' - ParentPartID=535 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=546 - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=690 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=11 - ClonedEntity=535 - CreateNewObjects=true - SectionPlane='ZX' - $end 'SectionToParameters' - ParentPartID=535 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_6' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=556 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='1mm' - Radius='9mm' - Height='0.2mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=557 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=557 - StartFaceID=558 - StartEdgeID=561 - StartVertexID=563 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Substract' - ID=574 - $begin 'SubtractParameters' - KernelVersion=11 - KeepOriginals=false - BlankPart=557 - NumToolParts=1 - ToolParts(566) - $end 'SubtractParameters' - ParentPartID=557 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=575 - StartEdgeID=576 - StartVertexID=578 - NumNewFaces=1 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=575 - $begin 'FaceGeomTopol' - FaceTopol(2, 2, 2, 2) - $begin 'FaceGeometry' - Area=5.52920307031804 - FcUVMid(4.4, 0, 1.1) - $begin 'FcTolVts' - TolVt(-4.4, 5.38844591624835e-16, 1.2, 0) - TolVt(4.4, 0, 1, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=576 - EdgeFaces(560, 575) - $begin 'EdTolVts' - TolVt(-4.4, 5.38844591624835e-16, 1.2, 0) - $end 'EdTolVts' - EdgeMidPoint(4.4, 0, 1.2) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=577 - EdgeFaces(559, 575) - $begin 'EdTolVts' - TolVt(4.4, 0, 1, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.4, 5.38844591624835e-16, 1) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=578 - VtPos(-4.4, 5.38844591624835e-16, 1.2) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=579 - VtPos(4.4, 0, 1) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $begin 'MergedFaces' - $end 'MergedFaces' - $begin 'MergedEdges' - $end 'MergedEdges' - $end 'OperationIdentity' - BlankOperation=556 - NumToolOperations=1 - ToolOperations(565) - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer6_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Rectangle' - ID=584 - ReferenceCoordSystemID=1 - $begin 'RectangleParameters' - KernelVersion=11 - XStart='4.45mm' - YStart='0mm' - ZStart='-0.3mm' - Width='0.3mm' - Height='4mm' - WhichAxis='Y' - $end 'RectangleParameters' - ParentPartID=585 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=585 - StartFaceID=-1 - StartEdgeID=586 - StartVertexID=590 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=594 - $begin 'LocalOperationParameters' - KernelVersion=11 - LocalOpPart=585 - $end 'LocalOperationParameters' - ParentPartID=585 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=595 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=595 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 2.23281689765741e-16, -0.15) - $begin 'FcTolVts' - TolVt(4.45, 0, -0.3, 0) - TolVt(4.45, 4.82436794902991e-17, 0, 0) - TolVt(8.45, 4.46563379531483e-16, -7.21644966006352e-16, 0) - TolVt(8.45, 3.98319700041184e-16, -0.300000000000001, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=584 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongPath' - ID=596 - $begin 'PathSweepParameters' - KernelVersion=11 - ProfileID=585 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - PathID=581 - TwistAngle='0deg' - $end 'PathSweepParameters' - ParentPartID=585 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=597 - StartEdgeID=601 - StartVertexID=-1 - NumNewFaces=4 - NumNewEdges=4 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=597 - InputIDs[2: 582, 589] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=598 - InputIDs[2: 582, 588] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=599 - InputIDs[2: 582, 587] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=600 - InputIDs[2: 582, 586] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=601 - InputIDs[2: 582, 593] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=602 - InputIDs[2: 582, 590] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=603 - InputIDs[2: 582, 592] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=604 - InputIDs[2: 582, 591] - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - $end 'OperationIdentity' - SweepProfileOperationID=594 - TreatAllFacesAsNew=false - SweepPathOperationID=580 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=605 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=11 - TargetID=585 - TranslateVectorX='0mm' - TranslateVectorY='0mm' - TranslateVectorZ='1.5mm' - $end 'TranslateParameters' - ParentPartID=585 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=596 - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=711 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=11 - ClonedEntity=585 - CreateNewObjects=true - SectionPlane='ZX' - $end 'SectionToParameters' - ParentPartID=585 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer1_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='SectionFrom' - ID=607 - $begin 'CloneFromParameters' - KernelVersion=11 - SourceID=335 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=608 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=2 - NumShells=2 - NumFaces=2 - NumWires=0 - NumLoops=2 - NumCoedges=8 - NumEdges=8 - NumVertices=8 - $end 'Topology' - BodyID=608 - StartFaceID=609 - StartEdgeID=611 - StartVertexID=619 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=609 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 0, -1.15) - $begin 'FcTolVts' - TolVt(8.45, 3.98319700041184e-16, -1.3, 0) - TolVt(4.45, 0, -1.3, 0) - TolVt(4.45, 4.82436794902991e-17, -1, 0) - TolVt(8.45, 4.46563379531483e-16, -1, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=610 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(-6.45, 0, -1.15) - $begin 'FcTolVts' - TolVt(-4.45, 0, -1.3, 0) - TolVt(-8.45, 0, -1.3, 0) - TolVt(-8.45, 0, -1, 0) - TolVt(-4.45, 0, -1, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=611 - EdgeFaces(609) - $begin 'EdTolVts' - TolVt(4.45, 0, -1.3, 0) - TolVt(8.45, 3.98319700041184e-16, -1.3, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, -1.3) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=612 - EdgeFaces(609) - $begin 'EdTolVts' - TolVt(4.45, 4.82436794902991e-17, -1, 0) - TolVt(4.45, 0, -1.3, 0) - $end 'EdTolVts' - EdgeMidPoint(4.45, 0, -1.15) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=613 - EdgeFaces(609) - $begin 'EdTolVts' - TolVt(8.45, 4.46563379531483e-16, -1, 0) - TolVt(4.45, 4.82436794902991e-17, -1, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, -1) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=614 - EdgeFaces(609) - $begin 'EdTolVts' - TolVt(8.45, 3.98319700041184e-16, -1.3, 0) - TolVt(8.45, 4.46563379531483e-16, -1, 0) - $end 'EdTolVts' - EdgeMidPoint(8.45, 0, -1.15) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=615 - EdgeFaces(610) - $begin 'EdTolVts' - TolVt(-8.45, 0, -1.3, 0) - TolVt(-4.45, 0, -1.3, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, -1.3) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=616 - EdgeFaces(610) - $begin 'EdTolVts' - TolVt(-8.45, 0, -1, 0) - TolVt(-8.45, 0, -1.3, 0) - $end 'EdTolVts' - EdgeMidPoint(-8.45, 0, -1.15) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=617 - EdgeFaces(610) - $begin 'EdTolVts' - TolVt(-4.45, 0, -1, 0) - TolVt(-8.45, 0, -1, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, -0.999999999999998) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=618 - EdgeFaces(610) - $begin 'EdTolVts' - TolVt(-4.45, 0, -1.3, 0) - TolVt(-4.45, 0, -1, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.45, 0, -1.15) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=619 - VtPos(8.45, 3.98319700041184e-16, -1.3) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=620 - VtPos(4.45, 0, -1.3) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=621 - VtPos(4.45, 4.82436794902991e-17, -1) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=622 - VtPos(8.45, 4.46563379531483e-16, -1) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=623 - VtPos(-4.45, 0, -1.3) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=624 - VtPos(-8.45, 0, -1.3) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=625 - VtPos(-8.45, 0, -1) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=626 - VtPos(-4.45, 0, -1) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - PlaceHolderOpnId=606 - $end 'Operation' - $begin 'Operation' - OperationType='Separate' - ID=732 - $begin 'SeparateToParameters' - KernelVersion=11 - SeparatedPart=608 - $end 'SeparateToParameters' - ParentPartID=608 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'BodyGeomTopoForSeparate' - FaceId=609 - EdgeId=611 - VertexId=619 - BoundingBoxLow[3: 4.45, 3.98319700041184e-16, -1.3] - BoundingBoxHigh[3: 8.45, 3.98319700041184e-16, -1] - $end 'BodyGeomTopoForSeparate' - $end 'OperationIdentity' - SeparateFromOpnIDs[1: 733] - ParentOperation=607 - SeparateToLumpIndex=0 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer2_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='SectionFrom' - ID=628 - $begin 'CloneFromParameters' - KernelVersion=11 - SourceID=385 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=629 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=2 - NumShells=2 - NumFaces=2 - NumWires=0 - NumLoops=2 - NumCoedges=8 - NumEdges=8 - NumVertices=8 - $end 'Topology' - BodyID=629 - StartFaceID=630 - StartEdgeID=632 - StartVertexID=640 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=630 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 0, -0.65) - $begin 'FcTolVts' - TolVt(8.45, 3.98319700041184e-16, -0.800000000000001, 0) - TolVt(4.45, 0, -0.8, 0) - TolVt(4.45, 4.82436794902991e-17, -0.5, 0) - TolVt(8.45, 4.46563379531483e-16, -0.500000000000001, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=631 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(-6.45, 0, -0.649999999999999) - $begin 'FcTolVts' - TolVt(-4.45, 0, -0.8, 0) - TolVt(-8.45, 0, -0.800000000000001, 0) - TolVt(-8.45, 0, -0.500000000000001, 0) - TolVt(-4.45, 0, -0.5, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=632 - EdgeFaces(630) - $begin 'EdTolVts' - TolVt(4.45, 0, -0.8, 0) - TolVt(8.45, 3.98319700041184e-16, -0.800000000000001, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, -0.8) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=633 - EdgeFaces(630) - $begin 'EdTolVts' - TolVt(4.45, 4.82436794902991e-17, -0.5, 0) - TolVt(4.45, 0, -0.8, 0) - $end 'EdTolVts' - EdgeMidPoint(4.45, 0, -0.65) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=634 - EdgeFaces(630) - $begin 'EdTolVts' - TolVt(8.45, 4.46563379531483e-16, -0.500000000000001, 0) - TolVt(4.45, 4.82436794902991e-17, -0.5, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, -0.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=635 - EdgeFaces(630) - $begin 'EdTolVts' - TolVt(8.45, 3.98319700041184e-16, -0.800000000000001, 0) - TolVt(8.45, 4.46563379531483e-16, -0.500000000000001, 0) - $end 'EdTolVts' - EdgeMidPoint(8.45, 0, -0.650000000000001) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=636 - EdgeFaces(631) - $begin 'EdTolVts' - TolVt(-8.45, 0, -0.800000000000001, 0) - TolVt(-4.45, 0, -0.8, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, -0.799999999999998) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=637 - EdgeFaces(631) - $begin 'EdTolVts' - TolVt(-8.45, 0, -0.500000000000001, 0) - TolVt(-8.45, 0, -0.800000000000001, 0) - $end 'EdTolVts' - EdgeMidPoint(-8.45, 0, -0.650000000000001) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=638 - EdgeFaces(631) - $begin 'EdTolVts' - TolVt(-4.45, 0, -0.5, 0) - TolVt(-8.45, 0, -0.500000000000001, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, -0.499999999999998) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=639 - EdgeFaces(631) - $begin 'EdTolVts' - TolVt(-4.45, 0, -0.8, 0) - TolVt(-4.45, 0, -0.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.45, 0, -0.65) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=640 - VtPos(8.45, 3.98319700041184e-16, -0.800000000000001) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=641 - VtPos(4.45, 0, -0.8) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=642 - VtPos(4.45, 4.82436794902991e-17, -0.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=643 - VtPos(8.45, 4.46563379531483e-16, -0.500000000000001) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=644 - VtPos(-4.45, 0, -0.8) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=645 - VtPos(-8.45, 0, -0.800000000000001) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=646 - VtPos(-8.45, 0, -0.500000000000001) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=647 - VtPos(-4.45, 0, -0.5) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - PlaceHolderOpnId=627 - $end 'Operation' - $begin 'Operation' - OperationType='Separate' - ID=735 - $begin 'SeparateToParameters' - KernelVersion=11 - SeparatedPart=629 - $end 'SeparateToParameters' - ParentPartID=629 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'BodyGeomTopoForSeparate' - FaceId=630 - EdgeId=632 - VertexId=640 - BoundingBoxLow[3: 4.45, 3.98319700041184e-16, -0.8] - BoundingBoxHigh[3: 8.45, 3.98319700041184e-16, -0.5] - $end 'BodyGeomTopoForSeparate' - $end 'OperationIdentity' - SeparateFromOpnIDs[1: 736] - ParentOperation=628 - SeparateToLumpIndex=0 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer3_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='SectionFrom' - ID=649 - $begin 'CloneFromParameters' - KernelVersion=11 - SourceID=435 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=650 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=2 - NumShells=2 - NumFaces=2 - NumWires=0 - NumLoops=2 - NumCoedges=8 - NumEdges=8 - NumVertices=8 - $end 'Topology' - BodyID=650 - StartFaceID=651 - StartEdgeID=653 - StartVertexID=661 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=651 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 0, -0.15) - $begin 'FcTolVts' - TolVt(8.45, 3.98319700041184e-16, -0.300000000000001, 0) - TolVt(4.45, 0, -0.3, 0) - TolVt(4.45, 4.82436794902991e-17, 0, 0) - TolVt(8.45, 4.46563379531483e-16, -7.21644966006352e-16, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=652 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(-6.45, 0, -0.149999999999999) - $begin 'FcTolVts' - TolVt(-4.45, 0, -0.3, 0) - TolVt(-8.45, 0, -0.300000000000001, 0) - TolVt(-8.45, 0, -7.21644966006352e-16, 0) - TolVt(-4.45, 0, 0, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=653 - EdgeFaces(651) - $begin 'EdTolVts' - TolVt(4.45, 0, -0.3, 0) - TolVt(8.45, 3.98319700041184e-16, -0.300000000000001, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, -0.3) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=654 - EdgeFaces(651) - $begin 'EdTolVts' - TolVt(4.45, 4.82436794902991e-17, 0, 0) - TolVt(4.45, 0, -0.3, 0) - $end 'EdTolVts' - EdgeMidPoint(4.45, 0, -0.15) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=655 - EdgeFaces(651) - $begin 'EdTolVts' - TolVt(8.45, 4.46563379531483e-16, -7.21644966006352e-16, 0) - TolVt(4.45, 4.82436794902991e-17, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, -3.5978164891759e-16) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=656 - EdgeFaces(651) - $begin 'EdTolVts' - TolVt(8.45, 3.98319700041184e-16, -0.300000000000001, 0) - TolVt(8.45, 4.46563379531483e-16, -7.21644966006352e-16, 0) - $end 'EdTolVts' - EdgeMidPoint(8.45, 0, -0.150000000000001) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=657 - EdgeFaces(652) - $begin 'EdTolVts' - TolVt(-8.45, 0, -0.300000000000001, 0) - TolVt(-4.45, 0, -0.3, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, -0.299999999999998) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=658 - EdgeFaces(652) - $begin 'EdTolVts' - TolVt(-8.45, 0, -7.21644966006352e-16, 0) - TolVt(-8.45, 0, -0.300000000000001, 0) - $end 'EdTolVts' - EdgeMidPoint(-8.45, 0, -0.150000000000001) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=659 - EdgeFaces(652) - $begin 'EdTolVts' - TolVt(-4.45, 0, 0, 0) - TolVt(-8.45, 0, -7.21644966006352e-16, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, 1.9675233664529e-15) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=660 - EdgeFaces(652) - $begin 'EdTolVts' - TolVt(-4.45, 0, -0.3, 0) - TolVt(-4.45, 0, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.45, 0, -0.15) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=661 - VtPos(8.45, 3.98319700041184e-16, -0.300000000000001) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=662 - VtPos(4.45, 0, -0.3) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=663 - VtPos(4.45, 4.82436794902991e-17, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=664 - VtPos(8.45, 4.46563379531483e-16, -7.21644966006352e-16) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=665 - VtPos(-4.45, 0, -0.3) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=666 - VtPos(-8.45, 0, -0.300000000000001) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=667 - VtPos(-8.45, 0, -7.21644966006352e-16) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=668 - VtPos(-4.45, 0, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - PlaceHolderOpnId=648 - $end 'Operation' - $begin 'Operation' - OperationType='Separate' - ID=738 - $begin 'SeparateToParameters' - KernelVersion=11 - SeparatedPart=650 - $end 'SeparateToParameters' - ParentPartID=650 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'BodyGeomTopoForSeparate' - FaceId=651 - EdgeId=653 - VertexId=661 - BoundingBoxLow[3: 4.45, 3.98319700041184e-16, -0.3] - BoundingBoxHigh[3: 8.45, 3.98319700041184e-16, 0] - $end 'BodyGeomTopoForSeparate' - $end 'OperationIdentity' - SeparateFromOpnIDs[1: 739] - ParentOperation=649 - SeparateToLumpIndex=0 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer4_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='SectionFrom' - ID=670 - $begin 'CloneFromParameters' - KernelVersion=11 - SourceID=485 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=671 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=2 - NumShells=2 - NumFaces=2 - NumWires=0 - NumLoops=2 - NumCoedges=8 - NumEdges=8 - NumVertices=8 - $end 'Topology' - BodyID=671 - StartFaceID=672 - StartEdgeID=674 - StartVertexID=682 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=672 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 0, 0.35) - $begin 'FcTolVts' - TolVt(8.45, 3.98319700041184e-16, 0.199999999999999, 0) - TolVt(4.45, 0, 0.2, 0) - TolVt(4.45, 4.82436794902991e-17, 0.5, 0) - TolVt(8.45, 4.46563379531483e-16, 0.499999999999999, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=673 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(-6.45, 0, 0.350000000000001) - $begin 'FcTolVts' - TolVt(-4.45, 0, 0.2, 0) - TolVt(-8.45, 0, 0.199999999999999, 0) - TolVt(-8.45, 0, 0.499999999999999, 0) - TolVt(-4.45, 0, 0.5, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=674 - EdgeFaces(672) - $begin 'EdTolVts' - TolVt(4.45, 0, 0.2, 0) - TolVt(8.45, 3.98319700041184e-16, 0.199999999999999, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, 0.2) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=675 - EdgeFaces(672) - $begin 'EdTolVts' - TolVt(4.45, 4.82436794902991e-17, 0.5, 0) - TolVt(4.45, 0, 0.2, 0) - $end 'EdTolVts' - EdgeMidPoint(4.45, 0, 0.35) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=676 - EdgeFaces(672) - $begin 'EdTolVts' - TolVt(8.45, 4.46563379531483e-16, 0.499999999999999, 0) - TolVt(4.45, 4.82436794902991e-17, 0.5, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, 0.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=677 - EdgeFaces(672) - $begin 'EdTolVts' - TolVt(8.45, 3.98319700041184e-16, 0.199999999999999, 0) - TolVt(8.45, 4.46563379531483e-16, 0.499999999999999, 0) - $end 'EdTolVts' - EdgeMidPoint(8.45, 0, 0.349999999999999) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=678 - EdgeFaces(673) - $begin 'EdTolVts' - TolVt(-8.45, 0, 0.199999999999999, 0) - TolVt(-4.45, 0, 0.2, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, 0.200000000000002) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=679 - EdgeFaces(673) - $begin 'EdTolVts' - TolVt(-8.45, 0, 0.499999999999999, 0) - TolVt(-8.45, 0, 0.199999999999999, 0) - $end 'EdTolVts' - EdgeMidPoint(-8.45, 0, 0.349999999999999) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=680 - EdgeFaces(673) - $begin 'EdTolVts' - TolVt(-4.45, 0, 0.5, 0) - TolVt(-8.45, 0, 0.499999999999999, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, 0.500000000000002) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=681 - EdgeFaces(673) - $begin 'EdTolVts' - TolVt(-4.45, 0, 0.2, 0) - TolVt(-4.45, 0, 0.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.45, 0, 0.35) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=682 - VtPos(8.45, 3.98319700041184e-16, 0.199999999999999) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=683 - VtPos(4.45, 0, 0.2) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=684 - VtPos(4.45, 4.82436794902991e-17, 0.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=685 - VtPos(8.45, 4.46563379531483e-16, 0.499999999999999) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=686 - VtPos(-4.45, 0, 0.2) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=687 - VtPos(-8.45, 0, 0.199999999999999) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=688 - VtPos(-8.45, 0, 0.499999999999999) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=689 - VtPos(-4.45, 0, 0.5) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - PlaceHolderOpnId=669 - $end 'Operation' - $begin 'Operation' - OperationType='Separate' - ID=741 - $begin 'SeparateToParameters' - KernelVersion=11 - SeparatedPart=671 - $end 'SeparateToParameters' - ParentPartID=671 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'BodyGeomTopoForSeparate' - FaceId=672 - EdgeId=674 - VertexId=682 - BoundingBoxLow[3: 4.45, 3.98319700041184e-16, 0.2] - BoundingBoxHigh[3: 8.45, 3.98319700041184e-16, 0.5] - $end 'BodyGeomTopoForSeparate' - $end 'OperationIdentity' - SeparateFromOpnIDs[1: 742] - ParentOperation=670 - SeparateToLumpIndex=0 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer5_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='SectionFrom' - ID=691 - $begin 'CloneFromParameters' - KernelVersion=11 - SourceID=535 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=692 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=2 - NumShells=2 - NumFaces=2 - NumWires=0 - NumLoops=2 - NumCoedges=8 - NumEdges=8 - NumVertices=8 - $end 'Topology' - BodyID=692 - StartFaceID=693 - StartEdgeID=695 - StartVertexID=703 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=693 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 0, 0.85) - $begin 'FcTolVts' - TolVt(8.45, 3.98319700041184e-16, 0.699999999999999, 0) - TolVt(4.45, 0, 0.7, 0) - TolVt(4.45, 4.82436794902991e-17, 1, 0) - TolVt(8.45, 4.46563379531483e-16, 0.999999999999999, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=694 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(-6.45, 0, 0.850000000000001) - $begin 'FcTolVts' - TolVt(-4.45, 0, 0.7, 0) - TolVt(-8.45, 0, 0.699999999999999, 0) - TolVt(-8.45, 0, 0.999999999999999, 0) - TolVt(-4.45, 0, 1, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=695 - EdgeFaces(693) - $begin 'EdTolVts' - TolVt(4.45, 0, 0.7, 0) - TolVt(8.45, 3.98319700041184e-16, 0.699999999999999, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, 0.7) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=696 - EdgeFaces(693) - $begin 'EdTolVts' - TolVt(4.45, 4.82436794902991e-17, 1, 0) - TolVt(4.45, 0, 0.7, 0) - $end 'EdTolVts' - EdgeMidPoint(4.45, 0, 0.85) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=697 - EdgeFaces(693) - $begin 'EdTolVts' - TolVt(8.45, 4.46563379531483e-16, 0.999999999999999, 0) - TolVt(4.45, 4.82436794902991e-17, 1, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, 1) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=698 - EdgeFaces(693) - $begin 'EdTolVts' - TolVt(8.45, 3.98319700041184e-16, 0.699999999999999, 0) - TolVt(8.45, 4.46563379531483e-16, 0.999999999999999, 0) - $end 'EdTolVts' - EdgeMidPoint(8.45, 0, 0.849999999999999) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=699 - EdgeFaces(694) - $begin 'EdTolVts' - TolVt(-8.45, 0, 0.699999999999999, 0) - TolVt(-4.45, 0, 0.7, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, 0.700000000000002) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=700 - EdgeFaces(694) - $begin 'EdTolVts' - TolVt(-8.45, 0, 0.999999999999999, 0) - TolVt(-8.45, 0, 0.699999999999999, 0) - $end 'EdTolVts' - EdgeMidPoint(-8.45, 0, 0.849999999999999) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=701 - EdgeFaces(694) - $begin 'EdTolVts' - TolVt(-4.45, 0, 1, 0) - TolVt(-8.45, 0, 0.999999999999999, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, 1) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=702 - EdgeFaces(694) - $begin 'EdTolVts' - TolVt(-4.45, 0, 0.7, 0) - TolVt(-4.45, 0, 1, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.45, 0, 0.85) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=703 - VtPos(8.45, 3.98319700041184e-16, 0.699999999999999) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=704 - VtPos(4.45, 0, 0.7) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=705 - VtPos(4.45, 4.82436794902991e-17, 1) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=706 - VtPos(8.45, 4.46563379531483e-16, 0.999999999999999) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=707 - VtPos(-4.45, 0, 0.7) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=708 - VtPos(-8.45, 0, 0.699999999999999) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=709 - VtPos(-8.45, 0, 0.999999999999999) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=710 - VtPos(-4.45, 0, 1) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - PlaceHolderOpnId=690 - $end 'Operation' - $begin 'Operation' - OperationType='Separate' - ID=744 - $begin 'SeparateToParameters' - KernelVersion=11 - SeparatedPart=692 - $end 'SeparateToParameters' - ParentPartID=692 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'BodyGeomTopoForSeparate' - FaceId=693 - EdgeId=695 - VertexId=703 - BoundingBoxLow[3: 4.45, 3.98319700041184e-16, 0.7] - BoundingBoxHigh[3: 8.45, 3.98319700041184e-16, 1] - $end 'BodyGeomTopoForSeparate' - $end 'OperationIdentity' - SeparateFromOpnIDs[1: 745] - ParentOperation=691 - SeparateToLumpIndex=0 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer6_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='SectionFrom' - ID=712 - $begin 'CloneFromParameters' - KernelVersion=11 - SourceID=585 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=713 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=2 - NumShells=2 - NumFaces=2 - NumWires=0 - NumLoops=2 - NumCoedges=8 - NumEdges=8 - NumVertices=8 - $end 'Topology' - BodyID=713 - StartFaceID=714 - StartEdgeID=716 - StartVertexID=724 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=714 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(6.45, 0, 1.35) - $begin 'FcTolVts' - TolVt(8.45, 3.98319700041184e-16, 1.2, 0) - TolVt(4.45, 0, 1.2, 0) - TolVt(4.45, 4.82436794902991e-17, 1.5, 0) - TolVt(8.45, 4.46563379531483e-16, 1.5, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=715 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1.2 - FcUVMid(-6.45, 0, 1.35) - $begin 'FcTolVts' - TolVt(-4.45, 0, 1.2, 0) - TolVt(-8.45, 0, 1.2, 0) - TolVt(-8.45, 0, 1.5, 0) - TolVt(-4.45, 0, 1.5, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=716 - EdgeFaces(714) - $begin 'EdTolVts' - TolVt(4.45, 0, 1.2, 0) - TolVt(8.45, 3.98319700041184e-16, 1.2, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, 1.2) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=717 - EdgeFaces(714) - $begin 'EdTolVts' - TolVt(4.45, 4.82436794902991e-17, 1.5, 0) - TolVt(4.45, 0, 1.2, 0) - $end 'EdTolVts' - EdgeMidPoint(4.45, 0, 1.35) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=718 - EdgeFaces(714) - $begin 'EdTolVts' - TolVt(8.45, 4.46563379531483e-16, 1.5, 0) - TolVt(4.45, 4.82436794902991e-17, 1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(6.45, 0, 1.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=719 - EdgeFaces(714) - $begin 'EdTolVts' - TolVt(8.45, 3.98319700041184e-16, 1.2, 0) - TolVt(8.45, 4.46563379531483e-16, 1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(8.45, 0, 1.35) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=720 - EdgeFaces(715) - $begin 'EdTolVts' - TolVt(-8.45, 0, 1.2, 0) - TolVt(-4.45, 0, 1.2, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, 1.2) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=721 - EdgeFaces(715) - $begin 'EdTolVts' - TolVt(-8.45, 0, 1.5, 0) - TolVt(-8.45, 0, 1.2, 0) - $end 'EdTolVts' - EdgeMidPoint(-8.45, 0, 1.35) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=722 - EdgeFaces(715) - $begin 'EdTolVts' - TolVt(-4.45, 0, 1.5, 0) - TolVt(-8.45, 0, 1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-6.45, 0, 1.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=723 - EdgeFaces(715) - $begin 'EdTolVts' - TolVt(-4.45, 0, 1.2, 0) - TolVt(-4.45, 0, 1.5, 0) - $end 'EdTolVts' - EdgeMidPoint(-4.45, 0, 1.35) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=724 - VtPos(8.45, 3.98319700041184e-16, 1.2) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=725 - VtPos(4.45, 0, 1.2) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=726 - VtPos(4.45, 4.82436794902991e-17, 1.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=727 - VtPos(8.45, 4.46563379531483e-16, 1.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=728 - VtPos(-4.45, 0, 1.2) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=729 - VtPos(-8.45, 0, 1.2) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=730 - VtPos(-8.45, 0, 1.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=731 - VtPos(-4.45, 0, 1.5) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - PlaceHolderOpnId=711 - $end 'Operation' - $begin 'Operation' - OperationType='Separate' - ID=747 - $begin 'SeparateToParameters' - KernelVersion=11 - SeparatedPart=713 - $end 'SeparateToParameters' - ParentPartID=713 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'BodyGeomTopoForSeparate' - FaceId=714 - EdgeId=716 - VertexId=724 - BoundingBoxLow[3: 4.45, 3.98319700041184e-16, 1.2] - BoundingBoxHigh[3: 8.45, 3.98319700041184e-16, 1.5] - $end 'BodyGeomTopoForSeparate' - $end 'OperationIdentity' - SeparateFromOpnIDs[1: 748] - ParentOperation=712 - SeparateToLumpIndex=0 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Region' - Flags='Wireframe#' - Color='(255 0 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Region' - ID=750 - ReferenceCoordSystemID=1 - $begin 'RegionParameters' - KernelVersion=11 - '+XPaddingType'='Percentage Offset' - '+XPadding'='50' - '-XPaddingType'='Percentage Offset' - '-XPadding'='50' - '+YPaddingType'='Percentage Offset' - '+YPadding'='50' - '-YPaddingType'='Percentage Offset' - '-YPadding'='50' - '+ZPaddingType'='Percentage Offset' - '+ZPadding'='50' - '-ZPaddingType'='Percentage Offset' - '-ZPadding'='50' - $end 'RegionParameters' - ParentPartID=751 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=751 - StartFaceID=752 - StartEdgeID=758 - StartVertexID=770 - NumNewFaces=6 - NumNewEdges=12 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - IsXZ2DModeler=false - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $end 'ToplevelParts' - $begin 'OperandParts' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Polyline1' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Polyline' - ID=33 - ReferenceCoordSystemID=1 - $begin 'PolylineParameters' - KernelVersion=11 - IsPolylineClosed=true - $begin 'PolylinePoints' - $begin 'PLPoint' - X='-6mm' - Y='-5.6mm' - Z='-3.5mm' - $end 'PLPoint' - $begin 'PLPoint' - X='-6mm' - Y='5.6mm' - Z='-3.5mm' - $end 'PLPoint' - $begin 'PLPoint' - X='-2mm' - Y='3.91918358845mm' - Z='-3.5mm' - $end 'PLPoint' - $begin 'PLPoint' - X='-2mm' - Y='-3.91918358845mm' - Z='-3.5mm' - $end 'PLPoint' - $begin 'PLPoint' - X='-6mm' - Y='-5.6mm' - Z='-3.5mm' - $end 'PLPoint' - $end 'PolylinePoints' - $begin 'PolylineSegments' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=0 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=1 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=2 - NoOfPoints=2 - $end 'PLSegment' - $begin 'PLSegment' - SegmentType='Line' - StartIndex=3 - NoOfPoints=2 - $end 'PLSegment' - $end 'PolylineSegments' - $begin 'PolylineXSection' - XSectionType='None' - XSectionOrient='Auto' - XSectionWidth='0mm' - XSectionTopWidth='0mm' - XSectionHeight='0mm' - XSectionNumSegments='0' - XSectionBendType='Corner' - $end 'PolylineXSection' - $end 'PolylineParameters' - ParentPartID=34 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=34 - StartFaceID=-1 - StartEdgeID=35 - StartVertexID=39 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=43 - $begin 'LocalOperationParameters' - KernelVersion=11 - LocalOpPart=34 - $end 'LocalOperationParameters' - ParentPartID=34 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=44 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=44 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=38.0767343538 - FcUVMid(-4, -2.22044604925031e-16, -3.5) - $begin 'FcTolVts' - TolVt(-6, -5.6, -3.5, 0) - TolVt(-6, 5.6, -3.5, 0) - TolVt(-2, 3.91918358845, -3.5, 0) - TolVt(-2, -3.91918358845, -3.5, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=33 - $end 'Operation' - $begin 'Operation' - OperationType='SweepAlongVector' - ID=45 - ReferenceCoordSystemID=1 - $begin 'VectorSweepParameters' - KernelVersion=11 - ProfileID=34 - DraftAngle='0deg' - DraftType='Round' - CheckFaceFaceIntersection=false - SweepVectorX='0mm' - SweepVectorY='0mm' - SweepVectorZ='3.5mm' - $end 'VectorSweepParameters' - ParentPartID=34 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=-1 - StartFaceID=46 - StartEdgeID=51 - StartVertexID=59 - NumNewFaces=5 - NumNewEdges=8 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - BlockVersionID=1 - $begin 'FaceAnnotationMap' - $begin 'AnnotationElement' - ElementID=46 - InputIDs[1: 36] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=47 - InputIDs[1: 37] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=48 - InputIDs[1: 38] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=49 - InputIDs[1: 35] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=50 - InputIDs[1: 44] - $end 'AnnotationElement' - $end 'FaceAnnotationMap' - $begin 'EdgeAnnotationMap' - $begin 'AnnotationElement' - ElementID=51 - InputIDs[1: 36] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=52 - InputIDs[1: 41] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=53 - InputIDs[1: 40] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=54 - InputIDs[1: 37] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=55 - InputIDs[1: 42] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=56 - InputIDs[1: 38] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=57 - InputIDs[1: 39] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=58 - InputIDs[1: 35] - $end 'AnnotationElement' - $end 'EdgeAnnotationMap' - $begin 'VertexAnnotationMap' - $begin 'AnnotationElement' - ElementID=59 - InputIDs[1: 40] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=60 - InputIDs[1: 41] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=61 - InputIDs[1: 42] - $end 'AnnotationElement' - $begin 'AnnotationElement' - ElementID=62 - InputIDs[1: 39] - $end 'AnnotationElement' - $end 'VertexAnnotationMap' - $begin 'LegacyProfileIDMaps' - $end 'LegacyProfileIDMaps' - $end 'OperationIdentity' - SweepProfileOperationID=43 - TreatAllFacesAsNew=false - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='XCyl1' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=70 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-1.5mm' - Radius='9mm' - Height='1.5mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=71 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=71 - StartFaceID=72 - StartEdgeID=75 - StartVertexID=77 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PQ_Core_Bottom_1' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyMirror' - ID=100 - $begin 'CloneFromParameters' - KernelVersion=11 - SourceID=6 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=101 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=101 - StartFaceID=102 - StartEdgeID=114 - StartVertexID=144 - NumNewFaces=12 - NumNewEdges=30 - NumNewVertices=20 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('7'='106', '8'='110', '9'='111', '10'='112', '11'='113', '46'='107', '47'='108', '48'='104', '64'='105', '65'='109', '80'='102', '81'='103') - CloneEdges('14'='131', '15'='130', '16'='129', '18'='141', '19'='140', '20'='139', '21'='142', '22'='127', '23'='143', '24'='137', '36'='134', '37'='136', '38'='124', '52'='135', '53'='133', '55'='123', '57'='125', '66'='128', '67'='126', '68'='138', '69'='132', '82'='114', '83'='117', '84'='116', '85'='115', '86'='118', '87'='122', '88'='121', '89'='120', '90'='119') - CloneVertices('25'='155', '26'='158', '27'='157', '28'='156', '29'='161', '30'='154', '31'='163', '32'='162', '39'='153', '40'='159', '41'='160', '42'='152', '91'='145', '92'='144', '93'='147', '94'='146', '95'='148', '96'='151', '97'='150', '98'='149') - CloneIdentityHelperKernelType=0 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(7, 8, 9, 10, 11, 46, 47, 48, 64, 65, 80, 81) - OriginalEdgeIDs(14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 36, 37, 38, 52, 53, 55, 57, 66, 67, 68, 69, 82, 83, 84, 85, 86, 87, 88, 89, 90) - OriginalVertexIDs(25, 26, 27, 28, 29, 30, 31, 32, 39, 40, 41, 42, 91, 92, 93, 94, 95, 96, 97, 98) - $end 'OperationIdentity' - PlaceHolderOpnId=99 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='XCyl2' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=164 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-3.5mm' - Radius='4.4mm' - Height='3.5mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=165 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=165 - StartFaceID=166 - StartEdgeID=169 - StartVertexID=171 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='BoardSlot_1' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=315 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-1.5mm' - Radius='4.4mm' - Height='3mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=316 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=316 - StartFaceID=317 - StartEdgeID=320 - StartVertexID=322 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Tool1_1' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=330 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-0.15mm' - Radius='6.45mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=331 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=1 - NumEdges=1 - NumVertices=1 - $end 'Topology' - BodyID=331 - StartFaceID=-1 - StartEdgeID=332 - StartVertexID=333 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=1 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='BoardSlot_2' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=365 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-1mm' - Radius='4.4mm' - Height='3mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=366 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=366 - StartFaceID=367 - StartEdgeID=370 - StartVertexID=372 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Tool2_1' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=380 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-0.15mm' - Radius='6.45mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=381 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=1 - NumEdges=1 - NumVertices=1 - $end 'Topology' - BodyID=381 - StartFaceID=-1 - StartEdgeID=382 - StartVertexID=383 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=1 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='BoardSlot_3' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=415 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-0.5mm' - Radius='4.4mm' - Height='3mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=416 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=416 - StartFaceID=417 - StartEdgeID=420 - StartVertexID=422 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Tool3_1' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=430 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-0.15mm' - Radius='6.45mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=431 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=1 - NumEdges=1 - NumVertices=1 - $end 'Topology' - BodyID=431 - StartFaceID=-1 - StartEdgeID=432 - StartVertexID=433 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=1 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='BoardSlot_4' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=465 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='0mm' - Radius='4.4mm' - Height='3mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=466 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=466 - StartFaceID=467 - StartEdgeID=470 - StartVertexID=472 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Tool4_1' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=480 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-0.15mm' - Radius='6.45mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=481 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=1 - NumEdges=1 - NumVertices=1 - $end 'Topology' - BodyID=481 - StartFaceID=-1 - StartEdgeID=482 - StartVertexID=483 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=1 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='BoardSlot_5' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=515 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='0.5mm' - Radius='4.4mm' - Height='3mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=516 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=516 - StartFaceID=517 - StartEdgeID=520 - StartVertexID=522 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Tool5_1' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=530 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-0.15mm' - Radius='6.45mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=531 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=1 - NumEdges=1 - NumVertices=1 - $end 'Topology' - BodyID=531 - StartFaceID=-1 - StartEdgeID=532 - StartVertexID=533 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=1 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='BoardSlot_6' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Cylinder' - ID=565 - ReferenceCoordSystemID=1 - $begin 'CylinderParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='1mm' - Radius='4.4mm' - Height='3mm' - WhichAxis='Z' - NumSides='0' - $end 'CylinderParameters' - ParentPartID=566 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=3 - NumWires=0 - NumLoops=4 - NumCoedges=4 - NumEdges=2 - NumVertices=2 - $end 'Topology' - BodyID=566 - StartFaceID=567 - StartEdgeID=570 - StartVertexID=572 - NumNewFaces=3 - NumNewEdges=2 - NumNewVertices=2 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Tool6_1' - Flags='' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='""' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Circle' - ID=580 - ReferenceCoordSystemID=1 - $begin 'CircleParameters' - KernelVersion=11 - XCenter='0mm' - YCenter='0mm' - ZCenter='-0.15mm' - Radius='6.45mm' - WhichAxis='Z' - NumSegments='0' - $end 'CircleParameters' - ParentPartID=581 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=1 - NumEdges=1 - NumVertices=1 - $end 'Topology' - BodyID=581 - StartFaceID=-1 - StartEdgeID=582 - StartVertexID=583 - NumNewFaces=0 - NumNewEdges=1 - NumNewVertices=1 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $end 'OperandParts' - $begin 'Planes' - $end 'Planes' - $begin 'Points' - $end 'Points' - $begin 'GeometryEntityLists' - $end 'GeometryEntityLists' - $begin 'RegionIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=751 - StartFaceID=752 - StartEdgeID=758 - StartVertexID=770 - NumNewFaces=6 - NumNewEdges=12 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - IsXZ2DModeler=false - $end 'RegionIdentity' - $begin 'CachedNames' - $begin 'allobjects' - allobjects(-1) - $end 'allobjects' - $begin 'board_' - board_(1, 2, 3, 4, 5, 6) - $end 'board_' - $begin 'boardslot_' - boardslot_(1, 2, 3, 4, 5, 6) - $end 'boardslot_' - $begin 'global' - global(-1) - $end 'global' - $begin 'layer1_' - layer1_(1) - $end 'layer1_' - $begin 'layer1_1_section' - layer1_1_section(1) - $end 'layer1_1_section' - $begin 'layer2_' - layer2_(1) - $end 'layer2_' - $begin 'layer2_1_section' - layer2_1_section(1) - $end 'layer2_1_section' - $begin 'layer3_' - layer3_(1) - $end 'layer3_' - $begin 'layer3_1_section' - layer3_1_section(1) - $end 'layer3_1_section' - $begin 'layer4_' - layer4_(1) - $end 'layer4_' - $begin 'layer4_1_section' - layer4_1_section(1) - $end 'layer4_1_section' - $begin 'layer5_' - layer5_(1) - $end 'layer5_' - $begin 'layer5_1_section' - layer5_1_section(1) - $end 'layer5_1_section' - $begin 'layer6_' - layer6_(1) - $end 'layer6_' - $begin 'layer6_1_section' - layer6_1_section(1) - $end 'layer6_1_section' - $begin 'model' - model(-1) - $end 'model' - $begin 'polyline' - polyline(1) - $end 'polyline' - $begin 'pq_core_bottom' - pq_core_bottom(-1) - $end 'pq_core_bottom' - $begin 'pq_core_bottom_' - pq_core_bottom_(1) - $end 'pq_core_bottom_' - $begin 'pq_core_top' - pq_core_top(-1) - $end 'pq_core_top' - $begin 'region' - region(-1) - $end 'region' - $begin 'tool1_' - tool1_(1) - $end 'tool1_' - $begin 'tool2_' - tool2_(1) - $end 'tool2_' - $begin 'tool3_' - tool3_(1) - $end 'tool3_' - $begin 'tool4_' - tool4_(1) - $end 'tool4_' - $begin 'tool5_' - tool5_(1) - $end 'tool5_' - $begin 'tool6_' - tool6_(1) - $end 'tool6_' - $begin 'xcyl' - xcyl(1, 2) - $end 'xcyl' - $end 'CachedNames' - $end 'GeometryOperations' - $begin 'GeometryDependencies' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 5) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 63) - DependencyObject('GeometryBodyOperation', 5) - DependencyObject('GeometryBodyOperation', 45) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 79) - DependencyObject('GeometryBodyOperation', 63) - DependencyObject('GeometryBodyOperation', 70) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 99) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=3 - DependencyObject('GeometryBodyOperation', 173) - DependencyObject('GeometryBodyOperation', 79) - DependencyObject('GeometryBodyOperation', 100) - DependencyObject('GeometryBodyOperation', 164) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 178) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 179) - DependencyObject('GeometryOperation', 178) - DependencyObject('GeometryBodyOperation', 173) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 306) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 324) - DependencyObject('GeometryBodyOperation', 306) - DependencyObject('GeometryBodyOperation', 315) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 334) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 344) - DependencyObject('GeometryBodyOperation', 334) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 346) - DependencyObject('GeometryBodyOperation', 344) - DependencyObject('GeometryBodyOperation', 330) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 355) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 346) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 606) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 356) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 374) - DependencyObject('GeometryBodyOperation', 356) - DependencyObject('GeometryBodyOperation', 365) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 384) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 394) - DependencyObject('GeometryBodyOperation', 384) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 396) - DependencyObject('GeometryBodyOperation', 394) - DependencyObject('GeometryBodyOperation', 380) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 405) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 396) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 627) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 406) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 424) - DependencyObject('GeometryBodyOperation', 406) - DependencyObject('GeometryBodyOperation', 415) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 434) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 444) - DependencyObject('GeometryBodyOperation', 434) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 446) - DependencyObject('GeometryBodyOperation', 444) - DependencyObject('GeometryBodyOperation', 430) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 455) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 446) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 648) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 456) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 474) - DependencyObject('GeometryBodyOperation', 456) - DependencyObject('GeometryBodyOperation', 465) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 484) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 494) - DependencyObject('GeometryBodyOperation', 484) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 496) - DependencyObject('GeometryBodyOperation', 494) - DependencyObject('GeometryBodyOperation', 480) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 505) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 496) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 669) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 506) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 524) - DependencyObject('GeometryBodyOperation', 506) - DependencyObject('GeometryBodyOperation', 515) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 534) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 544) - DependencyObject('GeometryBodyOperation', 534) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 546) - DependencyObject('GeometryBodyOperation', 544) - DependencyObject('GeometryBodyOperation', 530) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 555) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 546) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 690) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 556) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 574) - DependencyObject('GeometryBodyOperation', 556) - DependencyObject('GeometryBodyOperation', 565) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 584) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 594) - DependencyObject('GeometryBodyOperation', 584) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 596) - DependencyObject('GeometryBodyOperation', 594) - DependencyObject('GeometryBodyOperation', 580) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 605) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 596) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 711) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=3 - DependencyObject('GeometryBodyOperation', 607) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryOperation', 606) - DependencyObject('GeometryBodyOperation', 355) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 732) - DependencyObject('GeometryBodyOperation', 607) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=3 - DependencyObject('GeometryBodyOperation', 628) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryOperation', 627) - DependencyObject('GeometryBodyOperation', 405) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 735) - DependencyObject('GeometryBodyOperation', 628) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=3 - DependencyObject('GeometryBodyOperation', 649) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryOperation', 648) - DependencyObject('GeometryBodyOperation', 455) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 738) - DependencyObject('GeometryBodyOperation', 649) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=3 - DependencyObject('GeometryBodyOperation', 670) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryOperation', 669) - DependencyObject('GeometryBodyOperation', 505) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 741) - DependencyObject('GeometryBodyOperation', 670) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=3 - DependencyObject('GeometryBodyOperation', 691) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryOperation', 690) - DependencyObject('GeometryBodyOperation', 555) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 744) - DependencyObject('GeometryBodyOperation', 691) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=3 - DependencyObject('GeometryBodyOperation', 712) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryOperation', 711) - DependencyObject('GeometryBodyOperation', 605) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 747) - DependencyObject('GeometryBodyOperation', 712) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 750) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 33) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 43) - DependencyObject('GeometryBodyOperation', 33) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 45) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 43) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 70) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 100) - DependencyObject('GeometryOperation', 99) - DependencyObject('GeometryBodyOperation', 79) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 164) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 315) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 330) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 365) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 380) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 415) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 430) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 465) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 480) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 515) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 530) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 565) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 580) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $end 'GeometryDependencies' - $end 'GeometryCore' - GroupByMaterial=true - GroupSheetByMaterial=true - GroupCompByDefID=true - DoNotOrganizeUnderGroup=false - DoNotOrganizeUnderComponent=false - OrganizeLightweight=false - ShowGroup=true - $begin 'LastUserInputs' - $end 'LastUserInputs' - $end 'ModelSetup' - $begin '3DComponent' - $end '3DComponent' - $begin 'BoundarySetup' - $begin 'GlobalBoundData' - CoreLossObjectIDs[3: 6, 180, 307] - ExternalCircuitFile[0:] - ExternalCircuitFileExtenstion='' - InductorNames[0:] - SourceNames[0:] - SourceType[0:] - OriginalPath='' - OriginalDesign='' - CurrentProbes() - VoltageProbes() - $begin 'ParamValues' - $end 'ParamValues' - $begin 'EddyEffect' - $begin 'Eddy Effect Data' - 'Object ID'=335 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=385 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=435 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=485 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=535 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=585 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=6 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=180 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=307 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=357 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=407 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=457 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=507 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=557 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=751 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $end 'EddyEffect' - $end 'GlobalBoundData' - $begin 'Boundaries' - NextUniqueID=15 - MoveBackwards=false - $begin 'CoilTerminal_1' - ID=7 - BoundType='Coil Terminal' - IsComponent=false - Objects(608) - ParentBndID=13 - 'Conductor number'='1' - Winding=13 - 'Point out of terminal'=false - $end 'CoilTerminal_1' - $begin 'CoilTerminal_2' - ID=8 - BoundType='Coil Terminal' - IsComponent=false - Objects(629) - ParentBndID=13 - 'Conductor number'='1' - Winding=13 - 'Point out of terminal'=false - $end 'CoilTerminal_2' - $begin 'CoilTerminal_3' - ID=9 - BoundType='Coil Terminal' - IsComponent=false - Objects(650) - ParentBndID=14 - 'Conductor number'='1' - Winding=14 - 'Point out of terminal'=false - $end 'CoilTerminal_3' - $begin 'CoilTerminal_4' - ID=10 - BoundType='Coil Terminal' - IsComponent=false - Objects(671) - ParentBndID=14 - 'Conductor number'='1' - Winding=14 - 'Point out of terminal'=false - $end 'CoilTerminal_4' - $begin 'CoilTerminal_5' - ID=11 - BoundType='Coil Terminal' - IsComponent=false - Objects(692) - ParentBndID=13 - 'Conductor number'='1' - Winding=13 - 'Point out of terminal'=false - $end 'CoilTerminal_5' - $begin 'CoilTerminal_6' - ID=12 - BoundType='Coil Terminal' - IsComponent=false - Objects(713) - ParentBndID=13 - 'Conductor number'='1' - Winding=13 - 'Point out of terminal'=false - $end 'CoilTerminal_6' - $begin 'pri' - ID=13 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=true - Current='0mA' - Resistance='0ohm' - Inductance='0nH' - Voltage='Vp' - ParallelBranchesNum='1' - Phase='0deg' - $end 'pri' - $begin 'sec' - ID=14 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=true - Current='0mA' - Resistance='Rload' - Inductance='0nH' - Voltage='0mV' - ParallelBranchesNum='1' - Phase='0deg' - $end 'sec' - $end 'Boundaries' - $begin 'ProductSpecificData' - $end 'ProductSpecificData' - $end 'BoundarySetup' - $begin 'MaxwellParameterSetup' - $begin 'MaxwellParameters' - NextUniqueID=4 - MoveBackwards=false - $end 'MaxwellParameters' - MotionParams() - $end 'MaxwellParameterSetup' - $begin 'MeshSetup' - $begin 'MeshSettings' - $begin 'GlobalSurfApproximation' - CurvedSurfaceApproxChoice='UseSlider' - SliderMeshSettings=5 - $end 'GlobalSurfApproximation' - $begin 'GlobalCurvilinear' - Apply=true - $end 'GlobalCurvilinear' - $begin 'GlobalModelRes' - UseAutoLength=true - $end 'GlobalModelRes' - MeshMethod='Auto' - UseLegacyFaceterForTauVolumeMesh=false - DynamicSurfaceResolution=false - UseFlexMeshingForTAUvolumeMesh=false - UseAlternativeMeshMethodsAsFallBack=true - AllowPhiForLayeredGeometry=false - $end 'MeshSettings' - $begin 'MeshOperations' - NextUniqueID=2 - MoveBackwards=false - $begin 'Length_Coil' - RefineInside=false - ID=0 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(335, 385, 435, 485, 535, 585) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='1.065mm' - $end 'Length_Coil' - $begin 'Length_Core' - RefineInside=false - ID=1 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(6, 180) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='1.065mm' - $end 'Length_Core' - $end 'MeshOperations' - $end 'MeshSetup' - $begin 'AnalysisSetup' - $begin 'SolveSetups' - NextUniqueID=1 - MoveBackwards=false - $begin 'Setup1' - ID=0 - SetupType='EddyCurrent' - Enabled=true - $begin 'MeshLink' - ImportMesh=false - $end 'MeshLink' - MaximumPasses=5 - MinimumPasses=2 - MinimumConvergedPasses=1 - PercentRefinement=30 - SolveFieldOnly=false - PercentError=1 - SolveMatrixAtLast=true - UseNonLinearIterNum=false - UseCacheFor('Pass') - UseIterativeSolver=false - RelativeResidual=0.0001 - NonLinearResidual=0.0001 - SmoothBHCurve=false - Frequency='100000Hz' - HasSweepSetup=false - UseHighOrderShapeFunc=false - UseMuLink=false - $end 'Setup1' - $end 'SolveSetups' - $end 'AnalysisSetup' - $begin 'Optimetrics' - $begin 'OptimetricsSetups' - NextUniqueID=0 - MoveBackwards=false - $end 'OptimetricsSetups' - $end 'Optimetrics' - $begin 'Solutions' - $end 'Solutions' - $begin 'FieldsReporter' - $begin 'FieldsCalculator' - $begin 'Named_Expression' - Name('cond') - ExpressionID(10002) - Vector_Constant(1, 0, 0) - MaterialOp('Conductivity (cond)', 1) - Operation('Mag') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Ipri') - ExpressionID(10003) - NameOfExpression('') - Operation('ScalarY') - Scalar_Function(FuncValue='Phase') - Operation('AtPhase') - EnterSurface('Layer1_1_Section1', 608) - Operation('SurfaceValue') - Operation('Integrate') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Isec') - ExpressionID(10004) - NameOfExpression('') - Operation('ScalarY') - Scalar_Function(FuncValue='Phase') - Operation('AtPhase') - EnterSurface('Layer3_1_Section1', 650) - Operation('SurfaceValue') - Operation('Integrate') - $end 'Named_Expression' - Line_Discretization=1000 - $end 'FieldsCalculator' - $begin 'PlotDefaults' - Default_SolutionId=68 - Default_PlotFolder='Automatic' - $end 'PlotDefaults' - $begin 'FieldsPlotManagerID' - NextUniqueID=11 - MoveBackwards=false - NumQuantityType=6 - $begin 'QuantityFolder_1' - PlotFolder='B' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=103 - m_nLevels=15 - minvalue=1e-06 - maxvalue=0.0425 - log=true - IntrinsicMin=2.43244834465884e-06 - IntrinsicMax=0.0340820599518489 - LimitFieldValuePrecision=true - FieldValuePrecisionDigits=4 - dB=false - ScaleType=1 - UserSpecifyValues(16, 9.99999997475243e-07, 2.03497597794922e-06, 4.14112673752243e-06, 8.4270932347863e-06, 1.71489318745444e-05, 3.48976645909715e-05, 7.10158928995952e-05, 0.000144515681313351, 0.000294085853965953, 0.000598457525484264, 0.0012178469914943, 0.00247828895226121, 0.00504325702786446, 0.0102629102766514, 0.020884782075882, 0.0425000004470348) - ValueNumberFormatTypeAuto=0 - ValueNumberFormatTypeScientific=false - ValueNumberFormatWidth=8 - ValueNumberFormatPrecision=6 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=-0.499999886032185 - ArrowMaxMagnitude=0.542489409446716 - ArrowMagnitudeThreshold=0 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=-0.499997567551655 - ArrowMaxIntrinsicMagnitude=0.534082059951849 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_1' - $begin 'QuantityFolder_2' - PlotFolder='Conductivity' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=90 - m_nLevels=15 - minvalue=58455956.460391 - maxvalue=58455956.460391 - log=false - IntrinsicMin=58455956.460391 - IntrinsicMax=58455956.460391 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 58455956, 57949336, 58027280, 58105220, 58183160, 58261104, 58339044, 58416984, 58494928, 58572868, 58650808, 58728752, 58806692, 58884632, 58962576, 58455956) - ValueNumberFormatTypeAuto=1 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=12 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=58455955.5 - ArrowMaxMagnitude=58455956.5 - ArrowMagnitudeThreshold=58455955.5 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=58455955.960391 - ArrowMaxIntrinsicMagnitude=58455956.960391 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_2' - $begin 'QuantityFolder_3' - PlotFolder='Core-Loss' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=90 - m_nLevels=15 - minvalue=2013.95736058355 - maxvalue=34979876.8419027 - log=true - IntrinsicMin=2013.95736058355 - IntrinsicMax=34979876.8419027 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 971, 1939.11938476562, 3872.48510742188, 7733.4794921875, 15444.0126953125, 30842.203125, 61592.87890625, 123003.015625, 245641.078125, 490553.3125, 979651.1875, 1956395.75, 3906984.5, 7802377, 15581604, 31117000) - ValueNumberFormatTypeAuto=0 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=12 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=970.504455566406 - ArrowMaxMagnitude=31116738.5 - ArrowMagnitudeThreshold=970.504455566406 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=2013.45736058355 - ArrowMaxIntrinsicMagnitude=34979877.3419027 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_3' - $begin 'QuantityFolder_4' - PlotFolder='J' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=313 - m_nLevels=15 - minvalue=7242393.63363049 - maxvalue=88420972.1568177 - log=false - IntrinsicMin=7242393.63363049 - IntrinsicMax=88420972.1568177 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 6249161, 10706201, 15163241, 19620280, 24077320, 28534360, 32991400, 37448440, 41905480, 46362520, 50819560, 55276600, 59733640, 64190680, 68647720, 73104760) - ValueNumberFormatTypeAuto=0 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=12 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=6249160.5 - ArrowMaxMagnitude=73104760.5 - ArrowMagnitudeThreshold=6249160.5 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=7242393.13363049 - ArrowMaxIntrinsicMagnitude=88420972.6568177 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_4' - $begin 'QuantityFolder_5' - PlotFolder='Ohmic-Loss' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=90 - m_nLevels=15 - minvalue=2096872.38563511 - maxvalue=92359945.2344041 - log=true - IntrinsicMin=2096872.38563511 - IntrinsicMax=92359945.2344041 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 1513700, 1967377.75, 2557028.75, 3323406.5, 4319478.5, 5614088, 7296709.5, 9483637, 12326017, 16020301, 20821812, 27062404, 35173388, 45715352, 59416892, 77225000) - ValueNumberFormatTypeAuto=0 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=12 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=1513694.125 - ArrowMaxMagnitude=77225408.5 - ArrowMagnitudeThreshold=1513694.125 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=2096871.88563511 - ArrowMaxIntrinsicMagnitude=92359945.7344041 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_5' - $begin 'QuantityFolder_6' - PlotFolder='Temperature' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=80 - m_nLevels=15 - minvalue=20 - maxvalue=20 - log=false - IntrinsicMin=20 - IntrinsicMax=20 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 94.0739974975586, 95.0235748291016, 95.97314453125, 96.922721862793, 97.8722915649414, 98.8218688964844, 99.7714385986328, 100.721015930176, 101.670585632324, 102.620162963867, 103.569732666016, 104.519309997559, 105.468879699707, 106.41845703125, 107.368026733398, 108.317604064941) - ValueNumberFormatTypeAuto=1 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=8 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=93.5739974975586 - ArrowMaxMagnitude=108.817604064941 - ArrowMagnitudeThreshold=93.5739974975586 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=19.5 - ArrowMaxIntrinsicMagnitude=20.5 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_6' - NumPlots=6 - $begin 'PlotDefinition_1' - PlotDefinitionType='Mesh_field_type' - PlotName='cond1' - PlotDefinitionId=1 - VersionID=139 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=10002 - PlotFolder='Conductivity' - FieldType='Fields' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 6, 335, 385, 435, 485, 535, 585) - FilterIds(0) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.360954970121384 - MinArrowSpacing=0.240636646747589 - MaxArrowSpacing=0.481273293495178 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - $end 'PlotDefinition_1' - $begin 'PlotDefinition_2' - PlotDefinitionType='Mesh_field_type' - PlotName='Mag_B1' - PlotDefinitionId=5 - VersionID=145 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=41 - PlotFolder='B' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 2, 180, 6) - FilterIds(2, 6, 180) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.396491169929504 - MinArrowSpacing=0.264327436685562 - MaxArrowSpacing=0.528654873371124 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - $end 'PlotDefinition_2' - $begin 'PlotDefinition_3' - PlotDefinitionType='Mesh_field_type' - PlotName='Mag_J1' - PlotDefinitionId=6 - VersionID=145 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=42 - PlotFolder='J' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 6, 335, 385, 435, 485, 535, 585) - FilterIds(0) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.360954970121384 - MinArrowSpacing=0.240636646747589 - MaxArrowSpacing=0.481273293495178 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - $end 'PlotDefinition_3' - $begin 'PlotDefinition_4' - PlotDefinitionType='Mesh_field_type' - PlotName='Ohmic_Loss1' - PlotDefinitionId=7 - VersionID=140 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=53 - PlotFolder='Ohmic-Loss' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 6, 335, 385, 435, 485, 535, 585) - FilterIds(0) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.360954970121384 - MinArrowSpacing=0.240636646747589 - MaxArrowSpacing=0.481273293495178 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - $end 'PlotDefinition_4' - $begin 'PlotDefinition_5' - PlotDefinitionType='Mesh_field_type' - PlotName='Core_Loss1' - PlotDefinitionId=8 - VersionID=145 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=63 - PlotFolder='Core-Loss' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 2, 180, 6) - FilterIds(0) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.396491169929504 - MinArrowSpacing=0.264327436685562 - MaxArrowSpacing=0.528654873371124 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - $end 'PlotDefinition_5' - $begin 'PlotDefinition_6' - PlotDefinitionType='Mesh_field_type' - PlotName='Temperature1' - PlotDefinitionId=10 - VersionID=107 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=60 - PlotFolder='Temperature' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 6, 335, 385, 435, 485, 535, 585) - FilterIds(0) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.360954970121384 - MinArrowSpacing=0.240636646747589 - MaxArrowSpacing=0.481273293495178 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - $end 'PlotDefinition_6' - $end 'FieldsPlotManagerID' - $begin 'Report3dInGeomWnd' - Report3dNum=0 - $end 'Report3dInGeomWnd' - $begin 'Report2dInGeomWnd' - Report2dNum=0 - $end 'Report2dInGeomWnd' - $begin 'AntennaParametersInGeomWnd' - AntennaParametersNum=0 - $end 'AntennaParametersInGeomWnd' - AntennaParametersPlotTablesOrder() - $end 'FieldsReporter' - $begin 'SolutionManager' - $begin 'SimSetup' - TypeName='BaseSetup' - ID=66 - Name='Setup1' - $begin 'Solution' - ID=67 - Name='AdaptivePass' - $begin 'SimDataExtractor' - $begin 'QuantityIDs' - NextUniqueID=0 - MoveBackwards=false - IDMap() - $end 'QuantityIDs' - $begin 'Sweeps' - $begin 'PostprocessSweep' - Variable='NormalizedDistance' - RegularSweep=1 - Units='' - Minimum=0 - Maximum=1 - Increment=0.01 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phi' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Theta' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phase' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'Sweep' - Variable='Pass' - Column='1;2' - Units='' - $end 'Sweep' - $begin 'Sweep' - Variable='Freq' - Column='0.0001GHz' - Units='GHz' - $end 'Sweep' - $end 'Sweeps' - $end 'SimDataExtractor' - $end 'Solution' - $begin 'Solution' - ID=68 - Name='LastAdaptive' - $begin 'SimDataExtractor' - $begin 'QuantityIDs' - NextUniqueID=0 - MoveBackwards=false - IDMap() - $end 'QuantityIDs' - SimValue('cond', 1, 90, false, SimValueID=618, 3, 0, 2, 0, false, false, 335, 1, 0, 1, 1, '', 0, 0) - SimValue('Mag_B', 1, 103, false, SimValueID=619, 3, 0, 2, 0, false, false, 180, 1, 0, 1, 1, '', 0, 0) - SimValue('Mag_J', 1, 313, false, SimValueID=620, 3, 0, 2, 0, false, false, 335, 1, 0, 1, 1, '', 0, 0) - SimValue('Ohmic_Loss', 1, 90, false, SimValueID=621, 3, 0, 2, 0, false, false, 335, 1, 0, 1, 1, '', 0, 0) - SimValue('Core_Loss', 1, 90, false, SimValueID=622, 3, 0, 2, 0, false, false, 180, 1, 0, 1, 1, '', 0, 0) - SimValue('Temperature', 1, 80, false, SimValueID=623, 3, 0, 2, 0, false, false, 335, 1, 0, 1, 1, '', 0, 0) - SimValue('Ipri', 1, 90, false, SimValueID=624, 0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0, 'PC', false, '1') - SimValue('Isec', 1, 90, false, SimValueID=625, 0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0, 'PC', false, '1') - SimValue('L(pri,pri)', 1, 22, false, SimValueID=626, 0, 0, 2, 0, false, false, 1, 1, 0, 1, 1, '', 0, 0) - SimValue('CplCoef(sec,pri)', 1, 90, false, SimValueID=627, 0, 0, 2, 0, false, false, 1, 1, 0, 1, 1, '', 0, 0) - SimValue('L(pri,sec)', 1, 22, false, SimValueID=628, 0, 0, 2, 0, false, false, 1, 1, 0, 1, 1, '', 0, 0) - SimValue('L(sec,pri)', 1, 22, false, SimValueID=629, 0, 0, 2, 0, false, false, 1, 1, 0, 1, 1, '', 0, 0) - SimValue('L(sec,sec)', 1, 22, false, SimValueID=630, 0, 0, 2, 0, false, false, 1, 1, 0, 1, 1, '', 0, 0) - SimValue('CoreLoss', 1, 58, false, SimValueID=631, 0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - SimValue('SolidLoss', 1, 58, false, SimValueID=632, 0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $begin 'Sweeps' - $begin 'PostprocessSweep' - Variable='NormalizedDistance' - RegularSweep=1 - Units='' - Minimum=0 - Maximum=1 - Increment=0.01 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phi' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Theta' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phase' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'Sweep' - Variable='Freq' - Column='100000Hz' - Units='Hz' - $end 'Sweep' - $begin 'Sweep' - Variable='Vp' - Column='50V' - Units='V' - $end 'Sweep' - $begin 'Sweep' - Variable='Rload' - Column='0.4ohm' - Units='ohm' - $end 'Sweep' - $end 'Sweeps' - $end 'SimDataExtractor' - $end 'Solution' - $end 'SimSetup' - $begin 'Version ID Map' - V=65 - $begin 'Setup' - N='Setup1' - V=425 - Soln(N='AdaptivePass', V=633) - Soln(N='LastAdaptive', V=633) - $end 'Setup' - $end 'Version ID Map' - $begin 'ID Map' - $begin 'Setup' - N='Setup1' - I=66 - Soln(N='AdaptivePass', I=67) - Soln(N='LastAdaptive', I=68) - $end 'Setup' - $end 'ID Map' - ValidationCacheHeader='' - $end 'SolutionManager' - $begin 'UserDefinedSolutionMgr' - NextUniqueID=1000000 - MoveBackwards=false - $end 'UserDefinedSolutionMgr' - $begin 'DatasetSolutionMgr' - NextUniqueID=2000000 - MoveBackwards=false - $end 'DatasetSolutionMgr' - Notes=$begin_cdata$ Notes: Due to higher frequency operations of planar transformers, the skin depth and proximity effects play a major role on the proper electromagnetic design process. Therefore, current 3D Maxwell design is using eddy-current solver to predict the electromagnetic harmonic characteristics of a planar transformer as Current vs Phase angle, Leakage Inductance and Electromagnetic Loss $end_cdata$ - $begin 'AnimationSetups' - $end 'AnimationSetups' - CacheHeaderFile='HDR636F6524416430340133.tmp' - $end 'Maxwell3DModel' - $begin 'DataInstances' - DesignEditor='TopLevel' - Refdes('1', 'U2') - $begin 'CompInstances' - $begin 'Compinst' - ID='1' - Status='Status' - CompName='Maxwell3D' - GatesInUse() - $begin 'Properties' - TextProp('ID', 'SRID', '', '1') - $end 'Properties' - $end 'Compinst' - $end 'CompInstances' - $begin 'Instance' - DesignEditor='Maxwell3D' - ID='1' - $begin 'MaxwellDesignInstance' - DesignInstanceID=3 - $begin 'WindowPosition' - $begin 'EditorWindow' - Circuit(Editor3d(View('View Orientation Gadget'=1, WindowPos(3, -1, -1, -9, -38, 0, 0, 405, 293), OrientationMatrix(-0.0144033003598452, -0.0230966657400131, 0.0365190356969833, 0, 0.0432099066674709, -0.00769888749346137, 0.012173012830317, 0, 7.63639596002008e-10, 0.0384944453835487, 0.024346025660634, 0, -4.05195947905668e-08, 0, -5.96739196777344, 1, 0, -1.63455653190613, 1.63455653190613, -1, 1, -0.580528736114502, 12.5153121948242), Drawings[23: 'PQ_Core_Bottom', 'PQ_Core_Top', 'Board_1', 'Layer1_1', 'Board_2', 'Layer2_1', 'Board_3', 'Layer3_1', 'Board_4', 'Layer4_1', 'Board_5', 'Layer5_1', 'Board_6', 'Layer6_1', 'Layer1_1_Section1', 'Layer2_1_Section1', 'Layer3_1_Section1', 'Layer4_1_Section1', 'Layer5_1_Section1', 'Layer6_1_Section1', 'Region', 'Length_Coil', 'Length_Core'], 'View Data'('Render Mode'=1, 'Show Ruler'=1, 'Coordinate Systems View Mode'=0, 'CS Triad View Mode'=0, 'Render Facets'=1, GridVisible=1, GridAutoAdjust=1, GridAutoExtents=1, GridType='Rect', GridStyle='Line', NumPixels=30, dXForGrid=2, dYForGrid=2, dZForGrid=2, dRForGrid=2, dThetaForGrid=10), ClipPlanes(ClipPlaneOptions(DisableWhenDrawingNewPlane=true, ForceOpqaueForUnclipped=false, ShowClipped=false, Transparency=0, HandleColor=16776960))))) - $end 'EditorWindow' - $end 'WindowPosition' - $begin 'ReportSetup' - $begin 'ReportManager' - $begin 'Reports' - $begin 'Current vs Phase angle' - ReportID=5 - ReportName='Current vs Phase angle' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=2 - SolutionID=68 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=9 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0, 'PC', false, '1') - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=3 - VersionID=39 - Name='Ipri' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Phase' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Ipri' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Specifiable' - SubsweepChoiceType='All' - SweepVariableName='Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='All' - SweepVariableName='Freq' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Vp' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Rload' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '3' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=3 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=2 - SolutionID=68 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=9 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0, 'PC', false, '1') - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=4 - VersionID=40 - Name='Isec' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Phase' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Isec' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Specifiable' - SubsweepChoiceType='All' - SweepVariableName='Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='All' - SweepVariableName='Freq' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Vp' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Rload' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '3' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=3 - $end 'TraceDef' - $end 'Current vs Phase angle' - $begin 'Loss' - ReportID=11 - ReportName='Loss' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=2 - SolutionID=68 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=2 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=12 - VersionID=43 - Name='CoreLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Freq' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='CoreLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Regular' - SubsweepChoiceType='All' - SweepVariableName='Freq' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Vp' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Rload' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '2' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=3 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=2 - SolutionID=68 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=2 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=13 - VersionID=44 - Name='SolidLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Freq' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='SolidLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Regular' - SubsweepChoiceType='All' - SweepVariableName='Freq' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Vp' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Rload' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '2' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=3 - $end 'TraceDef' - $end 'Loss' - $end 'Reports' - NextUniqueID=18 - MoveBackwards=false - $begin 'NextVersID' - NextUniqueID=45 - MoveBackwards=false - $end 'NextVersID' - $end 'ReportManager' - $begin 'Reports' - $begin 'Current vs Phase angle' - ReportID=5 - $begin 'Report2D' - name='Current vs Phase angle' - ReportID=5 - ReportType=9 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=3 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=4 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=61 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=6.54498469497874 - TickSpacing=0.872664625997165 - ManualUnits=false - Units='deg' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=13.0899693899575 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=4 - DecimalFieldPrecision=2 - ManualTitle='Current' - AxisColor(R=0, G=0, B=0) - MinScale=-50 - MaxScale=50 - TickSpacing=25 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=100 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-19 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-13 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - Height=-11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - Height=-11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=1688 - Left=823 - Bottom=9494 - Right=8795 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=1688 - Left=823 - Bottom=9494 - Right=8795 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=572 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=8795 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=1688 - Left=823 - Bottom=9494 - Right=8795 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=823 - Bottom=1688 - Right=8795 - $end 'AxisRect' - $begin 'GridRect' - Top=1688 - Left=823 - Bottom=9494 - Right=8795 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1.74532925199433 - X_fwd=5 - X_fpr=2 - Y1_spc=20 - Y1_fwd=4 - Y1_fpr=2 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=672 - Bottom=9850 - Right=8172 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(3, 0, -1, 37) - IDMapItem(4, 0, -1, 39) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $begin 'TraceCharacteristicsDataSource' - ID=47 - $begin 'Parameters' - Name='max' - FunctionName='max' - $begin 'Range' - Type='Full' - Start='0' - End='1' - $end 'Range' - $end 'Parameters' - $end 'TraceCharacteristicsDataSource' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40, 47, 48) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Current vs Phase angle' - $begin 'Loss' - ReportID=11 - $begin 'Report2D' - name='Loss' - ReportID=11 - ReportType=2 - DisplayType=4 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=12 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=13 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=66 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(DataTable=3, Header=0, PrimarySweep=1) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=7 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=7 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-19 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-13 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=390 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=553 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=669 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=514 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=669 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=726 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=664 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=516 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=42 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=2068 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=47 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=597 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=52 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=511 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=57 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=814 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=62 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=565 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=25 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(12, 0, -1, 7) - IDMapItem(13, 0, -1, 9) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=25 - TransSrcDwg(-1, 0, 5) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Loss' - $end 'Reports' - $begin 'ReportsWindowInfoList' - $begin 'Current vs Phase angle' - ReportID=5 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Current vs Phase angle' - $begin 'Loss' - ReportID=11 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Loss' - $end 'ReportsWindowInfoList' - $end 'ReportSetup' - $begin 'Properties' - $end 'Properties' - $begin 'UserDefinedDocument' - $begin 'Data' - $end 'Data' - $end 'UserDefinedDocument' - $end 'MaxwellDesignInstance' - $end 'Instance' - $begin 'SODInfo' - $end 'SODInfo' - $end 'DataInstances' - $begin 'WBSystemIDToDesignInstanceIDMap' - $end 'WBSystemIDToDesignInstanceIDMap' - $begin 'WBSysIDSysDetails' - $end 'WBSysIDSysDetails' - $begin 'WBConnIDConnDetails' - $end 'WBConnIDConnDetails' - $begin 'WBMaterialGuidDetails' - WBMaterialGuidMap() - $end 'WBMaterialGuidDetails' - $begin 'MinervaProjectSettingsBlk' - MinervaRemoteFilePath='' - FolderContainerString='' - $end 'MinervaProjectSettingsBlk' -$end 'AnsoftProject' -$begin 'AllReferencedFilesForProject' -$end 'AllReferencedFilesForProject' -$begin 'ProjectPreview' - IsEncrypted=false - Thumbnail64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCABgAGADASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAoor42+PX7VGu/Dr4v/Cj9n34S/DTSf\ -il8XPiZq1hDqCeM/iBefCf4cfD/AELXPh/8ffHvhLUvE3jDTfAHinU9S1bXYP2bPizbaXZaP4d1KGF/\ -CF1Jr+oaELnQk1zjx2PwmXUY18XVdOFScKUVGE6k51KklGEIU6cZ1Jybe0ItqKlN2jGUl9JwtwlxBxn\ -mNfK+HcFHF4nCYXE42vKriMNhMPhsJg6Mq+IxOKxmMrYfCYajThHlVTEV6caladLD03OvWo05/ZNFfJ\ -n/AAvb9oPQv+JV4s/Yi+LXiPxBa/8AH/rPwM+LX7NHjT4WXnn/AOk2v/CL+JfjV8YPhr4m1Ly7Ka2iv\ -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' - $begin 'DesignInfo' - DesignName='Maxwell3D' - Notes='Notes: Due to higher frequency operations of planar transformers, the skin depth and proximity effects play a major role on the proper electromagnetic design process. Therefore, current 3D Maxwell design is using eddy-current solver to predict the electromagnetic harmonic characteristics of a planar transformer as Current vs Phase angle, Leakage Inductance and Electromagnetic Loss' - Factory='Maxwell 3D' - IsSolved=false - 'Nominal Setups'[1: 'Setup1'] - 'Nominal Setup Types'[1: ''] - 'Optimetrics Setups'[0:] - 'Optimetrics Experiment Types'[0:] - Image64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCADIAMgDASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAooooAKKKKACiiigAooooAKKKKACiii\ -gAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAoor8r9Y1vVv2pP2zfCvg7WPEXxD8M\ -/s7eH/h5+2RoPguz+FHxn+OHwV134kfEf4BfFX9kL4b/ABB+IXi7W/hJ8SvDl7caTo3xG8afFnwRpGh\ -ajYBIJvh9rHim11LWdK8W6INK8vNczWXU8OoUliMVi6tOlTpuTgv3lWnSdSclCo4UoOpBSnySXPOnD4\ -qkb/d8B8Ey4yxebTxWPlk+R5BgcZjsZi40YV5pYTBYrGxwuFoVMRhKeJx2Jp4SvOjhniqM3h8Pi8Vd0\ -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\ -Uo4qFOFWjX+efA37XX7KHxQ8U6X4G+Gn7T37PPxD8ba59u/sXwd4G+NXw28W+KdY/szTrvWNS/svw9o\ -HiW4u9Q+z6Tp9/dT+VC/lW1lNPJtiidl+hq5Lxz4B8CfFDwtqngb4l+CvCXxD8E659i/trwd458OaP4\ -t8Lax/Zmo2msab/anh7X7O4tNQ+z6tp9hdQebC/lXNlDPHtliRl+ef+GHv2a9P/c+BvB/i34JaS3724\ -8K/s0/Gb43fsueBdQ1Fvkm8Q6t8P/2dPiL4X0TWPFstslpbT6xdafNqtxZ6TYWU95JaafYw25zZ5S93\ -2eEx19efnrYS3932fs8bzWtfn9rG9+X2a5eaR7Pwsx/7767xBwry+79X+rZdn/PbX231z63w17Lm5uT\ -6t9Rq8ns/a/W6ntvY0PrOivkz/hQHxr8Lf6V8Mf2xfi1/xKv9G8J+Bvjn4K+EXxn+FmnaP/x422jeKL\ -vRvBfhT4mePvsOiuy2Wp6h8Uv7dudRsbTUvEereI/+Jna6qf8AGdXhL/o0z4//ANof9lh/ZA/4RL7J/\ -wCHx/4WH9v+0/8AUr/2T/Y3/Ma/tP8A4lJ/aVenricoxNCnH4pxVGvFPZcsKFapiJpysk40LpPmnGEV\ -JxP9ScrxfuZL4iZHmeMq60cLWnmOWVZx+Jqris2y7BZPh6lOnzTnGrmqpylB0cNVxNadCFb6zr4203X\ -9C8Kftm/tT+KfFOtaT4a8M+Gv2Nv2Ptf8ReItf1Kz0fQtA0LR/ir+3/qOr61rWr6jNHb6VpNrp9tcT3\ -NzPJHDBDA8srqisw1v+F//ABr8Lf6L8Tv2Ovi1/wASr/SfFnjn4GeNfhF8Z/hZp2j/APH9c6z4XtNZ8\ -aeFPiZ4++w6K6te6Zp/wt/t251Gxu9N8OaT4j/4ll1qvzFo+iat+1J+2b4q8Y6P4d+Ifhn9nbw/8PP2\ -N9e8aXnxX+DHxw+Cuu/Ej4j/AAC+Kv7XvxI+H3w98I6J8W/hr4cvbjSdG+I3jT4TeN9X13Tr8JBN8Pt\ -H8LXWm6zpXi3WzpXlZlmtKtiMnhgoTnjViZclKrSq0JPmwmKgqjhWhTqOhTlOLrVIRlyRvZSnywf6Bw\ -TwFjcuyjxKxHE2Jw+F4YlkdBYnH5fjsvzWjD2XEfD+Klg6eIy7E4vCwzTFUMPVhl+DxVah7eu4e0nSw\ -/ta9P6z/Z30DXfEV54z/aU8caLq3hfxh+0BpPw6k8PeBfEmm3mjeLvhJ8D/AAfoV/qHwx+E/jvTZobZ\ -F+Idv4m8d/FPxP4hSS0a70bW/izf+Dhq/iDR/CuiavcfTtFFfRYPDRweHhQU3UknKU5vRzqVJSqVajS\ -0i6lSUpuMUox5uWCUUkvxviPPKvEWcYrNalCOEpzjRoYehBuUMNg8JQpYTA4SM5fvKscJg6FDDRrVnO\ -vWVJVa9SpWnUqSKKKK6TwwooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKK\ -ACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKKKACiiigAooooAKKK\ -KACiiigAooooA//Z' - $end 'DesignInfo' -$end 'ProjectPreview' diff --git a/tests/system/general/example_models/TMaxwell/PlanarTransformer_231.aedt b/tests/system/general/example_models/TMaxwell/PlanarTransformer_231.aedt deleted file mode 100644 index 34f51520ace..00000000000 --- a/tests/system/general/example_models/TMaxwell/PlanarTransformer_231.aedt +++ /dev/null @@ -1,6779 +0,0 @@ -$begin 'AnsoftProject' - Created='Sun Feb 10 09:34:40 2019' - Product='ElectronicsDesktop' - FileOwnedByWorkbench=false - $begin 'Desktop' - Version(2023, 1) - InfrastructureVersion(1, 0) - $begin 'FactoryHeader' - $begin 'geometry3deditor' - KernelVersion(2, 0) - ProjectContainsGeometry3D='1' - $end 'geometry3deditor' - $end 'FactoryHeader' - $end 'Desktop' - UsesAdvancedFeatures=false - NextUniqueID=0 - MoveBackwards=false - $begin 'HFSSEnvironment' - Version(1, 0) - $end 'HFSSEnvironment' - $begin 'PlanarEMEnvironment' - Version(1, 0) - $end 'PlanarEMEnvironment' - $begin 'Q3DEnvironment' - Version(1, 0) - $end 'Q3DEnvironment' - $begin '2DExtractorEnvironment' - Version(1, 0) - $end '2DExtractorEnvironment' - $begin 'NexximEnvironment' - Version(1, 0) - $end 'NexximEnvironment' - $begin 'NexximNetlistEnvironment' - Version(1, 0) - $end 'NexximNetlistEnvironment' - $begin 'EmitEnvironment' - Version(1, 0) - $end 'EmitEnvironment' - $begin 'Maxwell3DEnvironment' - Version(1, 0) - $end 'Maxwell3DEnvironment' - $begin 'Maxwell2DEnvironment' - Version(1, 0) - $end 'Maxwell2DEnvironment' - $begin 'RMxprtEnvironment' - Version(1, 0) - $end 'RMxprtEnvironment' - $begin 'MaxCirEnvironment' - Version(1, 0) - $end 'MaxCirEnvironment' - $begin 'SimplorerEnvironment' - Version(1, 0) - $end 'SimplorerEnvironment' - $begin 'IcepakEnvironment' - Version(1, 0) - $end 'IcepakEnvironment' - $begin 'MechanicalEnvironment' - Version(1, 0) - $end 'MechanicalEnvironment' - $begin 'FilterDesignEnvironment' - $end 'FilterDesignEnvironment' - $begin 'SchematicEnvironment' - Version(1, 0) - $end 'SchematicEnvironment' - $begin 'geometry3deditor' - Version(1, 0) - $end 'geometry3deditor' - ReadVersion=11 - $begin 'DesignMgrEnvironment' - CompInstCounter=7 - GPortCounter=0 - NetCounter=0 - Alias('Ieee;Simplorer Elements\\Ieee', 'Std;Simplorer Elements\\Std', 'Basic_VHDLAMS;Simplorer Elements\\Basic Elements VHDLAMS\\Basic Elements VHDLAMS', 'Digital_Elements;Simplorer Elements\\Digital Elements\\Digital Elements', 'Transformations;Simplorer Elements\\Tools\\Transformations\\Transformations', 'HEV_VHDLAMS;Simplorer Elements\\HEV VHDLAMS\\HEV VHDLAMS', 'automotive_vda;Simplorer Elements\\VDALibs VHDLAMS\\automotive_vda', 'example_boardnet;Simplorer Elements\\VDALibs VHDLAMS\\example_boardnet', 'example_ecar;Simplorer Elements\\VDALibs VHDLAMS\\example_ecar', 'fundamentals_vda;Simplorer Elements\\VDALibs VHDLAMS\\fundamentals_vda', 'hybrid_emc_vda;Simplorer Elements\\VDALibs VHDLAMS\\hybrid_emc_vda', 'megma;Simplorer Elements\\VDALibs VHDLAMS\\megma', 'modelica_rotational;Simplorer Elements\\VDALibs VHDLAMS\\modelica_rotational', 'modelica_thermal;Simplorer Elements\\VDALibs VHDLAMS\\modelica_thermal', 'modelica_translational;Simplorer Elements\\VDALibs VHDLAMS\\modelica_translational', 'spice2vhd;Simplorer Elements\\VDALibs VHDLAMS\\spice2vhd', 'spice2vhd_devices;Simplorer Elements\\VDALibs VHDLAMS\\spice2vhd_devices', 'aircraft_electrical_vhdlams;Simplorer Elements\\Aircraft Electrical VHDLAMS\\Aircraft Electrical VHDLAMS', 'power_system_vhdlams;Simplorer Elements\\Power System VHDLAMS\\Power System VHDLAMS') - $end 'DesignMgrEnvironment' - $begin 'ProjectDatasets' - NextUniqueID=1 - MoveBackwards=false - DatasetType='ProjectDatasetType' - $begin 'DatasetDefinitions' - $begin '$Mu_3F3' - ID=0 - $begin 'Coordinates' - DimUnits[2: '', ''] - Points[70: 0, 2000, 98459.6815894695, 2027.2, 197983.598439825, 2051, 398107.170553497, 2100, 494745.693364606, 2124, 596047.538592714, 2174, 696140.064601457, 2251.3, 788186.901908786, 2304.4, 892404.594894609, 2386.3, 994839.015358011, 2500.2, 1126381.2001137, 2589.1, 1255672.56203026, 2619.4, 1378243.15007929, 2619.4, 1536444.41791644, 2559.1, 1712804.77556574, 2414.3, 1822527.78210077, 2251.3, 1969618.08128912, 2075, 2161879.38710699, 1846.9, 2372907.99104522, 1550.8, 2604535.83467541, 1242.9, 2814739.4644536, 1019.6, 3287410.45931894, 603.6, 3780315.8735092, 300, 4214238.41031241, 188.3, 4625604.95263426, 122.3, 4846109.89543321, 100.3, 5156553.7681451, 88.3, 5402369.31126385, 77.7, 5659903.00645773, 70, 6116695.39929428, 60.1, 6713767.41844878, 49.3, 7963859.60989012, 39.5, 9016877.71231702, 34.3, 10209130.7056581, 31.3, 11559028.8668147, 28.8] - $end 'Coordinates' - $end '$Mu_3F3' - $end 'DatasetDefinitions' - $end 'ProjectDatasets' - VariableOrders[0:] - $begin 'Definitions' - $begin 'Folders' - Definitions(1604, 10000, 1, 1, 0, false, false) - Materials(1604, 9500, 9, 2, 1, false, false) - 'Surface Materials'(1604, 9501, 33503, 3, 1, false, false) - Scripts(1604, 9502, 33500, 4, 1, false, false) - Padstacks(1604, 9003, 12, 105, 1, false, false) - Symbols(1604, 9001, 10, 103, 1, false, false) - Footprints(1604, 9002, 11, 104, 1, false, false) - Bondwires(1604, 9006, 12, 108, 1, false, false) - Components(1604, 9000, 8, 102, 1, false, false) - Models(1604, 9004, 13, 106, 1, false, false) - Packages(1604, 9005, 33502, 107, 1, false, false) - $end 'Folders' - $begin 'Materials' - $begin 'vacuum' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=230 - Green=230 - Blue=230 - Transparency=0.949999988079071 - $end 'MatAppearanceData' - $end 'AttachedData' - permittivity='1' - ModTime=1499970477 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'vacuum' - $begin 'Material_3F3' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal') - $end 'PhysicsTypes' - permeability='pwl($Mu_3F3,Freq)' - conductivity='0.5' - thermal_conductivity='5.5' - $begin 'core_loss_type' - property_type='ChoiceProperty' - Choice='Power Ferrite' - $end 'core_loss_type' - core_loss_cm='0.195' - core_loss_x='1.561' - core_loss_y='2.15' - core_loss_kdc='0' - mass_density='0' - specific_heat='0' - thermal_expansion_coefficient='0' - ModTime=1549984218 - Library='' - LibLocation='Project' - ModSinceLib=true - $end 'Material_3F3' - $begin 'copper' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal', 'Structural') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=242 - Green=140 - Blue=102 - $end 'MatAppearanceData' - $end 'AttachedData' - permeability='0.999991' - conductivity='58000000' - thermal_conductivity='400' - mass_density='8933' - specific_heat='385' - youngs_modulus='120000000000' - poissons_ratio='0.38' - thermal_expansion_coefficient='1.77e-05' - ModTime=1499970477 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'copper' - $begin 'polyamide' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=90 - Green=90 - Blue=90 - $end 'MatAppearanceData' - $end 'AttachedData' - permittivity='4.3' - dielectric_loss_tangent='0.004' - thermal_conductivity='0.26' - ModTime=1499970477 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'polyamide' - $begin 'copper_temp' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal', 'Structural') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=242 - Green=140 - Blue=102 - $end 'MatAppearanceData' - $end 'AttachedData' - $begin 'ModifierData' - $begin 'ThermalModifierData' - modifier_data='thermal_modifier_data' - $begin 'all_thermal_modifiers' - $begin 'one_thermal_modifier' - 'Property:'='conductivity' - 'Index:'=0 - prop_modifier='thermal_modifier' - use_free_form=true - free_form_value='1/(1+0.0039*(Temp-22))' - $end 'one_thermal_modifier' - $end 'all_thermal_modifiers' - $end 'ThermalModifierData' - $end 'ModifierData' - permeability='0.999991' - conductivity='58000000' - thermal_conductivity='400' - mass_density='8933' - specific_heat='385' - youngs_modulus='120000000000' - poissons_ratio='0.38' - thermal_expansion_coefficient='1.77e-05' - ModTime=1549809453 - Library='' - LibLocation='Project' - ModSinceLib=false - $end 'copper_temp' - $begin 'air' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=230 - Green=230 - Blue=230 - Transparency=0.949999988079071 - $end 'MatAppearanceData' - $end 'AttachedData' - permittivity='1.0006' - permeability='1.0000004' - thermal_conductivity='0.0261' - mass_density='1.1614' - specific_heat='1005' - thermal_expansion_coefficient='0.00333' - $begin 'thermal_material_type' - property_type='ChoiceProperty' - Choice='Fluid' - $end 'thermal_material_type' - diffusivity='2.88e-05' - molecular_mass='0.028966' - viscosity='1.84e-05' - material_refractive_index='1.000293' - $begin 'clarity_type' - property_type='ChoiceProperty' - Choice='Transparent' - $end 'clarity_type' - ModTime=1592011950 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'air' - $begin 'Al-Extruded' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Thermal') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=232 - Green=235 - Blue=235 - $end 'MatAppearanceData' - $end 'AttachedData' - thermal_conductivity='205' - mass_density='2800' - specific_heat='900' - $begin 'thermal_material_type' - property_type='ChoiceProperty' - Choice='Solid' - $end 'thermal_material_type' - $begin 'clarity_type' - property_type='ChoiceProperty' - Choice='Opaque' - $end 'clarity_type' - ModTime=1592011950 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'Al-Extruded' - $end 'Materials' - $begin 'SurfaceMaterials' - $begin 'Steel-oxidised-surface' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=2 - $begin 'PhysicsTypes' - set('Thermal') - $end 'PhysicsTypes' - surface_emissivity='0.8' - ModTime=1461288057 - Library='SurfaceMaterials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'Steel-oxidised-surface' - $end 'SurfaceMaterials' - $begin 'Scripts' - $end 'Scripts' - $begin 'Symbols' - $begin 'Maxwell3D' - ModTime=1549809270 - Library='' - ModSinceLib=false - LibLocation='Project' - HighestLevel=1 - Normalize=true - InitialLevels(0, 1) - $begin 'Graphics' - Rect(0, 0, 0, 0, 0.00254, 0.00254, 0.00508, 0.00508, 0, 0, 0) - $end 'Graphics' - $end 'Maxwell3D' - $end 'Symbols' - $begin 'DefInfo' - Maxwell3D(0, 0, '', 1549809270, '', 'Maxwell3D', '', '', '', '', '', 'Design.bmp', '', 'Project', '', '', 1549809270, '', 0) - $end 'DefInfo' - $begin 'Compdefs' - $begin 'Maxwell3D' - Library='' - CircuitEnv=1 - Refbase='U' - NumParts=1 - ModSinceLib=true - $begin 'Properties' - TextProp('Representation', 'SRD', '', 'Maxwell3D') - TextProp('Owner', 'SRD', '', 'Maxwell 3D') - $end 'Properties' - CompExtID=6 - $end 'Maxwell3D' - $end 'Compdefs' - $end 'Definitions' - DesignIDServer=15 - MoveBackwards=false - $begin 'Maxwell3DModel' - RepRewriteV2=true - Name='Maxwell3D' - DesignID=2 - 'Allow Material Override'=false - 'Perform Minimal validation'=false - $begin 'TemperatureSettings' - IncludeTemperatureDependence=true - EnableFeedback=true - Temperatures(6, '22cel', 180, '22cel', 307, '22cel', 335, '20cel', 357, '22cel', 385, '20cel', 407, '22cel', 435, '20cel', 457, '22cel', 485, '20cel', 507, '22cel', 535, '20cel', 557, '22cel', 585, '20cel', 608, '22cel', 629, '22cel', 650, '22cel', 671, '22cel', 692, '22cel', 713, '22cel', 751, '22cel') - BoundaryTemperatures() - $end 'TemperatureSettings' - ObjsEnabledForDeformation() - PerfectConductorThreshold=1e+30 - InsulatorThreshold=1 - SolveFraction=false - Multiplier='1' - SkipMeshChecks=false - SolutionType='EddyCurrent' - $begin 'OutputVariable' - NextUniqueID=2 - MoveBackwards=false - $begin 'OutputVariables' - Lleakage12_from_L11(ID=0, 'L(pri,pri)-2*L(pri,sec)-2*L(sec,pri)+4*L(sec,sec)', 1, 'nH', 1, 'nH', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - Lleakage12_from_CC(ID=1, 'L(pri,pri)*(1-CplCoef(sec,pri)*CplCoef(sec,pri))', 1, 'nH', 1, 'nH', 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'OutputVariables' - $end 'OutputVariable' - $begin 'ModelSetup' - $begin 'DesignDatasets' - NextUniqueID=0 - MoveBackwards=false - DatasetType='DesignDatasetType' - $begin 'DatasetDefinitions' - $end 'DatasetDefinitions' - $end 'DesignDatasets' - $begin 'Properties' - VariableProp('Vp', 'UD', '', '50V') - VariableProp('Rload', 'UD', '', '0.4ohm') - $end 'Properties' - VariableOrders[2: 'Vp', 'Rload'] - $begin 'Editor3D Doc Preferences' - 'Plane Background'=true - BackgroundColor1=16777215 - BackgroundColor2=0 - 'Need Lights'=true - 'Ambient Light'=9671571 - 'Num Lights'=4 - Light0[4: 6710886, 0, -1, -0.150000005960464] - Light1[4: 6710886, -0.600000023841858, 0.100000001490116, -0.5] - Light2[4: 6710886, 0.5, 0.100000001490116, -0.5] - Light3[4: 6710886, 0.200000002980232, 0.400000005960464, 1] - Ver=2 - $end 'Editor3D Doc Preferences' - SnapMode=31 - WorkingCS=1 - $begin 'GeometryCore' - BlockVersionID=3 - DataVersion=13 - NativeKernel='PARASOLID' - NativeKernelVersionID=23 - Units='mm' - ModelExtents=10000 - InstanceID=-1 - $begin 'ValidationOptions' - EntityCheckLevel='Strict' - IgnoreUnclassifiedObjects=false - SkipIntersectionChecks=false - $end 'ValidationOptions' - ContainsGeomLinkUDM=false - $begin 'GeometryOperations' - BlockVersionID=2 - $begin 'AnsoftRangedIDServerManager' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=0 - IDServerRangeMin=0 - IDServerRangeMax=2146483647 - NextUniqueID=798 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=1 - IDServerRangeMin=2146483648 - IDServerRangeMax=2146485547 - NextUniqueID=2146483654 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $end 'AnsoftRangedIDServerManager' - StartBackGroundFaceID=2146483648 - $begin 'CoordinateSystems' - $end 'CoordinateSystems' - $begin 'OperandCSs' - $end 'OperandCSs' - $begin 'SubModelDefinitions' - $end 'SubModelDefinitions' - $begin 'Groups' - $end 'Groups' - $begin 'UserDefinedModels' - $end 'UserDefinedModels' - $begin 'OperandUserDefinedModels' - $end 'OperandUserDefinedModels' - $begin 'ToplevelParts' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PQ_Core_Bottom' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Material_3F3"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=778 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=23 - NumWires=0 - NumLoops=24 - NumCoedges=122 - NumEdges=61 - NumVertices=41 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000006.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PQ_Core_Top' - Flags='' - Color='(165 42 42)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Material_3F3"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=779 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=180 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=23 - NumWires=0 - NumLoops=24 - NumCoedges=122 - NumEdges=61 - NumVertices=41 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000180.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_1' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=780 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=307 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000307.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer1_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=781 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=335 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000335.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_2' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=782 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=357 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000357.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer2_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=783 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=385 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000385.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_3' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=784 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=407 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000407.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer3_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=785 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=435 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000435.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_4' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=786 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=457 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000457.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer4_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=787 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=485 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000485.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_5' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=788 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=507 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000507.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer5_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=789 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=535 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000535.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Board_6' - Flags='' - Color='(0 128 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"polyamide"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=790 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=557 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000557.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer6_1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper_temp"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=791 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=585 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=4 - NumWires=0 - NumLoops=8 - NumCoedges=8 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000585.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer1_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=792 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=608 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000608.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer2_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=793 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=629 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000629.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer3_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=794 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=650 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000650.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer4_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=795 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=671 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000671.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer5_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=796 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=692 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000692.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Layer6_1_Section1' - Flags='' - Color='(255 128 64)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"Copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='NativeBody' - ID=797 - ReferenceCoordSystemID=1 - $begin 'NativeBodyParameters' - KernelVersion=13 - SourceFile='PurgedPart' - $end 'NativeBodyParameters' - ParentPartID=713 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - BodyType='BRepBody' - $begin 'BodyBlock' - BodyFileNamesVec[1: '0000713.x_b'] - $end 'BodyBlock' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Region' - Flags='Wireframe#' - Color='(255 0 0)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='nan ' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Region' - ID=750 - ReferenceCoordSystemID=1 - $begin 'RegionParameters' - KernelVersion=11 - '+XPaddingType'='Percentage Offset' - '+XPadding'='50' - '-XPaddingType'='Percentage Offset' - '-XPadding'='50' - '+YPaddingType'='Percentage Offset' - '+YPadding'='50' - '-YPaddingType'='Percentage Offset' - '-YPadding'='50' - '+ZPaddingType'='Percentage Offset' - '+ZPadding'='50' - '-ZPaddingType'='Percentage Offset' - '-ZPadding'='50' - $begin 'BoxForVirtualObjects' - LowPoint[3: 1, 1, 1] - HighPoint[3: -1, -1, -1] - $end 'BoxForVirtualObjects' - $end 'RegionParameters' - ParentPartID=751 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=751 - StartFaceID=752 - StartEdgeID=758 - StartVertexID=770 - NumNewFaces=6 - NumNewEdges=12 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - IsXZ2DModeler=false - $end 'OperationIdentity' - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $end 'ToplevelParts' - $begin 'OperandParts' - $end 'OperandParts' - $begin 'Planes' - $end 'Planes' - $begin 'Points' - $end 'Points' - $begin 'GeometryEntityLists' - $end 'GeometryEntityLists' - $begin 'RegionIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=6 - NumWires=0 - NumLoops=6 - NumCoedges=24 - NumEdges=12 - NumVertices=8 - $end 'Topology' - BodyID=751 - StartFaceID=752 - StartEdgeID=758 - StartVertexID=770 - NumNewFaces=6 - NumNewEdges=12 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - IsXZ2DModeler=false - $end 'RegionIdentity' - $begin 'CachedNames' - $begin 'allobjects' - allobjects(-1) - $end 'allobjects' - $begin 'board_' - board_(1, 2, 3, 4, 5, 6) - $end 'board_' - $begin 'global' - global(-1) - $end 'global' - $begin 'layer1_' - layer1_(1) - $end 'layer1_' - $begin 'layer1_1_section' - layer1_1_section(1) - $end 'layer1_1_section' - $begin 'layer2_' - layer2_(1) - $end 'layer2_' - $begin 'layer2_1_section' - layer2_1_section(1) - $end 'layer2_1_section' - $begin 'layer3_' - layer3_(1) - $end 'layer3_' - $begin 'layer3_1_section' - layer3_1_section(1) - $end 'layer3_1_section' - $begin 'layer4_' - layer4_(1) - $end 'layer4_' - $begin 'layer4_1_section' - layer4_1_section(1) - $end 'layer4_1_section' - $begin 'layer5_' - layer5_(1) - $end 'layer5_' - $begin 'layer5_1_section' - layer5_1_section(1) - $end 'layer5_1_section' - $begin 'layer6_' - layer6_(1) - $end 'layer6_' - $begin 'layer6_1_section' - layer6_1_section(1) - $end 'layer6_1_section' - $begin 'model' - model(-1) - $end 'model' - $begin 'pq_core_bottom' - pq_core_bottom(-1) - $end 'pq_core_bottom' - $begin 'pq_core_top' - pq_core_top(-1) - $end 'pq_core_top' - $begin 'region' - region(-1) - $end 'region' - $end 'CachedNames' - $end 'GeometryOperations' - $begin 'GeometryDependencies' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 778) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 779) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 780) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 781) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 782) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 783) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 784) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 785) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 786) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 787) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 788) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 789) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 790) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 791) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 792) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 793) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 794) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 795) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 796) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 797) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 750) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $end 'GeometryDependencies' - $end 'GeometryCore' - GroupByMaterial=true - GroupSheetByMaterial=true - GroupCompByDefID=true - DoNotOrganizeUnderGroup=false - DoNotOrganizeUnderComponent=false - OrganizeLightweight=false - ShowGroup=true - $begin 'LastUserInputs' - $end 'LastUserInputs' - $end 'ModelSetup' - $begin '3DComponent' - $end '3DComponent' - $begin 'BoundarySetup' - $begin 'GlobalBoundData' - CoreLossObjectIDs[3: 6, 180, 307] - ExternalCircuitFile[0:] - ExternalCircuitFileExtenstion='' - InductorNames[0:] - SourceNames[0:] - SourceType[0:] - OriginalPath='' - OriginalDesign='' - CurrentProbes() - VoltageProbes() - $begin 'ParamValues' - $end 'ParamValues' - $begin 'EddyEffect' - $begin 'Eddy Effect Data' - 'Object ID'=335 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=385 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=435 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=485 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=535 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=585 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=true - 'Displacement Current'=true - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=6 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=180 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=307 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=357 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=407 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=457 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=507 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=557 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $begin 'Eddy Effect Data' - 'Object ID'=751 - 'Is Eddy Current Solution'=true - 'Eddy Effect'=false - 'Displacement Current'=false - $end 'Eddy Effect Data' - $end 'EddyEffect' - $end 'GlobalBoundData' - $begin 'Boundaries' - NextUniqueID=15 - MoveBackwards=false - $begin 'CoilTerminal_1' - ID=7 - BoundType='Coil Terminal' - IsComponent=false - Objects(608) - ParentBndID=13 - 'Conductor number'='1' - Winding=13 - 'Point out of terminal'=false - $end 'CoilTerminal_1' - $begin 'CoilTerminal_2' - ID=8 - BoundType='Coil Terminal' - IsComponent=false - Objects(629) - ParentBndID=13 - 'Conductor number'='1' - Winding=13 - 'Point out of terminal'=false - $end 'CoilTerminal_2' - $begin 'CoilTerminal_3' - ID=9 - BoundType='Coil Terminal' - IsComponent=false - Objects(650) - ParentBndID=14 - 'Conductor number'='1' - Winding=14 - 'Point out of terminal'=false - $end 'CoilTerminal_3' - $begin 'CoilTerminal_4' - ID=10 - BoundType='Coil Terminal' - IsComponent=false - Objects(671) - ParentBndID=14 - 'Conductor number'='1' - Winding=14 - 'Point out of terminal'=false - $end 'CoilTerminal_4' - $begin 'CoilTerminal_5' - ID=11 - BoundType='Coil Terminal' - IsComponent=false - Objects(692) - ParentBndID=13 - 'Conductor number'='1' - Winding=13 - 'Point out of terminal'=false - $end 'CoilTerminal_5' - $begin 'CoilTerminal_6' - ID=12 - BoundType='Coil Terminal' - IsComponent=false - Objects(713) - ParentBndID=13 - 'Conductor number'='1' - Winding=13 - 'Point out of terminal'=false - $end 'CoilTerminal_6' - $begin 'pri' - ID=13 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=true - Current='0mA' - Resistance='0ohm' - Inductance='0nH' - Voltage='Vp' - ParallelBranchesNum='1' - Phase='0deg' - $end 'pri' - $begin 'sec' - ID=14 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=true - Current='0mA' - Resistance='Rload' - Inductance='0nH' - Voltage='0mV' - ParallelBranchesNum='1' - Phase='0deg' - $end 'sec' - $end 'Boundaries' - $begin 'ProductSpecificData' - $end 'ProductSpecificData' - $end 'BoundarySetup' - $begin 'MaxwellParameterSetup' - $begin 'MaxwellParameters' - NextUniqueID=4 - MoveBackwards=false - $end 'MaxwellParameters' - MotionParams() - $end 'MaxwellParameterSetup' - $begin 'MeshSetup' - $begin 'MeshSettings' - $begin 'GlobalSurfApproximation' - CurvedSurfaceApproxChoice='UseSlider' - SliderMeshSettings=5 - $end 'GlobalSurfApproximation' - $begin 'GlobalCurvilinear' - Apply=true - $end 'GlobalCurvilinear' - $begin 'GlobalModelRes' - UseAutoLength=true - $end 'GlobalModelRes' - MeshMethod='Auto' - UseLegacyFaceterForTauVolumeMesh=false - DynamicSurfaceResolution=false - UseFlexMeshingForTAUvolumeMesh=false - UseAlternativeMeshMethodsAsFallBack=true - AllowPhiForLayeredGeometry=false - $end 'MeshSettings' - $begin 'MeshOperations' - NextUniqueID=2 - MoveBackwards=false - $begin 'Length_Coil' - RefineInside=false - ID=0 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(335, 385, 435, 485, 535, 585) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='1.065mm' - $end 'Length_Coil' - $begin 'Length_Core' - RefineInside=false - ID=1 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(6, 180) - RestrictElem=false - NumMaxElem='1000' - RestrictLength=true - MaxLength='1.065mm' - $end 'Length_Core' - $end 'MeshOperations' - $end 'MeshSetup' - $begin 'AnalysisSetup' - $begin 'SolveSetups' - NextUniqueID=1 - MoveBackwards=false - $begin 'Setup1' - ID=0 - SetupType='EddyCurrent' - Enabled=true - $begin 'MeshLink' - ImportMesh=false - $end 'MeshLink' - MaximumPasses=5 - MinimumPasses=2 - MinimumConvergedPasses=1 - PercentRefinement=30 - SolveFieldOnly=false - PercentError=1 - SolveMatrixAtLast=true - UseNonLinearIterNum=false - UseCacheFor('Pass') - UseIterativeSolver=false - RelativeResidual=0.0001 - NonLinearResidual=0.0001 - SmoothBHCurve=false - Frequency='100000Hz' - HasSweepSetup=false - UseHighOrderShapeFunc=false - UseMuLink=false - $end 'Setup1' - $end 'SolveSetups' - $end 'AnalysisSetup' - $begin 'Optimetrics' - $begin 'OptimetricsSetups' - NextUniqueID=0 - MoveBackwards=false - $end 'OptimetricsSetups' - $end 'Optimetrics' - $begin 'Solutions' - $end 'Solutions' - $begin 'FieldsReporter' - $begin 'FieldsCalculator' - $begin 'Named_Expression' - Name('cond') - ExpressionID(10002) - Vector_Constant(1, 0, 0) - MaterialOp('Conductivity (cond)', 1) - Operation('Mag') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Ipri') - ExpressionID(10003) - NameOfExpression('') - Operation('ScalarY') - Scalar_Function(FuncValue='Phase') - Operation('AtPhase') - EnterSurface('Layer1_1_Section1', 608) - Operation('SurfaceValue') - Operation('Integrate') - $end 'Named_Expression' - $begin 'Named_Expression' - Name('Isec') - ExpressionID(10004) - NameOfExpression('') - Operation('ScalarY') - Scalar_Function(FuncValue='Phase') - Operation('AtPhase') - EnterSurface('Layer3_1_Section1', 650) - Operation('SurfaceValue') - Operation('Integrate') - $end 'Named_Expression' - Line_Discretization=1000 - $end 'FieldsCalculator' - $begin 'PlotDefaults' - Default_SolutionId=68 - Default_PlotFolder='Automatic' - $end 'PlotDefaults' - $begin 'FieldsPlotManagerID' - NextUniqueID=11 - MoveBackwards=false - NumQuantityType=6 - $begin 'QuantityFolder_1' - PlotFolder='B' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=103 - m_nLevels=15 - minvalue=1e-06 - maxvalue=0.0425 - log=true - IntrinsicMin=2.43244834465884e-06 - IntrinsicMax=0.0340820599518489 - LimitFieldValuePrecision=true - FieldValuePrecisionDigits=4 - dB=false - ScaleType=1 - UserSpecifyValues(16, 9.99999997475243e-07, 2.03497597794922e-06, 4.14112673752243e-06, 8.4270932347863e-06, 1.71489318745444e-05, 3.48976645909715e-05, 7.10158928995952e-05, 0.000144515681313351, 0.000294085853965953, 0.000598457525484264, 0.0012178469914943, 0.00247828895226121, 0.00504325702786446, 0.0102629102766514, 0.020884782075882, 0.0425000004470348) - ValueNumberFormatTypeAuto=0 - ValueNumberFormatTypeScientific=false - ValueNumberFormatWidth=8 - ValueNumberFormatPrecision=6 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=-0.499999886032185 - ArrowMaxMagnitude=0.542489409446716 - ArrowMagnitudeThreshold=0 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=-0.499997567551655 - ArrowMaxIntrinsicMagnitude=0.534082059951849 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_1' - $begin 'QuantityFolder_2' - PlotFolder='Conductivity' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=90 - m_nLevels=15 - minvalue=58455956.460391 - maxvalue=58455956.460391 - log=false - IntrinsicMin=58455956.460391 - IntrinsicMax=58455956.460391 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 58455956, 57949336, 58027280, 58105220, 58183160, 58261104, 58339044, 58416984, 58494928, 58572868, 58650808, 58728752, 58806692, 58884632, 58962576, 58455956) - ValueNumberFormatTypeAuto=1 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=12 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=58455955.5 - ArrowMaxMagnitude=58455956.5 - ArrowMagnitudeThreshold=58455955.5 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=58455955.960391 - ArrowMaxIntrinsicMagnitude=58455956.960391 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_2' - $begin 'QuantityFolder_3' - PlotFolder='Core-Loss' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=90 - m_nLevels=15 - minvalue=2013.95736058355 - maxvalue=34979876.8419027 - log=true - IntrinsicMin=2013.95736058355 - IntrinsicMax=34979876.8419027 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 971, 1939.11938476562, 3872.48510742188, 7733.4794921875, 15444.0126953125, 30842.203125, 61592.87890625, 123003.015625, 245641.078125, 490553.3125, 979651.1875, 1956395.75, 3906984.5, 7802377, 15581604, 31117000) - ValueNumberFormatTypeAuto=0 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=12 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=970.504455566406 - ArrowMaxMagnitude=31116738.5 - ArrowMagnitudeThreshold=970.504455566406 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=2013.45736058355 - ArrowMaxIntrinsicMagnitude=34979877.3419027 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_3' - $begin 'QuantityFolder_4' - PlotFolder='J' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=313 - m_nLevels=15 - minvalue=7242393.63363049 - maxvalue=88420972.1568177 - log=false - IntrinsicMin=7242393.63363049 - IntrinsicMax=88420972.1568177 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 6249161, 10706201, 15163241, 19620280, 24077320, 28534360, 32991400, 37448440, 41905480, 46362520, 50819560, 55276600, 59733640, 64190680, 68647720, 73104760) - ValueNumberFormatTypeAuto=0 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=12 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=6249160.5 - ArrowMaxMagnitude=73104760.5 - ArrowMagnitudeThreshold=6249160.5 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=7242393.13363049 - ArrowMaxIntrinsicMagnitude=88420972.6568177 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_4' - $begin 'QuantityFolder_5' - PlotFolder='Ohmic-Loss' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=90 - m_nLevels=15 - minvalue=2096872.38563511 - maxvalue=92359945.2344041 - log=true - IntrinsicMin=2096872.38563511 - IntrinsicMax=92359945.2344041 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 1513700, 1967377.75, 2557028.75, 3323406.5, 4319478.5, 5614088, 7296709.5, 9483637, 12326017, 16020301, 20821812, 27062404, 35173388, 45715352, 59416892, 77225000) - ValueNumberFormatTypeAuto=0 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=12 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=1513694.125 - ArrowMaxMagnitude=77225408.5 - ArrowMagnitudeThreshold=1513694.125 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=2096871.88563511 - ArrowMaxIntrinsicMagnitude=92359945.7344041 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_5' - $begin 'QuantityFolder_6' - PlotFolder='Temperature' - PlotFolderInstance=3 - FolderSettingsType=11 - 'Real time mode'=true - $begin 'ColorMapSettings' - ColorMapType='Spectrum' - SpectrumType='Rainbow' - UniformColor(127, 255, 255) - RampColor(255, 127, 127) - $end 'ColorMapSettings' - $begin 'Scale3DSettings' - unit=80 - m_nLevels=15 - minvalue=20 - maxvalue=20 - log=false - IntrinsicMin=20 - IntrinsicMax=20 - LimitFieldValuePrecision=false - FieldValuePrecisionDigits=4 - dB=false - ScaleType=0 - UserSpecifyValues(16, 94.0739974975586, 95.0235748291016, 95.97314453125, 96.922721862793, 97.8722915649414, 98.8218688964844, 99.7714385986328, 100.721015930176, 101.670585632324, 102.620162963867, 103.569732666016, 104.519309997559, 105.468879699707, 106.41845703125, 107.368026733398, 108.317604064941) - ValueNumberFormatTypeAuto=1 - ValueNumberFormatTypeScientific=true - ValueNumberFormatWidth=8 - ValueNumberFormatPrecision=4 - $end 'Scale3DSettings' - $begin 'Marker3DSettings' - MarkerType=9 - MarkerMapSize=true - MarkerMapColor=false - MarkerSize=0.25 - $end 'Marker3DSettings' - $begin 'Arrow3DSettings' - ArrowType=1 - ArrowMapSize=true - ArrowMapColor=true - ShowArrowTail=true - ArrowSize=0.25 - ArrowMinMagnitude=93.5739974975586 - ArrowMaxMagnitude=108.817604064941 - ArrowMagnitudeThreshold=93.5739974975586 - ArrowMagnitudeFilteringFlag=false - ArrowMinIntrinsicMagnitude=19.5 - ArrowMaxIntrinsicMagnitude=20.5 - $end 'Arrow3DSettings' - $begin 'DeformScaleSettings' - ShowDeformation=true - MinScaleFactor=0 - MaxScaleFactor=1 - DeformationScale=0 - ShowDeformationOutline=false - $end 'DeformScaleSettings' - $end 'QuantityFolder_6' - NumPlots=6 - $begin 'PlotDefinition_1' - PlotDefinitionType='Mesh_field_type' - PlotName='cond1' - PlotDefinitionId=1 - VersionID=140 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=10002 - PlotFolder='Conductivity' - FieldType='Fields' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 6, 335, 385, 435, 485, 535, 585) - FilterIds(0) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.360954970121384 - MinArrowSpacing=0.240636646747589 - MaxArrowSpacing=0.481273293495178 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - SurfaceOnly=false - $end 'PlotDefinition_1' - $begin 'PlotDefinition_2' - PlotDefinitionType='Mesh_field_type' - PlotName='Mag_B1' - PlotDefinitionId=5 - VersionID=146 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=41 - PlotFolder='B' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 2, 180, 6) - FilterIds(2, 6, 180) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.396491169929504 - MinArrowSpacing=0.264327436685562 - MaxArrowSpacing=0.528654873371124 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - SurfaceOnly=false - $end 'PlotDefinition_2' - $begin 'PlotDefinition_3' - PlotDefinitionType='Mesh_field_type' - PlotName='Mag_J1' - PlotDefinitionId=6 - VersionID=146 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=42 - PlotFolder='J' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 6, 335, 385, 435, 485, 535, 585) - FilterIds(0) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.360954970121384 - MinArrowSpacing=0.240636646747589 - MaxArrowSpacing=0.481273293495178 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - SurfaceOnly=false - $end 'PlotDefinition_3' - $begin 'PlotDefinition_4' - PlotDefinitionType='Mesh_field_type' - PlotName='Ohmic_Loss1' - PlotDefinitionId=7 - VersionID=141 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=53 - PlotFolder='Ohmic-Loss' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 6, 335, 385, 435, 485, 535, 585) - FilterIds(0) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.360954970121384 - MinArrowSpacing=0.240636646747589 - MaxArrowSpacing=0.481273293495178 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - SurfaceOnly=false - $end 'PlotDefinition_4' - $begin 'PlotDefinition_5' - PlotDefinitionType='Mesh_field_type' - PlotName='Core_Loss1' - PlotDefinitionId=8 - VersionID=146 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=63 - PlotFolder='Core-Loss' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 2, 180, 6) - FilterIds(0) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.396491169929504 - MinArrowSpacing=0.264327436685562 - MaxArrowSpacing=0.528654873371124 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - SurfaceOnly=false - $end 'PlotDefinition_5' - $begin 'PlotDefinition_6' - PlotDefinitionType='Mesh_field_type' - PlotName='Temperature1' - PlotDefinitionId=10 - VersionID=108 - SolutionId=68 - UserSpecifyName=0 - UserSpecifyFolder=0 - QuantityId=60 - PlotFolder='Temperature' - StreamlinePlot=false - AdjacentSidePlot=false - FullModelPlot=false - IntrinsicVar='Freq=\'100000Hz\' Phase=\'0deg\'' - FieldPlotGeometry(1, 128, 2, 6, 335, 385, 435, 485, 535, 585) - FilterIds(0) - $begin 'PlotOnSurfaceSettings' - Filled=false - IsoValType='Fringe' - AddGrid=false - MapTransparency=true - Refinement=0 - Transparency=0 - SmoothingLevel=0 - ShadingType=0 - $begin 'Arrow3DSpacingSettings' - ArrowUniform=true - ArrowSpacing=0.360954970121384 - MinArrowSpacing=0.240636646747589 - MaxArrowSpacing=0.481273293495178 - $end 'Arrow3DSpacingSettings' - GridColor(255, 255, 255) - $end 'PlotOnSurfaceSettings' - EnableGaussianSmoothing=false - SurfaceOnly=false - $end 'PlotDefinition_6' - $end 'FieldsPlotManagerID' - $begin 'Report3dInGeomWnd' - Report3dNum=0 - $end 'Report3dInGeomWnd' - $begin 'Report2dInGeomWnd' - Report2dNum=0 - $end 'Report2dInGeomWnd' - $begin 'AntennaParametersInGeomWnd' - AntennaParametersNum=0 - $end 'AntennaParametersInGeomWnd' - AntennaParametersPlotTablesOrder() - $end 'FieldsReporter' - $begin 'SolutionManager' - $begin 'SimSetup' - TypeName='BaseSetup' - ID=66 - Name='Setup1' - $begin 'Solution' - ID=67 - Name='AdaptivePass' - $begin 'SimDataExtractor' - $begin 'QuantityIDs' - NextUniqueID=0 - MoveBackwards=false - IDMap() - $end 'QuantityIDs' - $begin 'Sweeps' - $begin 'PostprocessSweep' - Variable='NormalizedDistance' - RegularSweep=1 - Units='' - Minimum=0 - Maximum=1 - Increment=0.01 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phi' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Theta' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phase' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'Sweep' - Variable='Pass' - Column='1;2' - Units='' - $end 'Sweep' - $begin 'Sweep' - Variable='Freq' - Column='0.0001GHz' - Units='GHz' - $end 'Sweep' - $end 'Sweeps' - $end 'SimDataExtractor' - $end 'Solution' - $begin 'Solution' - ID=68 - Name='LastAdaptive' - $begin 'SimDataExtractor' - $begin 'QuantityIDs' - NextUniqueID=0 - MoveBackwards=false - IDMap() - $end 'QuantityIDs' - $begin 'Sweeps' - $begin 'PostprocessSweep' - Variable='NormalizedDistance' - RegularSweep=1 - Units='' - Minimum=0 - Maximum=1 - Increment=0.01 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phi' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Theta' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phase' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'Sweep' - Variable='Freq' - Column='100000Hz' - Units='Hz' - $end 'Sweep' - $end 'Sweeps' - $end 'SimDataExtractor' - $end 'Solution' - $end 'SimSetup' - $begin 'Version ID Map' - V=655 - $begin 'Setup' - N='Setup1' - V=655 - Soln(N='AdaptivePass', V=655) - Soln(N='LastAdaptive', V=655) - $end 'Setup' - $end 'Version ID Map' - $begin 'ID Map' - $begin 'Setup' - N='Setup1' - I=66 - Soln(N='AdaptivePass', I=67) - Soln(N='LastAdaptive', I=68) - $end 'Setup' - $end 'ID Map' - ValidationCacheHeader='' - $end 'SolutionManager' - $begin 'UserDefinedSolutionMgr' - NextUniqueID=1000000 - MoveBackwards=false - $end 'UserDefinedSolutionMgr' - $begin 'DatasetSolutionMgr' - NextUniqueID=2000000 - MoveBackwards=false - $end 'DatasetSolutionMgr' - Notes=$begin_cdata$ Notes: Due to higher frequency operations of planar transformers, the skin depth and proximity effects play a major role on the proper electromagnetic design process. Therefore, current 3D Maxwell design is using eddy-current solver to predict the electromagnetic harmonic characteristics of a planar transformer as Current vs Phase angle, Leakage Inductance and Electromagnetic Loss $end_cdata$ - $begin 'AnimationSetups' - $end 'AnimationSetups' - CacheHeaderFile='HDR63621189616614169583.tmp' - $end 'Maxwell3DModel' - $begin 'DataInstances' - DesignEditor='TopLevel' - Refdes('1', 'U2') - $begin 'CompInstances' - $begin 'Compinst' - ID='1' - Status='Status' - CompName='Maxwell3D' - GatesInUse() - $begin 'Properties' - TextProp('ID', 'SRID', '', '1') - $end 'Properties' - $end 'Compinst' - $end 'CompInstances' - $begin 'Instance' - DesignEditor='Maxwell3D' - ID='1' - $begin 'MaxwellDesignInstance' - DesignInstanceID=3 - $begin 'WindowPosition' - $begin 'EditorWindow' - Circuit(Editor3d(View('View Orientation Gadget'=1, WindowPos(3, -1, -1, -8, -31, 0, 0, 405, 293), OrientationMatrix(-0.0144033003598452, -0.0230966657400131, 0.0365190356969833, 0, 0.0432099066674709, -0.00769888749346137, 0.012173012830317, 0, 7.63639596002008e-10, 0.0384944453835487, 0.024346025660634, 0, -4.05195947905668e-08, 0, -5.96739196777344, 1, 0, -2.03854155540466, 2.03854155540466, -1, 1, -0.580528736114502, 12.5153121948242), Drawings[23: 'PQ_Core_Bottom', 'PQ_Core_Top', 'Board_1', 'Layer1_1', 'Board_2', 'Layer2_1', 'Board_3', 'Layer3_1', 'Board_4', 'Layer4_1', 'Board_5', 'Layer5_1', 'Board_6', 'Layer6_1', 'Layer1_1_Section1', 'Layer2_1_Section1', 'Layer3_1_Section1', 'Layer4_1_Section1', 'Layer5_1_Section1', 'Layer6_1_Section1', 'Region', 'Length_Coil', 'Length_Core'], 'View Data'('Render Mode'=1, 'Show Ruler'=1, 'Coordinate Systems View Mode'=0, 'CS Triad View Mode'=0, 'Render Facets'=1, GridVisible=1, GridAutoAdjust=1, GridAutoExtents=1, GridType='Rect', GridStyle='Line', NumPixels=30, dXForGrid=2, dYForGrid=2, dZForGrid=2, dRForGrid=2, dThetaForGrid=10), ClipPlanes(ClipPlaneOptions(DisableWhenDrawingNewPlane=true, ForceOpqaueForUnclipped=false, ShowClipped=false, Transparency=0, HandleColor=16776960))))) - $end 'EditorWindow' - $end 'WindowPosition' - $begin 'ReportSetup' - $begin 'ReportManager' - $begin 'Reports' - $begin 'Current vs Phase angle' - ReportID=5 - ReportName='Current vs Phase angle' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=2 - SolutionID=68 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=9 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0, 'PC', false, '1') - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=3 - VersionID=39 - Name='Ipri' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Phase' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Ipri' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Specifiable' - SubsweepChoiceType='All' - SweepVariableName='Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='All' - SweepVariableName='Freq' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Vp' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Rload' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '3' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=3 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=2 - SolutionID=68 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=9 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0, 'PC', false, '1') - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=4 - VersionID=40 - Name='Isec' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Phase' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Isec' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Specifiable' - SubsweepChoiceType='All' - SweepVariableName='Phase' - AllowSelecteValues=true - SweepHasConsistentValues=true - ColumnValues(0) - ParameterType='DoubleParam' - Units='deg' - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='All' - SweepVariableName='Freq' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Vp' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '2' - $begin '3' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Rload' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '3' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=3 - $end 'TraceDef' - $end 'Current vs Phase angle' - $begin 'Loss' - ReportID=11 - ReportName='Loss' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=2 - SolutionID=68 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=2 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=12 - VersionID=43 - Name='CoreLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Freq' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='CoreLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Regular' - SubsweepChoiceType='All' - SweepVariableName='Freq' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Vp' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Rload' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '2' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=3 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=2 - SolutionID=68 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=2 - SimValueContext(0, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=13 - VersionID=44 - Name='SolidLoss' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Freq' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='SolidLoss' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Regular' - SubsweepChoiceType='All' - SweepVariableName='Freq' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '0' - $begin '1' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Vp' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '1' - $begin '2' - SubsweepType='Regular' - SubsweepChoiceType='Nominal' - SweepVariableName='Rload' - AllowSelecteValues=true - SweepHasConsistentValues=true - $end '2' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=3 - $end 'TraceDef' - $end 'Loss' - $end 'Reports' - NextUniqueID=18 - MoveBackwards=false - $begin 'NextVersID' - NextUniqueID=45 - MoveBackwards=false - $end 'NextVersID' - $end 'ReportManager' - $begin 'Reports' - $begin 'Current vs Phase angle' - ReportID=5 - $begin 'Report2D' - name='Current vs Phase angle' - ReportID=5 - ReportType=9 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=3 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=4 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=61 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=16, AxisY11=17, AxisY12=18, AxisY13=19, AxisY14=20, AxisY15=21, AxisY16=22, AxisY17=23, AxisY18=24, AxisY19=25, AxisY2=8, AxisY20=26, AxisY3=9, AxisY4=10, AxisY5=11, AxisY6=12, AxisY7=13, AxisY8=14, AxisY9=15, Grid=27, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=5 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=6.54498469497874 - TickSpacing=0.872664625997165 - ManualUnits=false - Units='deg' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=13.0899693899575 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=4 - DecimalFieldPrecision=2 - ManualTitle='Current' - AxisColor(R=0, G=0, B=0) - MinScale=-50 - MaxScale=50 - TickSpacing=25 - ManualUnits=false - Units='' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=100 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-19 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-13 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - Height=-11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - Height=-11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=13 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=14 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=18 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=20 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=24 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=26 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=1688 - Left=823 - Bottom=9494 - Right=8795 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=28 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=1688 - Left=823 - Bottom=9494 - Right=8795 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=572 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=31 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=8795 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=1688 - Left=823 - Bottom=9494 - Right=8795 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=823 - Bottom=1688 - Right=8795 - $end 'AxisRect' - $begin 'GridRect' - Top=1688 - Left=823 - Bottom=9494 - Right=8795 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=1.74532925199433 - X_fwd=5 - X_fpr=2 - Y1_spc=20 - Y1_fwd=4 - Y1_fpr=2 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=4850 - Left=672 - Bottom=9850 - Right=8172 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=5000 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=5000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(3, 0, -1, 37) - IDMapItem(4, 0, -1, 39) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $begin 'TraceCharacteristicsDataSource' - ID=47 - $begin 'Parameters' - Name='max' - FunctionName='max' - $begin 'Range' - Type='Full' - Start='0' - End='1' - $end 'Range' - $end 'Parameters' - $end 'TraceCharacteristicsDataSource' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 35, 1, 31, 2, 32, 5, 6, 27, 28, 37, 38, 39, 40, 47, 48) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Current vs Phase angle' - $begin 'Loss' - ReportID=11 - $begin 'Report2D' - name='Loss' - ReportID=11 - ReportType=2 - DisplayType=4 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=12 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=13 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=66 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(DataTable=3, Header=0, PrimarySweep=1) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=7 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=7 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-19 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-13 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=390 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=553 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=669 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=17 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=514 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=22 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=669 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=27 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=726 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=32 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=664 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=37 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=516 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=42 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=2068 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=47 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=597 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=52 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=511 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=57 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=814 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=62 - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=225 - Left=565 - Bottom=9775 - Right=9775 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=false - $end 'OverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=25 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(12, 0, -1, 7) - IDMapItem(13, 0, -1, 9) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=25 - TransSrcDwg(-1, 0, 5) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'Loss' - $end 'Reports' - $begin 'ReportsWindowInfoList' - $begin 'Current vs Phase angle' - ReportID=5 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Current vs Phase angle' - $begin 'Loss' - ReportID=11 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'Loss' - $end 'ReportsWindowInfoList' - $end 'ReportSetup' - $begin 'Properties' - $end 'Properties' - $begin 'UserDefinedDocument' - $begin 'Data' - $end 'Data' - $end 'UserDefinedDocument' - $end 'MaxwellDesignInstance' - $end 'Instance' - $begin 'SODInfo' - $end 'SODInfo' - $end 'DataInstances' - $begin 'WBSystemIDToDesignInstanceIDMap' - $end 'WBSystemIDToDesignInstanceIDMap' - $begin 'WBSysIDSysDetails' - $end 'WBSysIDSysDetails' - $begin 'WBConnIDConnDetails' - $end 'WBConnIDConnDetails' - $begin 'WBMaterialGuidDetails' - WBMaterialGuidMap() - $end 'WBMaterialGuidDetails' - $begin 'MinervaProjectSettingsBlk' - MinervaRemoteFilePath='' - FolderContainerString='' - $end 'MinervaProjectSettingsBlk' -$end 'AnsoftProject' -$begin 'AllReferencedFilesForProject' -$begin 'Design_2.setup/NativeGeometryFiles' -NumFiles= 20 -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000006.x_b -BIN000000028524 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000006.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000006.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZm@@:Œ0âŽyE> -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ DSÿ@@Oÿ SDL/TYSA_DENSITYP!"(#TÿUNIT=mmO"AEDT_EntityName_V1P#$(#S{®Gáz„?O$AEDT_ExtentScale_V1Qm%&'F (( ™)*2ÿ °+,+Zd;ßOµ¿ìQ¸…ë¡¿ð?ð?ÿ --.+ð?ð¿ -×£p= -·? Ù/0Ü$•C»?ìQ¸…뱿ìQ¸…ë¡¿ *1Vÿ •2n™’¼Â345ˆ6789n™’¼ÂQ6B:;<=ÿ7>?@A4B-8†<CDEn™’¼Â9¿FGÜ$•C»¿ìQ¸…뱿F¾HI9·…ëQ¸®¿ìQ¸…뱿GÀJ9K¸…ëQ¸®¿xé&1¬¬¿¸…ëQ¸Ž¿JwLMHNGn™’¼ÂKÁOGP·…ëQ¸®¿ìQ¸…뱿ìQ¸…ë¡¿O_QRSTKn™’¼ÂPÂUKV·…ëQ¸®¿éÁ ÝI,±?UoWXNYPn™’¼ÂVÃDPZ·…ëQ¸®¿ìQ¸…ë±?D„[\8HVn™’¼ÂZÄ]V^¸…ëQ¸®?xé&1¬¬?ìQ¸…ë¡¿]D_`abZn™’¼Â^ÅbZc·…ëQ¸®?ìQ¸…ë±?b?de]f^n™’¼ÂcÆg^h·…ëQ¸®¿éÁ ÝI,±¿¸…ëQ¸Ž¿gjijklcn™’¼ÂhÇNcm¸…ëQ¸®¿xé&1¬¬?¸…ëQ¸Ž¿NtnoJUhn™’¼ÂmÈphq{®Gáz”?ûÊÉÊó¤¿ìQ¸…ë¡¿prstumn™’¼ÂqÉtmv{®Gáz”?ûÊÉÊ󤿸…ëQ¸Ž¿twxypqn™’¼ÂvÊzq{¸…ëQ¸®¿xé&1¬¬?ìQ¸…ë¡¿z[|}T~vn™’¼Â{Ëv€·…ëQ¸®?ìQ¸…뱿ìQ¸…ë¡¿4‚ƒ„{n™’¼Â€Ì…{†¸…ëQ¸®?xé&1¬¬¿¸…ëQ¸Ž¿…'‡ˆ‰Š€n™’¼Â†Í‹€Œ{®Gáz”¿ûÊÉÊó¤?ìQ¸…ë¡¿‹ Ž†n™’¼ÂŒÎf†EÜ$•C»?ìQ¸…ë±?f=‘’b“Œn™’¼ÂEÏ8Œ”Ü$•C»¿ìQ¸…ë±?”ЕE–{®Gáz”¿ûÊÉÊ󤿸…ëQ¸Ž¿• —˜u”n™’¼Â–ÑŠ”™·…ëQ¸®?éÁ ÝI,±?¸…ëQ¸Ž¿Š"š›…œ–n™’¼Â™Ò–ž·…ëQ¸®?éÁ ÝI,±¿¸…ëQ¸Ž¿Ÿ ¡¢™n™’¼ÂžÓ™£{®Gáz”¿ûÊÉÊó¤?¸…ëQ¸Ž¿ -¤¥•‹žn™’¼Â£Ôuž¦{®Gáz”¿ûÊÉÊó¤¿ìQ¸…ë¡¿u§¨p•£n™’¼Â¦Õ¡£©·…ëQ¸®?éÁ ÝI,±¿¡ª«œ¦n™’¼Â©Ö‰¦¬¸…ëQ¸®?xé&1¬¬?¸…ëQ¸Ž¿‰*­®„…©n™’¼Â¬×T©0¸…ëQ¸®¿xé&1¬¬¿ìQ¸…ë¡¿T]¯°Oz¬n™’¼Â0Øl¬ ·…ëQ¸®¿ìQ¸…ë±?ìQ¸…ë¡¿le±²g³0n™’¼ÂQ±L:li´µ²¶·¸l\¹º+³c´3lS»n™’¼ÂQ´M:³±¼½3>@?³C ·+Sa¼A³O¾n™’¼Â»¶³¿ÀÜ$•C»¿ìQ¸…ë±?ìQ¸…ë¡¿¿µ~Á»Ü$•C»?ìQ¸…ë±?ìQ¸…ë¡¿À·Y»Â·…ëQ¸®¿éÁ ÝI,±?¸…ëQ¸Ž¿YmÃÄUkÀn™’¼Â¸aÀÅ·…ëQ¸®?ìQ¸…ë±?ìQ¸…ë¡¿aIÆÇ/]Ân™’¼ÂŹ„Âȸ…ëQ¸®?xé&1¬¬¿ìQ¸…ë¡¿„/ÉʉÅn™’¼ÂȺœÅË·…ëQ¸®?éÁ ÝI,±?œ ÌÍŠ¡Èn™’¼ÂË»kÈη…ëQ¸®¿éÁ ÝI,±¿kkÏÐYgËn™’¼ÂμËI»I +‡¦?ÑÒ‹În™’¼ÂI½¢ÎF{®Gáz”?ûÊÉÊó¤?ìQ¸…ë¡¿¢ÓÔyIn™’¼ÂQÓb:¢ŸÕÖÔ×ØÙ¢ÚÛÜ+yÕÝ¢tÞn™’¼ÂQÕc:yÓwßÝàáâyãäØ+Þ³yåÁ{®Gáz”?ûÊÉÊó¤?¸…ëQ¸Ž¿å²“¾ÞÜ$•C»?ìQ¸…뱿Á´ƒÞ¿·…ëQ¸®?ìQ¸…뱿ƒ6æç“Án™’¼ÂQæY:ƒèéçêëìƒíîï+“;èìfƒån™’¼ÂQèX:“‘æðìêçñ“òóô-ÿêLìõñêìë/‚öò+ò÷øô/ìó+óMùn™’¼Âòöúûô÷ò’“üýí+÷Q’þ’÷ôøfÿ-üífôý-ý<n™’¼Âôîíüï“çî-9ï탫  --î: n™’¼Âçý  Q +:î  7n™’¼Â«îÿ âî+Zd;ßOµ?ìQ¸…뱿ð¿á +Zd;ßOµ¿ìQ¸…ë±?ìQ¸…ë¡¿ð?ã +·…ëQ¸®?¸…ëQ¸Ž¿ð¿(n™’¼Â ä+¸…ëQ¸®¿xé&1¬¬?áz®Gáš¿ð¿Œn™’¼Â}¹å+·…ëQ¸®?¸…ëQ¸Ž¿ð¿) n™’¼Ââäæ!+·…ëQ¸®?ìQ¸…뱿ìQ¸…ë‘¿ð¿5"n™’¼Âë #!ç$+@¥ÈR³?¬÷{8&⢿¸…ëQ¸Ž¿Q¾ì³S€í?°p ËØ¿&%n™’¼Â&'!$è'!(+¸…ëQ¸Ž¿ð?ð¿ -×£p= -·?'#)n™’¼Â*+$(é,$-+{®Gáz”?ûÊÉÊó¤¿ìQ¸…ë¡¿ð?,.n™’¼Â/01(-ê2(3+{®Gáz”¿ûÊÉÊó¤?ìQ¸…ë¡¿ð?24n™’¼Â567-3ë#-8+·…ëQ¸®?ìQ¸…ë¡¿ð¿#39n™’¼Â:;38ì<3=+·…ëQ¸®¿ìQ¸…뱿ìQ¸…ë‘¿ð¿<€>n™’¼ÂR?@8=í@8A+·…ëQ¸®¿ð?@~Bn™’¼ÂÐ<C=Aî4=D+Ü$•C»¿ìQ¸…뱿ìQ¸…ë‘¿ð¿4’En™’¼ÂA ¹ADïFAG+·…ëQ¸®?ð?F@Hn™’¼ÂIJDGðJDK+¸…ëQ¸®?xé&1¬¬?áz®Gáš¿ð¿JCLn™’¼ÂÙÛFGKñMGN+{®Gáz”?ûÊÉÊó¤¿ìQ¸…ë¡¿Q¾ì³S€í?°p ËØ¿M.On™’¼ÂP;äKNò;KQ+¸…ëQ¸®?xé&1¬¬¿áz®Gáš¿ð?;0Rn™’¼Âˆ#MNQóSNT+?¥ÈR³¿¬÷{8&â¢?¸…ëQ¸Ž¿Q¾ì³S€í?°p ËØ¿SsUn™’¼Â¥VWQTôVQX+·…ëQ¸®¿¸…ëQ¸Ž¿€ð¿€VuYn™’¼ÂZ[STXõ\T]+{®Gáz”?ûÊÉÊó¤?ìQ¸…ë¡¿ð?\^n™’¼ÂØ_0X]öúX`+·…ëQ¸®?ìQ¸…ë¡¿ð¿úJan™’¼Â`ób]`÷ö]c+Zd;ßOµ?ìQ¸…뱿ìQ¸…ë¡¿ð?öOdn™’¼Âñó`cøe`f+¸…ëQ¸Ž¿ð¿ð? -×£p= -·?elgn™’¼Âhijcfùkcl+{®Gáz”¿ûÊÉÊó¤¿ìQ¸…ë¡¿ð?k mn™’¼Ân16flúäfû+?¥ÈR³?¬÷{8&â¢?¸…ëQ¸Ž¿Q¾ì³S€í¿°p ËØ¿ä+on™’¼ÂÝMlûûólp+Ü$•C»?ìQ¸…뱿ìQ¸…ë‘¿ð¿püCûq+¸…ëQ¸®¿xé&1¬¬¿áz®Gáš¿ð?C{rn™’¼ÂM@spqýtp+Ü$•C»?ìQ¸…ë¡¿ð?tTun™’¼Âøvqþýqw+Ü$•C»?ð¿wÿ?x+·…ëQ¸®¿ð??ƒyn™’¼Âz{<wxsw|+@¥ÈR³¿¬÷{8&⢿¸…ëQ¸Ž¿Q¾ì³S€í¿°p ËØ¿€sx}n™’¼Â~C[x|x€+Ü$•C»¿ìQ¸…ë¡¿ð?bn™’¼Â‚ƒ|€Û|„+¸…ëQ¸®?xé&1¬¬?ìQ¸…ë¡¿Q¾ì³S€í¿°p ËØ¿ÛE…n™’¼ÂÔbJ€„i€†+·…ëQ¸®¿éÁ ÝI,±?¸…ëQ¸~¿€€ð¿in‡n™’¼ÂˆWe„†v„‰+Zd;ßOµ?ìQ¸…ë±?ìQ¸…ë¡¿ð¿vWŠn™’¼ÂÇ‹t†‰7†Œ+ð?ð?»I +‡¦?7;n™’¼ÂÒ2‰Œ‰5+Zd;ßOµ¿ìQ¸…뱿ð?‰n™’¼ÂŽŒ5 Œ+Ü$•C»¿ìQ¸…ë±?ìQ¸…ë‘¿ð¿+5‘+·…ëQ¸®?éÁ ÝI,±?¸…ëQ¸~¿ð¿+!’n™’¼Â“'-‘ ”+Ü$•C»¿ð¿‡•n™’¼Â–{‘” -ƒ‘—+Zd;ßOµ¿ìQ¸…뱿ìQ¸…ë¡¿ð¿ƒ`˜n™’¼Â™š”— j”›+·…ëQ¸®¿éÁ ÝI,±¿¸…ëQ¸~¿ð?jiœn™’¼Âež—› Ÿ— +{®Gáz”¿ûÊÉÊó¤¿ìQ¸…ë¡¿Q¾ì³S€í¿°p ËØ¿Ÿ\¡n™’¼Â¢š‹›  0›£+¸…ëQ¸Ž¿ð¿ð?»I +‡¦?0¤n™’¼Âá\, £ ¥+Zd;ßOµ?ìQ¸…ë±?ð?>¦n™’¼ÂFý£¥1£§+ìQ¸…ë¡¿ð¿ð?»I +‡¦?1¨n™’¼Â©,k¥§{¥ª+Zd;ßOµ¿ìQ¸…ë±?ð¿{…«n™’¼Â¬?§ªž§­+·…ëQ¸®¿ìQ¸…ë¡¿ð¿žf®n™’¼Â¯jª­‹ª°+¸…ëQ¸®¿xé&1¬¬?ìQ¸…ë¡¿Q¾ì³S€í?°p ËØ¿‹Z±n™’¼ÂŽŸv­°6­+¸…ëQ¸Ž¿ð¿ð?»I +‡¦?6 ²n™’¼Â³k2° °.+·…ëQ¸®?ð?.¹ -+·…ëQ¸®¿ìQ¸…ë±?ìQ¸…둿𿹴n™’¼Â²4.Q´:¹µE¶P:·¸(#Qµ®¹¹´º»¼QE:4º2´½Q:»´¾Rÿ¶Q»¯¹µ¿ÀQ :¿•ÁR¾5Q¿°¹»ÂÃQ• -:«ÄRÁQ±¹•¿ÅÆQ« :{Å•yÇRÄQŲ¹{«ÂÈÉQy :?È«>ÊRÇQȳ¹?yÅËÌQ> :<ËyBÍRÊEQË´¹<>ÈÎÏQB:@Î>rÐRÍQε¹@BËÑÒQr:CÑB}ÓRÐBQѶ¹CrÎÔÕQ}:sÔrÖ×RÓ9QÔ·¹s}ÑØÙQÖ:[Ø}YÚR×W[vÖn™’¼ÂjsVÛQظ¹[ÖÔÜÝQY:VÜÖUÞRÚVQܹ¹VYØßàQU:SßYáâRÞZQߺ¹SUÜãäQá:WãU‡åRâYWpán™’¼ÂæSiçQ㻹WáßèéQ‡:ièágêRåUQè¼¹i‡ãëìQg:e뇜íRêTQë½¹egèîïQœ:jîg®ðRíSQî¾¹jœëñòQ®:žñœóôRðRQñ¿¹ž®îõöQó:õ®÷RôDdón™’¼ÂøžQõÀ¹óñùúQ:ùó˜ûR÷QùÁ¹õüýQ˜:ƒüþÿRûQü¹ƒ˜ùQþ:š˜¡Rÿš^þn™’¼ÂƒŸQùšþüQ¡:Ÿþ±RCQĹŸ¡ Q±:‹¡Š -R&QŹ‹±  QŠ:v ±u R -$Q ƹvŠQu :tŠR ‹Qǹtu Q!:udRŒRn™’¼ÂÿtöQȹQd":öùRQɹödQù#:ódaRQʹóùQa$:úùRŽQ˹úa !Q%:b a…"RŠbHn™’¼Â#úÛ$Q ̹b%&Q…&:Û%L'R"‰Q%͹ۅ ()QL':J(…H*R'†Q(ιJL%+,QH(:F+L¦-R*…Q+ϹFH(./Q¦):.H0R-„Q.й¦+12Q*:ý1¦ 3R0ƒQ1ѹý. 4R3‚P¹5AQ Ò¹î 167S4µ´´´´´ä?Å?Å?Q6Ó¹  89S7µ´´´´´ä?Å?Å?Q,: 6 ":Q8Ô¹"6;<S9µ´´´´´ä?Å?Å?Q"-:89=Q;Õ¹#98>?S<µ´´´´´ä?Å?Å?Q9.:#;"R@Q>Ö¹;R;ABS?µ´´´´´ä?Å?Å?QR/:;>9OCQA×¹MO>DESBµ´´´´´ä?Å?Å?QO0:MARoFQDعäoAGHSEµ´´´´´ä?Å?Å?Qo1:äDO IQGÙ¹ DJKSHµ´´´´´ä?Å?Å?Q 2:GoLQJÚ¹GMNSKµ´´´´´ä?Å?Å?Q3:J %OQMÛ¹%JPQSNµ´´´´´ä?Å?Å?Q%4:M)RQPܹ')MSTSQµ´´´´´ä?Å?Å?Q)5:'P%’UQSݹ+’PVWSTµ´´´´´ä?Å?Å?Q’6:+S)XYQVÞ¹-XSZ[SWµ´´´´´ä?Å?Å?-Xn™’¼Â\+] -QX7:-V’^_QZß¹]^V`aS[µ´´´´´ä?Å?Å?]^n™’¼Âb-_Q^8:]ZXcdQ`à¹_cZefSaµ´´´´´ä?Å?Å?_cn™’¼ÂÜ]\gQc9:_`^^hQeá¹\^`ijSfµ´´´´´ä?Å?Å?Q^::\ec¤kQiâ¹0¤elmSjµ´´´´´ä?Å?Å?Q¤;:0i^.nQlã¹,.iopSmµ´´´´´ä?Å?Å?Q.<:,l¤¨qQoä¹1¨lrsSpµ´´´´´ä?Å?Å?Q¨=:1o.mtQrå¹kmouvSsµ´´´´´ä?Å?Å?Qm>:kr¨²wQuæ¹6²rxySvµ´´´´´ä?Å?Å?Q²?:6um4zQxç¹24u{|Syµ´´´´´ä?Å?Å?Q4@:2x²;}Q{è¹7;x~S|µ´´´´´ä?Å?Å?Q;A:7{46S~µ´´´´´ä?Å?Å?RªR}4Rz®Rw7Rt¯Rq{Rn°Rk‡Rh±Ü€ÚŽ¢_‚+gÛ_$Û+ìQ¸…ë¡¿ð¿ð?»I +‡¦?$Úbg+·…ëQ¸®?ìQ¸…ë±?ìQ¸…ë‘¿ð¿ÛÜ[gç+·…ëQ¸®¿¸…ëQ¸Ž¿€ð¿€çÝWÛ+ð¿ð? -×£p= -·?Þç+Ü$•C»?ìQ¸…ë±?ìQ¸…ë‘¿ð¿ßš+·…ëQ¸®¿ìQ¸…ë¡¿ð¿à]+·…ëQ¸®?éÁ ÝI,±¿¸…ëQ¸~¿ð?€YŽ+Ú€ƒÜ]ÔÛÙ-Ž€ܯ‹„‹+…5‚‹Ü_†-‚…‡¢Ø\-…5ˆ‰‡…‚/yá0-Ø×ãÔy‚\‡+×BãŠã×Ù؉Ýäâ-Ù×Ôã]®J+âàÝ*‰›+à%á‹*àâ ŠŒ'“+›Ž®Šâ*-G›ŽI›œ“+\-®›`‰ÙJã-`®#]ƒúÚ+#`Iaeb+ƒ€Úa`ú#-€‘ƒ~Çvø-‘€‚/øtñ-~S’z/¿n™’¼ÂÇ“eÿavƒ+ø÷’ò~‘tÿ+ÿ“Ç~’+“Ve”“ÿefü+e“Çb#bI-Íüb-ÍœIFŽ-ïÍ¡\-b-I#ŽbÍF+\•“bœ-+b•\Œ¡–]+•b—Œ•b“*'–-–˜™«b]-˜2™š™˜›–… &-«˜– -¡ï + -˜«:ƒë-:˜ -›Ê#+ëêñç -:+›˜:™„ˆ;P-Ê€s‚„:#›-s€©ÊpPMœ-‚€Ê‘ñöë-©€¢su1ž+PŸˆœ„sM+œŸPxp/,-Ÿ-x xŸœˆt&á-/…‡tœ,+…/žp©1-ž…¡unk-¡…ž5•³6-n¢~¨•žk¡+¢z~£~¢°nJ˜s¤+¨¢n°u¢Ÿ©-°¢¨~TMC¥-¢€©T¨Ÿ+€™¢O¥š+™€‚S¦ƒ+¥§MRTš¢-§}j¨M§j¥J°C~+R§¥©Oª<¦+©§RHÐ@-ª«B¦HR<©-¦«ªAO™ƒ-«‘A¬A«¦BS74@+B«AªŽ–-@>73S‚™->”3­‚€ø™³@+ø€¯‚l·+¯€Žøzºž„+·¶C²³ø‚-¶—²)C¶¸·83 ?-¸¶²CD¬{z-?>378–¬-–®Ž¬?+¬®–z8¸{+®‚æ¯z®¬æDX?+æ®zÐU°W±+X²ˆ\Uz?æ-²ŽZ³ˆ²ZXY±ih+\²XºD²¹¸-º²\}l¯žø-}²ºZzo¯+Z²}ˆNÄV´+oµ¥„N}Z-µ‹¥¶¥µ†o´S³+„µo†zŽ‹-†µ„¥‹52-5…¡†2+´·ijN¥S-³·´˜¡65+·r³¸˜·³¤•~sn-¤·˜¹Jj[-¹·¤Ägheº-j§Mg¤[¹+§©jkºj+º»h°gj-»hº¼h»±ºY¹e+°»º±kæW-±»°hUˆi-ÿ¼g½n™’¼Â+¸»¾-+¸1Q½÷:¼¿ÀÁÂ+XÁn™’¼Â”¼€ -”¼1¸qÀn™’¼Â¼£·Ã-¼£13ÿ¾ž¼ÄÅ+¸…ëQ¸~¿€€ð¿ -×£p= -·?ð? 1 ))–Æn™’¼Â­¶Ç-­1QÆî:)ÈÉÊË­“Ên™’¼Â¬)>Ì-¬)12Ç©)ÍÎ+Zd;ßOµ¿ìQ¸…ë±?ìQ¸…ë‘¿ð¿ð¿2ͨ”ÏÇ+Zd;ßOµ?ìQ¸…ë±?ìQ¸…ë‘¿€ð?ð¿2Ϊ¬ÇÐ+Zd;ßOµ¿ìQ¸…뱿ìQ¸…ë‘¿ð?ð?¬Ñn™’¼Â³­«Î-³­13Ы—ÎÃ+¸…ëQ¸~¿€€ð? -×£p= -·?ð¿—Òn™’¼ÂÓ‹•Ð-Ó‹12ì¸ÐÔ+¸…ëQ¸Ž¿ð¿ð¿2Ô­ÃÕ+·…ëQ¸®?ìQ¸…ë‘¿ð¿ð?FÖn™’¼ÂŠõÔ+Šõ12Õ®ŠÔ,+z®Gáz¤?:Zøý}^¨?ìQ¸…ë¡¿°p ËØ?Q¾ì³S€í¿Q¾ì³S€í?±p ËØ?ŠA×n™’¼Â×Õ-12,¯Õ +Zd;ßOµ?€€ð¿ð¿8Øn™’¼ÂšŠ,-šŠ1QØþ:Ù×ÚÛš1Ún™’¼Â ˜Ü+ 1QÚÿ:šÝØÞß ,Þn™’¼Â‹šŸà-‹š12Ü›šáâ+·…ëQ¸®?ìQ¸…ë‘¿ð¿ð?2ášÓÜ+ð?ð?2✋ÜÄ+¸…ëQ¸Ž¿€ð?ð?‹$ãn™’¼Â— àâ+— 12Äþâ¾+Ü$•C»?ìQ¸…ë‘¿ð?€ð¿þPän™’¼Âõ”÷Ä+õ”1Qäú:þåæçèõKçn™’¼Âþêé+þ1”Uæn™’¼Âþ+“Í+þ+1Qæù:”êÁäëQê ¹”æìåíQÁø:+ì½æîRëqQ쟹+Á¿êïRîQ¿ž¹¼½ðìñSïµ´´´´´ä?Å?Å?Qð¹¸Àò¿óSñµ´´´´´ä?Å?Å?QÀö:¸ðô½õQòœ¹£ôöð÷Sóµ´´´´´ä?Å?Å?£yôn™’¼Â¸¨¢ø+¸¨1Qôõ:£òùÀúQö›¹¨ùûòüS÷µ´´´´´ä?Å?Å?¨|ùn™’¼Â£¯§Å-£¯1Qùô:¨öýôþQûš¹¯ýÿöSüµ´´´´´ä?Å?Å?¯ýn™’¼Â¨¶®+¨¶1Qýó:¯ûùQÿ™¹¶ûSµ´´´´´ä?Å?Å?¶Šn™’¼Â¯³µ+¯³1Qò:¶ÿýQ˜¹³ ÿ -Sµ´´´´´ä?Å?Å?³n™’¼Â¶¬² -¶¬1Qñ:³Ñ Q —¹¬Ñ S -µ´´´´´ä?Å?Å?QÑð:¬ ÊQ –¹­ÊÈ Sµ´´´´´ä?Å?Å?QÊï:­ ÆÑQÈ•¹)Æ Sµ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?R -R R A2 £³éÌ+·…ëQ¸®¿ìQ¸…ë‘¿ð¿ð?2é¢õ +Zd;ßOµ?ìQ¸…뱿ìQ¸…ë‘¿ð¿ð?2̤­ à+Ü$•C»¿ìQ¸…ë‘¿ð?ð¿2ॠÌ+{®Gáz¤?:Zøý}^¨¿ìQ¸…ë¡¿°p ËØ?Q¾ì³S€í?Q¾ì³S€í¿±p ËØ?2¦¶àÏ+z®Gáz¤¿:Zøý}^¨?ìQ¸…ë¡¿°p ËØ?Q¾ì³S€í?Q¾ì³S€í¿±p ËØ?3ϧˆÍ+ìQ¸…ë‘¿€€ð¿»I +‡¦?ð?ˆn™’¼ÂÓ…Ï+Ó1Q:ˆ2Ón™’¼Âˆ—á+ˆ—1Q:ÓÒÒÓÒÒÒ7+‰Ò7-‰ˆQª¹ÓQÒ:—ãR¨Q©¹—ÒQã:‹ÞÒ RfQ¨¹‹ã!"QÞ: !Úã#R gQ!§¹ ÞÝ$R#hQݦ¹šÚÙ!%S$µ´´´´´ä?Å?Å?QÙ¥¹Ø&Ý'S%µ´´´´´ä?Å?Å?Q&¤¹Š×(Ù)S'µ´´´´´ä?Å?Å?Q×ý:Š&ÖØ*Q(£¹Ö+&,S)µ´´´´´ä?Å?Å?QÖü:(ç×-Q+¢¹õçå(.S,µ´´´´´ä?Å?Å?Qçû:õ+äÖ/Q塹þäê+0S.µ´´´´´ä?Å?Å?S0µ´´´´´ä?Å?Å?R/oR-mR*kS"µ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?Q«¹ˆ12Sµ´´´´´ä?Å?Å?Q1¬¹ 2º3S2µ´´´´´ä?Å?Å?Q2: 1E4Qº­¹4E1µ5S3µ´´´´´ä?Å?Å?S5µ´´´´´ä?Å?Å?R4R¦2¡¯øé+Zd;ßOµ¿ð?ð?2ø £Å+{®Gáz¤¿:Zøý}^¨¿ìQ¸…ë¡¿°p ËØ?Q¾ì³S€í¿Q¾ì³S€í?±p ËØ?2ÅŸ¨¾ø+·…ëQ¸®¿ìQ¸…ë‘¿ð¿ð?R.RRþ@Rú0RõQSíµ´´´´´ä?Å?Å?RèpRßiRÛjQÉí:67Æ8RË Q6ë9:É;Q7k·É&<R8P·=(#Q&l7>R<ÿÿÿÿ**¥€T>PQ_Core_BottomO=AEDT_BODYFlagGroupColor_V1P9?@QQ:êAB6CT;PQ_Core_BottomPADE(#QBé?F:GHRCP?IJj - - -QF”KBLbÿG0RHPK¹MhSLµ´´´´´ä?Å?Å?OMSDL/TYSA_COLOUR_2OJSDL/TYSA_LAYEROEAttGS_PS_LayerO @SDL/TYSA_NAMERÂPÄ·¹´YZVˆ-ЮæŽk©@°+Ž®ЖHBª+HNŽDJFn™’¼ÂQNE:H[LOQ[D:D<NPQLF:JNnQROQnG:NLWRRQ_QWH:UnÃSRRbQÃI:YWÏTRS^QÏJ:kÃiURT]QiK:gϱVRU[RV\Q<C:86[WRPRWˆŸxP…›;™+&à á…x+áà&Ýt‡0/+ à*&™Œ+“•Œ\ŠŽ++Q’R:~|XY/NX‘~a n™’¼ÂQXS:/’ÆZQÆT:aX_[RZ£Q_U:]Æd\R[¡QdV:b_‘]R\ŸQ‘W:fdè^R]žR^Q|Q:z¯’_RY¢Q¯P:TQ|`R_(QQO:O¼¯aR`'Q¼N:S´QbRaRbRdrR_sRYtRUuRRzROvRLwRIxRF|RC}R@~R=R:€O5SDL/TYSA_COLOURS2µ´´´´´ä?Å?Å?S/µ´´´´´ä?Å?Å?S,µ´´´´´ä?Å?Å?S)µ´´´´´ä?Å?Å?S&µ´´´´´ä?Å?Å?S!µ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?S µ´´´´´ä?Å?Å?S µ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?Sýµ´´´´´ä?Å?Å?Súµ´´´´´ä?Å?Å?Söµ´´´´´ä?Å?Å?Sòµ´´´´´ä?Å?Å?Sïµ´´´´´ä?Å?Å?Sìµ´´´´´ä?Å?Å?Séµ´´´´´ä?Å?Å?Säµ´´´´´ä?Å?Å?S൴´´´´ä?Å?Å?Sݵ´´´´´ä?Å?Å?SÙµ´´´´´ä?Å?Å?SÕµ´´´´´ä?Å?Å?SÒµ´´´´´ä?Å?Å?Sϵ´´´´´ä?Å?Å?S̵´´´´´ä?Å?Å?Sɵ´´´´´ä?Å?Å?SƵ´´´´´ä?Å?Å?Sõ´´´´´ä?Å?Å?SÀµ´´´´´ä?Å?Å?R½S¼µ´´´´´ä?Å?Å?O¸AEDT_EntityID_V1RRðœQZ:æÉcRé›QÉ[:„­dRcšQ­\:‰ɇeRd™Q‡]:…­šfRe•Qš^:Š‡ÌgRf”QÌ_:œšªhRg“Qª`:¡ÌŸiRh’QŸa:ªÓjRi‘Rj¾±SåÜ$•C»¿ìQ¸…뱿ìQ¸…ë¡¿Qwd:tÕrkRß–Qre:pw§lRk—Q§f:ur—mRl˜Q—g:•§¤nRm*Q¤h:—oRn`Qi:‹¤ÑpRoaQÑj:qRp)Rq¬RÖ R½ RµR=*˜ SJ( F{B:6Ñ7&P%:r(#T 'Material_3F3OrAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000180.x_b -BIN000000028518 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000180.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000180.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZm@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1Qm&'(F )) ™*+3ÿ -°,-+ìQ¸…ë‘?€€ð¿»I +‡¦?ð?ÿ ./+{®Gáz”¿ûÊÉÊó¤?ìQ¸…ë¡?ð¿ Ù01Ü$•C»¿ìQ¸…뱿ìQ¸…ë¡? +2Vÿ•3n™’¼Â456ˆ789:n™’¼ÂQ7B;<=>ÿ8?@ABCD-9†=EFGn™’¼Â:½HI·…ëQ¸®¿ìQ¸…ë±?H¼JK:Ü$•C»¿ìQ¸…ë±?ìQ¸…ë¡?I¾L:M{®Gáz”¿ûÊÉÊó¤?ìQ¸…ë¡?L NOPQIn™’¼ÂM¿RIS{®Gáz”?ûÊÉÊó¤?ìQ¸…ë¡?R TUVPMn™’¼ÂSÀWMX·…ëQ¸®¿ìQ¸…뱿ìQ¸…ë¡?WcYZ[0Sn™’¼ÂXÁ\S]¸…ëQ¸®?xé&1¬¬¿ìQ¸…ë¡?\/^_`aXn™’¼Â]ÂbXc{®Gáz”¿ûÊÉÊó¤¿ìQ¸…ë¡?bdefg]n™’¼ÂcÃa]h¸…ëQ¸®?xé&1¬¬¿¸…ëQ¸Ž?a*ij\kcn™’¼ÂhÄlcm·…ëQ¸®¿éÁ ÝI,±¿lknopqhn™’¼ÂmÅPhr{®Gáz”¿ûÊÉÊó¤?¸…ëQ¸Ž?P -stRLmn™’¼ÂrÆumv¸…ëQ¸®?xé&1¬¬?ìQ¸…ë¡?uDwxyzrn™’¼ÂvÇ{r|·…ëQ¸®¿éÁ ÝI,±?¸…ëQ¸Ž?{o}~pvn™’¼Â|È€v·…ëQ¸®?ìQ¸…뱿ìQ¸…ë¡?€6‚ƒ„`|n™’¼ÂÉz|…Ü$•C»?ìQ¸…뱿z?†‡uˆn™’¼Â…Êp‰·…ëQ¸®¿éÁ ÝI,±?pmŠ‹{l…n™’¼Â‰Ë`…Œ·…ëQ¸®?ìQ¸…뱿`4Ž€\‰n™’¼ÂŒÌ[‰¸…ëQ¸®¿xé&1¬¬¿ìQ¸…ë¡?[e‘qWŒn™’¼ÂÍ’Œ“Ü$•C»?ìQ¸…ë±?ìQ¸…ë¡?’S”•–—n™’¼Â“΄G·…ëQ¸®?ìQ¸…ë±?„;˜™ˆ€“n™’¼ÂGÏ9“šÜ$•C»¿ìQ¸…ë±?šÐQG›»I +‡¦?QœLšn™’¼Â›Ñgšž{®Gáz”?ûÊÉÊó¤¿ìQ¸…ë¡?gŸ b¡›n™’¼ÂžÒ›¢¸…ëQ¸®¿xé&1¬¬¿¸…ëQ¸Ž?t£¤¥{žn™’¼Â¢Ó¡ž¦{®Gáz”?ûÊÉÊ󤿸…ëQ¸Ž?¡§¨gV¢n™’¼Â¦ÔV¢©{®Gáz”?ûÊÉÊó¤?¸…ëQ¸Ž?Vª«¡R¦n™’¼Â©Õq¦¬·…ëQ¸®¿éÁ ÝI,±¿¸…ëQ¸Ž?qj­®l[©n™’¼Â¬Ö¥©¯¸…ëQ¸®¿xé&1¬¬?¸…ëQ¸Ž?¥w°±²¬n™’¼Â¯×f¬1{®Gáz”¿ûÊÉÊ󤿸…ëQ¸Ž?f³´µb¯n™’¼Â1ØF¯ Ü$•C»¿ìQ¸…뱿F„¶·9²1n™’¼ÂQ¶D;F=¸¹·º»¼F½5¾-²¸»F¥¿n™’¼ÂQ¸E;²¶°À»ºZ·²ÁÂÃ+¿¶²ÄÅ·…ëQ¸®¿ìQ¸…뱿ĵÆÇ¿·…ëQ¸®¿ìQ¸…ë±?ìQ¸…ë¡?Å·È¿É·…ëQ¸®?éÁ ÝI,±¿ÈÊË̵Ån™’¼ÂɸµÅÍ·…ëQ¸®?éÁ ÝI,±¿¸…ëQ¸Ž?µÎÏÈfÉn™’¼Â͹ÌÉз…ëQ¸®?éÁ ÝI,±?¸…ëQ¸Ž?Ì ÑÒÓÈÍn™’¼ÂкÓÍK·…ëQ¸®?éÁ ÝI,±?Ó"ÔÕkÌÐn™’¼ÂK»yÐH·…ëQ¸®?ìQ¸…ë±?ìQ¸…ë¡?yIÖ×—uKn™’¼ÂQÖT;yØwÙ×ÚxÛy•ÜÝ+—NØÞ’yÇn™’¼ÂQØS;—”ÖßÞà‡á—Ûâã-Ç´—äÄÜ$•C»?ìQ¸…뱿ìQ¸…ë¡?ä³kåǸ…ëQ¸®?xé&1¬¬?¸…ëQ¸Ž?k'æçaÓän™’¼Â岈èäÜ$•C»?ìQ¸…ë±?ˆ=éêz„ån™’¼Â豖帅ëQ¸®¿xé&1¬¬?ìQ¸…ë¡?–[ëìÆ’èn™’¼ÂQëQ;–í”îìïOð–±ñò+Æ]íBJ–Än™’¼ÂQíP;ÆóëôBõòDÆ8CA+J_ó40ÆHn™’¼ÂQóO;Jöí÷4?A@JEø+0aö½WJ n™’¼ÂQöN;0Yóù½úø¾0·5¼+ÿú”EûøúE½Jüýþ+¾ú½EFÿÁ+5’n™’¼Â½C¼º·Z0ü+º‘·Zº¼»W+Ú üW¼-b -n™’¼Â¼ ý üÚþ0øý-ÚY þÚüJA-ý`n™’¼ÂøQ;ý -^n™’¼ÂAýàý+Ü$•C»¿ìQ¸…ë¡?ð?ß+¸…ëQ¸®?xé&1¬¬¿áz®Gáš?ð¿áC+·…ëQ¸®¿ìQ¸…ë±?ìQ¸…ë‘?ð?Cn™’¼ÂB5ñÿâ+¸…ëQ¸Ž?ð¿ð?»I +‡¦? n™’¼Â!"#ãÂ$+Zd;ßOµ¿ìQ¸…뱿ð?ƒ%n™’¼Â»&$ä'(+·…ëQ¸®?¸…ëQ¸Ž?ð¿'()n™’¼Â*+,$(å-$.+¸…ëQ¸®?xé&1¬¬?ìQ¸…ë¡?Q¾ì³S€í¿°p ËØ¿-C/n™’¼ÂU01(.æâ(2+Ü$•C»?ìQ¸…ë¡?ð?âT3n™’¼ÂÛÜ4.2ç5.6+{®Gáz”?ûÊÉÊó¤¿ìQ¸…ë¡?Q¾ì³S€í?°p ËØ¿507n™’¼Â8926è+2:+·…ëQ¸®?¸…ëQ¸Ž?ð¿+);n™’¼ÂÏ<'6:é=6>+ìQ¸…ë¡?ð¿ð?»I +‡¦?= ?n™’¼Â@A.:>ê9:B+·…ëQ¸®?ð?93Cn™’¼ÂËD5>BëE>F+Zd;ßOµ?ìQ¸…ë±?ð?E<Gn™’¼ÂHIJBFì0BK+¸…ëQ¸®?xé&1¬¬?áz®Gáš?ð?0ELn™’¼ÂMN-FKíOFP+·…ëQ¸®?éÁ ÝI,±?¸…ëQ¸~?ð?O!Qn™’¼ÂRSTKPîUK+¸…ëQ¸®¿xé&1¬¬?ìQ¸…ë¡?Q¾ì³S€í?°p ËØ¿UZVn™’¼ÂOÜPï5PW+Ü$•C»¿ìQ¸…뱿ìQ¸…ë‘?ð?WðXY+·…ëQ¸®?ìQ¸…ë¡?ð¿X7Zn™’¼Â[JDWYñIW\+Ü$•C»?ð¿I>]n™’¼Â^1EY\òDY_+·…ëQ¸®?ìQ¸…뱿ìQ¸…ë‘?ð?D5`n™’¼ÂaX9\_ó\b+·…ëQ¸®¿ìQ¸…뱿ìQ¸…ë‘?ð?~cn™’¼ÂZ&d_bôe_f+·…ëQ¸®¿éÁ ÝI,±?¸…ëQ¸~?ð?engn™’¼Âhijbfõ1bk+Zd;ßOµ?ìQ¸…뱿ð¿1@ln™’¼ÂŽ-Ifkömfn+ð?ð?»I +‡¦?m<n™’¼Â.kn÷ ko+·…ëQ¸®¿ìQ¸…ë¡?ð¿ dpn™’¼ÂqnoøAnr+{®Gáz”?ûÊÉÊó¤?ìQ¸…ë¡?ð¿A sn™’¼Âtu=orù4ov+Ü$•C»?ìQ¸…ë±?ìQ¸…ë‘?ð?4Rwn™’¼Âáâxrvúyrz+{®Gáz”?ûÊÉÊó¤¿ìQ¸…ë¡?ð¿y{n™’¼Â|}uvzûv +·…ëQ¸®¿ìQ¸…ë¡?ð¿\~n™’¼ÂòUz üz+Zd;ßOµ¿ìQ¸…뱿ìQ¸…ë¡?ð¿ýj +ð¿ð? -×£p= -·?jl€n™’¼Âe‚þƒ+Zd;ßOµ¿ìQ¸…ë±?ìQ¸…ë¡?ð?ƒÿ„…+·…ëQ¸®?ìQ¸…ë±?ìQ¸…ë‘?ð?„J†n™’¼Â݇Nƒ…qƒˆ+{®Gáz”¿ûÊÉÊó¤¿ìQ¸…ë¡?Q¾ì³S€í¿°p ËØ¿qf‰n™’¼ÂŠ‚ …ˆ"…‹+·…ëQ¸®?éÁ ÝI,±¿¸…ëQ¸~?ð¿"Œn™’¼ÂTˆ‹dˆŽ+¸…ëQ¸®¿xé&1¬¬¿áz®Gáš?ð¿d{n™’¼Â¤‹ŽÜ‹‘+Zd;ßOµ?ìQ¸…ë±?ìQ¸…ë¡?ð¿ÜW’n™’¼Â×U⎑“Ž”+@¥ÈR³¿¬÷{8&⢿¸…ëQ¸Ž?Q¾ì³S€í¿°p ËØ¿“s•n™’¼Â–—i‘”S‘˜+ð?ð¿ -×£p= -·?S#™n™’¼Âš,O”˜‡”›+Ü$•C»?ìQ¸…뱿ìQ¸…ë‘?ð?‡Mœn™’¼Âx„˜›—˜ž+·…ëQ¸®¿¸…ëQ¸Ž?ð¿—uŸn™’¼Â® “›ž ›¡+·…ëQ¸®¿¸…ëQ¸Ž?ð¿ v¢n™’¼Â£—ž¡ ‚ž¤+·…ëQ¸®¿éÁ ÝI,±¿¸…ëQ¸~?ð¿‚i¥n™’¼Â¦jq¡¤ -§¡¨+Zd;ßOµ¿ìQ¸…ë±?𿧇©n™’¼Â@ª¤¨ ,¤«+?¥ÈR³?¬÷{8&â¢?¸…ëQ¸Ž?Q¾ì³S€í¿°p ËØ¿,&¬n™’¼Â«'S¨« i¨­+¸…ëQ¸Ž?ð¿ð? -×£p= -·?ip®n™’¼Â¯“e«­ N«6+·…ëQ¸®?ìQ¸…ë¡?ð¿NH°n™’¼Âx„0­6­±+Ü$•C»¿ìQ¸…ë±?ìQ¸…ë‘?ð?±u6²+¸…ëQ¸Ž?ð¿ð?»I +‡¦?u³n™’¼Â´yA±²}±µ+ìQ¸…ë¡?ð¿ð?»I +‡¦?}¶n™’¼Â·#y²µ<²¸+@¥ÈR³?¬÷{8&⢿¸…ëQ¸Ž?Q¾ì³S€í?°p ËØ¿<+¹n™’¼Âº+µ¸xµ»+Zd;ßOµ?ìQ¸…뱿ìQ¸…ë¡?ð?xO¼n™’¼Âã4‡¸»¸½+?¥ÈR³¿¬÷{8&â¢?¸…ëQ¸Ž?Q¾ì³S€í?°p ËØ¿x¾n™’¼Âtd »½ª»/+·…ëQ¸®¿ð?ª‰¿n™’¼ÂDñ§½/½ +Ü$•C»¿ð¿…Àn™’¼Â¾§Â/QÀ ;Á©%ÂP;ÃÄ(#QÁ²ÅÀÆÇÈQ© -;§Æ¿ÀÉQ% ;ÂÇÀÊËRÿÂQdzÅÂ%ÁÌÍQÊ ;&Ì%cÎRË&€Ên™’¼ÂoÂÏQÌ´Å&ÊÇÐÑQc;ÐÊÒRÎQеÅcÌÓÔQ;dÓc¾ÕRÒÿQÓ¶ÅdÐÖ×Q¾;Ö¢ØRÕþQַžÓÙÚQ¢; Ù¾ŸÛRØýQٸŠ¢ÖÜÝQŸ;—Ü¢•ÞRÛüQܹŗŸÙßàQ•;“ߟ®áRÞûQߺœ•ÜâãQ®;iâ•gäRáúQâ»Åi®ßåæQg;e宀çRäùQå¼ÅegâèéQ€;jèg¥êRçøQè½Åj€åëìQ¥;‚뀉íRê÷Që¾Å‚¥èîïQ‰;qî¥pðRíöQî¿Åq‰ëñòQp; ñ‰ -óRðõQñÀÅ pîôõQ -;ôpöRóôQôÁÅ -ñ÷RöóPÅøAQÂÅýôùúS÷µ´´´´´ä?Å?Å?QùÃÅûüSúµ´´´´´ä?Å?Å?Q;ù~ýQûÄÅ~ùþÿSüµ´´´´´ä?Å?Å?Q~;ûVQþÅÅUVûSÿµ´´´´´ä?Å?Å?QV;Uþ~’QÆÅÜ’þSµ´´´´´ä?Å?Å?Q’;ÜV3QÇÅâ3Sµ´´´´´ä?Å?Å?Q3 ;â’w QÈÅ4w - Sµ´´´´´ä?Å?Å?Qw!;43¼ Q -ÉÅx¼ S µ´´´´´ä?Å?Å?Q¼";x -wœQ ÊŇœ -Sµ´´´´´ä?Å?Å?Qœ#;‡ ¼†QËÅ„† Sµ´´´´´ä?Å?Å?Q†$;„œ°QÌÅN°Sµ´´´´´ä?Å?Å?Q°%;N†LQÍÅ0LSµ´´´´´ä?Å?Å?QL&;0°/QÎÅ-/Sµ´´´´´ä?Å?Å?Q/';-LlQÏÅ1l Sµ´´´´´ä?Å?Å?Ql(;1/]!QÐÅI]"#S µ´´´´´ä?Å?Å?Q]);IlG$Q"ÑÅEG%&S#µ´´´´´ä?Å?Å?QG*;E"]'(Q%ÒÅJ'")*S&µ´´´´´ä?Å?Å?J:'n™’¼Â+EX,Q'+;J%GZ-Q)ÓÅXZ%./S*µ´´´´´ä?Å?Å?QZ,;X)'`0Q.ÔÅD`)12S/µ´´´´´ä?Å?Å?Q`-;D.ZC3Q1ÕÅ9C.45S2µ´´´´´ä?Å?Å?QC.;91`76Q4ÖÅ57178S5µ´´´´´ä?Å?Å?Q7/;54C9:Q7×Å94;<S8µ´´´´´ä?Å?Å?.9n™’¼Âj5<Q90;77¹=Q;ØÅ<¹7>?S<µ´´´´´ä?Å?Å?Q¹1;<;9;@Q>ÙÅ+;;ABS?µ´´´´´ä?Å?Å?Q;2;+>¹)CQAÚÅ')>DESBµ´´´´´ä?Å?Å?Q)3;'A;¬FQDÛÅ,¬AGHSEµ´´´´´ä?Å?Å?Q¬4;,D)™IQGÜÅS™DJKSHµ´´´´´ä?Å?Å?Q™5;SG¬QLQJÝÅOQGMNSKµ´´´´´ä?Å?Å?QQ6;OJ™OPQMÞÅTOJQRSNµ´´´´´ä?Å?Å?TOn™’¼ÂSO"QO7;TMQŒTQQßÅ"ŒMUVSRµ´´´´´ä?Å?Å?QŒ8;"QO WQUàÅ QXYSVµ´´´´´ä?Å?Å?Q 9;UŒZ[QXáÅ#ZU\]SYµ´´´´´ä?Å?Å?#Zn™’¼Â^}_QZ:;#X ¶`Q\âÅ}¶XabS]µ´´´´´ä?Å?Å?Q¶;;}\Z{cQaãÅy{\deSbµ´´´´´ä?Å?Å?Q{<;ya¶³fQdäÅu³aghSeµ´´´´´ä?Å?Å?Q³=;ud{siQgåÅAsdjkShµ´´´´´ä?Å?Å?Qs>;Ag³?lQjæÅ=?gmnSkµ´´´´´ä?Å?Å?Q??;=jsopQmçÅ.ojqrSnµ´´´´´ä?Å?Å?.on™’¼Âs=m Qo@;.m?<tQqèÅm<muSrµ´´´´´ä?Å?Å?Q<A;mqo7vSuµ´´´´´ä?Å?Å?RvÌRtÍsïðOPw.+ï‹ðxðïìs¥t£-OïsìL Uy+wz@!Ls.-zw,{@ztwRy=+!zw^P|s+^z!·f}#+|~–tf!^-~r|–~®|´“+t~|£Pð!+£~t¯¥~ +¯~£®{€ih+~õ±{£ ¯-õŽ~‚õD~phe-±õ~ò¥ìñð-òõ±B– +ñŒƒn™’¼ÂìCª„Qƒ;ñ…¿†„Ýñ,+¸…ëQ¸®¿xé&1¬¬?áz®Gáš?ð?,ÜJ_„+·…ëQ¸®?ð?ÞT„+¸…ëQ¸Ž?ð?ð¿ -×£p= -·?_Û#Ï,+{®Gáz”¿ûÊÉÊó¤¿ìQ¸…ë¡?ð¿ÏÚ&_+·…ëQ¸®¿ð?Q…¯Åñƒ‡ˆ‰Q;C‡ƒŠQ¿ ;ªˆƒ©‹R†Qˆ°Åª¿…ÆŒR‹QƱŧ©ˆÁSŒµ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?Q‡®ÅCŽ…Q;5Ž3RŠQŽ­Å5‘‡’Q3;‘“”RQ‘¬Å3•Ž–Q“;,•—3˜R”ÿ,“n™’¼Â™z -+™2Q•«Å,“š‘›Q—;™šœ“R˜µ™—n™’¼Â,žŸ  -,ž2QšªÅ™—¡•¢Qœ;ž¡£—¤R¶žœn™’¼Â™¥¦ §-™¥2Q¡©Åžœ¨š©Q£;¥¨ªœ«R¤·¥$£n™’¼Âž¬­ ®-ž¬2Q¨¨Å¥£¯¡°Qª;¬¯±£²R«¸¬,ªn™’¼Â¥³´ µ+¥³2Q¯§Å¬ª¶¨·Q±ÿ;³¶¸ª¹R²¹³1±n™’¼Â¬º» ¼-¬º2Q¶¦Å³±½¯¾Q¸þ;º½¿±ÀR¹ºº8¸n™’¼Â³Á Ã+³Á2Q½¥Åº¸Ä¶ÅQ¿ý;ÁÄƸÇRÀ»ÁA¿n™’¼ÂºÈÉ Ê+ºÈ2QĤÅÁ¿Ë½ÌQÆü;ÈËÍ¿ÎRǼÈFÆn™’¼ÂÁÏÐ Ñ-ÁÏ2QË£ÅÈÆÒÄÓQÍû;ÏÒÔÆÕRνÏKÍn™’¼ÂÈÖ× Ø-ÈÖ2QÒ¢ÅÏÍÙËÚQÔú;ÖÙÛÍÜRÕ¾ÖPÔn™’¼ÂÏÝà Þ-ÏÝ2QÙ¡ÅÖÔßÒàQÛù;ÝßáÔâRÜ¿ÝUÛn™’¼ÂÖã ä-Ö2Qß ÅÝÛåÙæQáø;åçÛèRâÀXán™’¼ÂÝéÚ ê+Ýé2QåŸÅáëßìQç÷;éëíáîRèÁégçn™’¼Âï ð-2QëžÅéçñåòQíö;ñóçôRîÂqín™’¼Âéõ~ ö+éõ2QñÅí÷ëøQóõ;õ÷ùíúRôÃõyón™’¼Âûü ý-û2Q÷œÅõóþñÿQùô;ûþóRúÄû|ùn™’¼Âõ -+õ2Qþ›Åûù÷Qó;ùRÅn™’¼Âûx -ûx2QšÅ -þ Qò;x -  RÆxŠn™’¼Â‚ï -‚2Q -™ÅxQ ñ;‚R Ç‚ n™’¼Âxõ +x2Q˜Å‚  -Qð; RÈn™’¼Â‚ûº +‚û2Q—ÅQï;ûRÉû“n™’¼Â*ú +*2Q–ÅûQî;* !RÊ*–n™’¼Âû? "+û2Q•Å*#Q í;$%&R!ËQ$ë'( )Q%kà '*R&´PÃ+(#Q'l%,R*ÿÿÿÿ**¥€T ,PQ_Core_TopO+AEDT_BODYFlagGroupColor_V1P'-.QQ(ê/0$1T )PQ_Core_TopP/23(#Q0é-4(56R1P-78j - - -Q4”90:bÿ50R6P9Å;hS:µ´´´´´ä?Å?Å?O;SDL/TYSA_COLOUR_2O8SDL/TYSA_LAYERO3AttGS_PS_LayerO .SDL/TYSA_NAMES#µ´´´´´ä?Å?Å??—8*2ÿ"§*Ø +Zd;ßOµ¿ìQ¸…ë±?ìQ¸…ë‘?ð?€ð? 2 *2ئÏÃ"+Zd;ßOµ?ìQ¸…뱿ìQ¸…ë‘?ð?ð¿2 ¨™"§+€ð?ð?3§©ž ð+¸…ëQ¸~?€ð? -×£p= -·?ð¿3ðªé§+¸…ëQ¸~?€€ð¿ -×£p= -·?ð?2«xðö+z®Gáz¤¿:Zøý}^¨?ìQ¸…ë¡?°p ËØ¿Q¾ì³S€í¿Q¾ì³S€í¿±p ËØ?2ö¬®+¸…ëQ¸Ž?€€ð¿ð¿2®­¥öê+¸…ëQ¸Ž?ð?ð?2ê®®-+Zd;ßOµ¿ìQ¸…ë¡?€ð?ð?2-¯ûê -+·…ëQ¸®¿ìQ¸…ë‘?ð?€ð¿2Ã¥ºØ+Zd;ßOµ?ð¿ð¿2¤‚äÃ+·…ëQ¸®¿ìQ¸…ë‘?ð?€ð¿2ä£ÝÞ+Zd;ßOµ?ìQ¸…ë±?ìQ¸…ë‘?ð¿ð?2Þ¢Öä+Ü$•C»?ìQ¸…ë‘?ð¿ð?2¡ûýÞ+Ü$•C»¿ìQ¸…ë‘?ð¿ð?2ý õÊ+{®Gáz¤¿:Zøý}^¨¿ìQ¸…ë¡?°p ËØ¿Q¾ì³S€í?€Q¾ì³S€í?±p ËØ?2ÊŸÁµý+z®Gáz¤?:Zøý}^¨?ìQ¸…ë¡?°p ËØ¿Q¾ì³S€í?Q¾ì³S€í?±p ËØ?2µž¬ÑÊ+{®Gáz¤?:Zøý}^¨¿ìQ¸…ë¡?°p ËØ¿Q¾ì³S€í¿Q¾ì³S€í¿±p ËØ?2Ñȵ+·…ëQ¸®?ìQ¸…ë‘?ð?ð¿2œ¼Ñ+Zd;ßOµ¿ìQ¸…뱿ìQ¸…ë‘?€ð¿€ð¿2¼›³ +·…ëQ¸®?ìQ¸…ë‘?ð?ð¿2 š¼+Zd;ßOµ¿€ð?ð?Sµ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?S µ´´´´´ä?Å?Å?‚<<Ëlj¦-ÃÁ<²o&-‹<=pDª-ïh¦p<j+¦ï€l>‚+ïh¦é€ï¦hq¯i>->?oq¦‚-}?û?‘>®—–-o>lÃ&<+o²Z-‘W  +‘?[¤dŠ- Úe[ -eÚ@ bŠq}-@Ú8eg·}A-Šü¤}[eq +}üŠ´b^#·-üz´õ´ü}¤f–“|-·z^Ab@}+Az·´g|y-´zAt¡Bu+|´º ¡Ay´+´-º¬º´C|a¨<D+ ´|Cg85@-C´ º\j-8Ú[@\ 5C+[Úã8€_Xa+ãÚÛ[—ƒx+_»ja\[X8-a»_E€FD+»2ϳE»a`Ë9-F×Gƒ`aDE-×LÏG×FzŽ1^-ƒ×F€ãx[-׃G—‡‡+‡àHÞz‡G-àQáÖHàᇈ^IH-áàÞH’ê4+^ÂŽHzHI+HÂ^+ˆIE+Â9šº+ÂHš„ÕJ+IãÝê„HE+-ãVÝÝÝã•Iy™„J+êãI•ˆá4H-•ãêÝ’×ÜÛ-ÛÚ×ã’Þâá+™ÐÕJ„Ý„I-JЙMyxN-ÐG*ÈMÐJ*uç0K+xÚU×uJNM+UÚyxRK-L+yÚ UL@=w-KÉçLuU--LÉK«RtA@-ÉB«Á«ÉLçVM,B+tz´@VLA+çÉ«KkM0*-M­ÒBk«,-B­M¨V´ut-­%B¥¨­BD¡º<|-D­¨NaÏ+-N­DÒµSTO-Ï»jµD+N+»EÏÈO"+j»Ï_aCº+O¦SPµ"-¦OžS¦QOÌNT+P¦OQÈšS-Q¦PSÓRO-šÂ+ËÓPSQ+ËšŽÈE9P+ŽÂË^`G1F+RÐ*ÕÌQOS+*ÐMRkÒ'M+ÕÐR™Ó+Jš-Ò­NMÌ*'R- Úy–OU-Úþ Æò-¤ü´Š‘d?+®~¯–q?—€+hï€{e+=‹ÿ@§-DõB‹ª=+ÿ=Á9¾-@?489=§ÿ+ÁÿÃF»Â-Sµ´´´´´ä?Å?Å?Sÿµ´´´´´ä?Å?Å?Søµ´´´´´ä?Å?Å?Sòµ´´´´´ä?Å?Å?Sìµ´´´´´ä?Å?Å?Sæµ´´´´´ä?Å?Å?S൴´´´´ä?Å?Å?SÚµ´´´´´ä?Å?Å?SÓµ´´´´´ä?Å?Å?S̵´´´´´ä?Å?Å?Sŵ´´´´´ä?Å?Å?S¾µ´´´´´ä?Å?Å?S·µ´´´´´ä?Å?Å?S°µ´´´´´ä?Å?Å?S©µ´´´´´ä?Å?Å?S¢µ´´´´´ä?Å?Å?ŸR™RŸRRQm-{QRmR+{,S›µ´´´´´ä?Å?Å?S–µ´´´´´ä?Å?Å?S’µ´´´´´ä?Å?Å?Sµ´´´´´ä?Å?Å?S‰µ´´´´´ä?Å?Å?RpÎRlÏRiÐRfÑRcÒR`ÓR[ÔRWÕRTÖRP×RLØRIÙRFÚRCÛR@ÜR=ÝR:ÞR6ßR3àR0áR-âR(ãR$äR!åRæRçRèRéRêRëR ìR íRîRïRðRýñOøSDL/TYSA_COLOURSõµ´´´´´ä?Å?Å?Sòµ´´´´´ä?Å?Å?Sïµ´´´´´ä?Å?Å?Sìµ´´´´´ä?Å?Å?Séµ´´´´´ä?Å?Å?Sæµ´´´´´ä?Å?Å?Sãµ´´´´´ä?Å?Å?S൴´´´´ä?Å?Å?Sݵ´´´´´ä?Å?Å?SÚµ´´´´´ä?Å?Å?S×µ´´´´´ä?Å?Å?SÔµ´´´´´ä?Å?Å?Sѵ´´´´´ä?Å?Å?S͵´´´´´ä?Å?Å?RÉSȵ´´´´´ä?Å?Å?OÄAEDT_EntityID_V1A?84Æþ+RòEú¾ø94@-QYM;WöSRù%QL;[­YTRS&Q­K;qnURT'QnJ;lŠ­VRU(QŠI;p}nWRV)Q}H;{£ŠXRW*Q£G;°}YRX+Q°F;¥¸£ZRY,RZ-R÷$Rô#Q”R;’ëØ[Rî"R[!QéW;ˆ†˜\Q†V;zwé]Q˜X;„é‚^R\Q‚Y;€˜_R^QZ;`‚^`R_Q^[;\iaR`Qi\;a^æbRaQæ];kiÔcRbQÔ^;ÓæÑdRcQÑ_;ÌÔÊeRdQÊ`;ÈÑÎfReQÎa;µʳgRfQ³b;fÎdhRgQdc;b³ŸiRhQŸd;gd§jRiQ§e;¡ŸªkRjQªf;V§TlRkQTg;RªsmRl Qsh;PTNnRm QNi;LsœoRn -Qœj;QNpRo Rp QwU;uÖ†qR]RqRß RÙRÀ.Q=C;97¶rR¹/Rr0R>1+˜ SJ) 4q0($œ%'P&;s(#T (Material_3F3OsAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000307.x_b -BIN000000005903 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000307.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000307.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+2ÿ -,-+¸…ëQ¸Ž¿ð¿ð¿ÿ $.+8´Èv¾ŸŠ¿ð?ð? -×£p= -·? /0»I +‡¦?¸…ëQ¸Ž¿ +1Vÿ2n™’¼Â34 5360n™’¼ÂQ5G789:ÿ3;33<<+6 9=/>n™’¼Â0> -×£p= -·?8´Èv¾ŸŠ¿>6?0 -×£p= -·?¸…ëQ¸Ž¿?@>»I +‡¦¿NöSÙÙX<8´Èv¾ŸŠ¿@AB/?n™’¼ÂQAJ7@CDBEBB@FGF+/ CH6@ n™’¼ÂQCI7/9AIHJHH/KLK+ÿJH,KMKK/HL-LNn™’¼ÂH4GOQNE7LPQ8R4 Qn™’¼Â=L.G8n™’¼ÂBLSO!LS+¸…ëQ¸Ž¿ð?ð?»I +‡¦?S"GO.+8´Èv¾ŸŠ¿ð¿ð?»I +‡¦?.#4S +¸…ëQ¸Ž¿ð¿ð? -×£p= -·?Q8F7GTN5UP7VW(#QT9XG8PYRÿUFPXZAQP8XLN[T\SYà?Q[7X4Q]P^S\à?QQD74[2N_Q]6X2`[aS^à?Q2C7]bQcQ`5Xdbe]fSaà?ÿdbn™’¼ÂgM h-g1QbB7d`i2jQe4Xgik`lSfà?g -in™’¼Âd,m n+d,1QiA7geobpQk3X,oqerSlà?,on™’¼Âg*s -+g*1Qo@7,ktiuQq2X*tkvSrà?*tn™’¼Â,; -+,1Qt?7*qwoxSvà?Qw>7yzt{Rx6Qy<|}w~QzKVw'R{3PV€(#Q'LzRÿÿÿÿ€€TBoard_1O€AEDT_BODYFlagGroupColor_V1P|‚ƒQQ};„…y†T~Board_1P„‡ˆ(#Q…:‚‰}Š‹R†P‚Œj - - -Q‰1Ž…bÿŠ0R‹PŽXhSà?OSDL/TYSA_COLOUR_2OSDL/TYSA_LAYEROˆAttGS_PS_LayerO ƒSDL/TYSA_NAME;3*E2-*h -+8´Èv¾ŸŠ¿ð?ð? 1 *3ÿhdn-+€€ð¿»I +‡¦?ð?3ngh+xé&1¬Œ¿€€ð¿ -×£p= -·?ð?EB*Ru5s=,J=s==6‘4‘+‘’‘‘6=4-’ ‘gRp4m<g’<m<<3-RjEMKd““FdF“FF@BG-Rc8R_7OZSDL/TYSA_COLOUROWAEDT_EntityID_V1RRGQ9H765C”RIIR”9RDHR::+ SJ) ‰T…}yAz'P&7•(#T (polyamideO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000335.x_b -BIN000000005907 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000335.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000335.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+3ÿ -,-+_d;ßO‡¿€€ð¿nƒÀÊ¡µ?ð?ÿ $./+>´Èv¾ŸŠ¿ð?ð?nƒÀÊ¡µ? 01nƒÀÊ¡µ?>Àÿ˜T<®Gáz„¿ +2Vÿ3n™’¼Â4567408n™’¼ÂQ7G9:;<ÿ4=44>>+0 ;?@ n™’¼Â8A1cX9´È¦?·Þj˜|Ì!<{®Gáz„¿A@8cX9´È¦?:´Èv¾ŸŠ¿1B8 nƒÀÊ¡µ?g½²l‡^R<>´Èv¾ŸŠ¿BCD@1n™’¼ÂQCJ9BEFDGDDBH.H+@ EI0BAn™’¼ÂQEI9@;CJIKII@LML+ÿKINOLPLL@IM-MQn™’¼ÂI5.RQQE9MST:U5 Tn™’¼Â?M/.:n™’¼ÂDM R"M6/+:´Èv¾ŸŠ¿ð?ð?cX9´È¦?6!R+{®Gáz„¿ð?ð?cX9´È¦?/#5R +®Gáz„¿ð?ð?nƒÀÊ¡µ?Q:F9.VQ7WP9XY(#QV9Z.:S[RÿW_PZ\AQS8ZMQ]V^S[ð?à?Ð?Q]7Z5T_S`S^ð?à?Ð?QTD95]3QaQ_6Z3b]cS`ð?à?Ð?Q3C9_dTeQb5ZNdf_gScð?à?Ð?ÿNdn™’¼Â,K h+,2QdB9Nbi3jQf4Z,ikblSgð?à?Ð?, -in™’¼ÂNmG -+Nm2QiA9,fndoQk3ZmnpfqSlð?à?Ð?mnn™’¼Â,*r s+,*2Qn@9mktiuQp2Z*tkvSqð?à?Ð?*tn™’¼Âm= --m2Qt?9*pwnxSvð?à?Ð?Qw>9yzt{Rx^Qy<|}w~QzKXw'R{OPX€(#Q'LzRÿÿÿÿ@€ÿ€TLayer1_1O€AEDT_BODYFlagGroupColor_V1P|‚ƒQQ};„…y†T~Layer1_1P„‡ˆ(#Q…:‚‰}Š‹R†P‚Œj - - -Q‰1Ž…bÿŠ0R‹PŽZhSð?à?Ð?OSDL/TYSA_COLOUR_2OSDL/TYSA_LAYEROˆAttGS_PS_LayerO ƒSDL/TYSA_NAME=4*P3-*s -+Zd;ßO‡¿€€ð¿cX9´È¦?ð? 2 *2ÿsmh-+O—nƒ°?uÍ’¦ÑF<~®Gáz„¿ª<ð?ð?ñG×™³³œ<ª¼2hNs+O—nƒ°?g½²l‡^B<;´Èv¾ŸŠ¿ª¼ð¿ð¿ñG×™³³œ¼ª<PL*Ru]r?m‘?r??0’5’+‘>m>‘>>4-’“’’0?5-“ ’,Ro\GD,“Rj[RebRaaO\SDL/TYSA_COLOUROYAEDT_EntityID_V1RU`OHNHOHHBD.-Q;H907E”RJTR”VRFWR<U+ SJ) ‰V…}yCz'P&9•(#T (copper_tempO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000357.x_b -BIN000000005903 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000357.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000357.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+2ÿ -,-+{®Gáz„¿ð¿ð¿ÿ $.+ü©ñÒMb€¿ð?ð? -×£p= -·? /0»I +‡¦¿NöSÙÙX<ü©ñÒMb€¿ +1Vÿ2n™’¼Â34 5367n™’¼ÂQ5G89:;ÿ3<33==+6 :>?0n™’¼Â7@0 -×£p= -·?ü©ñÒMb€¿@?7»I +‡¦?{®Gáz„¿067 -×£p= -·?{®Gáz„¿? AB6/@n™’¼ÂQAI8?:CDBEBB?FGF+/CH? n™’¼ÂQCJ8/AIHJHH/KLK+ÿJH*KMKK/HL-L9n™’¼ÂHGNQ9F8LOP5QGPn™’¼ÂB4L.N"LR.+ü©ñÒMb€¿ð¿ð?»I +‡¦?R!4N+{®Gáz„¿ð¿ð? -×£p= -·?.#GN +{®Gáz„¿ð?ð?»I +‡¦?4 Sn™’¼Â>GRQSD84T2PU>V>>6W4W+V>,EWXWW6>4-X WYÿY -Zn™’¼Â[,\ -+[,1QZA8Y]^_`[_n™’¼ÂYa b-Y1,^n™’¼ÂY*V -+Y*1\=YX3ÿ-Yc -+<ßO—n‚¿€€ð¿ -×£p= -·?ð? 1 **dn™’¼Â,< c+,1Qd?8*ef^g<3*J2c*b-+ü©ñÒMb€¿ð?ð?3b[c+{®Gázt?€€ð¿»I +‡¦?ð?P8hi(#Qe2j*dklQf>8mndoQ^@8,kdZpRÿghQk3j,^e]qRpgPjrAQ]4jYZkstSqà?Qs5j[_]uvStà?Q_B8[sZ2wQu6j2sTxSvà?Q2C8u_SyQT7j4Suz{Sxà?Qz8jGPTO|S{à?QPE8GzS9}QO9jL9z~S|à?S~à?R}yRyjRwwOrSDL/TYSA_COLOURQm<€fQnKhf'‚RoePhƒ(#Q'Ln„R‚ÿÿÿÿ€€T„Board_2OƒAEDT_BODYFlagGroupColor_V1P…†QQ€;‡ˆm‰TBoard_2P‡Š‹(#Qˆ:…Œ€ŽR‰P…j - - -QŒ1‘ˆ’bÿ0RŽP‘j“hS’à?O“SDL/TYSA_COLOUR_2OSDL/TYSA_LAYERO‹AttGS_PS_LayerO †SDL/TYSA_NAMESlà?OiAEDT_EntityID_V1=\==3-aF[MFaFF?BG-MK[R`fEB,RUiRQxRIzQ:H865A”RD{R”kR;l+ SJ) ŒOˆ€mCn'P&8•(#T (polyamideO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000385.x_b -BIN000000005907 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000385.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000385.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+3ÿ -,-+A´Èv¾Ÿz¿€€ð¿nƒÀÊ¡µ?ð?ÿ $.+{®Gázt¿ð?ð?cX9´È¦? /0nƒÀÊ¡µ?g½²l‡^R<ªñÒMb€¿ +1Vÿ2n™’¼Â34 5360n™’¼ÂQ5G789:ÿ3;33<<+6 9=>?n™’¼Â0@ cX9´È¦?·Þj˜|Ì!<{®Gázt¿@>?0cX9´È¦?ü©ñÒMb€¿> AB6/@n™’¼Â?6@nƒÀÊ¡µ?>Àÿ˜T<ƒ®Gázt¿QAI7>9CDBEBB>FGF+/CH> n™’¼ÂQCJ7/AIHJHH/KLK+ÿJH,MKNKK/HL-L8n™’¼ÂHGOQ8F7LPQ5RGQn™’¼ÂB4LSO!LS+ªñÒMb€¿ð?ð?nƒÀÊ¡µ?S"GO.+ü©ñÒMb€¿ð?ð?cX9´È¦?.#4S +ƒ®Gázt¿ð?ð?nƒÀÊ¡µ?4 Tn™’¼Â=G.QTD74U2QV=W==6X4X+W=YZXMXX6=4-M X,ÿ, -[n™’¼Â\YJ -+\Y1Q[A7,]^_`\_n™’¼Â,E a+,1Y^n™’¼Â,*W -+,*1 1 **bn™’¼ÂY; c-Y1Qb?7*de^f;3*g3c*a+:´Èv¾Ÿz¿€€ð¿cX9´È¦?ð?2ÿa\c-+O—nƒ°?g½²l‡^B<þ©ñÒMb€¿ª¼ð¿ð¿ñG×™³³œ¼ª<2-Ya -+O—nƒ°?uÍ’¦ÑF<®Gázt¿ª<ð?ð?ñG×™³³œ<ª¼gF*FgFF>BG-P7hi(#Qd2j*bklQe>7mnboQ^@7Ykb[pRÿfQk3jY^d]qRpPjrAQ]4j,[kstSqð?à?Ð?Qs5j\_]uvStð?à?Ð?Q_B7\s[2wQu6j2sUxSvð?à?Ð?Q2C7u_TyQU7j4Tuz{Sxð?à?Ð?Qz8jGQUP|S{ð?à?Ð?QQE7GzT8}QP9jL8z~S|ð?à?Ð?S~ð?à?Ð?R}’Ry”RwOrSDL/TYSA_COLOURQm<€eQnKhe'‚RoPhƒ(#Q'Ln„R‚ÿÿÿÿ@€ÿ€T„Layer2_1OƒAEDT_BODYFlagGroupColor_V1P…†QQ€;‡ˆm‰TLayer2_1P‡Š‹(#Qˆ:…Œ€ŽR‰P…j - - -QŒ1‘ˆ’bÿ0RŽP‘j“hS’ð?à?Ð?O“SDL/TYSA_COLOUR_2OSDL/TYSA_LAYERO‹AttGS_PS_LayerO †SDL/TYSA_NAMESlð?à?Ð?OiAEDT_EntityID_V1EB\NNK\R`ŽZ<Y<Z<<3-RV“RR‘RI‰Q9H765A”RD†R”ˆR:‡+ SJ) ŒPˆ€mCn'P&7•(#T (copper_tempO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000407.x_b -BIN000000005903 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000407.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000407.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+2ÿ -*,+û~j¼t“h¿ð?ð?ÿ $-.+{®Gázt¿ð¿ð? -×£p= -·? /0»I +‡¦?{®Gázt¿ +1Vÿ2n™’¼Â3-.4350n™’¼ÂQ4G6789ÿ3:33;;+5 8</=n™’¼Â0= -×£p= -·?û~j¼t“h¿=5>0 -×£p= -·?{®Gázt¿>?=»I +‡¦¿NöSÙÙX<û~j¼t“h¿?@A/>n™’¼ÂQ@J6?BCADAA?EFE+/ BG5? n™’¼ÂQBI6/8@HGIGG/JKJ+ÿIGLJMJJ/GK-KNn™’¼ÂG-FOQNE6KPQ7R- Qn™’¼Â<K F7n™’¼ÂAKSO!KS+{®Gázt¿ð?ð?»I +‡¦?S"FO.+û~j¼t“h¿ð¿ð?»I +‡¦?.#S +û~j¼t“h¿ð?ð? -×£p= -·?Q7F6FTN4UP6VW(#QT9XF7PYRÿUªPXZAQP8XKN[T\SYà?Q[7X-Q]P^S\à?QQD6-[2N_Q]6X2`[aS^à?Q2C6]bQcQ`5Xdbe]fSaà?ÿdbn™’¼ÂgM h-g1QbB6d`i2jQe4Xgik`lSfà?g -in™’¼ÂdLm n+dL1QiA6geobpQk3XLoqerSlà?Lon™’¼Âg*s ,+g*1Qo@6LktiuQq2X*tkvSrà?*tn™’¼ÂL: -+L1Qt?6*qwoxSvà?Qw>6yzt{RxšQy<|}w~QzKVw'R{—PV€(#Q'LzRÿÿÿÿ€€TBoard_3O€AEDT_BODYFlagGroupColor_V1P|‚ƒQQ};„…y†T~Board_3P„‡ˆ(#Q…:‚‰}Š‹R†P‚Œj - - -Q‰1Ž…bÿŠ0R‹PŽXhSà?OSDL/TYSA_COLOUR_2OSDL/TYSA_LAYEROˆAttGS_PS_LayerO ƒSDL/TYSA_NAME:3*D 1 *DA*Ru™s<LI2,Lh -+{®Gázt¿ð¿ð¿3ÿhdn,+{®Gáz„?€€ð¿»I +‡¦?ð?3ngh+ü©ñÒMbp¿€€ð¿ -×£p= -·?ð?<s<<5‘-‘+‘’‘‘5<--’ ‘gRp˜m;g’;m;;3-Rj©MJd““EdE“EE?AF-RcœR_›OZSDL/TYSA_COLOUROWAEDT_EntityID_V1RR«Q8H654B”RH­R”RC¬R9ž+ SJ) ‰T…}y@z'P&6•(#T (polyamideO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000435.x_b -BIN000000005907 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000435.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000435.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+2ÿ -,-+O—nƒ°?uÍ’¦ÑF<¤p= -×£P¼ª<ð?ð?ñG×™³³œ<ª¼ÿ $./+ -j¼t“h¿ð?ð?nƒÀÊ¡µ? 01cX9´È¦?ú~j¼t“h¿ +2Vÿ3n™’¼Â45/6471n™’¼ÂQ6G89:;ÿ4<44==+7 :>0?n™’¼Â1? cX9´È¦?·Þj˜|Ì!<?7@1nƒÀÊ¡µ?>Àÿ˜T<¤p= -×£`¼@A?nƒÀÊ¡µ?g½²l‡^R< -j¼t“h¿ABC0@n™’¼ÂQBJ8ADECFCCAG.G+0 DH7A n™’¼ÂQDI80:BIHJHH0KLK+ÿJHMNKOKK0HL-LPn™’¼ÂH5.QQPE8LRS9T5 Sn™’¼Â>LU.9n™’¼ÂCL Q"LU/+ú~j¼t“h¿ð?ð?cX9´È¦?U!5Q+¤p= -×£`¼ð?ð?nƒÀÊ¡µ?/#Q +ð?ð?cX9´È¦?Q9F8.VP6WP8XY(#QV9Z.9R[RÿWÃPZ\AQR8ZLP]V^S[ð?à?Ð?Q]7Z5S_R`S^ð?à?Ð?QSD85]3PaQ_6Z3b]cS`ð?à?Ð?Q3C8_dSeQb5ZMdf_gScð?à?Ð?ÿMdn™’¼ÂhJ i+h2QdB8Mbj3kQf4ZhjlbmSgð?à?Ð?h -jn™’¼ÂM,F n+M,2QjA8hfodpQl3Z,oqfrSmð?à?Ð?,on™’¼Âh*s -+h*2Qo@8,ltjuQq2Z*tlvSrð?à?Ð?*tn™’¼Â,< --,2Qt?8*qwoxSvð?à?Ð?Qw>8yzt{RxÂQy<|}w~QzKXw'R{³PX€(#Q'LzRÿÿÿÿ@€ÿ€TLayer3_1O€AEDT_BODYFlagGroupColor_V1P|‚ƒQQ};„…y†T~Layer3_1P„‡ˆ(#Q…:‚‰}Š‹R†P‚Œj - - -Q‰1Ž…bÿŠ0R‹PŽZhSð?à?Ð?OSDL/TYSA_COLOUR_2OSDL/TYSA_LAYEROˆAttGS_PS_LayerO ƒSDL/TYSA_NAME<4*O3ÿ-*n -+ú~j¼t“X¿€€ð¿cX9´È¦?ð? 2 *3nhi-+j¼t“X¿€€ð¿nƒÀÊ¡µ?ð?2iMn+O—nƒ°?g½²l‡^B<j¼t“h¿ª¼ð¿ð¿ñG×™³³œ¼ª<OK*RuÁs>,‘>s>>7’5’+‘=,=‘==4-’“’’7>5-“ ’hRpÀFCh“Rk¿ReÆRaÅO\SDL/TYSA_COLOUROYAEDT_EntityID_V1RTÄNGMGNGGAC.-Q:H876D”RI¸R”ºRE»R;¹+ SJ) ‰V…}yBz'P&8•(#T (copper_tempO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000457.x_b -BIN000000005903 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000457.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000457.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+2ÿ -*,+ü©ñÒMb`?ð?ð?ÿ $-+ü©ñÒMb`?ð?ð? -×£p= -·? . -×£p= -·?ü©ñÒMb`? +/Vÿ0n™’¼Â12 314 n™’¼ÂQ3G5678ÿ1911::+4 7;<.n™’¼ÂQ7H543=>;?;;4@2@+< =A4BCn™’¼Â.4C -×£p= -·?C<D.»I +‡¦?DBC»I +‡¦¿NöSÙÙX<û©ñÒMb`?BEF<Dn™’¼ÂQEJ5B=GFHFFBIJI+ÿHF*IKIIBFJ-J6n™’¼ÂFLMQ6F5JNO3PLOn™’¼ÂA2JQM!JQ+û©ñÒMb`?ð¿ð?»I +‡¦?Q"LM-+ð?ð?»I +‡¦?-#2Q +ð¿ð? -×£p= -·?2 Rn™’¼Â;L-QRD52S0OTP5UV(#QS7W2RXYZQ0C5X[R\QOE5LYR6]RÿTÍQY8WLOSN^R]ÝPW_AQN9WJ6Y`S^à?S`à?O_SDL/TYSA_COLOURQX6W0aSbQ[B5cad0eR\Îÿc[n™’¼Âfg ,-f/Qa5Wc[hXiQdA5fhj[kReÛf -dn™’¼Âclm n+cl/Qh4WfdoapQj@5loqdrRkÊljn™’¼Âf*? s+f*/Qo3WljthuQq?5*tvjwRrË*qn™’¼Âl9 -+l/Qt2W*qoxQv>5yzq{RwÌQy<|}v~QzKUv'R{ÉPU€(#Q'LzRÿÿÿÿ€€TBoard_4O€AEDT_BODYFlagGroupColor_V1P|‚ƒQQ};„…y†T~Board_4P„‡ˆ(#Q…:‚‰}Š‹R†P‚Œj - - -Q‰1Ž…bÿŠ0R‹PŽWhSà?OSDL/TYSA_COLOUR_2OSDL/TYSA_LAYEROˆAttGS_PS_LayerO ƒSDL/TYSA_NAMESxà?91*H / *Suà??;l‘2sln,+ð¿ð¿3ÿnfs+ü©ñÒMbP?€€ð¿ -×£p= -·?ð?3,cs -+¸…ëQ¸Ž?€€ð¿»I +‡¦?ð?‘AlA‘AA<’L’+’g’’<AL-g’cKKIcSpà?m:f“:m::1-“ @f@“@@4;2-Sià?Sbà?SZà?OVAEDT_EntityID_V1RPÜQ=I5<7E”RGÞR”ßR>ÏR8Ð+ SJ) ‰N…}yEz'P&5•(#T (polyamideO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000485.x_b -BIN000000005907 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000485.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000485.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+2ÿ -,-+O—nƒ°?uÍ’¦ÑFn™’¼Â0> cX9´È¦?·Þj˜|Ì!<{®Gázt?>6?0nƒÀÊ¡µ?>Àÿ˜TnƒÀÊ¡µ?g½²l‡^R<ì©ñÒMb`?@AB/?n™’¼ÂQAJ7@CDBEBB@FGF+/ CH6@ n™’¼ÂQCI7/9AIHJHH/KLK+ÿJHMNKOKK/HL-LPn™’¼ÂH4GQQPE7LRS8T4 Sn™’¼Â=LUG8n™’¼ÂBL.Q"LU.+ü©ñÒMb`?ð?ð?cX9´È¦?U!4Q+s®Gázt?ð?ð?nƒÀÊ¡µ?.#GQ +ì©ñÒMb`?ð?ð?nƒÀÊ¡µ?Q8F7GVP5WP7XY(#QV9ZG8R[RÿWõPZ\AQR8ZLP]V^S[ð?à?Ð?Q]7Z4S_R`S^ð?à?Ð?QSD74]2PaQ_6Z2b]cS`ð?à?Ð?Q2C7_dSeQb5ZMdf_gScð?à?Ð?ÿMdn™’¼ÂhJ i+h1QdB7Mbj2kQf4ZhjlbmSgð?à?Ð?h -jn™’¼ÂM,E -+M,1QjA7hfndoQl3Z,npfqSmð?à?Ð?,nn™’¼Âh*r -+h*1Qn@7,lsjtQp2Z*sluSqð?à?Ð?*sn™’¼Â,; v-,1Qs?7*pwnxSuð?à?Ð?Qw>7yzs{RxôQy<|}w~QzKXw'R{åPX€(#Q'LzRÿÿÿÿ@€ÿ€TLayer4_1O€AEDT_BODYFlagGroupColor_V1P|‚ƒQQ};„…y†T~Layer4_1P„‡ˆ(#Q…:‚‰}Š‹R†P‚Œj - - -Q‰1Ž…bÿŠ0R‹PŽZhSð?à?Ð?OSDL/TYSA_COLOUR_2OSDL/TYSA_LAYEROˆAttGS_PS_LayerO ƒSDL/TYSA_NAME;3*O3ÿv*i-+xé&1¬l?€€ð¿cX9´È¦?ð? 1 *2iMv+O—nƒ°?g½²l‡^B<ó©ñÒMb`?ª¼ð¿ð¿ñG×™³³œ¼ª<3-hv -+ié&1¬l?€€ð¿nƒÀÊ¡µ?ð?OK*Rtór=,‘=r==6’4’+‘<,<‘<<3-’“’’6=4-“ ’hRoòEBh“RkñReøRa÷O\SDL/TYSA_COLOUROYAEDT_EntityID_V1RTöNFMFNFF@BG-Q9H765C”RIêR”ìRDíR:ë+ SJ) ‰V…}yAz'P&7•(#T (copper_tempO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000507.x_b -BIN000000005903 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000507.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000507.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+2ÿ -,-+{®Gázt?ð¿ð¿ÿ $.+xé&1¬|?ð?ð? -×£p= -·? / -×£p= -·?xé&1¬|? +0Vÿ1n™’¼Â23 425 n™’¼ÂQ4G6789ÿ2:22;;+5 8<=/n™’¼ÂQ8H654>?<@<<5A3A+= >B5CDn™’¼Â/5D -×£p= -·?{®Gázt?D=E/»I +‡¦?{®Gázt?ECD»I +‡¦¿NöSÙÙXHGIGGCJKJ+ÿIG*JLJJCGK-K7n™’¼ÂGMNQ7F6KOP4QMPn™’¼ÂB3KRN!KR+xé&1¬|?ð¿ð?»I +‡¦?R"MN.+{®Gázt?ð?ð?»I +‡¦?.#3R +{®Gázt?ð¿ð? -×£p= -·?3 Sn™’¼Â<M.QSD63T1PUP6VW(#QT7X3SYZ[Q1C6Y\S]QPE6MZS7^RÿUÿQZ8XMPTO_R^PX`AQO9XK7ZaS_à?Saà?O`SDL/TYSA_COLOURQY6X1bTcQ\B6dbe1fR]ÿd\n™’¼Âgh --g0Qb5Xd\iYjQeA6gik\lRf g -en™’¼Âd,m n+d,0Qi4XgeobpQk@6,oqerRlü,kn™’¼Âg*@ -+g*0Qo3X,ksitQq?6*sukvRrý*qn™’¼Â,: w+,0Qs2X*qoxQu>6yzq{RvþQy<|}u~QzKVu'R{ûPV€(#Q'LzRÿÿÿÿ€€TBoard_5O€AEDT_BODYFlagGroupColor_V1P|‚ƒQQ};„…y†T~Board_5P„‡ˆ(#Q…:‚‰}Š‹R†P‚Œj - - -Q‰1Ž…bÿŠ0R‹PŽXhSà?OSDL/TYSA_COLOUR_2OSDL/TYSA_LAYEROˆAttGS_PS_LayerO ƒSDL/TYSA_NAMESxà?:2*I2w*n+xé&1¬|?ð?ð? 0 *3ÿngw-+ú~j¼t“x?€€ð¿ -×£p= -·?ð?3-dn -+{®Gáz”?€€ð¿»I +‡¦?ð?Stà?@<,‘‘B,B‘BB=’M’+’h’’=BM-h’dLLJdSpà?m;g“;m;;2-“ AgA“AA5<3-Sjà?Scà?S[à?OWAEDT_EntityID_V1RQQ>I6=8F”RHR”R?R9+ SJ) ‰O…}yFz'P&6•(#T (polyamideO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000535.x_b -BIN000000005907 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000535.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000535.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+3ÿ -*,+œÄ °rh?€€ð¿cX9´È¦?ð?ÿ $-.+qé&1¬|?ð?ð?nƒÀÊ¡µ? /0nƒÀÊ¡µ?>Àÿ˜T cX9´È¦?·Þj˜|Ì!<{®Gáz„?>?@0nƒÀÊ¡µ?g½²l‡^Rn™’¼Â@=>cX9´È¦?xé&1¬|?= CD/?@n™’¼ÂQCI6=8AEDFDD=GHG+ÿFDIJGKGG=DH-HLn™’¼ÂD4-MQLE6HNO7P4 On™’¼Â<HQ-7n™’¼ÂBH M"HQ.+xé&1¬|?ð?ð?cX9´È¦?Q!4M+w®Gáz„?ð?ð?nƒÀÊ¡µ?.#M +{®Gáz„?ð?ð?cX9´È¦?Q7F6-RL5SBTBB?U-U+TBVWUJUU?B--JUIÿIXn™’¼ÂVF Y+V1QXB6IZ[2\V -[n™’¼ÂI]T ^+I]12ÿYI^,+O—nƒ°?g½²l‡^B6{|_}Rc&Q{<~a€Q|Kia'R}Pi‚(#Q'L|ƒRÿÿÿÿ@€ÿ€TƒLayer5_1O‚AEDT_BODYFlagGroupColor_V1P~„…QQ;†‡{ˆT€Layer5_1P†‰Š(#Q‡:„‹ŒRˆP„Žj - - -Q‹1‡‘bÿŒ0RPk’hS‘ð?à?Ð?O’SDL/TYSA_COLOUR_2OSDL/TYSA_LAYEROŠAttGS_PS_LayerO …SDL/TYSA_NAME3^VY+˜Ä °rh?€€ð¿nƒÀÊ¡µ?ð?R\#RS'RP(Q8H6/5C“QAJ6?C”RER”R“R9+ SJ) ‹R‡{A|'P&6•(#T (copper_tempO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000557.x_b -BIN000000005903 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000557.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000557.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+3ÿ -,-+š™™™™™™?€€ð¿»I +‡¦?ð?ÿ $./+{®Gáz„?ð?ð?»I +‡¦? 0 -×£p= -·?û~j¼t“ˆ? +1Vÿ2n™’¼Â345637 n™’¼ÂQ6G89:;ÿ3<33==+7 :>?0n™’¼ÂQ:H876@A>B>>7C4C+? @D7EFn™’¼Â07F -×£p= -·?{®Gáz„?F?G0»I +‡¦?{®Gáz„?GEF»I +‡¦¿NöSÙÙX<û~j¼t“ˆ?EHI?Gn™’¼ÂQHJ8E@JIKIIELML+ÿKI*LNLLEIM-M9n™’¼ÂI./Q9F8MOP6Q.Pn™’¼ÂD4M /#MR +û~j¼t“ˆ?ð¿ð?»I +‡¦?R"45/+{®Gáz„?ð¿ð? -×£p= -·?4 Sn™’¼Â>.R5!R+û~j¼t“ˆ?ð?ð? -×£p= -·?QSD84T2PUP8VW(#QT7X4SYZ[Q2C8Y\S]QPE8.ZS9^RÿU1QZ8X.PTO_R^APX`AQO9XM9ZaS_à?Saà?O`SDL/TYSA_COLOURQY6X2bTcQ\B8,bd2eR]2ÿ,\n™’¼Âfg --f1Qb5X,\hYiQdA8fhj\kRe?f -dn™’¼Â,lm n+,l1Qh4XfdobpQj@8loqdrRk.ljn™’¼Âf*B -+f*1Qo3XljshtQq?8*sujvRr/*qn™’¼Âl< w+l1Qs2X*qoxQu>8yzq{Rv0Qy<|}u~QzKVu'R{-PV€(#Q'LzRÿÿÿÿ€€TBoard_6O€AEDT_BODYFlagGroupColor_V1P|‚ƒQQ};„…y†T~Board_6P„‡ˆ(#Q…:‚‰}Š‹R†P‚Œj - - -Q‰1Ž…bÿŠ0R‹PŽXhSà?OSDL/TYSA_COLOUR_2OSDL/TYSA_LAYEROˆAttGS_PS_LayerO ƒSDL/TYSA_NAMESxà?<3*K2ÿw*n+û~j¼t“ˆ?ð?ð? 1 *3nfw-+»I +‡†?€€ð¿ -×£p= -·?ð?2-ln -+{®Gáz„?ð¿ð¿Stà?B>l‘‘DlD‘DD?’.’+’g’’?D.-g’,NNL,Spà?m=f“=m==3-“ CfC“CC7>4-Sià?Scà?S[à?OWAEDT_EntityID_V1RQ@Q@I8?:H”RJBR”CRA3R;4+ SJ) ‰O…}yHz'P&8•(#T (polyamideO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000585.x_b -BIN000000005907 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000585.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000585.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZM@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1QM&'(F )) *+2ÿ -,-+O—nƒ°?g½²l‡^B<ø~j¼t“ˆ?ª¼ð¿ð¿ñG×™³³œ¼ª<ÿ $./+ú~j¼t“ˆ?ð?ð?cX9´È¦? 01nƒÀÊ¡µ?>Àÿ˜T<µ…ëQ¸Ž? +2Vÿ3n™’¼Â4567408n™’¼ÂQ7G9:;<ÿ4=44>>+0 ;?@ n™’¼Â8AcX9´È¦?·Þj˜|Ì!<¸…ëQ¸Ž?AB81nƒÀÊ¡µ?g½²l‡^R<ö~j¼t“ˆ?BCD@An™’¼Â1@A cX9´È¦?ú~j¼t“ˆ?@ EF0B1n™’¼ÂQEI9@;CGFHFF@I.I+ÿHF,JIKII@F.-.Ln™’¼ÂF5M QLE9.NO:P5 On™’¼Â?./M:n™’¼ÂD.QQ:F9MRL7SDTDDBUMU+Q"M6/+ö~j¼t“ˆ?ð?ð?nƒÀÊ¡µ?6!Q+¸…ëQ¸Ž?ð?ð?cX9´È¦?/#5Q +µ…ëQ¸Ž?ð?ð?nƒÀÊ¡µ?TDVWUJUUBDM-JU,ÿ,Xn™’¼ÂVH -+V2QXB9,YZ3[V -Zn™’¼Â,\T ]+,\2 2 **^n™’¼Â\= --\2Q^?9*_`ab\an™’¼ÂV*c d+V*2=4*K3ÿ-*] -+ÚÎ÷S㥋?€€ð¿cX9´È¦?ð?3]Vd-+ÕÎ÷S㥋?€€ð¿nƒÀÊ¡µ?ð?2d\]+O—nƒ°?uÍ’¦ÑF<¶…ëQ¸Ž?ª<ð?ð?ñG×™³³œ<ª¼KI*Qa@9\e^Zfc?\g?c??0h5h+g>\>g>>4-hWhh0?5-W hVP9ij(#Qe3k\a_lmQZA9VlaXnRÿfWQl4kVZeYoRnVPkpAQY5k,XlqrSoð?à?Ð?Qq6k3YstSrð?à?Ð?Q3C9qXOuQs7k5OqNvStð?à?Ð?QOD95s3LwQN8k.LsRxSvð?à?Ð?QR9kM:NySxð?à?Ð?Syð?à?Ð?Rw[Ru\OpSDL/TYSA_COLOURQ_2k*^ezSmð?à?Ð?Szð?à?Ð?OjAEDT_EntityID_V1Q`>9{|^}RbXQ{<~`€Q|Ki`'R}IPi‚(#Q'L|ƒRÿÿÿÿ@€ÿ€TƒLayer6_1O‚AEDT_BODYFlagGroupColor_V1P~„…QQ;†‡{ˆT€Layer6_1P†‰Š(#Q‡:„‹ŒRˆP„Žj - - -Q‹1‡‘bÿŒ0RPk’hS‘ð?à?Ð?O’SDL/TYSA_COLOUR_2OSDL/TYSA_LAYEROŠAttGS_PS_LayerO …SDL/TYSA_NAMER[URSYRPZQ;H907E“QCJ9BE”RGNR”QR“PR<O+ SJ) ‹R‡{C|'P&9•(#T (copper_tempO•AEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000608.x_b -BIN000000004932 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000608.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000608.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZ9@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1Q9&'(F )) * *2ÿ -*+\d;ßO‡¿ð?ð?ÿ +,+O—nƒ ?z®Gáz„¿ð¿ª< -.cX9´È¦?·Þj˜|Ì!<{®Gáz„¿  Vÿ/n™’¼Â01234-5n™’¼ÂQ336789ÿ4:;<+- 8:= n™’¼Â5>.cX9´È¦?:´Èv¾ŸŠ¿>=5nƒÀÊ¡µ?>Àÿ˜T<®Gáz„¿.?5 nƒÀÊ¡µ?g½²l‡^R<>´Èv¾ŸŠ¿? @A=.n™’¼ÂQ@66?BCAD<E?F10-= BE-?>n™’¼ÂQB56=8@GEDA:=H+F-ÿD<*:DE<-4;H-H-E+++ In™’¼ÂH1; F=A1+1Jn™’¼ÂF+KQJ061L/IMK12,+nƒÀÊ¡µ?_d;ßO‡¿ð?2K+O—nƒ ?7´Èv¾ŸŠ¿ð?ª¼,;K +cX9´È¦?Zd;ßO‡¿ð¿; -7n™’¼Â4+,Q726;NI3OP6PQ(#QN(R;7STQI16+SJ7URÿOdQS'R+ILNVRUePRWAQL&R1JXSYSVð?à?Ð?QX%R/ZL[SYð?à?Ð?Q//6X\J]QZ$R*\X^S[ð?à?Ð?ÿ*\n™’¼ÂD -+ Q\.6*Z_/`S^ð?à?Ð?Q_-6ab\cR`aQa+de_fQb7P_'gRc`PPh(#Q'8biRgÿÿÿÿ@€ÿ€TiLayer1_1_Section1OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfLayer1_1_Section1Plop(#Qm)jqersRnPjtuj - - -Qq#vmwbÿr0RsPvRxhSwð?à?Ð?OxSDL/TYSA_COLOUR_2OuSDL/TYSA_LAYEROpAttGS_PS_LayerO kSDL/TYSA_NAMER]cOWSDL/TYSA_COLOURSTð?à?Ð?OQAEDT_EntityID_V1RMf<D:A0-0?<+Q846-3ByRGnRymRCkR9lJ) qNmea@b'P&6z(#T(CopperOzAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000629.x_b -BIN000000004932 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000629.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000629.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZ9@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1Q9&'(F )) * *2ÿ -*+>´Èv¾Ÿz¿ð?ð?ÿ +,+nƒÀÊ¡µ?C´Èv¾Ÿz¿ð? -.nƒÀÊ¡µ?g½²l‡^R<ªñÒMb€¿  Vÿ/n™’¼Â0+12345n™’¼ÂQ236789ÿ3:;<+4 8:=>n™’¼Â5>cX9´È¦?ü©ñÒMb€¿>45.cX9´È¦?·Þj˜|Ì!<{®Gázt¿.=> nƒÀÊ¡µ?>Àÿ˜T<ƒ®Gázt¿= ?@4-.n™’¼ÂQ?56=8AB@CD:=EFG-- AD= n™’¼ÂQA66-?HDC<@-G+0-ÿC<*<C:D0-G=D+++In™’¼ÂGF 0-<+QI06+J/KLF Kn™’¼ÂE+;MQK16FNI7OE4@F+; -7n™’¼Â3F,MF1+O—nƒ ?x®Gázt¿ð¿ª<1M,+O—nƒ ?û©ñÒMb€¿ð?ª¼,;1 +cX9´È¦?8´Èv¾Ÿz¿ð¿Q726;PK2QP6RS(#QP(T;7NURÿQyPTVAQN'TFKJPWSUð?à?Ð?QJ&T+IXNYSWð?à?Ð?QX%T/ZJ[SYð?à?Ð?Q//6X\I]QZ$T*\X^S[ð?à?Ð?ÿ*\n™’¼ÂC -+ Q\.6*Z_/`S^ð?à?Ð?Q_-6ab\cR`vQa+de_fQb7R_'gRcuPRh(#Q'8biRgÿÿÿÿ@€ÿ€TiLayer2_1_Section1OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfLayer2_1_Section1Plop(#Qm)jqersRnPjtuj - - -Qq#vmwbÿr0RsPvTxhSwð?à?Ð?OxSDL/TYSA_COLOUR_2OuSDL/TYSA_LAYEROpAttGS_PS_LayerO kSDL/TYSA_NAMER]xOVSDL/TYSA_COLOUROSAEDT_EntityID_V1ROzRL{:C@<43;E-RH€Q84642?yRBƒRy‚R9J) qPmeaAb'P&6z(#T(CopperOzAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000650.x_b -BIN000000004932 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000650.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000650.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZ9@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1Q9&'(F )) * *2ÿ -*+ -j¼t“X¿ð?ð?ÿ +,+nƒÀÊ¡µ?j¼t“X¿ð? -.nƒÀÊ¡µ?g½²l‡^R< -j¼t“h¿  Vÿ/n™’¼Â0+12345n™’¼ÂQ236789ÿ3:;<+4 8:=.n™’¼Â5>.cX9´È¦?ú~j¼t“h¿>=5nƒÀÊ¡µ?>Àÿ˜T<¤p= -×£`¼.45 cX9´È¦?·Þj˜|Ì!<= ?@4->n™’¼ÂQ?56=8AB@CD:=EFG-- AD= n™’¼ÂQA66-?HDC<@-G+0-ÿC<*<C:D0-G=D+++In™’¼ÂGF 0-<+QI06+J/KLF Kn™’¼ÂE+;,QK16FMI7NE4@F+; -7n™’¼Â3FO,F1 +O—nƒ ?{®GázD<ð¿ª<1O,+O—nƒ ?ö~j¼t“h¿ð?ª¼O;1+cX9´È¦?û~j¼t“X¿ð¿Q726;PK2QP6RS(#QP(T;7MURÿQŽPTVAQM'TFKJPWSUð?à?Ð?QJ&T+IXMYSWð?à?Ð?QX%T/ZJ[SYð?à?Ð?Q//6X\I]QZ$T*\X^S[ð?à?Ð?ÿ*\n™’¼ÂC -+ Q\.6*Z_/`S^ð?à?Ð?Q_-6ab\cR`‹Qa+de_fQb7R_'gRcŠPRh(#Q'8biRgÿÿÿÿ@€ÿ€TiLayer3_1_Section1OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfLayer3_1_Section1Plop(#Qm)jqersRnPjtuj - - -Qq#vmwbÿr0RsPvTxhSwð?à?Ð?OxSDL/TYSA_COLOUR_2OuSDL/TYSA_LAYEROpAttGS_PS_LayerO kSDL/TYSA_NAMER]OVSDL/TYSA_COLOUROSAEDT_EntityID_V1RNRL:C@<43;E-RH•Q84642?yRB˜Ry—R9–J) qPmeaAb'P&6z(#T(CopperOzAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000671.x_b -BIN000000004932 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000671.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000671.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZ9@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1Q9&'(F )) * *2ÿ -*+qé&1¬l?ð?ð?ÿ +,+O—nƒ ?~®Gázt?ð¿ª< -.nƒÀÊ¡µ?g½²l‡^R<ì©ñÒMb`?  Vÿ/n™’¼Â01,2345n™’¼ÂQ236789ÿ3:;<+4 8:=.n™’¼Â5>cX9´È¦?ü©ñÒMb`?>=5.nƒÀÊ¡µ?>Àÿ˜Tn™’¼Â.4> cX9´È¦?·Þj˜|Ì!<{®Gázt?Q?56=8AB@CD:=E+F-- AD= n™’¼ÂQA66-?GDC<@-F10-ÿC<*<C:D0-F=D1+1Hn™’¼ÂF+I0-<+QH061J/KL+ Kn™’¼ÂE1; I1M,+nƒÀÊ¡µ?ié&1¬l?ð?M;I+cX9´È¦?xé&1¬l?ð¿,I +O—nƒ ?ªñÒMb`?ð?ª¼; -7n™’¼Â3+MQ726;NK2OP6PQ(#QN(R;7STQK16+SH7URÿO£QS'R+KJNVRU¤PRWAQJ&R1HXSYSVð?à?Ð?QX%R/ZJ[SYð?à?Ð?Q//6X\H]QZ$R*\X^S[ð?à?Ð?ÿ*\n™’¼ÂC -+ Q\.6*Z_/`S^ð?à?Ð?Q_-6ab\cR` Qa+de_fQb7P_'gRcŸPPh(#Q'8biRgÿÿÿÿ@€ÿ€TiLayer4_1_Section1OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfLayer4_1_Section1Plop(#Qm)jqersRnPjtuj - - -Qq#vmwbÿr0RsPvRxhSwð?à?Ð?OxSDL/TYSA_COLOUR_2OuSDL/TYSA_LAYEROpAttGS_PS_LayerO kSDL/TYSA_NAMER]¢OWSDL/TYSA_COLOURSTð?à?Ð?OQAEDT_EntityID_V1E4@++RL¥:C@<43;E-RGªQ84642?yRB­Ry¬R9«J) qNmeaAb'P&6z(#T(CopperOzAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000692.x_b -BIN000000004932 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000692.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000692.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZ9@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ !DSÿ@@Oÿ!SDL/TYSA_DENSITYP"#(#TÿUNIT=mmO#AEDT_EntityName_V1P$%(#S{®Gáz„?O%AEDT_ExtentScale_V1Q9&'(F )) * *2ÿ -*+šÄ °rh?ð?ð?ÿ ++O—nƒ ?{é&1¬|?ð?ª¼ ,cX9´È¦?xé&1¬|?  Vÿ-n™’¼Â./ 012 n™’¼ÂQ033456ÿ1789+2 57:;n™’¼ÂQ54320<=7>?9218@-: <?2A,n™’¼Â;2BcX9´È¦?·Þj˜|Ì!<{®Gáz„?BA;,nƒÀÊ¡µ?g½²l‡^RÀÿ˜T9?AF/.-ÿ>9*9>7D.-?>D7:@GF-F:D/+/Hn™’¼ÂFG+.A9+QH03/I-JKG Jn™’¼Â@/8L+/L +nƒÀÊ¡µ?—Ä °rh?ð?LGM++O—nƒ ?|®Gáz„?ð¿ª<M8L+cX9´È¦?œÄ °rh?ð¿8 -4n™’¼Â1GMQ4238NJ0OP3PQ(#QN(R84STQJ13GSH4URÿO¸QS'RGJINVRU¹PRWAQI&R/HXSYSVð?à?Ð?QX%R-ZI[SYð?à?Ð?Q-/3X\H]QZ$R*\X^S[ð?à?Ð?ÿ*\n™’¼Â> -+ Q\.3*Z_-`S^ð?à?Ð?Q_-3ab\cR`µQa+de_fQb7P_'gRc´PPh(#Q'8biRgÿÿÿÿ@€ÿ€TiLayer5_1_Section1OhAEDT_BODYFlagGroupColor_V1PdjkQQe*lmanTfLayer5_1_Section1Plop(#Qm)jqersRnPjtuj - - -Qq#vmwbÿr0RsPvRxhSwð?à?Ð?OxSDL/TYSA_COLOUR_2OuSDL/TYSA_LAYEROpAttGS_PS_LayerO kSDL/TYSA_NAMER]·OWSDL/TYSA_COLOURSTð?à?Ð?OQAEDT_EntityID_V1@2?G+RKºQ<53:5CyRE¿RyÂR=ÁR6ÀJ) qNmeaCb'P&3z(#T(CopperOzAEDT_MaterialName_V1$end 'x_b' -$begin 'x_b' -Design_2.setup/NativeGeometryFiles/0000713.x_b -BIN000000004932 -**ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz************************** -**PARASOLID !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~0123456789************************** -**PART1; -MC=unknown; -MC_MODEL=unknown; -MC_ID=unknown; -OS=unknown; -OS_RELEASE=unknown; -FRU=sdl_parasolid_customer_support; -APPL=Electronics Desktop; -SITE=unknown; -USER=unknown; -FORMAT=binary; -GUISE=transmit; -KEY=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000713.x_b; -FILE=C:/Users/mcapodif/AppData/Local/Temp/Pla64C94269616614170684.setup/Design_2.setup/NativeGeometryFiles/0000713.x_b; -DATE=unknown; -**PART2; -SCH=SCH_3401241_34101; -USFLD_SIZE=0; -**PART3; -**END_OF_HEADER***************************************************************** -B3: TRANSMIT FILE created by modeller version 3401241SCH_3401241_34101_13006ç°PART_XMT_BLOCK Part list n_entriesdindex_map_offsetd index_mapRschema_embedding_mapRmesh_offset_dataÎentriesí $CCCIlatticeÞCCCImeshîIpolylineðCCCCCCCDIownerCCCIboundary_latticeÞCCCI boundary_meshîIboundary_polylineðCCCAindex_map_offsetdA index_mapRAnode_id_index_mapRAschema_embedding_mapRAchild Alowest_node_iddAmesh_offset_dataÎZ9@@:Œ0âŽyE>  -   @@:Œ0âŽyE>QÿF CI list_typeuI -notransmitlCCCDCCDI finger_indexdI finger_blockôCZ ÿÿ CCCCCCIframeæCAowner ZVÿn™’¼ÂJCIindex_map_offsetdCCZQQPCCCCCDI legal_ownerslCZ DSÿ@@Oÿ SDL/TYSA_DENSITYP!"(#TÿUNIT=mmO"AEDT_EntityName_V1P#$(#S{®Gáz„?O$AEDT_ExtentScale_V1Q9%&'F (( ) )2ÿ -)+×Î÷S㥋?ð?ð?ÿ *++O—nƒ ?º…ëQ¸Ž?ð¿ª< ,-nƒÀÊ¡µ?>Àÿ˜T<µ…ëQ¸Ž?  Vÿ.n™’¼Â/01234-n™’¼ÂQ235678ÿ39:;+4 79,<n™’¼Â-< cX9´È¦?ú~j¼t“ˆ?<4=-cX9´È¦?·Þj˜|Ì!<¸…ëQ¸Ž?=><nƒÀÊ¡µ?g½²l‡^R<ö~j¼t“ˆ?> ?@,=n™’¼ÂQ?65>AB@C;D>E0/-, AD4> n™’¼ÂQA55,7?FDC@9,G*E-ÿC;)9CD;43:G-G4D*+* Hn™’¼ÂG0: E,@0+0In™’¼ÂE*JQI050K.HLJ01+nƒÀÊ¡µ?ÕÎ÷S㥋?ð?1J++O—nƒ ?ü~j¼t“ˆ?ð?ª¼+:1 +cX9´È¦?ÚÎ÷S㥋?ð¿: -6n™’¼Â3*+Q625:MH2NP5OP(#QM(Q:6RSQH15*RI6TRÿNÍQR'Q*HKMURTÎPQVAQK&Q0IWRXSUð?à?Ð?QW%Q.YKZSXð?à?Ð?Q./5W[I\QY$Q)[W]SZð?à?Ð?ÿ)[n™’¼ÂC -+ Q[.5)Y^._S]ð?à?Ð?Q^-5`a[bR_ÊQ`+cd^eQa7O^&fRbÉPOg(#Q&8ahRfÿÿÿÿ@€ÿ€ThLayer6_1_Section1OgAEDT_BODYFlagGroupColor_V1PcijQQd*kl`mTeLayer6_1_Section1Pkno(#Ql)ipdqrRmPistj - - -Qp#ulvbÿq0RrPuQwhSvð?à?Ð?OwSDL/TYSA_COLOUR_2OtSDL/TYSA_LAYEROoAttGS_PS_LayerO jSDL/TYSA_NAMER\ÌOVSDL/TYSA_COLOURSSð?à?Ð?OPAEDT_EntityID_V1RLÏ;C9@/-/>;+Q74542AxRF×RxÖRBÔR8ÕJ( pMld`?a&P%5y(#T'CopperOyAEDT_MaterialName_V1$end 'x_b' -$end 'Design_2.setup/NativeGeometryFiles' -$end 'AllReferencedFilesForProject' -$begin 'ProjectPreview' - IsEncrypted=false - Thumbnail64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCABgAGADASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iivzA/4Kp/8FCfHf/BO34Wfs7eLPhb+zT/w1\ -h8Tf2mP2v8A4R/sdfDr4Sf8Ll0f4FfbvHfxm8OfEPUvCN5/wnviLwVren23m+IPBOn6Z5d9HYWaf8JH\ -9tutUtYLN1l+ev2aP+Cs37RfiP8AbJ+E/wCxD+3z/wAE3PHP7AfxV/aL8HfEzxX+zlra/tHfC79p/wA\ -BfFK4+DuhJ4s+I3hyTxV8MdCsLfw5rVh4ULXxjZrttpiS4S2N1aNOAfuJRRX5Z/8ABSX/AIKW6X+wd4\ -WP9heALL4i+ODptpf6qfE3iqbwN4F8DweLfBnxx174VnWdUtdB1K/8VeIvFHiD4BfEHTNG0jSrIW5m8\ -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' - $begin 'DesignInfo' - DesignName='Maxwell3D' - Notes='Notes: Due to higher frequency operations of planar transformers, the skin depth and proximity effects play a major role on the proper electromagnetic design process. Therefore, current 3D Maxwell design is using eddy-current solver to predict the electromagnetic harmonic characteristics of a planar transformer as Current vs Phase angle, Leakage Inductance and Electromagnetic Loss' - Factory='Maxwell 3D' - IsSolved=false - 'Nominal Setups'[1: 'Setup1'] - 'Nominal Setup Types'[1: ''] - 'Optimetrics Setups'[0:] - 'Optimetrics Experiment Types'[0:] - Image64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCADIAMgDASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iivzA/4Kp/8FCfHf/BO34Wfs7eLPhb+zT/w1\ -h8Tf2mP2v8A4R/sdfDr4Sf8Ll0f4FfbvHfxm8OfEPUvCN5/wnviLwVren23m+IPBOn6Z5d9HYWaf8JH\ -9tutUtYLN1l+ev2aP+Cs37RfiP8AbJ+E/wCxD+3z/wAE3PHP7AfxV/aL8HfEzxX+zlra/tHfC79p/wA\ -BfFK4+DuhJ4s+I3hyTxV8MdCsLfw5rVh4ULXxjZrttpiS4S2N1aNOAfuJRRRQAUUUUAFFFFABRRRQAU\ -UUUAFFFFABRRRQAUV8z/tkftGaP+yV+y98bf2idZSzuF+GHgXVNZ0TTdQaRLPXPGV4YtG8C+HbloZo5\ -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\ -UAFFFFABRRRQAUUUUAFFFFABRRRQAUUUUAf/9k=' - $end 'DesignInfo' -$end 'ProjectPreview' diff --git a/tests/system/general/example_models/TMaxwell/Transient_StrandedWindings.aedt b/tests/system/general/example_models/TMaxwell/Transient_StrandedWindings.aedt deleted file mode 100644 index d2d8947246b..00000000000 --- a/tests/system/general/example_models/TMaxwell/Transient_StrandedWindings.aedt +++ /dev/null @@ -1,18938 +0,0 @@ -$begin 'AnsoftProject' - Created='Wed Jul 19 21:59:46 2023' - Product='ElectronicsDesktop' - FileOwnedByWorkbench=false - $begin 'Desktop' - Version(2023, 1) - InfrastructureVersion(1, 0) - $begin 'FactoryHeader' - $begin 'geometry3deditor' - KernelVersion(2, 0) - ProjectContainsGeometry3D='1' - $end 'geometry3deditor' - $end 'FactoryHeader' - $end 'Desktop' - UsesAdvancedFeatures=false - NextUniqueID=0 - MoveBackwards=false - $begin 'HFSSEnvironment' - Version(1, 0) - $end 'HFSSEnvironment' - $begin 'PlanarEMEnvironment' - Version(1, 0) - $end 'PlanarEMEnvironment' - $begin 'Q3DEnvironment' - Version(1, 0) - $end 'Q3DEnvironment' - $begin '2DExtractorEnvironment' - Version(1, 0) - $end '2DExtractorEnvironment' - $begin 'NexximEnvironment' - Version(1, 0) - $end 'NexximEnvironment' - $begin 'NexximNetlistEnvironment' - Version(1, 0) - $end 'NexximNetlistEnvironment' - $begin 'EmitEnvironment' - Version(1, 0) - $end 'EmitEnvironment' - $begin 'Maxwell3DEnvironment' - Version(1, 0) - $end 'Maxwell3DEnvironment' - $begin 'Maxwell2DEnvironment' - Version(1, 0) - $end 'Maxwell2DEnvironment' - $begin 'RMxprtEnvironment' - Version(1, 0) - $end 'RMxprtEnvironment' - $begin 'MaxCirEnvironment' - Version(1, 0) - $end 'MaxCirEnvironment' - $begin 'SimplorerEnvironment' - Version(1, 0) - $end 'SimplorerEnvironment' - $begin 'IcepakEnvironment' - Version(1, 0) - $end 'IcepakEnvironment' - $begin 'MechanicalEnvironment' - Version(1, 0) - $end 'MechanicalEnvironment' - $begin 'FilterDesignEnvironment' - $end 'FilterDesignEnvironment' - $begin 'SchematicEnvironment' - Version(1, 0) - $end 'SchematicEnvironment' - $begin 'geometry3deditor' - Version(1, 0) - $end 'geometry3deditor' - ReadVersion=11 - $begin 'DesignMgrEnvironment' - CompInstCounter=2 - GPortCounter=0 - NetCounter=0 - Alias('Ieee;Simplorer Elements\\Ieee', 'Std;Simplorer Elements\\Std', 'Basic_VHDLAMS;Simplorer Elements\\Basic Elements VHDLAMS\\Basic Elements VHDLAMS', 'Digital_Elements;Simplorer Elements\\Digital Elements\\Digital Elements', 'Transformations;Simplorer Elements\\Tools\\Transformations\\Transformations', 'HEV_VHDLAMS;Simplorer Elements\\HEV VHDLAMS\\HEV VHDLAMS', 'automotive_vda;Simplorer Elements\\VDALibs VHDLAMS\\automotive_vda', 'example_boardnet;Simplorer Elements\\VDALibs VHDLAMS\\example_boardnet', 'example_ecar;Simplorer Elements\\VDALibs VHDLAMS\\example_ecar', 'fundamentals_vda;Simplorer Elements\\VDALibs VHDLAMS\\fundamentals_vda', 'hybrid_emc_vda;Simplorer Elements\\VDALibs VHDLAMS\\hybrid_emc_vda', 'megma;Simplorer Elements\\VDALibs VHDLAMS\\megma', 'modelica_rotational;Simplorer Elements\\VDALibs VHDLAMS\\modelica_rotational', 'modelica_thermal;Simplorer Elements\\VDALibs VHDLAMS\\modelica_thermal', 'modelica_translational;Simplorer Elements\\VDALibs VHDLAMS\\modelica_translational', 'spice2vhd;Simplorer Elements\\VDALibs VHDLAMS\\spice2vhd', 'spice2vhd_devices;Simplorer Elements\\VDALibs VHDLAMS\\spice2vhd_devices', 'aircraft_electrical_vhdlams;Simplorer Elements\\Aircraft Electrical VHDLAMS\\Aircraft Electrical VHDLAMS', 'power_system_vhdlams;Simplorer Elements\\Power System VHDLAMS\\Power System VHDLAMS') - $end 'DesignMgrEnvironment' - $begin 'ProjectDatasets' - NextUniqueID=0 - MoveBackwards=false - DatasetType='ProjectDatasetType' - $begin 'DatasetDefinitions' - $end 'DatasetDefinitions' - $end 'ProjectDatasets' - VariableOrders[0:] - $begin 'Definitions' - $begin 'Folders' - Definitions(1604, 10000, 1, 1, 0, false, false) - Materials(1604, 9500, 9, 2, 1, false, false) - 'Surface Materials'(1604, 9501, 33503, 3, 1, false, false) - Scripts(1604, 9502, 33500, 4, 1, false, false) - Padstacks(1604, 9003, 12, 105, 1, false, false) - Symbols(1604, 9001, 10, 103, 1, false, false) - Footprints(1604, 9002, 11, 104, 1, false, false) - Bondwires(1604, 9006, 12, 108, 1, false, false) - Components(1604, 9000, 8, 102, 1, false, false) - Models(1604, 9004, 13, 106, 1, false, false) - Packages(1604, 9005, 33502, 107, 1, false, false) - $end 'Folders' - $begin 'Materials' - $begin 'vacuum' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic') - $end 'PhysicsTypes' - $begin 'AttachedData' - $begin 'MatAppearanceData' - property_data='appearance_data' - Red=230 - Green=230 - Blue=230 - Transparency=0.949999988079071 - $end 'MatAppearanceData' - $end 'AttachedData' - permittivity='1' - ModTime=1499970477 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'vacuum' - $begin 'copper' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal', 'Structural') - $end 'PhysicsTypes' - permeability='0.999991' - conductivity='58000000' - thermal_conductivity='400' - mass_density='8933' - specific_heat='385' - youngs_modulus='120000000000' - poissons_ratio='0.38' - thermal_expansion_coefficient='1.77e-05' - ModTime=1132068239 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'copper' - $begin 'steel_1008' - CoordinateSystemType='Cartesian' - BulkOrSurfaceType=1 - $begin 'PhysicsTypes' - set('Electromagnetic', 'Thermal', 'Structural') - $end 'PhysicsTypes' - $begin 'permeability' - property_type='nonlinear' - BTypeForSingleCurve='normal' - HUnit='A_per_meter' - BUnit='tesla' - IsTemperatureDependent=false - $begin 'BHCoordinates' - DimUnits[2: '', ''] - Points[38: 0, 0, 159.2, 0.2402, 318.3, 0.8654, 477.5, 1.1106, 636.6, 1.2458, 795.8, 1.331, 1591.5, 1.5, 3183.1, 1.6, 4774.6, 1.683, 6366.2, 1.741, 7957.7, 1.78, 15915.5, 1.905, 31831, 2.025, 47746.5, 2.085, 63662, 2.13, 79577.5, 2.165, 159155, 2.28, 318310, 2.485, 397887, 2.5851] - $end 'BHCoordinates' - $begin 'Temperatures' - $end 'Temperatures' - $end 'permeability' - conductivity='2000000' - magnetic_loss_tangent='0' - $begin 'magnetic_coercivity' - property_type='VectorProperty' - Magnitude='0A_per_meter' - DirComp1='1' - DirComp2='0' - DirComp3='0' - $end 'magnetic_coercivity' - thermal_conductivity='45' - mass_density='7872' - specific_heat='481' - youngs_modulus='200000000000' - poissons_ratio='0.25' - thermal_expansion_coefficient='1.26e-05' - ModTime=1132068240 - Library='Materials' - LibLocation='SysLibrary' - ModSinceLib=false - $end 'steel_1008' - $end 'Materials' - $begin 'SurfaceMaterials' - $end 'SurfaceMaterials' - $begin 'Scripts' - $end 'Scripts' - $begin 'Symbols' - $begin 'Maxwell3DDesign2' - ModTime=1595951233 - Library='' - ModSinceLib=false - LibLocation='Project' - HighestLevel=1 - Normalize=true - InitialLevels(0, 1) - $begin 'Graphics' - Rect(0, 0, 0, 0, 0.00254, 0.00254, 0.00508, 0.00508, 0, 0, 0) - Rect(0, 1, 0, 0, 0.000423333333333333, 0.00254, 0.000423333333333333, 0.000423333333333334, 0, 0, 0) - $end 'Graphics' - $end 'Maxwell3DDesign2' - $end 'Symbols' - $begin 'DefInfo' - Maxwell3DDesign2(1002, 0, 0, 0, '', 1595951233, '', 'Maxwell3DDesign2', '', '', '', '', '', 'Design.bmp', '', 'Project', '', '', 1595951233, '', 0, 0) - $end 'DefInfo' - $begin 'Compdefs' - $begin 'Maxwell3DDesign2' - Library='' - CircuitEnv=0 - Refbase='U' - NumParts=1 - ModSinceLib=true - $begin 'Properties' - TextProp('Representation', 'SRD', '', 'Maxwell3DDesign2') - TextProp('Owner', 'SRD', '', 'Maxwell 3D') - $end 'Properties' - CompExtID=6 - $begin 'Parameters' - ButtonProp('CosimDefinition', 'D', '', '', 'Edit', 40501, ButtonPropClientData()) - MenuProp('CoSimulator', 'D', '', 'DefaultNetlist', 0) - $end 'Parameters' - $begin 'CosimDefinitions' - $begin 'CosimDefinition' - CosimulatorType=4 - CosimDefName='DefaultNetlist' - IsDefinition=true - Connect=true - Data() - GRef() - $end 'CosimDefinition' - DefaultCosim='DefaultNetlist' - $end 'CosimDefinitions' - $end 'Maxwell3DDesign2' - $end 'Compdefs' - $end 'Definitions' - DesignIDServer=5 - MoveBackwards=false - $begin 'Maxwell3DModel' - RepRewriteV2=true - Name='Maxwell3DDesign2' - DesignID=3 - 'Allow Material Override'=false - 'Perform Minimal validation'=false - $begin 'TemperatureSettings' - IncludeTemperatureDependence=false - EnableFeedback=false - Temperatures(6, '22cel', 159, '22cel', 994, '22cel', 1070, '22cel', 1146, '22cel', 1222, '22cel', 1298, '22cel', 1604, '22cel', 2111, '22cel', 2126, '22cel', 2139, '22cel', 2151, '22cel', 2163, '22cel', 2175, '22cel') - BoundaryTemperatures() - $end 'TemperatureSettings' - ObjsEnabledForDeformation() - PreserveTranSolnAfterDatasetEdit=false - ComputeTransientInductance=false - ComputeIncrementalMatrix=false - PerfectConductorThreshold=1e+30 - InsulatorThreshold=1 - UseSkewModel=false - EnableTranTranLinkWithSimplorer=false - SolveFraction=false - Multiplier='4' - SkipMeshChecks=false - SolutionType='Transient' - $begin 'OutputVariable' - NextUniqueID=0 - MoveBackwards=false - $end 'OutputVariable' - $begin 'ModelSetup' - $begin 'DesignDatasets' - NextUniqueID=0 - MoveBackwards=false - DatasetType='DesignDatasetType' - $begin 'DatasetDefinitions' - $end 'DatasetDefinitions' - $end 'DesignDatasets' - VariableOrders[0:] - $begin 'Editor3D Doc Preferences' - 'Plane Background'=true - BackgroundColor1=16777215 - BackgroundColor2=0 - 'Need Lights'=true - 'Ambient Light'=8355711 - 'Num Lights'=4 - Light0[4: 6710886, 0, -1, -0.150000005960464] - Light1[4: 6710886, -0.600000023841858, 0.100000001490116, -0.5] - Light2[4: 6710886, 0.5, 0.100000001490116, -0.5] - Light3[4: 6710886, 0.200000002980232, 0.400000005960464, 1] - Ver=2 - $end 'Editor3D Doc Preferences' - SnapMode=31 - WorkingCS=1 - $begin 'GeometryCore' - BlockVersionID=3 - DataVersion=32 - NativeKernel='PARASOLID' - NativeKernelVersionID=23 - Units='mm' - ModelExtents=10000 - InstanceID=-1 - $begin 'ValidationOptions' - EntityCheckLevel='Strict' - IgnoreUnclassifiedObjects=false - SkipIntersectionChecks=false - $end 'ValidationOptions' - ContainsGeomLinkUDM=false - $begin 'GeometryOperations' - BlockVersionID=2 - $begin 'AnsoftRangedIDServerManager' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=0 - IDServerRangeMin=0 - IDServerRangeMax=2146483647 - NextUniqueID=2559 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $begin 'AnsoftRangedIDServer' - IDServerObjectTypeID=1 - IDServerRangeMin=2146483648 - IDServerRangeMax=2146485547 - NextUniqueID=2146483654 - MoveBackwards=false - $end 'AnsoftRangedIDServer' - $end 'AnsoftRangedIDServerManager' - StartBackGroundFaceID=2146483648 - $begin 'CoordinateSystems' - $end 'CoordinateSystems' - $begin 'OperandCSs' - $end 'OperandCSs' - $begin 'SubModelDefinitions' - $end 'SubModelDefinitions' - $begin 'Groups' - $end 'Groups' - $begin 'UserDefinedModels' - $end 'UserDefinedModels' - $begin 'OperandUserDefinedModels' - $end 'OperandUserDefinedModels' - $begin 'ToplevelParts' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Rotor' - Flags='' - Color='(132 132 193)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"steel_1008"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='UserDefinedPrimitive' - ID=5 - ReferenceCoordSystemID=1 - $begin 'UserDefinedPrimitiveParameters' - KernelVersion=4 - DllName='RMxprt/SRMCore' - Version='23.0' - NoOfParameters=11 - Library='syslib' - $begin 'ParamVector' - $begin 'Pair' - Name='DiaGap' - Value='70mm' - $end 'Pair' - $begin 'Pair' - Name='DiaYoke' - Value='30mm' - $end 'Pair' - $begin 'Pair' - Name='Length' - Value='65mm' - $end 'Pair' - $begin 'Pair' - Name='Poles' - Value='6' - $end 'Pair' - $begin 'Pair' - Name='ThkYoke' - Value='9mm' - $end 'Pair' - $begin 'Pair' - Name='Embrace' - Value='0.5' - $end 'Pair' - $begin 'Pair' - Name='Delta' - Value='0deg' - $end 'Pair' - $begin 'Pair' - Name='RFillet' - Value='0mm' - $end 'Pair' - $begin 'Pair' - Name='EndExt' - Value='0mm' - $end 'Pair' - $begin 'Pair' - Name='LenRegion' - Value='200mm' - $end 'Pair' - $begin 'Pair' - Name='InfoCore' - Value='0' - $end 'Pair' - $end 'ParamVector' - $end 'UserDefinedPrimitiveParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=27 - NumWires=0 - NumLoops=30 - NumCoedges=148 - NumEdges=74 - NumVertices=48 - $end 'Topology' - BodyID=6 - StartFaceID=7 - StartEdgeID=34 - StartVertexID=108 - NumNewFaces=27 - NumNewEdges=74 - NumNewVertices=48 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=7 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1191.18721448613 - FcUVMid(30.3108891324554, 17.5, 0) - $begin 'FcTolVts' - TolVt(24.7487373415292, 24.7487373415292, -32.5, 5e-07) - TolVt(24.7487373415292, 24.7487373415292, 32.5, 5e-07) - TolVt(33.8074039201174, 9.0586665785882, 32.5, 5e-07) - TolVt(33.8074039201174, 9.0586665785882, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=8 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1191.18721448613 - FcUVMid(7.7715611723761e-15, 35, 0) - $begin 'FcTolVts' - TolVt(9.05866657858824, 33.8074039201174, -32.5, 5e-07) - TolVt(-9.05866657858822, 33.8074039201174, -32.5, 5e-07) - TolVt(-9.05866657858822, 33.8074039201174, 32.5, 5e-07) - TolVt(9.05866657858824, 33.8074039201174, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=2 - ID=9 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1191.18721448613 - FcUVMid(-30.3108891324553, 17.5, 0) - $begin 'FcTolVts' - TolVt(-24.7487373415292, 24.7487373415292, -32.5, 5e-07) - TolVt(-33.8074039201174, 9.05866657858824, -32.5, 5e-07) - TolVt(-33.8074039201174, 9.05866657858824, 32.5, 5e-07) - TolVt(-24.7487373415292, 24.7487373415292, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=3 - ID=10 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1191.18721448613 - FcUVMid(-30.3108891324554, -17.5, 0) - $begin 'FcTolVts' - TolVt(-33.8074039201174, -9.05866657858822, -32.5, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, -32.5, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, 32.5, 5e-07) - TolVt(-33.8074039201174, -9.05866657858822, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=4 - ID=11 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1191.18721448613 - FcUVMid(-1.94289029309402e-14, -35, 0) - $begin 'FcTolVts' - TolVt(-9.05866657858824, -33.8074039201174, -32.5, 5e-07) - TolVt(9.05866657858821, -33.8074039201174, -32.5, 5e-07) - TolVt(9.05866657858821, -33.8074039201174, 32.5, 5e-07) - TolVt(-9.05866657858824, -33.8074039201174, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=5 - ID=12 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1191.18721448613 - FcUVMid(30.3108891324553, -17.5, 0) - $begin 'FcTolVts' - TolVt(24.7487373415292, -24.7487373415292, -32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, -32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, 32.5, 5e-07) - TolVt(24.7487373415292, -24.7487373415292, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=6 - ID=13 - $begin 'FaceGeomTopol' - FaceTopol(2, 25, 25, 24) - $begin 'FaceGeometry' - Area=2318.870501197 - FcUVMid(2.77555756156289e-15, -4.80740671595891e-15, -32.5) - $begin 'FcTolVts' - TolVt(9.05866657858823, 22.2247735605555, -32.5, 5e-07) - TolVt(14.7178852075037, 18.9574221617482, -32.5, 5e-07) - TolVt(24.7487373415292, 24.7487373415292, -32.5, 5e-07) - TolVt(33.8074039201174, 9.0586665785882, -32.5, 5e-07) - TolVt(23.7765517860919, 3.26735139880728, -32.5, 5e-07) - TolVt(23.7765517860919, -3.26735139880732, -32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, -32.5, 5e-07) - TolVt(24.7487373415292, -24.7487373415292, -32.5, 5e-07) - TolVt(14.7178852075037, -18.9574221617482, -32.5, 5e-07) - TolVt(9.05866657858822, -22.2247735605555, -32.5, 5e-07) - TolVt(9.05866657858821, -33.8074039201174, -32.5, 5e-07) - TolVt(-9.05866657858824, -33.8074039201174, -32.5, 5e-07) - TolVt(-9.05866657858823, -22.2247735605555, -32.5, 5e-07) - TolVt(-14.7178852075037, -18.9574221617482, -32.5, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, -32.5, 5e-07) - TolVt(-33.8074039201174, -9.05866657858822, -32.5, 5e-07) - TolVt(-23.7765517860919, -3.26735139880729, -32.5, 5e-07) - TolVt(-23.7765517860919, 3.26735139880731, -32.5, 5e-07) - TolVt(-33.8074039201174, 9.05866657858824, -32.5, 5e-07) - TolVt(-24.7487373415292, 24.7487373415292, -32.5, 5e-07) - TolVt(-14.7178852075037, 18.9574221617482, -32.5, 5e-07) - TolVt(-9.05866657858822, 22.2247735605555, -32.5, 5e-07) - TolVt(-9.05866657858822, 33.8074039201174, -32.5, 5e-07) - TolVt(9.05866657858824, 33.8074039201174, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=7 - ID=14 - $begin 'FaceGeomTopol' - FaceTopol(2, 25, 25, 24) - $begin 'FaceGeometry' - Area=2318.870501197 - FcUVMid(2.77555756156289e-15, -4.80740671595891e-15, 32.5) - $begin 'FcTolVts' - TolVt(24.7487373415292, 24.7487373415292, 32.5, 5e-07) - TolVt(14.7178852075037, 18.9574221617482, 32.5, 5e-07) - TolVt(9.05866657858821, 22.2247735605555, 32.5, 5e-07) - TolVt(9.05866657858824, 33.8074039201174, 32.5, 5e-07) - TolVt(-9.05866657858822, 33.8074039201174, 32.5, 5e-07) - TolVt(-9.05866657858822, 22.2247735605555, 32.5, 5e-07) - TolVt(-14.7178852075037, 18.9574221617482, 32.5, 5e-07) - TolVt(-24.7487373415292, 24.7487373415292, 32.5, 5e-07) - TolVt(-33.8074039201174, 9.05866657858824, 32.5, 5e-07) - TolVt(-23.7765517860919, 3.26735139880731, 32.5, 5e-07) - TolVt(-23.7765517860919, -3.26735139880728, 32.5, 5e-07) - TolVt(-33.8074039201174, -9.05866657858822, 32.5, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, 32.5, 5e-07) - TolVt(-14.7178852075037, -18.9574221617482, 32.5, 5e-07) - TolVt(-9.05866657858821, -22.2247735605555, 32.5, 5e-07) - TolVt(-9.05866657858824, -33.8074039201174, 32.5, 5e-07) - TolVt(9.05866657858821, -33.8074039201174, 32.5, 5e-07) - TolVt(9.05866657858822, -22.2247735605555, 32.5, 5e-07) - TolVt(14.7178852075037, -18.9574221617482, 32.5, 5e-07) - TolVt(24.7487373415292, -24.7487373415292, 32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, 32.5, 5e-07) - TolVt(23.7765517860919, -3.26735139880732, 32.5, 5e-07) - TolVt(23.7765517860919, 3.26735139880727, 32.5, 5e-07) - TolVt(33.8074039201174, 9.0586665785882, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=8 - ID=15 - $begin 'FaceGeomTopol' - FaceTopol(2, 2, 2, 0) - $begin 'FaceGeometry' - Area=6126.1056745001 - FcUVMid(-12.9903810567666, -7.5, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=9 - ID=16 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371523 - FcUVMid(28.7919778531047, 6.16300898869774, 5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(33.8074039201174, 9.0586665785882, 32.5, 5e-07) - TolVt(23.7765517860919, 3.26735139880727, 32.5, 5e-07) - TolVt(23.7765517860919, 3.26735139880728, -32.5, 5e-07) - TolVt(33.8074039201174, 9.0586665785882, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=10 - ID=17 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371521 - FcUVMid(28.7919778531047, -6.16300898869779, 1.66533453693773e-14) - $begin 'FcTolVts' - TolVt(23.7765517860919, -3.26735139880732, 32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, 32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, -32.5, 5e-07) - TolVt(23.7765517860919, -3.26735139880732, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=11 - ID=18 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=426.078817620745 - FcUVMid(24, -2.74998980405098e-14, 0) - $begin 'FcTolVts' - TolVt(23.7765517860919, -3.26735139880732, 32.5, 5e-07) - TolVt(23.7765517860919, -3.26735139880732, -32.5, 5e-07) - TolVt(23.7765517860919, 3.26735139880728, -32.5, 5e-07) - TolVt(23.7765517860919, 3.26735139880727, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=12 - ID=19 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371523 - FcUVMid(19.7333112745164, -21.8530797516387, 1.66533453693773e-14) - $begin 'FcTolVts' - TolVt(24.7487373415292, -24.7487373415292, 32.5, 5e-07) - TolVt(14.7178852075037, -18.9574221617482, 32.5, 5e-07) - TolVt(14.7178852075037, -18.9574221617482, -32.5, 5e-07) - TolVt(24.7487373415292, -24.7487373415292, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=13 - ID=20 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371521 - FcUVMid(9.05866657858821, -28.0160887403365, 5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(9.05866657858822, -22.2247735605555, 32.5, 5e-07) - TolVt(9.05866657858821, -33.8074039201174, 32.5, 5e-07) - TolVt(9.05866657858821, -33.8074039201174, -32.5, 5e-07) - TolVt(9.05866657858822, -22.2247735605555, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=14 - ID=21 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=426.078817620745 - FcUVMid(12, -20.7846096908265, 0) - $begin 'FcTolVts' - TolVt(9.05866657858822, -22.2247735605555, 32.5, 5e-07) - TolVt(9.05866657858822, -22.2247735605555, -32.5, 5e-07) - TolVt(14.7178852075037, -18.9574221617482, -32.5, 5e-07) - TolVt(14.7178852075037, -18.9574221617482, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=15 - ID=22 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371523 - FcUVMid(-9.05866657858824, -28.0160887403365, 5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(-9.05866657858824, -33.8074039201174, 32.5, 5e-07) - TolVt(-9.05866657858821, -22.2247735605555, 32.5, 5e-07) - TolVt(-9.05866657858823, -22.2247735605555, -32.5, 5e-07) - TolVt(-9.05866657858824, -33.8074039201174, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=16 - ID=23 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371521 - FcUVMid(-19.7333112745164, -21.8530797516387, -5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(-14.7178852075037, -18.9574221617482, 32.5, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, 32.5, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, -32.5, 5e-07) - TolVt(-14.7178852075037, -18.9574221617482, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=17 - ID=24 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=426.078817620745 - FcUVMid(-12, -20.7846096908265, 0) - $begin 'FcTolVts' - TolVt(-14.7178852075037, -18.9574221617482, 32.5, 5e-07) - TolVt(-14.7178852075037, -18.9574221617482, -32.5, 5e-07) - TolVt(-9.05866657858823, -22.2247735605555, -32.5, 5e-07) - TolVt(-9.05866657858821, -22.2247735605555, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=18 - ID=25 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371522 - FcUVMid(-28.7919778531047, -6.16300898869776, 0) - $begin 'FcTolVts' - TolVt(-33.8074039201174, -9.05866657858822, 32.5, 5e-07) - TolVt(-23.7765517860919, -3.26735139880728, 32.5, 5e-07) - TolVt(-23.7765517860919, -3.26735139880729, -32.5, 5e-07) - TolVt(-33.8074039201174, -9.05866657858822, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=19 - ID=26 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371521 - FcUVMid(-28.7919778531047, 6.16300898869778, -5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(-23.7765517860919, 3.26735139880731, 32.5, 5e-07) - TolVt(-33.8074039201174, 9.05866657858824, 32.5, 5e-07) - TolVt(-33.8074039201174, 9.05866657858824, -32.5, 5e-07) - TolVt(-23.7765517860919, 3.26735139880731, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=20 - ID=27 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=426.078817620745 - FcUVMid(-24, 1.28449541154583e-14, 0) - $begin 'FcTolVts' - TolVt(-23.7765517860919, 3.26735139880731, 32.5, 5e-07) - TolVt(-23.7765517860919, 3.26735139880731, -32.5, 5e-07) - TolVt(-23.7765517860919, -3.26735139880729, -32.5, 5e-07) - TolVt(-23.7765517860919, -3.26735139880728, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=21 - ID=28 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371522 - FcUVMid(-19.7333112745164, 21.8530797516387, 5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(-24.7487373415292, 24.7487373415292, 32.5, 5e-07) - TolVt(-14.7178852075037, 18.9574221617482, 32.5, 5e-07) - TolVt(-14.7178852075037, 18.9574221617482, -32.5, 5e-07) - TolVt(-24.7487373415292, 24.7487373415292, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=22 - ID=29 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371521 - FcUVMid(-9.05866657858822, 28.0160887403365, 5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(-9.05866657858822, 22.2247735605555, 32.5, 5e-07) - TolVt(-9.05866657858822, 33.8074039201174, 32.5, 5e-07) - TolVt(-9.05866657858822, 33.8074039201174, -32.5, 5e-07) - TolVt(-9.05866657858822, 22.2247735605555, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=23 - ID=30 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=426.078817620745 - FcUVMid(-12, 20.7846096908265, 0) - $begin 'FcTolVts' - TolVt(-9.05866657858822, 22.2247735605555, 32.5, 5e-07) - TolVt(-9.05866657858822, 22.2247735605555, -32.5, 5e-07) - TolVt(-14.7178852075037, 18.9574221617482, -32.5, 5e-07) - TolVt(-14.7178852075037, 18.9574221617482, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=24 - ID=31 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371522 - FcUVMid(9.05866657858823, 28.0160887403365, 0) - $begin 'FcTolVts' - TolVt(9.05866657858824, 33.8074039201174, 32.5, 5e-07) - TolVt(9.05866657858821, 22.2247735605555, 32.5, 5e-07) - TolVt(9.05866657858823, 22.2247735605555, -32.5, 5e-07) - TolVt(9.05866657858824, 33.8074039201174, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=25 - ID=32 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=752.870973371521 - FcUVMid(19.7333112745164, 21.8530797516387, 5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(14.7178852075037, 18.9574221617482, 32.5, 5e-07) - TolVt(24.7487373415292, 24.7487373415292, 32.5, 5e-07) - TolVt(24.7487373415292, 24.7487373415292, -32.5, 5e-07) - TolVt(14.7178852075037, 18.9574221617482, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=26 - ID=33 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=426.078817620745 - FcUVMid(12, 20.7846096908265, 0) - $begin 'FcTolVts' - TolVt(14.7178852075037, 18.9574221617482, 32.5, 5e-07) - TolVt(14.7178852075037, 18.9574221617482, -32.5, 5e-07) - TolVt(9.05866657858823, 22.2247735605555, -32.5, 5e-07) - TolVt(9.05866657858821, 22.2247735605555, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=34 - EdgeFaces(14, 15) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(-12.9903810567666, -7.5, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=35 - EdgeFaces(13, 15) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(-12.9903810567666, -7.5, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=36 - EdgeFaces(8, 14) - $begin 'EdTolVts' - TolVt(-9.05866657858822, 33.8074039201174, 32.5, 5e-07) - TolVt(9.05866657858824, 33.8074039201174, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(5.55111512312578e-15, 35, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=37 - EdgeFaces(9, 14) - $begin 'EdTolVts' - TolVt(-33.8074039201174, 9.05866657858824, 32.5, 5e-07) - TolVt(-24.7487373415292, 24.7487373415292, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-30.3108891324553, 17.5, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=38 - EdgeFaces(10, 14) - $begin 'EdTolVts' - TolVt(-24.7487373415292, -24.7487373415292, 32.5, 5e-07) - TolVt(-33.8074039201174, -9.05866657858822, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-30.3108891324554, -17.5, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=39 - EdgeFaces(11, 14) - $begin 'EdTolVts' - TolVt(9.05866657858821, -33.8074039201174, 32.5, 5e-07) - TolVt(-9.05866657858824, -33.8074039201174, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.22044604925031e-14, -35, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=40 - EdgeFaces(12, 14) - $begin 'EdTolVts' - TolVt(24.7487373415292, -24.7487373415292, 32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(30.3108891324553, -17.5, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=41 - EdgeFaces(7, 14) - $begin 'EdTolVts' - TolVt(33.8074039201174, 9.0586665785882, 32.5, 5e-07) - TolVt(24.7487373415292, 24.7487373415292, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(30.3108891324554, 17.5, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=8 - ID=42 - EdgeFaces(8, 13) - $begin 'EdTolVts' - TolVt(-9.05866657858822, 33.8074039201174, -32.5, 5e-07) - TolVt(9.05866657858824, 33.8074039201174, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(5.55111512312578e-15, 35, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=9 - ID=43 - EdgeFaces(9, 13) - $begin 'EdTolVts' - TolVt(-33.8074039201174, 9.05866657858824, -32.5, 5e-07) - TolVt(-24.7487373415292, 24.7487373415292, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-30.3108891324553, 17.5, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=10 - ID=44 - EdgeFaces(10, 13) - $begin 'EdTolVts' - TolVt(-24.7487373415292, -24.7487373415292, -32.5, 5e-07) - TolVt(-33.8074039201174, -9.05866657858822, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-30.3108891324554, -17.5, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=11 - ID=45 - EdgeFaces(11, 13) - $begin 'EdTolVts' - TolVt(9.05866657858821, -33.8074039201174, -32.5, 5e-07) - TolVt(-9.05866657858824, -33.8074039201174, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.22044604925031e-14, -35, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=12 - ID=46 - EdgeFaces(12, 13) - $begin 'EdTolVts' - TolVt(24.7487373415292, -24.7487373415292, -32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(30.3108891324553, -17.5, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=13 - ID=47 - EdgeFaces(7, 13) - $begin 'EdTolVts' - TolVt(33.8074039201174, 9.0586665785882, -32.5, 5e-07) - TolVt(24.7487373415292, 24.7487373415292, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(30.3108891324554, 17.5, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=14 - ID=48 - EdgeFaces(14, 30) - $begin 'EdTolVts' - TolVt(-14.7178852075037, 18.9574221617482, 32.5, 5e-07) - TolVt(-9.05866657858822, 22.2247735605555, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-12, 20.7846096908265, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=15 - ID=49 - EdgeFaces(29, 30) - $begin 'EdTolVts' - TolVt(-9.05866657858822, 22.2247735605555, 32.5, 5e-07) - TolVt(-9.05866657858822, 22.2247735605555, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.05866657858822, 22.2247735605555, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=16 - ID=50 - EdgeFaces(14, 29) - $begin 'EdTolVts' - TolVt(-9.05866657858822, 22.2247735605555, 32.5, 5e-07) - TolVt(-9.05866657858822, 33.8074039201174, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.05866657858822, 28.0160887403365, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=17 - ID=51 - EdgeFaces(8, 29) - $begin 'EdTolVts' - TolVt(-9.05866657858822, 33.8074039201174, 32.5, 5e-07) - TolVt(-9.05866657858822, 33.8074039201174, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.05866657858822, 33.8074039201174, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=18 - ID=52 - EdgeFaces(9, 28) - $begin 'EdTolVts' - TolVt(-24.7487373415292, 24.7487373415292, 32.5, 5e-07) - TolVt(-24.7487373415292, 24.7487373415292, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-24.7487373415292, 24.7487373415292, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=19 - ID=53 - EdgeFaces(14, 28) - $begin 'EdTolVts' - TolVt(-14.7178852075037, 18.9574221617482, 32.5, 5e-07) - TolVt(-24.7487373415292, 24.7487373415292, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.7333112745164, 21.8530797516387, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=20 - ID=54 - EdgeFaces(28, 30) - $begin 'EdTolVts' - TolVt(-14.7178852075037, 18.9574221617482, 32.5, 5e-07) - TolVt(-14.7178852075037, 18.9574221617482, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.7178852075037, 18.9574221617482, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=21 - ID=55 - EdgeFaces(13, 30) - $begin 'EdTolVts' - TolVt(-9.05866657858822, 22.2247735605555, -32.5, 5e-07) - TolVt(-14.7178852075037, 18.9574221617482, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-12, 20.7846096908265, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=22 - ID=56 - EdgeFaces(13, 29) - $begin 'EdTolVts' - TolVt(-9.05866657858822, 22.2247735605555, -32.5, 5e-07) - TolVt(-9.05866657858822, 33.8074039201174, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.05866657858822, 28.0160887403365, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=23 - ID=57 - EdgeFaces(13, 28) - $begin 'EdTolVts' - TolVt(-24.7487373415292, 24.7487373415292, -32.5, 5e-07) - TolVt(-14.7178852075037, 18.9574221617482, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.7333112745164, 21.8530797516387, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=24 - ID=58 - EdgeFaces(14, 27) - $begin 'EdTolVts' - TolVt(-23.7765517860919, -3.26735139880728, 32.5, 5e-07) - TolVt(-23.7765517860919, 3.26735139880731, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-24, 9.71445146547201e-15, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=25 - ID=59 - EdgeFaces(26, 27) - $begin 'EdTolVts' - TolVt(-23.7765517860919, 3.26735139880731, 32.5, 5e-07) - TolVt(-23.7765517860919, 3.26735139880731, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.7765517860919, 3.26735139880731, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=26 - ID=60 - EdgeFaces(14, 26) - $begin 'EdTolVts' - TolVt(-23.7765517860919, 3.26735139880731, 32.5, 5e-07) - TolVt(-33.8074039201174, 9.05866657858824, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-28.7919778531047, 6.16300898869778, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=27 - ID=61 - EdgeFaces(9, 26) - $begin 'EdTolVts' - TolVt(-33.8074039201174, 9.05866657858824, 32.5, 5e-07) - TolVt(-33.8074039201174, 9.05866657858824, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-33.8074039201174, 9.05866657858824, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=28 - ID=62 - EdgeFaces(10, 25) - $begin 'EdTolVts' - TolVt(-33.8074039201174, -9.05866657858822, 32.5, 5e-07) - TolVt(-33.8074039201174, -9.05866657858822, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-33.8074039201174, -9.05866657858822, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=29 - ID=63 - EdgeFaces(14, 25) - $begin 'EdTolVts' - TolVt(-23.7765517860919, -3.26735139880728, 32.5, 5e-07) - TolVt(-33.8074039201174, -9.05866657858822, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-28.7919778531047, -6.16300898869774, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=30 - ID=64 - EdgeFaces(25, 27) - $begin 'EdTolVts' - TolVt(-23.7765517860919, -3.26735139880728, 32.5, 5e-07) - TolVt(-23.7765517860919, -3.26735139880729, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.7765517860919, -3.26735139880729, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=31 - ID=65 - EdgeFaces(13, 27) - $begin 'EdTolVts' - TolVt(-23.7765517860919, 3.26735139880731, -32.5, 5e-07) - TolVt(-23.7765517860919, -3.26735139880729, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-24, 1.04083408558627e-14, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=32 - ID=66 - EdgeFaces(13, 26) - $begin 'EdTolVts' - TolVt(-23.7765517860919, 3.26735139880731, -32.5, 5e-07) - TolVt(-33.8074039201174, 9.05866657858824, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-28.7919778531047, 6.16300898869778, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=33 - ID=67 - EdgeFaces(13, 25) - $begin 'EdTolVts' - TolVt(-33.8074039201174, -9.05866657858822, -32.5, 5e-07) - TolVt(-23.7765517860919, -3.26735139880729, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-28.7919778531047, -6.16300898869776, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=34 - ID=68 - EdgeFaces(14, 24) - $begin 'EdTolVts' - TolVt(-9.05866657858821, -22.2247735605555, 32.5, 5e-07) - TolVt(-14.7178852075037, -18.9574221617482, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-12, -20.7846096908265, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=35 - ID=69 - EdgeFaces(23, 24) - $begin 'EdTolVts' - TolVt(-14.7178852075037, -18.9574221617482, 32.5, 5e-07) - TolVt(-14.7178852075037, -18.9574221617482, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.7178852075037, -18.9574221617482, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=36 - ID=70 - EdgeFaces(14, 23) - $begin 'EdTolVts' - TolVt(-14.7178852075037, -18.9574221617482, 32.5, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.7333112745165, -21.8530797516387, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=37 - ID=71 - EdgeFaces(10, 23) - $begin 'EdTolVts' - TolVt(-24.7487373415292, -24.7487373415292, 32.5, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-24.7487373415292, -24.7487373415292, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=38 - ID=72 - EdgeFaces(11, 22) - $begin 'EdTolVts' - TolVt(-9.05866657858824, -33.8074039201174, 32.5, 5e-07) - TolVt(-9.05866657858824, -33.8074039201174, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.05866657858824, -33.8074039201174, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=39 - ID=73 - EdgeFaces(14, 22) - $begin 'EdTolVts' - TolVt(-9.05866657858821, -22.2247735605555, 32.5, 5e-07) - TolVt(-9.05866657858824, -33.8074039201174, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.05866657858823, -28.0160887403364, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=40 - ID=74 - EdgeFaces(22, 24) - $begin 'EdTolVts' - TolVt(-9.05866657858821, -22.2247735605555, 32.5, 5e-07) - TolVt(-9.05866657858823, -22.2247735605555, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.05866657858823, -22.2247735605555, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=41 - ID=75 - EdgeFaces(13, 24) - $begin 'EdTolVts' - TolVt(-14.7178852075037, -18.9574221617482, -32.5, 5e-07) - TolVt(-9.05866657858823, -22.2247735605555, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-12, -20.7846096908265, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=42 - ID=76 - EdgeFaces(13, 23) - $begin 'EdTolVts' - TolVt(-14.7178852075037, -18.9574221617482, -32.5, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.7333112745165, -21.8530797516387, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=43 - ID=77 - EdgeFaces(13, 22) - $begin 'EdTolVts' - TolVt(-9.05866657858824, -33.8074039201174, -32.5, 5e-07) - TolVt(-9.05866657858823, -22.2247735605555, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.05866657858823, -28.0160887403365, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=44 - ID=78 - EdgeFaces(14, 21) - $begin 'EdTolVts' - TolVt(14.7178852075037, -18.9574221617482, 32.5, 5e-07) - TolVt(9.05866657858822, -22.2247735605555, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(12, -20.7846096908265, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=45 - ID=79 - EdgeFaces(20, 21) - $begin 'EdTolVts' - TolVt(9.05866657858822, -22.2247735605555, 32.5, 5e-07) - TolVt(9.05866657858822, -22.2247735605555, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.05866657858822, -22.2247735605555, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=46 - ID=80 - EdgeFaces(14, 20) - $begin 'EdTolVts' - TolVt(9.05866657858822, -22.2247735605555, 32.5, 5e-07) - TolVt(9.05866657858821, -33.8074039201174, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.05866657858821, -28.0160887403365, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=47 - ID=81 - EdgeFaces(11, 20) - $begin 'EdTolVts' - TolVt(9.05866657858821, -33.8074039201174, 32.5, 5e-07) - TolVt(9.05866657858821, -33.8074039201174, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.05866657858821, -33.8074039201174, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=48 - ID=82 - EdgeFaces(12, 19) - $begin 'EdTolVts' - TolVt(24.7487373415292, -24.7487373415292, 32.5, 5e-07) - TolVt(24.7487373415292, -24.7487373415292, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(24.7487373415292, -24.7487373415292, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=49 - ID=83 - EdgeFaces(14, 19) - $begin 'EdTolVts' - TolVt(14.7178852075037, -18.9574221617482, 32.5, 5e-07) - TolVt(24.7487373415292, -24.7487373415292, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(19.7333112745164, -21.8530797516387, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=50 - ID=84 - EdgeFaces(19, 21) - $begin 'EdTolVts' - TolVt(14.7178852075037, -18.9574221617482, 32.5, 5e-07) - TolVt(14.7178852075037, -18.9574221617482, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.7178852075037, -18.9574221617482, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=51 - ID=85 - EdgeFaces(13, 21) - $begin 'EdTolVts' - TolVt(9.05866657858822, -22.2247735605555, -32.5, 5e-07) - TolVt(14.7178852075037, -18.9574221617482, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(12, -20.7846096908265, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=52 - ID=86 - EdgeFaces(13, 20) - $begin 'EdTolVts' - TolVt(9.05866657858822, -22.2247735605555, -32.5, 5e-07) - TolVt(9.05866657858821, -33.8074039201174, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.05866657858821, -28.0160887403365, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=53 - ID=87 - EdgeFaces(13, 19) - $begin 'EdTolVts' - TolVt(24.7487373415292, -24.7487373415292, -32.5, 5e-07) - TolVt(14.7178852075037, -18.9574221617482, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(19.7333112745164, -21.8530797516387, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=54 - ID=88 - EdgeFaces(14, 18) - $begin 'EdTolVts' - TolVt(23.7765517860919, 3.26735139880727, 32.5, 5e-07) - TolVt(23.7765517860919, -3.26735139880732, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(24, -2.3592239273288e-14, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=55 - ID=89 - EdgeFaces(17, 18) - $begin 'EdTolVts' - TolVt(23.7765517860919, -3.26735139880732, 32.5, 5e-07) - TolVt(23.7765517860919, -3.26735139880732, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.7765517860919, -3.26735139880732, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=56 - ID=90 - EdgeFaces(14, 17) - $begin 'EdTolVts' - TolVt(23.7765517860919, -3.26735139880732, 32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.7919778531047, -6.16300898869779, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=57 - ID=91 - EdgeFaces(12, 17) - $begin 'EdTolVts' - TolVt(33.8074039201174, -9.05866657858826, 32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(33.8074039201174, -9.05866657858826, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=58 - ID=92 - EdgeFaces(7, 16) - $begin 'EdTolVts' - TolVt(33.8074039201174, 9.0586665785882, 32.5, 5e-07) - TolVt(33.8074039201174, 9.0586665785882, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(33.8074039201174, 9.0586665785882, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=59 - ID=93 - EdgeFaces(14, 16) - $begin 'EdTolVts' - TolVt(23.7765517860919, 3.26735139880727, 32.5, 5e-07) - TolVt(33.8074039201174, 9.0586665785882, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.7919778531047, 6.16300898869773, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=60 - ID=94 - EdgeFaces(16, 18) - $begin 'EdTolVts' - TolVt(23.7765517860919, 3.26735139880727, 32.5, 5e-07) - TolVt(23.7765517860919, 3.26735139880728, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.7765517860919, 3.26735139880728, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=61 - ID=95 - EdgeFaces(13, 18) - $begin 'EdTolVts' - TolVt(23.7765517860919, -3.26735139880732, -32.5, 5e-07) - TolVt(23.7765517860919, 3.26735139880728, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(24, -2.28983498828973e-14, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=62 - ID=96 - EdgeFaces(13, 17) - $begin 'EdTolVts' - TolVt(23.7765517860919, -3.26735139880732, -32.5, 5e-07) - TolVt(33.8074039201174, -9.05866657858826, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.7919778531047, -6.16300898869779, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=63 - ID=97 - EdgeFaces(13, 16) - $begin 'EdTolVts' - TolVt(33.8074039201174, 9.0586665785882, -32.5, 5e-07) - TolVt(23.7765517860919, 3.26735139880728, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.7919778531047, 6.16300898869774, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=64 - ID=98 - EdgeFaces(14, 33) - $begin 'EdTolVts' - TolVt(9.05866657858821, 22.2247735605555, 32.5, 5e-07) - TolVt(14.7178852075037, 18.9574221617482, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(12, 20.7846096908265, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=65 - ID=99 - EdgeFaces(32, 33) - $begin 'EdTolVts' - TolVt(14.7178852075037, 18.9574221617482, 32.5, 5e-07) - TolVt(14.7178852075037, 18.9574221617482, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.7178852075037, 18.9574221617482, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=66 - ID=100 - EdgeFaces(14, 32) - $begin 'EdTolVts' - TolVt(14.7178852075037, 18.9574221617482, 32.5, 5e-07) - TolVt(24.7487373415292, 24.7487373415292, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(19.7333112745164, 21.8530797516387, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=67 - ID=101 - EdgeFaces(7, 32) - $begin 'EdTolVts' - TolVt(24.7487373415292, 24.7487373415292, 32.5, 5e-07) - TolVt(24.7487373415292, 24.7487373415292, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(24.7487373415292, 24.7487373415292, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=68 - ID=102 - EdgeFaces(8, 31) - $begin 'EdTolVts' - TolVt(9.05866657858824, 33.8074039201174, 32.5, 5e-07) - TolVt(9.05866657858824, 33.8074039201174, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.05866657858824, 33.8074039201174, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=69 - ID=103 - EdgeFaces(14, 31) - $begin 'EdTolVts' - TolVt(9.05866657858821, 22.2247735605555, 32.5, 5e-07) - TolVt(9.05866657858824, 33.8074039201174, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.05866657858823, 28.0160887403364, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=70 - ID=104 - EdgeFaces(31, 33) - $begin 'EdTolVts' - TolVt(9.05866657858821, 22.2247735605555, 32.5, 5e-07) - TolVt(9.05866657858823, 22.2247735605555, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.05866657858823, 22.2247735605555, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=71 - ID=105 - EdgeFaces(13, 33) - $begin 'EdTolVts' - TolVt(14.7178852075037, 18.9574221617482, -32.5, 5e-07) - TolVt(9.05866657858823, 22.2247735605555, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(12, 20.7846096908265, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=72 - ID=106 - EdgeFaces(13, 32) - $begin 'EdTolVts' - TolVt(14.7178852075037, 18.9574221617482, -32.5, 5e-07) - TolVt(24.7487373415292, 24.7487373415292, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(19.7333112745164, 21.8530797516387, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=73 - ID=107 - EdgeFaces(13, 31) - $begin 'EdTolVts' - TolVt(9.05866657858824, 33.8074039201174, -32.5, 5e-07) - TolVt(9.05866657858823, 22.2247735605555, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.05866657858823, 28.0160887403365, -32.5) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=108 - VtPos(9.05866657858821, 22.2247735605555, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=109 - VtPos(-14.7178852075037, 18.9574221617482, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=110 - VtPos(-23.7765517860919, -3.26735139880728, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=111 - VtPos(-9.05866657858821, -22.2247735605555, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=112 - VtPos(14.7178852075037, -18.9574221617482, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=113 - VtPos(23.7765517860919, 3.26735139880727, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=114 - VtPos(-9.05866657858822, 22.2247735605555, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=115 - VtPos(-9.05866657858822, 33.8074039201174, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=8 - ID=116 - VtPos(-24.7487373415292, 24.7487373415292, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=9 - ID=117 - VtPos(-9.05866657858822, 22.2247735605555, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=10 - ID=118 - VtPos(-9.05866657858822, 33.8074039201174, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=11 - ID=119 - VtPos(-24.7487373415292, 24.7487373415292, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=12 - ID=120 - VtPos(-14.7178852075037, 18.9574221617482, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=13 - ID=121 - VtPos(-23.7765517860919, 3.26735139880731, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=14 - ID=122 - VtPos(-33.8074039201174, 9.05866657858824, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=15 - ID=123 - VtPos(-33.8074039201174, -9.05866657858822, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=16 - ID=124 - VtPos(-23.7765517860919, 3.26735139880731, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=17 - ID=125 - VtPos(-33.8074039201174, 9.05866657858824, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=18 - ID=126 - VtPos(-33.8074039201174, -9.05866657858822, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=19 - ID=127 - VtPos(-23.7765517860919, -3.26735139880729, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=20 - ID=128 - VtPos(-14.7178852075037, -18.9574221617482, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=21 - ID=129 - VtPos(-24.7487373415292, -24.7487373415292, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=22 - ID=130 - VtPos(-9.05866657858824, -33.8074039201174, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=23 - ID=131 - VtPos(-14.7178852075037, -18.9574221617482, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=24 - ID=132 - VtPos(-24.7487373415292, -24.7487373415292, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=25 - ID=133 - VtPos(-9.05866657858824, -33.8074039201174, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=26 - ID=134 - VtPos(-9.05866657858823, -22.2247735605555, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=27 - ID=135 - VtPos(9.05866657858822, -22.2247735605555, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=28 - ID=136 - VtPos(9.05866657858821, -33.8074039201174, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=29 - ID=137 - VtPos(24.7487373415292, -24.7487373415292, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=30 - ID=138 - VtPos(9.05866657858822, -22.2247735605555, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=31 - ID=139 - VtPos(9.05866657858821, -33.8074039201174, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=32 - ID=140 - VtPos(24.7487373415292, -24.7487373415292, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=33 - ID=141 - VtPos(14.7178852075037, -18.9574221617482, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=34 - ID=142 - VtPos(23.7765517860919, -3.26735139880732, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=35 - ID=143 - VtPos(33.8074039201174, -9.05866657858826, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=36 - ID=144 - VtPos(33.8074039201174, 9.0586665785882, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=37 - ID=145 - VtPos(23.7765517860919, -3.26735139880732, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=38 - ID=146 - VtPos(33.8074039201174, -9.05866657858826, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=39 - ID=147 - VtPos(33.8074039201174, 9.0586665785882, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=40 - ID=148 - VtPos(23.7765517860919, 3.26735139880728, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=41 - ID=149 - VtPos(14.7178852075037, 18.9574221617482, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=42 - ID=150 - VtPos(24.7487373415292, 24.7487373415292, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=43 - ID=151 - VtPos(9.05866657858824, 33.8074039201174, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=44 - ID=152 - VtPos(14.7178852075037, 18.9574221617482, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=45 - ID=153 - VtPos(24.7487373415292, 24.7487373415292, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=46 - ID=154 - VtPos(9.05866657858824, 33.8074039201174, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=47 - ID=155 - VtPos(9.05866657858823, 22.2247735605555, -32.5) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Rotate' - ID=1679 - ReferenceCoordSystemID=1 - $begin 'RotateParameters' - KernelVersion=4 - TargetID=6 - RotateAxis='Z' - RotateAngle='22.5deg' - $end 'RotateParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=27 - NumWires=0 - NumLoops=30 - NumCoedges=148 - NumEdges=74 - NumVertices=48 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=5 - $end 'Operation' - $begin 'Operation' - OperationType='Rotate' - ID=1698 - ReferenceCoordSystemID=1 - $begin 'RotateParameters' - KernelVersion=4 - TargetID=6 - RotateAxis='Z' - RotateAngle='7.5deg' - $end 'RotateParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=27 - NumWires=0 - NumLoops=30 - NumCoedges=148 - NumEdges=74 - NumVertices=48 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=1679 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1699 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=6 - SplitPlane='XY' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=6 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1700 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=27 - NumWires=0 - NumLoops=30 - NumCoedges=148 - NumEdges=74 - NumVertices=48 - $end 'Topology' - BodyID=-1 - StartFaceID=1701 - StartEdgeID=1702 - StartVertexID=1727 - NumNewFaces=1 - NumNewEdges=25 - NumNewVertices=24 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1701 - $begin 'FaceGeomTopol' - FaceTopol(2, 25, 25, 24) - $begin 'FaceGeometry' - Area=2318.870501197 - FcUVMid(0, 2.77555756156289e-15, 0) - $begin 'FcTolVts' - TolVt(-3.26735139880731, -23.7765517860919, 0, 5e-07) - TolVt(-9.05866657858824, -33.8074039201174, 0, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, 0, 5e-07) - TolVt(-18.9574221617482, -14.7178852075037, 0, 5e-07) - TolVt(-22.2247735605555, -9.05866657858822, 0, 5e-07) - TolVt(-33.8074039201174, -9.05866657858821, 0, 5e-07) - TolVt(-33.8074039201174, 9.05866657858823, 0, 5e-07) - TolVt(-22.2247735605555, 9.05866657858822, 0, 5e-07) - TolVt(-18.9574221617482, 14.7178852075037, 0, 5e-07) - TolVt(-24.7487373415292, 24.7487373415292, 0, 5e-07) - TolVt(-9.05866657858823, 33.8074039201174, 0, 5e-07) - TolVt(-3.2673513988073, 23.7765517860919, 0, 5e-07) - TolVt(3.2673513988073, 23.7765517860919, 0, 5e-07) - TolVt(9.05866657858824, 33.8074039201174, 0, 5e-07) - TolVt(24.7487373415292, 24.7487373415291, 0, 5e-07) - TolVt(18.9574221617482, 14.7178852075037, 0, 5e-07) - TolVt(22.2247735605555, 9.05866657858821, 0, 5e-07) - TolVt(33.8074039201174, 9.0586665785882, 0, 5e-07) - TolVt(33.8074039201174, -9.05866657858825, 0, 5e-07) - TolVt(22.2247735605555, -9.05866657858824, 0, 5e-07) - TolVt(18.9574221617482, -14.7178852075037, 0, 5e-07) - TolVt(24.7487373415292, -24.7487373415292, 0, 5e-07) - TolVt(9.05866657858822, -33.8074039201174, 0, 5e-07) - TolVt(3.26735139880726, -23.7765517860919, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1702 - EdgeFaces(7, 1701) - $begin 'EdTolVts' - TolVt(9.05866657858824, 33.8074039201174, 0, 5e-07) - TolVt(24.7487373415292, 24.7487373415291, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(17.5, 30.3108891324553, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1703 - EdgeFaces(8, 1701) - $begin 'EdTolVts' - TolVt(-9.05866657858823, 33.8074039201174, 0, 5e-07) - TolVt(-24.7487373415292, 24.7487373415292, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-17.5, 30.3108891324554, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1704 - EdgeFaces(9, 1701) - $begin 'EdTolVts' - TolVt(-33.8074039201174, 9.05866657858823, 0, 5e-07) - TolVt(-33.8074039201174, -9.05866657858821, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-35, 4.28626379701574e-15, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=1705 - EdgeFaces(10, 1701) - $begin 'EdTolVts' - TolVt(-24.7487373415292, -24.7487373415292, 0, 5e-07) - TolVt(-9.05866657858824, -33.8074039201174, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-17.5, -30.3108891324553, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=1706 - EdgeFaces(11, 1701) - $begin 'EdTolVts' - TolVt(24.7487373415292, -24.7487373415292, 0, 5e-07) - TolVt(9.05866657858822, -33.8074039201174, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(17.5, -30.3108891324554, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=1707 - EdgeFaces(12, 1701) - $begin 'EdTolVts' - TolVt(33.8074039201174, 9.0586665785882, 0, 5e-07) - TolVt(33.8074039201174, -9.05866657858825, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(35, -3.10862446895044e-14, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=1708 - EdgeFaces(15, 1701) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(-15, 1.83697019872103e-15, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=1709 - EdgeFaces(16, 1701) - $begin 'EdTolVts' - TolVt(24.7487373415292, 24.7487373415291, 0, 5e-07) - TolVt(18.9574221617482, 14.7178852075037, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(21.8530797516387, 19.7333112745164, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=8 - ID=1710 - EdgeFaces(17, 1701) - $begin 'EdTolVts' - TolVt(22.2247735605555, 9.05866657858821, 0, 5e-07) - TolVt(33.8074039201174, 9.0586665785882, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.0160887403365, 9.0586665785882, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=9 - ID=1711 - EdgeFaces(18, 1701) - $begin 'EdTolVts' - TolVt(18.9574221617482, 14.7178852075037, 0, 5e-07) - TolVt(22.2247735605555, 9.05866657858821, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(20.7846096908265, 12, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=10 - ID=1712 - EdgeFaces(19, 1701) - $begin 'EdTolVts' - TolVt(33.8074039201174, -9.05866657858825, 0, 5e-07) - TolVt(22.2247735605555, -9.05866657858824, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(28.0160887403364, -9.05866657858824, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=11 - ID=1713 - EdgeFaces(20, 1701) - $begin 'EdTolVts' - TolVt(18.9574221617482, -14.7178852075037, 0, 5e-07) - TolVt(24.7487373415292, -24.7487373415292, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(21.8530797516387, -19.7333112745165, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=12 - ID=1714 - EdgeFaces(21, 1701) - $begin 'EdTolVts' - TolVt(22.2247735605555, -9.05866657858824, 0, 5e-07) - TolVt(18.9574221617482, -14.7178852075037, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(20.7846096908265, -12, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=13 - ID=1715 - EdgeFaces(22, 1701) - $begin 'EdTolVts' - TolVt(9.05866657858822, -33.8074039201174, 0, 5e-07) - TolVt(3.26735139880726, -23.7765517860919, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(6.16300898869774, -28.7919778531046, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=14 - ID=1716 - EdgeFaces(23, 1701) - $begin 'EdTolVts' - TolVt(-9.05866657858824, -33.8074039201174, 0, 5e-07) - TolVt(-3.26735139880731, -23.7765517860919, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.16300898869778, -28.7919778531047, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=15 - ID=1717 - EdgeFaces(24, 1701) - $begin 'EdTolVts' - TolVt(-3.26735139880731, -23.7765517860919, 0, 5e-07) - TolVt(3.26735139880726, -23.7765517860919, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.46980542519812e-14, -24, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=16 - ID=1718 - EdgeFaces(25, 1701) - $begin 'EdTolVts' - TolVt(-18.9574221617482, -14.7178852075037, 0, 5e-07) - TolVt(-24.7487373415292, -24.7487373415292, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-21.8530797516387, -19.7333112745164, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=17 - ID=1719 - EdgeFaces(26, 1701) - $begin 'EdTolVts' - TolVt(-33.8074039201174, -9.05866657858821, 0, 5e-07) - TolVt(-22.2247735605555, -9.05866657858822, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-28.0160887403365, -9.05866657858821, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=18 - ID=1720 - EdgeFaces(27, 1701) - $begin 'EdTolVts' - TolVt(-22.2247735605555, -9.05866657858822, 0, 5e-07) - TolVt(-18.9574221617482, -14.7178852075037, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-20.7846096908265, -12, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=19 - ID=1721 - EdgeFaces(28, 1701) - $begin 'EdTolVts' - TolVt(-22.2247735605555, 9.05866657858822, 0, 5e-07) - TolVt(-33.8074039201174, 9.05866657858823, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-28.0160887403364, 9.05866657858823, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=20 - ID=1722 - EdgeFaces(29, 1701) - $begin 'EdTolVts' - TolVt(-24.7487373415292, 24.7487373415292, 0, 5e-07) - TolVt(-18.9574221617482, 14.7178852075037, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-21.8530797516387, 19.7333112745164, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=21 - ID=1723 - EdgeFaces(30, 1701) - $begin 'EdTolVts' - TolVt(-18.9574221617482, 14.7178852075037, 0, 5e-07) - TolVt(-22.2247735605555, 9.05866657858822, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-20.7846096908265, 12, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=22 - ID=1724 - EdgeFaces(31, 1701) - $begin 'EdTolVts' - TolVt(-3.2673513988073, 23.7765517860919, 0, 5e-07) - TolVt(-9.05866657858823, 33.8074039201174, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.16300898869776, 28.7919778531047, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=23 - ID=1725 - EdgeFaces(32, 1701) - $begin 'EdTolVts' - TolVt(3.2673513988073, 23.7765517860919, 0, 5e-07) - TolVt(9.05866657858824, 33.8074039201174, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(6.16300898869777, 28.7919778531047, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=24 - ID=1726 - EdgeFaces(33, 1701) - $begin 'EdTolVts' - TolVt(-3.2673513988073, 23.7765517860919, 0, 5e-07) - TolVt(3.2673513988073, 23.7765517860919, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(4.42619861227401e-16, 24, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1751 - VtPos(-3.2673513988073, 23.7765517860919, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1739 - VtPos(3.26735139880726, -23.7765517860919, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1740 - VtPos(-3.26735139880731, -23.7765517860919, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1741 - VtPos(-9.05866657858824, -33.8074039201174, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=1738 - VtPos(9.05866657858822, -33.8074039201174, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=1737 - VtPos(24.7487373415292, -24.7487373415292, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=1736 - VtPos(18.9574221617482, -14.7178852075037, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=1742 - VtPos(-24.7487373415292, -24.7487373415292, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=8 - ID=1743 - VtPos(-18.9574221617482, -14.7178852075037, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=9 - ID=1735 - VtPos(22.2247735605555, -9.05866657858824, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=10 - ID=1744 - VtPos(-22.2247735605555, -9.05866657858822, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=11 - ID=1745 - VtPos(-33.8074039201174, -9.05866657858821, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=12 - ID=1734 - VtPos(33.8074039201174, -9.05866657858825, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=13 - ID=1733 - VtPos(33.8074039201174, 9.0586665785882, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=14 - ID=1732 - VtPos(22.2247735605555, 9.05866657858821, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=15 - ID=1746 - VtPos(-33.8074039201174, 9.05866657858823, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=16 - ID=1747 - VtPos(-22.2247735605555, 9.05866657858822, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=17 - ID=1731 - VtPos(18.9574221617482, 14.7178852075037, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=18 - ID=1748 - VtPos(-18.9574221617482, 14.7178852075037, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=19 - ID=1730 - VtPos(24.7487373415292, 24.7487373415291, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=20 - ID=1749 - VtPos(-24.7487373415292, 24.7487373415292, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=21 - ID=1750 - VtPos(-9.05866657858823, 33.8074039201174, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=22 - ID=1729 - VtPos(9.05866657858824, 33.8074039201174, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=23 - ID=1728 - VtPos(3.2673513988073, 23.7765517860919, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1699 - ParentOperation=1698 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=2024 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=6 - SplitPlane='YZ' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=6 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=2025 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=6 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=18 - NumWires=0 - NumLoops=18 - NumCoedges=96 - NumEdges=48 - NumVertices=32 - $end 'Topology' - BodyID=-1 - StartFaceID=2026 - StartEdgeID=2028 - StartVertexID=2036 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2027 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=292.5 - FcUVMid(0, -19.5, 16.25) - $begin 'FcTolVts' - TolVt(0, -24, 32.5, 5e-07) - TolVt(0, -24, 0, 5e-07) - TolVt(0, -15, 0, 5e-07) - TolVt(0, -15, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=2026 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=292.5 - FcUVMid(0, 19.5, 16.25) - $begin 'FcTolVts' - TolVt(0, 15, 32.5, 5e-07) - TolVt(0, 15, 0, 5e-07) - TolVt(0, 24, 0, 5e-07) - TolVt(0, 24, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=2028 - EdgeFaces(14, 2026) - $begin 'EdTolVts' - TolVt(0, 24, 32.5, 5e-07) - TolVt(0, 15, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 19.5, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=2029 - EdgeFaces(14, 2027) - $begin 'EdTolVts' - TolVt(0, -24, 32.5, 5e-07) - TolVt(0, -15, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -19.5, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=2030 - EdgeFaces(15, 2027) - $begin 'EdTolVts' - TolVt(0, -15, 0, 5e-07) - TolVt(0, -15, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -15, 16.25) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=2031 - EdgeFaces(15, 2026) - $begin 'EdTolVts' - TolVt(0, 15, 0, 5e-07) - TolVt(0, 15, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 15, 16.25) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=2032 - EdgeFaces(24, 2027) - $begin 'EdTolVts' - TolVt(0, -24, 0, 5e-07) - TolVt(0, -24, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -24, 16.25) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=2033 - EdgeFaces(33, 2026) - $begin 'EdTolVts' - TolVt(0, 24, 0, 5e-07) - TolVt(0, 24, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 24, 16.25) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=2034 - EdgeFaces(1701, 2026) - $begin 'EdTolVts' - TolVt(0, 15, 0, 5e-07) - TolVt(0, 24, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 19.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=2035 - EdgeFaces(1701, 2027) - $begin 'EdTolVts' - TolVt(0, -24, 0, 5e-07) - TolVt(0, -15, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -19.5, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=2040 - VtPos(0, -24, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=2038 - VtPos(0, 15, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=2037 - VtPos(0, 15, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=2036 - VtPos(0, 24, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=2039 - VtPos(0, 24, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=2042 - VtPos(0, -15, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=2043 - VtPos(0, -24, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=2041 - VtPos(0, -15, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=2024 - ParentOperation=1700 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Stator' - Flags='' - Color='(255 128 0)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"steel_1008"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='UserDefinedPrimitive' - ID=158 - ReferenceCoordSystemID=1 - $begin 'UserDefinedPrimitiveParameters' - KernelVersion=4 - DllName='RMxprt/SRMCore' - Version='23.0' - NoOfParameters=11 - Library='syslib' - $begin 'ParamVector' - $begin 'Pair' - Name='DiaGap' - Value='75mm' - $end 'Pair' - $begin 'Pair' - Name='DiaYoke' - Value='120mm' - $end 'Pair' - $begin 'Pair' - Name='Length' - Value='65mm' - $end 'Pair' - $begin 'Pair' - Name='Poles' - Value='8' - $end 'Pair' - $begin 'Pair' - Name='ThkYoke' - Value='9mm' - $end 'Pair' - $begin 'Pair' - Name='Embrace' - Value='0.5' - $end 'Pair' - $begin 'Pair' - Name='Delta' - Value='0deg' - $end 'Pair' - $begin 'Pair' - Name='RFillet' - Value='0mm' - $end 'Pair' - $begin 'Pair' - Name='EndExt' - Value='1mm' - $end 'Pair' - $begin 'Pair' - Name='LenRegion' - Value='200mm' - $end 'Pair' - $begin 'Pair' - Name='InfoCore' - Value='1' - $end 'Pair' - $end 'ParamVector' - $end 'UserDefinedPrimitiveParameters' - ParentPartID=159 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=9 - NumShells=9 - NumFaces=147 - NumWires=0 - NumLoops=166 - NumCoedges=772 - NumEdges=386 - NumVertices=256 - $end 'Topology' - BodyID=159 - StartFaceID=160 - StartEdgeID=307 - StartVertexID=693 - NumNewFaces=147 - NumNewEdges=386 - NumNewVertices=256 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=160 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.25247487427 - FcUVMid(39.250703178469, -16.2581735892026, -33.5) - $begin 'FcTolVts' - TolVt(31.531358508287, -21.8687890149733, -33.5, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, -33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, -33.5, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=161 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(34.6454824691732, -14.3506287136909, 1.80161293492863e-15) - $begin 'FcTolVts' - TolVt(37.7596064300594, -6.8324684124084, 33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, 33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, -33.5, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, -33.5, 5e-07) - TolVt(40.2752479020462, -0.759172652669701, 33.5, 5e-07) - TolVt(40.2752479020462, -0.759172652669701, -33.5, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, -40.07368796041, 5e-07) - TolVt(31.531358508287, -21.8687890149733, -40.07368796041, 5e-07) - TolVt(29.0157170363003, -27.942084774712, -33.5, 5e-07) - TolVt(29.0157170363003, -27.942084774712, 33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, 40.07368796041, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=2 - ID=162 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(42.3648271393551, -8.74001328792013, 3.0720308100555e-32) - $begin 'FcTolVts' - TolVt(46.9700478486509, -10.6475581634318, 33.5, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, 33.5, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, -33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=3 - ID=163 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(43.8559238877647, -18.1657184647143, 6.54768346612345e-15) - $begin 'FcTolVts' - TolVt(49.4856893206376, -4.57426240369315, 33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, 40.07368796041, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - TolVt(38.2261584548917, -31.7571745257355, 33.5, 5e-07) - TolVt(38.2261584548917, -31.7571745257355, -33.5, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, -40.07368796041, 5e-07) - TolVt(49.4856893206376, -4.57426240369315, -33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634318, 33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, -33.5, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, -33.5, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=4 - ID=164 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(44.8804686113419, -2.66671752818143, -3.0720308100555e-32) - $begin 'FcTolVts' - TolVt(40.2752479020462, -0.759172652669701, -33.5, 5e-07) - TolVt(40.2752479020462, -0.759172652669701, 33.5, 5e-07) - TolVt(49.4856893206376, -4.57426240369315, 33.5, 5e-07) - TolVt(49.4856893206376, -4.57426240369315, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=5 - ID=165 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(44.1436542832311, -4.44554467205739, -38.1482993342103) - $begin 'FcTolVts' - TolVt(37.7596064300594, -6.8324684124084, -40.07368796041, 5e-07) - TolVt(40.2752479020462, -0.759172652669701, -33.5, 5e-07) - TolVt(49.4856893206376, -4.57426240369315, -33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=6 - ID=166 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(39.250703178469, -16.2581735892026, -40.07368796041) - $begin 'FcTolVts' - TolVt(46.9700478486509, -10.6475581634319, -40.07368796041, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - TolVt(31.531358508287, -21.8687890149733, -40.07368796041, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=7 - ID=167 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(34.3577520737068, -28.0708025063478, -38.1482993342103) - $begin 'FcTolVts' - TolVt(40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - TolVt(38.2261584548917, -31.7571745257355, -33.5, 5e-07) - TolVt(29.0157170363003, -27.942084774712, -33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=8 - ID=168 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(36.1365792175828, -23.7763338904851, 0) - $begin 'FcTolVts' - TolVt(40.7417999268785, -25.6838787659968, -33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, -33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, 33.5, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=9 - ID=169 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(33.620937745596, -29.8496296502238, 0) - $begin 'FcTolVts' - TolVt(29.0157170363003, -27.942084774712, 33.5, 5e-07) - TolVt(29.0157170363003, -27.942084774712, -33.5, 5e-07) - TolVt(38.2261584548917, -31.7571745257355, -33.5, 5e-07) - TolVt(38.2261584548917, -31.7571745257355, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=10 - ID=170 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(39.250703178469, -16.2581735892026, 33.5) - $begin 'FcTolVts' - TolVt(37.7596064300594, -6.8324684124084, 33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634318, 33.5, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, 33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=11 - ID=171 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(34.3577520737068, -28.0708025063478, 38.1482993342103) - $begin 'FcTolVts' - TolVt(31.531358508287, -21.8687890149733, 40.07368796041, 5e-07) - TolVt(29.0157170363003, -27.942084774712, 33.5, 5e-07) - TolVt(38.2261584548917, -31.7571745257355, 33.5, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=12 - ID=172 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.25247487427 - FcUVMid(39.250703178469, -16.2581735892026, 40.07368796041) - $begin 'FcTolVts' - TolVt(40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, 40.07368796041, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, 40.07368796041, 5e-07) - TolVt(31.531358508287, -21.8687890149733, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=13 - ID=173 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(44.1436542832311, -4.44554467205738, 38.1482993342103) - $begin 'FcTolVts' - TolVt(46.9700478486509, -10.6475581634319, 40.07368796041, 5e-07) - TolVt(49.4856893206376, -4.57426240369315, 33.5, 5e-07) - TolVt(40.2752479020462, -0.759172652669701, 33.5, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=14 - ID=174 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-16.2581735892026, -39.250703178469, -33.5) - $begin 'FcTolVts' - TolVt(-21.8687890149733, -31.5313585082871, -33.5, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, -33.5, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, -33.5, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=15 - ID=175 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(-14.3506287136909, -34.6454824691733, 1.80161293492863e-15) - $begin 'FcTolVts' - TolVt(-6.8324684124084, -37.7596064300594, 33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, 33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, -33.5, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, -33.5, 5e-07) - TolVt(-0.759172652669698, -40.2752479020462, 33.5, 5e-07) - TolVt(-0.759172652669698, -40.2752479020462, -33.5, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, -40.07368796041, 5e-07) - TolVt(-21.8687890149733, -31.531358508287, -40.07368796041, 5e-07) - TolVt(-27.942084774712, -29.0157170363003, -33.5, 5e-07) - TolVt(-27.942084774712, -29.0157170363003, 33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=16 - ID=176 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-8.74001328792013, -42.3648271393552, 6.144061620111e-32) - $begin 'FcTolVts' - TolVt(-10.6475581634318, -46.9700478486509, 33.5, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, 33.5, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, -33.5, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=17 - ID=177 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(-18.1657184647143, -43.8559238877647, 6.54768346612345e-15) - $begin 'FcTolVts' - TolVt(-4.57426240369314, -49.4856893206376, 33.5, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - TolVt(-31.7571745257355, -38.2261584548917, 33.5, 5e-07) - TolVt(-31.7571745257355, -38.2261584548917, -33.5, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - TolVt(-10.6475581634319, -46.9700478486509, -40.07368796041, 5e-07) - TolVt(-4.57426240369315, -49.4856893206376, -33.5, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, 33.5, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, -33.5, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, -33.5, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=18 - ID=178 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-2.66671752818142, -44.8804686113419, -6.144061620111e-32) - $begin 'FcTolVts' - TolVt(-0.759172652669698, -40.2752479020462, -33.5, 5e-07) - TolVt(-0.759172652669698, -40.2752479020462, 33.5, 5e-07) - TolVt(-4.57426240369314, -49.4856893206376, 33.5, 5e-07) - TolVt(-4.57426240369315, -49.4856893206376, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=19 - ID=179 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-4.44554467205739, -44.1436542832311, -38.1482993342103) - $begin 'FcTolVts' - TolVt(-6.8324684124084, -37.7596064300594, -40.07368796041, 5e-07) - TolVt(-0.759172652669698, -40.2752479020462, -33.5, 5e-07) - TolVt(-4.57426240369315, -49.4856893206376, -33.5, 5e-07) - TolVt(-10.6475581634319, -46.9700478486509, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=20 - ID=180 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-16.2581735892026, -39.250703178469, -40.07368796041) - $begin 'FcTolVts' - TolVt(-10.6475581634319, -46.9700478486509, -40.07368796041, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - TolVt(-21.8687890149733, -31.531358508287, -40.07368796041, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=21 - ID=181 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-28.0708025063478, -34.3577520737068, -38.1482993342103) - $begin 'FcTolVts' - TolVt(-25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - TolVt(-31.7571745257355, -38.2261584548917, -33.5, 5e-07) - TolVt(-27.942084774712, -29.0157170363003, -33.5, 5e-07) - TolVt(-21.8687890149733, -31.531358508287, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=22 - ID=182 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-23.7763338904851, -36.1365792175828, 0) - $begin 'FcTolVts' - TolVt(-25.6838787659968, -40.7417999268785, -33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, -33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, 33.5, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=23 - ID=183 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-29.8496296502238, -33.620937745596, 0) - $begin 'FcTolVts' - TolVt(-27.942084774712, -29.0157170363003, 33.5, 5e-07) - TolVt(-27.942084774712, -29.0157170363003, -33.5, 5e-07) - TolVt(-31.7571745257355, -38.2261584548917, -33.5, 5e-07) - TolVt(-31.7571745257355, -38.2261584548917, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=24 - ID=184 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-16.2581735892026, -39.250703178469, 33.5) - $begin 'FcTolVts' - TolVt(-6.8324684124084, -37.7596064300594, 33.5, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, 33.5, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, 33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=25 - ID=185 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-28.0708025063478, -34.3577520737068, 38.1482993342103) - $begin 'FcTolVts' - TolVt(-21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - TolVt(-27.942084774712, -29.0157170363003, 33.5, 5e-07) - TolVt(-31.7571745257355, -38.2261584548917, 33.5, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=26 - ID=186 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-16.2581735892026, -39.250703178469, 40.07368796041) - $begin 'FcTolVts' - TolVt(-25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, 40.07368796041, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=27 - ID=187 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-4.44554467205738, -44.1436542832311, 38.1482993342103) - $begin 'FcTolVts' - TolVt(-10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - TolVt(-4.57426240369314, -49.4856893206376, 33.5, 5e-07) - TolVt(-0.759172652669698, -40.2752479020462, 33.5, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=28 - ID=188 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-39.250703178469, -16.2581735892026, -33.5) - $begin 'FcTolVts' - TolVt(-37.7596064300594, -6.83246841240839, -33.5, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, -33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, -33.5, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=29 - ID=189 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(-34.6454824691733, -14.3506287136909, 1.80161293492863e-15) - $begin 'FcTolVts' - TolVt(-31.5313585082871, -21.8687890149733, 33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, 33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, -33.5, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, -33.5, 5e-07) - TolVt(-29.0157170363003, -27.942084774712, 33.5, 5e-07) - TolVt(-29.0157170363003, -27.942084774712, -33.5, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, -40.07368796041, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, -40.07368796041, 5e-07) - TolVt(-40.2752479020462, -0.759172652669685, -33.5, 5e-07) - TolVt(-40.2752479020462, -0.759172652669685, 33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, 40.07368796041, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=30 - ID=190 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-36.1365792175828, -23.7763338904851, 3.0720308100555e-32) - $begin 'FcTolVts' - TolVt(-40.7417999268785, -25.6838787659968, 33.5, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, 33.5, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, -33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=31 - ID=191 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(-43.8559238877647, -18.1657184647143, 6.54768346612345e-15) - $begin 'FcTolVts' - TolVt(-38.2261584548917, -31.7571745257355, 33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, 40.07368796041, 5e-07) - TolVt(-49.4856893206376, -4.57426240369314, 33.5, 5e-07) - TolVt(-49.4856893206376, -4.57426240369314, -33.5, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, -40.07368796041, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - TolVt(-38.2261584548917, -31.7571745257355, -33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, 33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, -33.5, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, -33.5, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=32 - ID=192 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-33.620937745596, -29.8496296502238, -3.0720308100555e-32) - $begin 'FcTolVts' - TolVt(-29.0157170363003, -27.942084774712, -33.5, 5e-07) - TolVt(-29.0157170363003, -27.942084774712, 33.5, 5e-07) - TolVt(-38.2261584548917, -31.7571745257355, 33.5, 5e-07) - TolVt(-38.2261584548917, -31.7571745257355, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=33 - ID=193 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-34.3577520737068, -28.0708025063478, -38.1482993342103) - $begin 'FcTolVts' - TolVt(-31.5313585082871, -21.8687890149733, -40.07368796041, 5e-07) - TolVt(-29.0157170363003, -27.942084774712, -33.5, 5e-07) - TolVt(-38.2261584548917, -31.7571745257355, -33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=34 - ID=194 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.25247487427 - FcUVMid(-39.250703178469, -16.2581735892026, -40.07368796041) - $begin 'FcTolVts' - TolVt(-40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, -40.07368796041, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, -40.07368796041, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=35 - ID=195 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-44.1436542832311, -4.44554467205737, -38.1482993342103) - $begin 'FcTolVts' - TolVt(-46.9700478486509, -10.6475581634318, -40.07368796041, 5e-07) - TolVt(-49.4856893206376, -4.57426240369314, -33.5, 5e-07) - TolVt(-40.2752479020462, -0.759172652669685, -33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=36 - ID=196 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-42.3648271393551, -8.74001328792011, 0) - $begin 'FcTolVts' - TolVt(-46.9700478486509, -10.6475581634318, -33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, -33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, 33.5, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=37 - ID=197 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-44.8804686113419, -2.66671752818141, 0) - $begin 'FcTolVts' - TolVt(-40.2752479020462, -0.759172652669685, 33.5, 5e-07) - TolVt(-40.2752479020462, -0.759172652669685, -33.5, 5e-07) - TolVt(-49.4856893206376, -4.57426240369314, -33.5, 5e-07) - TolVt(-49.4856893206376, -4.57426240369314, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=38 - ID=198 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-39.250703178469, -16.2581735892026, 33.5) - $begin 'FcTolVts' - TolVt(-31.5313585082871, -21.8687890149733, 33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, 33.5, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, 33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=39 - ID=199 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-44.1436542832311, -4.44554467205737, 38.1482993342103) - $begin 'FcTolVts' - TolVt(-37.7596064300594, -6.83246841240839, 40.07368796041, 5e-07) - TolVt(-40.2752479020462, -0.759172652669685, 33.5, 5e-07) - TolVt(-49.4856893206376, -4.57426240369314, 33.5, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=40 - ID=200 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-39.250703178469, -16.2581735892026, 40.07368796041) - $begin 'FcTolVts' - TolVt(-46.9700478486509, -10.6475581634318, 40.07368796041, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, 40.07368796041, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=41 - ID=201 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-34.3577520737068, -28.0708025063478, 38.1482993342103) - $begin 'FcTolVts' - TolVt(-40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - TolVt(-38.2261584548917, -31.7571745257355, 33.5, 5e-07) - TolVt(-29.0157170363003, -27.942084774712, 33.5, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=42 - ID=202 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(16.2581735892026, 39.250703178469, -33.5) - $begin 'FcTolVts' - TolVt(21.8687890149733, 31.5313585082871, -33.5, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, -33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, -33.5, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=43 - ID=203 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(14.3506287136909, 34.6454824691733, 1.80161293492863e-15) - $begin 'FcTolVts' - TolVt(6.83246841240839, 37.7596064300594, 33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, 33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, -33.5, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, -33.5, 5e-07) - TolVt(0.75917265266969, 40.2752479020462, 33.5, 5e-07) - TolVt(0.75917265266969, 40.2752479020462, -33.5, 5e-07) - TolVt(6.8324684124084, 37.7596064300594, -40.07368796041, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - TolVt(27.942084774712, 29.0157170363003, -33.5, 5e-07) - TolVt(27.942084774712, 29.0157170363003, 33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=44 - ID=204 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(8.74001328792012, 42.3648271393552, 6.144061620111e-32) - $begin 'FcTolVts' - TolVt(10.6475581634318, 46.9700478486509, 33.5, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, 33.5, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, -33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=45 - ID=205 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(18.1657184647143, 43.8559238877647, 6.54768346612345e-15) - $begin 'FcTolVts' - TolVt(4.57426240369314, 49.4856893206376, 33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - TolVt(31.7571745257355, 38.2261584548917, 33.5, 5e-07) - TolVt(31.7571745257355, 38.2261584548917, -33.5, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - TolVt(4.57426240369314, 49.4856893206376, -33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, 33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, -33.5, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, -33.5, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=46 - ID=206 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(2.66671752818142, 44.8804686113419, -6.144061620111e-32) - $begin 'FcTolVts' - TolVt(0.75917265266969, 40.2752479020462, -33.5, 5e-07) - TolVt(0.75917265266969, 40.2752479020462, 33.5, 5e-07) - TolVt(4.57426240369314, 49.4856893206376, 33.5, 5e-07) - TolVt(4.57426240369314, 49.4856893206376, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=47 - ID=207 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(4.44554467205738, 44.1436542832311, -38.1482993342103) - $begin 'FcTolVts' - TolVt(6.8324684124084, 37.7596064300594, -40.07368796041, 5e-07) - TolVt(0.75917265266969, 40.2752479020462, -33.5, 5e-07) - TolVt(4.57426240369314, 49.4856893206376, -33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=48 - ID=208 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(16.2581735892026, 39.250703178469, -40.07368796041) - $begin 'FcTolVts' - TolVt(10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - TolVt(6.8324684124084, 37.7596064300594, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=49 - ID=209 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(28.0708025063478, 34.3577520737068, -38.1482993342103) - $begin 'FcTolVts' - TolVt(25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - TolVt(31.7571745257355, 38.2261584548917, -33.5, 5e-07) - TolVt(27.942084774712, 29.0157170363003, -33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=50 - ID=210 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(23.7763338904851, 36.1365792175828, 0) - $begin 'FcTolVts' - TolVt(25.6838787659968, 40.7417999268785, -33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, -33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, 33.5, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=51 - ID=211 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(29.8496296502238, 33.620937745596, 0) - $begin 'FcTolVts' - TolVt(27.942084774712, 29.0157170363003, 33.5, 5e-07) - TolVt(27.942084774712, 29.0157170363003, -33.5, 5e-07) - TolVt(31.7571745257355, 38.2261584548917, -33.5, 5e-07) - TolVt(31.7571745257355, 38.2261584548917, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=52 - ID=212 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(16.2581735892026, 39.250703178469, 33.5) - $begin 'FcTolVts' - TolVt(6.83246841240839, 37.7596064300594, 33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, 33.5, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, 33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=53 - ID=213 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(28.0708025063478, 34.3577520737068, 38.1482993342103) - $begin 'FcTolVts' - TolVt(21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - TolVt(27.942084774712, 29.0157170363003, 33.5, 5e-07) - TolVt(31.7571745257355, 38.2261584548917, 33.5, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=54 - ID=214 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(16.2581735892026, 39.250703178469, 40.07368796041) - $begin 'FcTolVts' - TolVt(25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=55 - ID=215 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(4.44554467205737, 44.1436542832311, 38.1482993342103) - $begin 'FcTolVts' - TolVt(10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - TolVt(4.57426240369314, 49.4856893206376, 33.5, 5e-07) - TolVt(0.75917265266969, 40.2752479020462, 33.5, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=56 - ID=216 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-16.2581735892026, 39.250703178469, -33.5) - $begin 'FcTolVts' - TolVt(-6.83246841240839, 37.7596064300594, -33.5, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, -33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, -33.5, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=57 - ID=217 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(-14.3506287136909, 34.6454824691733, 1.80161293492863e-15) - $begin 'FcTolVts' - TolVt(-21.8687890149733, 31.5313585082871, 33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, 33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, -33.5, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, -33.5, 5e-07) - TolVt(-27.942084774712, 29.0157170363003, 33.5, 5e-07) - TolVt(-27.942084774712, 29.0157170363003, -33.5, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, -40.07368796041, 5e-07) - TolVt(-0.759172652669688, 40.2752479020462, -33.5, 5e-07) - TolVt(-0.759172652669688, 40.2752479020462, 33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=58 - ID=218 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-23.7763338904851, 36.1365792175828, 3.0720308100555e-32) - $begin 'FcTolVts' - TolVt(-25.6838787659968, 40.7417999268785, 33.5, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, 33.5, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, -33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=59 - ID=219 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(-18.1657184647143, 43.8559238877647, 6.54768346612345e-15) - $begin 'FcTolVts' - TolVt(-31.7571745257355, 38.2261584548917, 33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - TolVt(-4.57426240369314, 49.4856893206376, 33.5, 5e-07) - TolVt(-4.57426240369314, 49.4856893206376, -33.5, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - TolVt(-31.7571745257355, 38.2261584548917, -33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, 33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, -33.5, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, -33.5, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=60 - ID=220 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-29.8496296502238, 33.620937745596, -3.0720308100555e-32) - $begin 'FcTolVts' - TolVt(-27.942084774712, 29.0157170363003, -33.5, 5e-07) - TolVt(-27.942084774712, 29.0157170363003, 33.5, 5e-07) - TolVt(-31.7571745257355, 38.2261584548917, 33.5, 5e-07) - TolVt(-31.7571745257355, 38.2261584548917, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=61 - ID=221 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-28.0708025063478, 34.3577520737068, -38.1482993342103) - $begin 'FcTolVts' - TolVt(-21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - TolVt(-27.942084774712, 29.0157170363003, -33.5, 5e-07) - TolVt(-31.7571745257355, 38.2261584548917, -33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=62 - ID=222 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-16.2581735892026, 39.250703178469, -40.07368796041) - $begin 'FcTolVts' - TolVt(-25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, -40.07368796041, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=63 - ID=223 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-4.44554467205737, 44.1436542832311, -38.1482993342103) - $begin 'FcTolVts' - TolVt(-10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - TolVt(-4.57426240369314, 49.4856893206376, -33.5, 5e-07) - TolVt(-0.759172652669688, 40.2752479020462, -33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=64 - ID=224 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-8.74001328792011, 42.3648271393551, 0) - $begin 'FcTolVts' - TolVt(-10.6475581634318, 46.9700478486509, -33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, -33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, 33.5, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=65 - ID=225 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-2.66671752818142, 44.8804686113419, 0) - $begin 'FcTolVts' - TolVt(-0.759172652669688, 40.2752479020462, 33.5, 5e-07) - TolVt(-0.759172652669688, 40.2752479020462, -33.5, 5e-07) - TolVt(-4.57426240369314, 49.4856893206376, -33.5, 5e-07) - TolVt(-4.57426240369314, 49.4856893206376, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=66 - ID=226 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-16.2581735892026, 39.250703178469, 33.5) - $begin 'FcTolVts' - TolVt(-21.8687890149733, 31.5313585082871, 33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, 33.5, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, 33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=67 - ID=227 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-4.44554467205738, 44.1436542832311, 38.1482993342103) - $begin 'FcTolVts' - TolVt(-6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - TolVt(-0.759172652669688, 40.2752479020462, 33.5, 5e-07) - TolVt(-4.57426240369314, 49.4856893206376, 33.5, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=68 - ID=228 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-16.2581735892026, 39.250703178469, 40.07368796041) - $begin 'FcTolVts' - TolVt(-10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=69 - ID=229 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-28.0708025063478, 34.3577520737068, 38.1482993342103) - $begin 'FcTolVts' - TolVt(-25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - TolVt(-31.7571745257355, 38.2261584548917, 33.5, 5e-07) - TolVt(-27.942084774712, 29.0157170363003, 33.5, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=70 - ID=230 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.25247487427 - FcUVMid(-39.250703178469, 16.2581735892026, -33.5) - $begin 'FcTolVts' - TolVt(-31.5313585082871, 21.8687890149733, -33.5, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, -33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, -33.5, 5e-07) - TolVt(-37.7596064300594, 6.8324684124084, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=71 - ID=231 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(-34.6454824691732, 14.3506287136909, 1.80161293492863e-15) - $begin 'FcTolVts' - TolVt(-37.7596064300594, 6.83246841240839, 33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, 33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, -33.5, 5e-07) - TolVt(-37.7596064300594, 6.8324684124084, -33.5, 5e-07) - TolVt(-40.2752479020462, 0.759172652669693, 33.5, 5e-07) - TolVt(-40.2752479020462, 0.759172652669693, -33.5, 5e-07) - TolVt(-37.7596064300594, 6.8324684124084, -40.07368796041, 5e-07) - TolVt(-31.531358508287, 21.8687890149733, -40.07368796041, 5e-07) - TolVt(-29.0157170363003, 27.942084774712, -33.5, 5e-07) - TolVt(-29.0157170363003, 27.942084774712, 33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - TolVt(-37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=72 - ID=232 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-42.3648271393551, 8.74001328792012, 3.0720308100555e-32) - $begin 'FcTolVts' - TolVt(-46.9700478486509, 10.6475581634318, 33.5, 5e-07) - TolVt(-37.7596064300594, 6.83246841240839, 33.5, 5e-07) - TolVt(-37.7596064300594, 6.8324684124084, -33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=73 - ID=233 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(-43.8559238877647, 18.1657184647143, 6.54768346612345e-15) - $begin 'FcTolVts' - TolVt(-49.4856893206376, 4.57426240369314, 33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - TolVt(-38.2261584548917, 31.7571745257355, 33.5, 5e-07) - TolVt(-38.2261584548917, 31.7571745257355, -33.5, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - TolVt(-46.9700478486509, 10.6475581634319, -40.07368796041, 5e-07) - TolVt(-49.4856893206376, 4.57426240369315, -33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, 33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, -33.5, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, -33.5, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=74 - ID=234 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-44.8804686113419, 2.66671752818142, -3.0720308100555e-32) - $begin 'FcTolVts' - TolVt(-40.2752479020462, 0.759172652669693, -33.5, 5e-07) - TolVt(-40.2752479020462, 0.759172652669693, 33.5, 5e-07) - TolVt(-49.4856893206376, 4.57426240369314, 33.5, 5e-07) - TolVt(-49.4856893206376, 4.57426240369315, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=75 - ID=235 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-44.1436542832311, 4.44554467205738, -38.1482993342103) - $begin 'FcTolVts' - TolVt(-37.7596064300594, 6.8324684124084, -40.07368796041, 5e-07) - TolVt(-40.2752479020462, 0.759172652669693, -33.5, 5e-07) - TolVt(-49.4856893206376, 4.57426240369315, -33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634319, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=76 - ID=236 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-39.250703178469, 16.2581735892026, -40.07368796041) - $begin 'FcTolVts' - TolVt(-46.9700478486509, 10.6475581634319, -40.07368796041, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - TolVt(-31.531358508287, 21.8687890149733, -40.07368796041, 5e-07) - TolVt(-37.7596064300594, 6.8324684124084, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=77 - ID=237 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-34.3577520737068, 28.0708025063478, -38.1482993342103) - $begin 'FcTolVts' - TolVt(-40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - TolVt(-38.2261584548917, 31.7571745257355, -33.5, 5e-07) - TolVt(-29.0157170363003, 27.942084774712, -33.5, 5e-07) - TolVt(-31.531358508287, 21.8687890149733, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=78 - ID=238 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-36.1365792175828, 23.7763338904851, 0) - $begin 'FcTolVts' - TolVt(-40.7417999268785, 25.6838787659968, -33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, -33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, 33.5, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=79 - ID=239 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(-33.620937745596, 29.8496296502238, 0) - $begin 'FcTolVts' - TolVt(-29.0157170363003, 27.942084774712, 33.5, 5e-07) - TolVt(-29.0157170363003, 27.942084774712, -33.5, 5e-07) - TolVt(-38.2261584548917, 31.7571745257355, -33.5, 5e-07) - TolVt(-38.2261584548917, 31.7571745257355, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=80 - ID=240 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-39.250703178469, 16.2581735892026, 33.5) - $begin 'FcTolVts' - TolVt(-37.7596064300594, 6.83246841240839, 33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, 33.5, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, 33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=81 - ID=241 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-34.3577520737068, 28.0708025063478, 38.1482993342103) - $begin 'FcTolVts' - TolVt(-31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - TolVt(-29.0157170363003, 27.942084774712, 33.5, 5e-07) - TolVt(-38.2261584548917, 31.7571745257355, 33.5, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=82 - ID=242 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(-39.250703178469, 16.2581735892026, 40.07368796041) - $begin 'FcTolVts' - TolVt(-40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - TolVt(-37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=83 - ID=243 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(-44.1436542832311, 4.44554467205738, 38.1482993342103) - $begin 'FcTolVts' - TolVt(-46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - TolVt(-49.4856893206376, 4.57426240369314, 33.5, 5e-07) - TolVt(-40.2752479020462, 0.759172652669693, 33.5, 5e-07) - TolVt(-37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=84 - ID=244 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(16.2581735892026, -39.250703178469, -33.5) - $begin 'FcTolVts' - TolVt(6.83246841240839, -37.7596064300594, -33.5, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, -33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, -33.5, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=85 - ID=245 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(14.3506287136908, -34.6454824691733, 1.80161293492863e-15) - $begin 'FcTolVts' - TolVt(21.8687890149733, -31.5313585082871, 33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, 33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, -33.5, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, -33.5, 5e-07) - TolVt(27.942084774712, -29.0157170363003, 33.5, 5e-07) - TolVt(27.942084774712, -29.0157170363003, -33.5, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, -40.07368796041, 5e-07) - TolVt(6.83246841240838, -37.7596064300594, -40.07368796041, 5e-07) - TolVt(0.759172652669683, -40.2752479020462, -33.5, 5e-07) - TolVt(0.759172652669683, -40.2752479020462, 33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, 40.07368796041, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=86 - ID=246 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(23.7763338904851, -36.1365792175828, 6.144061620111e-32) - $begin 'FcTolVts' - TolVt(25.6838787659968, -40.7417999268785, 33.5, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, 33.5, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, -33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=87 - ID=247 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(18.1657184647143, -43.8559238877647, 6.54768346612345e-15) - $begin 'FcTolVts' - TolVt(31.7571745257355, -38.2261584548917, 33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - TolVt(4.57426240369313, -49.4856893206376, 33.5, 5e-07) - TolVt(4.57426240369313, -49.4856893206376, -33.5, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, -40.07368796041, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - TolVt(31.7571745257355, -38.2261584548917, -33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, 33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, -33.5, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, -33.5, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=88 - ID=248 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(29.8496296502238, -33.620937745596, -6.144061620111e-32) - $begin 'FcTolVts' - TolVt(27.942084774712, -29.0157170363003, -33.5, 5e-07) - TolVt(27.942084774712, -29.0157170363003, 33.5, 5e-07) - TolVt(31.7571745257355, -38.2261584548917, 33.5, 5e-07) - TolVt(31.7571745257355, -38.2261584548917, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=89 - ID=249 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(28.0708025063478, -34.3577520737068, -38.1482993342103) - $begin 'FcTolVts' - TolVt(21.8687890149733, -31.5313585082871, -40.07368796041, 5e-07) - TolVt(27.942084774712, -29.0157170363003, -33.5, 5e-07) - TolVt(31.7571745257355, -38.2261584548917, -33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=90 - ID=250 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(16.2581735892026, -39.250703178469, -40.07368796041) - $begin 'FcTolVts' - TolVt(25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, -40.07368796041, 5e-07) - TolVt(6.83246841240838, -37.7596064300594, -40.07368796041, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=91 - ID=251 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(4.44554467205737, -44.1436542832311, -38.1482993342103) - $begin 'FcTolVts' - TolVt(10.6475581634318, -46.9700478486509, -40.07368796041, 5e-07) - TolVt(4.57426240369313, -49.4856893206376, -33.5, 5e-07) - TolVt(0.759172652669683, -40.2752479020462, -33.5, 5e-07) - TolVt(6.83246841240838, -37.7596064300594, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=92 - ID=252 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(8.74001328792011, -42.3648271393551, 0) - $begin 'FcTolVts' - TolVt(10.6475581634318, -46.9700478486509, -33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, -33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, 33.5, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=93 - ID=253 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(2.66671752818141, -44.8804686113419, 0) - $begin 'FcTolVts' - TolVt(0.759172652669683, -40.2752479020462, 33.5, 5e-07) - TolVt(0.759172652669683, -40.2752479020462, -33.5, 5e-07) - TolVt(4.57426240369313, -49.4856893206376, -33.5, 5e-07) - TolVt(4.57426240369313, -49.4856893206376, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=94 - ID=254 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(16.2581735892026, -39.250703178469, 33.5) - $begin 'FcTolVts' - TolVt(21.8687890149733, -31.5313585082871, 33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, 33.5, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, 33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=95 - ID=255 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(4.44554467205737, -44.1436542832311, 38.1482993342103) - $begin 'FcTolVts' - TolVt(6.83246841240839, -37.7596064300594, 40.07368796041, 5e-07) - TolVt(0.759172652669683, -40.2752479020462, 33.5, 5e-07) - TolVt(4.57426240369313, -49.4856893206376, 33.5, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=96 - ID=256 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(16.2581735892026, -39.250703178469, 40.07368796041) - $begin 'FcTolVts' - TolVt(10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=97 - ID=257 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(28.0708025063478, -34.3577520737068, 38.1482993342103) - $begin 'FcTolVts' - TolVt(25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - TolVt(31.7571745257355, -38.2261584548917, 33.5, 5e-07) - TolVt(27.942084774712, -29.0157170363003, 33.5, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=98 - ID=258 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(39.250703178469, 16.2581735892026, -33.5) - $begin 'FcTolVts' - TolVt(37.7596064300594, 6.83246841240839, -33.5, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, -33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, -33.5, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=99 - ID=259 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(34.6454824691733, 14.3506287136909, 1.80161293492863e-15) - $begin 'FcTolVts' - TolVt(31.5313585082871, 21.8687890149733, 33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, 33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, -33.5, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, -33.5, 5e-07) - TolVt(29.0157170363003, 27.942084774712, 33.5, 5e-07) - TolVt(29.0157170363003, 27.942084774712, -33.5, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, -40.07368796041, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, -40.07368796041, 5e-07) - TolVt(40.2752479020462, 0.75917265266969, -33.5, 5e-07) - TolVt(40.2752479020462, 0.75917265266969, 33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=100 - ID=260 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(36.1365792175828, 23.7763338904851, 3.0720308100555e-32) - $begin 'FcTolVts' - TolVt(40.7417999268785, 25.6838787659968, 33.5, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, 33.5, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, -33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=101 - ID=261 - $begin 'FaceGeomTopol' - FaceTopol(2, 12, 12, 12) - $begin 'FaceGeometry' - Area=1230.60912496277 - FcUVMid(43.8559238877647, 18.1657184647143, 6.54768346612345e-15) - $begin 'FcTolVts' - TolVt(38.2261584548917, 31.7571745257355, 33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - TolVt(49.4856893206376, 4.57426240369314, 33.5, 5e-07) - TolVt(49.4856893206376, 4.57426240369314, -33.5, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, -40.07368796041, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - TolVt(38.2261584548917, 31.7571745257355, -33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, 33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, -33.5, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, -33.5, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=102 - ID=262 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(33.620937745596, 29.8496296502238, -3.0720308100555e-32) - $begin 'FcTolVts' - TolVt(29.0157170363003, 27.942084774712, -33.5, 5e-07) - TolVt(29.0157170363003, 27.942084774712, 33.5, 5e-07) - TolVt(38.2261584548917, 31.7571745257355, 33.5, 5e-07) - TolVt(38.2261584548917, 31.7571745257355, -33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=103 - ID=263 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(34.3577520737068, 28.0708025063478, -38.1482993342103) - $begin 'FcTolVts' - TolVt(31.5313585082871, 21.8687890149733, -40.07368796041, 5e-07) - TolVt(29.0157170363003, 27.942084774712, -33.5, 5e-07) - TolVt(38.2261584548917, 31.7571745257355, -33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=104 - ID=264 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(39.250703178469, 16.2581735892026, -40.07368796041) - $begin 'FcTolVts' - TolVt(40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, -40.07368796041, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, -40.07368796041, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=105 - ID=265 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(44.1436542832311, 4.44554467205738, -38.1482993342103) - $begin 'FcTolVts' - TolVt(46.9700478486509, 10.6475581634318, -40.07368796041, 5e-07) - TolVt(49.4856893206376, 4.57426240369314, -33.5, 5e-07) - TolVt(40.2752479020462, 0.75917265266969, -33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, -40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=106 - ID=266 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(42.3648271393551, 8.74001328792012, 0) - $begin 'FcTolVts' - TolVt(46.9700478486509, 10.6475581634318, -33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, -33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, 33.5, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=107 - ID=267 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=667.943766833135 - FcUVMid(44.8804686113419, 2.66671752818142, 0) - $begin 'FcTolVts' - TolVt(40.2752479020462, 0.75917265266969, 33.5, 5e-07) - TolVt(40.2752479020462, 0.75917265266969, -33.5, 5e-07) - TolVt(49.4856893206376, 4.57426240369314, -33.5, 5e-07) - TolVt(49.4856893206376, 4.57426240369314, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=108 - ID=268 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(39.250703178469, 16.2581735892026, 33.5) - $begin 'FcTolVts' - TolVt(31.5313585082871, 21.8687890149733, 33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, 33.5, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, 33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=109 - ID=269 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(44.1436542832311, 4.44554467205738, 38.1482993342103) - $begin 'FcTolVts' - TolVt(37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - TolVt(40.2752479020462, 0.75917265266969, 33.5, 5e-07) - TolVt(49.4856893206376, 4.57426240369314, 33.5, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=110 - ID=270 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=162.252474874271 - FcUVMid(39.250703178469, 16.2581735892026, 40.07368796041) - $begin 'FcTolVts' - TolVt(46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=111 - ID=271 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=102.942345893774 - FcUVMid(34.3577520737068, 28.0708025063478, 38.1482993342103) - $begin 'FcTolVts' - TolVt(40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - TolVt(38.2261584548917, 31.7571745257355, 33.5, 5e-07) - TolVt(29.0157170363003, 27.942084774712, 33.5, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=112 - ID=272 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=957.20401164064 - FcUVMid(14.3506287136909, 34.6454824691733, 0) - $begin 'FcTolVts' - TolVt(20.8338837382351, 31.1801104613454, -32.5, 5e-07) - TolVt(20.8338837382351, 31.1801104613454, 32.5, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, 32.5, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=113 - ID=273 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=957.204011640641 - FcUVMid(34.6454824691733, -14.3506287136909, 0) - $begin 'FcTolVts' - TolVt(31.1801104613454, -20.8338837382351, -32.5, 5e-07) - TolVt(31.1801104613454, -20.8338837382351, 32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, 32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=114 - ID=274 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=957.204011640639 - FcUVMid(14.3506287136909, -34.6454824691733, 0) - $begin 'FcTolVts' - TolVt(20.8338837382351, -31.1801104613454, -32.5, 5e-07) - TolVt(7.3158870756048, -36.7794480151211, -32.5, 5e-07) - TolVt(7.3158870756048, -36.7794480151211, 32.5, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=115 - ID=275 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=957.204011640641 - FcUVMid(-14.3506287136909, -34.6454824691733, 0) - $begin 'FcTolVts' - TolVt(-7.31588707560482, -36.7794480151211, -32.5, 5e-07) - TolVt(-20.8338837382351, -31.1801104613454, -32.5, 5e-07) - TolVt(-20.8338837382351, -31.1801104613454, 32.5, 5e-07) - TolVt(-7.31588707560482, -36.7794480151211, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=116 - ID=276 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=957.204011640639 - FcUVMid(-34.6454824691733, -14.3506287136909, 0) - $begin 'FcTolVts' - TolVt(-31.1801104613454, -20.8338837382351, -32.5, 5e-07) - TolVt(-36.7794480151211, -7.31588707560481, -32.5, 5e-07) - TolVt(-36.7794480151211, -7.31588707560481, 32.5, 5e-07) - TolVt(-31.1801104613454, -20.8338837382351, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=117 - ID=277 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=957.20401164064 - FcUVMid(-34.6454824691733, 14.3506287136909, 0) - $begin 'FcTolVts' - TolVt(-36.7794480151211, 7.31588707560481, -32.5, 5e-07) - TolVt(-31.1801104613454, 20.8338837382351, -32.5, 5e-07) - TolVt(-31.1801104613454, 20.8338837382351, 32.5, 5e-07) - TolVt(-36.7794480151211, 7.31588707560481, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=118 - ID=278 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=957.20401164064 - FcUVMid(-14.3506287136909, 34.6454824691733, 0) - $begin 'FcTolVts' - TolVt(-20.8338837382351, 31.1801104613454, -32.5, 5e-07) - TolVt(-7.31588707560481, 36.7794480151211, -32.5, 5e-07) - TolVt(-7.31588707560481, 36.7794480151211, 32.5, 5e-07) - TolVt(-20.8338837382351, 31.1801104613454, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=119 - ID=279 - $begin 'FaceGeomTopol' - FaceTopol(2, 2, 2, 0) - $begin 'FaceGeometry' - Area=24504.4226980004 - FcUVMid(-55.4327719506772, -22.9610059419054, 0) - $begin 'FcTolVts' - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=120 - ID=280 - $begin 'FaceGeomTopol' - FaceTopol(2, 33, 33, 32) - $begin 'FaceGeometry' - Area=4726.15075774784 - FcUVMid(0, 0, -32.5) - $begin 'FcTolVts' - TolVt(31.1801104613454, 20.8338837382351, -32.5, 5e-07) - TolVt(43.8308824796691, 26.0740050827148, -32.5, 5e-07) - TolVt(26.0740050827148, 43.8308824796691, -32.5, 5e-07) - TolVt(20.8338837382351, 31.1801104613454, -32.5, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, -32.5, 5e-07) - TolVt(12.5560084200845, 49.4302200334448, -32.5, 5e-07) - TolVt(-12.5560084200845, 49.4302200334448, -32.5, 5e-07) - TolVt(-7.31588707560481, 36.7794480151211, -32.5, 5e-07) - TolVt(-20.8338837382351, 31.1801104613454, -32.5, 5e-07) - TolVt(-26.0740050827148, 43.8308824796691, -32.5, 5e-07) - TolVt(-43.8308824796691, 26.0740050827148, -32.5, 5e-07) - TolVt(-31.1801104613454, 20.8338837382351, -32.5, 5e-07) - TolVt(-36.7794480151211, 7.31588707560481, -32.5, 5e-07) - TolVt(-49.4302200334448, 12.5560084200845, -32.5, 5e-07) - TolVt(-49.4302200334448, -12.5560084200845, -32.5, 5e-07) - TolVt(-36.7794480151211, -7.31588707560481, -32.5, 5e-07) - TolVt(-31.1801104613454, -20.8338837382351, -32.5, 5e-07) - TolVt(-43.8308824796691, -26.0740050827148, -32.5, 5e-07) - TolVt(-26.0740050827148, -43.8308824796691, -32.5, 5e-07) - TolVt(-20.8338837382351, -31.1801104613454, -32.5, 5e-07) - TolVt(-7.31588707560482, -36.7794480151211, -32.5, 5e-07) - TolVt(-12.5560084200845, -49.4302200334448, -32.5, 5e-07) - TolVt(12.5560084200845, -49.4302200334448, -32.5, 5e-07) - TolVt(7.3158870756048, -36.7794480151211, -32.5, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, -32.5, 5e-07) - TolVt(26.0740050827148, -43.8308824796691, -32.5, 5e-07) - TolVt(43.8308824796691, -26.0740050827148, -32.5, 5e-07) - TolVt(31.1801104613454, -20.8338837382351, -32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, -32.5, 5e-07) - TolVt(49.4302200334448, -12.5560084200845, -32.5, 5e-07) - TolVt(49.4302200334448, 12.5560084200845, -32.5, 5e-07) - TolVt(36.7794480151211, 7.3158870756048, -32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=121 - ID=281 - $begin 'FaceGeomTopol' - FaceTopol(2, 33, 33, 32) - $begin 'FaceGeometry' - Area=4726.15075774784 - FcUVMid(0, 0, 32.5) - $begin 'FcTolVts' - TolVt(26.0740050827148, 43.8308824796691, 32.5, 5e-07) - TolVt(43.8308824796691, 26.0740050827148, 32.5, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, 32.5, 5e-07) - TolVt(36.7794480151211, 7.3158870756048, 32.5, 5e-07) - TolVt(49.4302200334448, 12.5560084200845, 32.5, 5e-07) - TolVt(49.4302200334448, -12.5560084200845, 32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, 32.5, 5e-07) - TolVt(31.1801104613454, -20.8338837382351, 32.5, 5e-07) - TolVt(43.8308824796691, -26.0740050827148, 32.5, 5e-07) - TolVt(26.0740050827148, -43.8308824796691, 32.5, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, 32.5, 5e-07) - TolVt(7.3158870756048, -36.7794480151211, 32.5, 5e-07) - TolVt(12.5560084200845, -49.4302200334448, 32.5, 5e-07) - TolVt(-12.5560084200845, -49.4302200334448, 32.5, 5e-07) - TolVt(-7.31588707560482, -36.7794480151211, 32.5, 5e-07) - TolVt(-20.8338837382351, -31.1801104613454, 32.5, 5e-07) - TolVt(-26.0740050827148, -43.8308824796691, 32.5, 5e-07) - TolVt(-43.8308824796691, -26.0740050827148, 32.5, 5e-07) - TolVt(-31.1801104613454, -20.8338837382351, 32.5, 5e-07) - TolVt(-36.7794480151211, -7.31588707560481, 32.5, 5e-07) - TolVt(-49.4302200334448, -12.5560084200845, 32.5, 5e-07) - TolVt(-49.4302200334448, 12.5560084200845, 32.5, 5e-07) - TolVt(-36.7794480151211, 7.31588707560481, 32.5, 5e-07) - TolVt(-31.1801104613454, 20.8338837382351, 32.5, 5e-07) - TolVt(-43.8308824796691, 26.0740050827148, 32.5, 5e-07) - TolVt(-26.0740050827148, 43.8308824796691, 32.5, 5e-07) - TolVt(-20.8338837382351, 31.1801104613454, 32.5, 5e-07) - TolVt(-7.31588707560481, 36.7794480151211, 32.5, 5e-07) - TolVt(-12.5560084200845, 49.4302200334448, 32.5, 5e-07) - TolVt(12.5560084200845, 49.4302200334448, 32.5, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, 32.5, 5e-07) - TolVt(20.8338837382351, 31.1801104613454, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=122 - ID=282 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=957.204011640641 - FcUVMid(34.6454824691733, 14.3506287136909, 0) - $begin 'FcTolVts' - TolVt(31.1801104613454, 20.8338837382351, -32.5, 5e-07) - TolVt(36.7794480151211, 7.3158870756048, -32.5, 5e-07) - TolVt(36.7794480151211, 7.3158870756048, 32.5, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=123 - ID=283 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(43.104834024283, 9.93594774784465, -5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(36.7794480151211, 7.3158870756048, -32.5, 5e-07) - TolVt(49.4302200334448, 12.5560084200845, -32.5, 5e-07) - TolVt(49.4302200334448, 12.5560084200845, 32.5, 5e-07) - TolVt(36.7794480151211, 7.3158870756048, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=124 - ID=284 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420201 - FcUVMid(43.104834024283, -9.93594774784467, -5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(49.4302200334448, -12.5560084200845, -32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, -32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, 32.5, 5e-07) - TolVt(49.4302200334448, -12.5560084200845, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=125 - ID=285 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1649.23724755056 - FcUVMid(51, -2.19838042118483e-14, 0) - $begin 'FcTolVts' - TolVt(49.4302200334448, 12.5560084200845, 32.5, 5e-07) - TolVt(49.4302200334448, 12.5560084200845, -32.5, 5e-07) - TolVt(49.4302200334448, -12.5560084200845, -32.5, 5e-07) - TolVt(49.4302200334448, -12.5560084200845, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=126 - ID=286 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420201 - FcUVMid(-9.93594774784466, 43.104834024283, 0) - $begin 'FcTolVts' - TolVt(-7.31588707560481, 36.7794480151211, -32.5, 5e-07) - TolVt(-12.5560084200845, 49.4302200334448, -32.5, 5e-07) - TolVt(-12.5560084200845, 49.4302200334448, 32.5, 5e-07) - TolVt(-7.31588707560481, 36.7794480151211, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=127 - ID=287 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(9.93594774784466, 43.104834024283, 5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(12.5560084200845, 49.4302200334448, -32.5, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, -32.5, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, 32.5, 5e-07) - TolVt(12.5560084200845, 49.4302200334448, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=128 - ID=288 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1649.23724755056 - FcUVMid(1.34905980734658e-14, 51, 0) - $begin 'FcTolVts' - TolVt(-12.5560084200845, 49.4302200334448, 32.5, 5e-07) - TolVt(-12.5560084200845, 49.4302200334448, -32.5, 5e-07) - TolVt(12.5560084200845, 49.4302200334448, -32.5, 5e-07) - TolVt(12.5560084200845, 49.4302200334448, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=129 - ID=289 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(-37.5054964705073, 23.4539444104749, -1.11022302462516e-14) - $begin 'FcTolVts' - TolVt(-31.1801104613454, 20.8338837382351, -32.5, 5e-07) - TolVt(-43.8308824796691, 26.0740050827148, -32.5, 5e-07) - TolVt(-43.8308824796691, 26.0740050827148, 32.5, 5e-07) - TolVt(-31.1801104613454, 20.8338837382351, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=130 - ID=290 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(-23.4539444104749, 37.5054964705073, -5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(-26.0740050827148, 43.8308824796691, -32.5, 5e-07) - TolVt(-20.8338837382351, 31.1801104613454, -32.5, 5e-07) - TolVt(-20.8338837382351, 31.1801104613454, 32.5, 5e-07) - TolVt(-26.0740050827148, 43.8308824796691, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=131 - ID=291 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1649.23724755056 - FcUVMid(-36.0624458405139, 36.0624458405139, 0) - $begin 'FcTolVts' - TolVt(-43.8308824796691, 26.0740050827148, 32.5, 5e-07) - TolVt(-43.8308824796691, 26.0740050827148, -32.5, 5e-07) - TolVt(-26.0740050827148, 43.8308824796691, -32.5, 5e-07) - TolVt(-26.0740050827148, 43.8308824796691, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=132 - ID=292 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(-43.104834024283, -9.93594774784466, 0) - $begin 'FcTolVts' - TolVt(-36.7794480151211, -7.31588707560481, -32.5, 5e-07) - TolVt(-49.4302200334448, -12.5560084200845, -32.5, 5e-07) - TolVt(-49.4302200334448, -12.5560084200845, 32.5, 5e-07) - TolVt(-36.7794480151211, -7.31588707560481, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=133 - ID=293 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(-43.104834024283, 9.93594774784466, 0) - $begin 'FcTolVts' - TolVt(-49.4302200334448, 12.5560084200845, -32.5, 5e-07) - TolVt(-36.7794480151211, 7.31588707560481, -32.5, 5e-07) - TolVt(-36.7794480151211, 7.31588707560481, 32.5, 5e-07) - TolVt(-49.4302200334448, 12.5560084200845, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=134 - ID=294 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1649.23724755056 - FcUVMid(-51, 1.632166678626e-14, 0) - $begin 'FcTolVts' - TolVt(-49.4302200334448, -12.5560084200845, 32.5, 5e-07) - TolVt(-49.4302200334448, -12.5560084200845, -32.5, 5e-07) - TolVt(-49.4302200334448, 12.5560084200845, -32.5, 5e-07) - TolVt(-49.4302200334448, 12.5560084200845, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=135 - ID=295 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420201 - FcUVMid(-23.4539444104749, -37.5054964705073, -1.11022302462516e-14) - $begin 'FcTolVts' - TolVt(-20.8338837382351, -31.1801104613454, -32.5, 5e-07) - TolVt(-26.0740050827148, -43.8308824796691, -32.5, 5e-07) - TolVt(-26.0740050827148, -43.8308824796691, 32.5, 5e-07) - TolVt(-20.8338837382351, -31.1801104613454, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=136 - ID=296 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(-37.5054964705073, -23.4539444104749, 0) - $begin 'FcTolVts' - TolVt(-43.8308824796691, -26.0740050827148, -32.5, 5e-07) - TolVt(-31.1801104613454, -20.8338837382351, -32.5, 5e-07) - TolVt(-31.1801104613454, -20.8338837382351, 32.5, 5e-07) - TolVt(-43.8308824796691, -26.0740050827148, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=137 - ID=297 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1649.23724755056 - FcUVMid(-36.0624458405139, -36.0624458405139, 0) - $begin 'FcTolVts' - TolVt(-26.0740050827148, -43.8308824796691, 32.5, 5e-07) - TolVt(-26.0740050827148, -43.8308824796691, -32.5, 5e-07) - TolVt(-43.8308824796691, -26.0740050827148, -32.5, 5e-07) - TolVt(-43.8308824796691, -26.0740050827148, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=138 - ID=298 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(9.93594774784466, -43.104834024283, 1.66533453693773e-14) - $begin 'FcTolVts' - TolVt(7.3158870756048, -36.7794480151211, -32.5, 5e-07) - TolVt(12.5560084200845, -49.4302200334448, -32.5, 5e-07) - TolVt(12.5560084200845, -49.4302200334448, 32.5, 5e-07) - TolVt(7.3158870756048, -36.7794480151211, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=139 - ID=299 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(-9.93594774784466, -43.104834024283, 1.66533453693773e-14) - $begin 'FcTolVts' - TolVt(-12.5560084200845, -49.4302200334448, -32.5, 5e-07) - TolVt(-7.31588707560482, -36.7794480151211, -32.5, 5e-07) - TolVt(-7.31588707560482, -36.7794480151211, 32.5, 5e-07) - TolVt(-12.5560084200845, -49.4302200334448, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=140 - ID=300 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1649.23724755056 - FcUVMid(-1.91527354990542e-14, -51, 0) - $begin 'FcTolVts' - TolVt(12.5560084200845, -49.4302200334448, 32.5, 5e-07) - TolVt(12.5560084200845, -49.4302200334448, -32.5, 5e-07) - TolVt(-12.5560084200845, -49.4302200334448, -32.5, 5e-07) - TolVt(-12.5560084200845, -49.4302200334448, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=141 - ID=301 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(37.5054964705073, -23.4539444104749, 0) - $begin 'FcTolVts' - TolVt(31.1801104613454, -20.8338837382351, -32.5, 5e-07) - TolVt(43.8308824796691, -26.0740050827148, -32.5, 5e-07) - TolVt(43.8308824796691, -26.0740050827148, 32.5, 5e-07) - TolVt(31.1801104613454, -20.8338837382351, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=142 - ID=302 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(23.4539444104749, -37.5054964705073, 0) - $begin 'FcTolVts' - TolVt(26.0740050827148, -43.8308824796691, -32.5, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, -32.5, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, 32.5, 5e-07) - TolVt(26.0740050827148, -43.8308824796691, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=143 - ID=303 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1649.23724755056 - FcUVMid(36.0624458405139, -36.0624458405139, 0) - $begin 'FcTolVts' - TolVt(43.8308824796691, -26.0740050827148, 32.5, 5e-07) - TolVt(43.8308824796691, -26.0740050827148, -32.5, 5e-07) - TolVt(26.0740050827148, -43.8308824796691, -32.5, 5e-07) - TolVt(26.0740050827148, -43.8308824796691, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=144 - ID=304 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(23.4539444104749, 37.5054964705073, -5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(20.8338837382351, 31.1801104613454, -32.5, 5e-07) - TolVt(26.0740050827148, 43.8308824796691, -32.5, 5e-07) - TolVt(26.0740050827148, 43.8308824796691, 32.5, 5e-07) - TolVt(20.8338837382351, 31.1801104613454, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=145 - ID=305 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=890.051302420202 - FcUVMid(37.5054964705073, 23.4539444104749, -5.55111512312578e-15) - $begin 'FcTolVts' - TolVt(43.8308824796691, 26.0740050827148, -32.5, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, -32.5, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, 32.5, 5e-07) - TolVt(43.8308824796691, 26.0740050827148, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=146 - ID=306 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=1649.23724755056 - FcUVMid(36.0624458405139, 36.0624458405139, 0) - $begin 'FcTolVts' - TolVt(26.0740050827148, 43.8308824796691, 32.5, 5e-07) - TolVt(26.0740050827148, 43.8308824796691, -32.5, 5e-07) - TolVt(43.8308824796691, 26.0740050827148, -32.5, 5e-07) - TolVt(43.8308824796691, 26.0740050827148, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=307 - EdgeFaces(273, 281) - $begin 'EdTolVts' - TolVt(31.1801104613454, -20.8338837382351, 32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691733, -14.3506287136909, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=308 - EdgeFaces(274, 281) - $begin 'EdTolVts' - TolVt(7.3158870756048, -36.7794480151211, 32.5, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, -34.6454824691733, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=309 - EdgeFaces(275, 281) - $begin 'EdTolVts' - TolVt(-7.31588707560482, -36.7794480151211, 32.5, 5e-07) - TolVt(-20.8338837382351, -31.1801104613454, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, -34.6454824691733, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=310 - EdgeFaces(276, 281) - $begin 'EdTolVts' - TolVt(-31.1801104613454, -20.8338837382351, 32.5, 5e-07) - TolVt(-36.7794480151211, -7.31588707560481, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, -14.3506287136909, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=311 - EdgeFaces(277, 281) - $begin 'EdTolVts' - TolVt(-36.7794480151211, 7.31588707560481, 32.5, 5e-07) - TolVt(-31.1801104613454, 20.8338837382351, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, 14.3506287136909, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=312 - EdgeFaces(278, 281) - $begin 'EdTolVts' - TolVt(-20.8338837382351, 31.1801104613454, 32.5, 5e-07) - TolVt(-7.31588707560481, 36.7794480151211, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, 34.6454824691733, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=313 - EdgeFaces(272, 281) - $begin 'EdTolVts' - TolVt(7.31588707560481, 36.7794480151211, 32.5, 5e-07) - TolVt(20.8338837382351, 31.1801104613454, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, 34.6454824691733, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=314 - EdgeFaces(281, 282) - $begin 'EdTolVts' - TolVt(36.7794480151211, 7.3158870756048, 32.5, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691733, 14.3506287136909, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=8 - ID=315 - EdgeFaces(273, 280) - $begin 'EdTolVts' - TolVt(31.1801104613454, -20.8338837382351, -32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691733, -14.3506287136909, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=9 - ID=316 - EdgeFaces(274, 280) - $begin 'EdTolVts' - TolVt(7.3158870756048, -36.7794480151211, -32.5, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, -34.6454824691733, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=10 - ID=317 - EdgeFaces(275, 280) - $begin 'EdTolVts' - TolVt(-7.31588707560482, -36.7794480151211, -32.5, 5e-07) - TolVt(-20.8338837382351, -31.1801104613454, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, -34.6454824691733, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=11 - ID=318 - EdgeFaces(276, 280) - $begin 'EdTolVts' - TolVt(-31.1801104613454, -20.8338837382351, -32.5, 5e-07) - TolVt(-36.7794480151211, -7.31588707560481, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, -14.3506287136909, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=12 - ID=319 - EdgeFaces(277, 280) - $begin 'EdTolVts' - TolVt(-36.7794480151211, 7.31588707560481, -32.5, 5e-07) - TolVt(-31.1801104613454, 20.8338837382351, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, 14.3506287136909, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=13 - ID=320 - EdgeFaces(278, 280) - $begin 'EdTolVts' - TolVt(-20.8338837382351, 31.1801104613454, -32.5, 5e-07) - TolVt(-7.31588707560481, 36.7794480151211, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, 34.6454824691733, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=14 - ID=321 - EdgeFaces(272, 280) - $begin 'EdTolVts' - TolVt(7.31588707560481, 36.7794480151211, -32.5, 5e-07) - TolVt(20.8338837382351, 31.1801104613454, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, 34.6454824691733, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=15 - ID=322 - EdgeFaces(280, 282) - $begin 'EdTolVts' - TolVt(36.7794480151211, 7.3158870756048, -32.5, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691733, 14.3506287136909, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=16 - ID=323 - EdgeFaces(279, 281) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(-55.4327719506772, -22.9610059419054, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=17 - ID=324 - EdgeFaces(279, 280) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(-55.4327719506772, -22.9610059419054, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=18 - ID=325 - EdgeFaces(281, 288) - $begin 'EdTolVts' - TolVt(12.5560084200845, 49.4302200334448, 32.5, 5e-07) - TolVt(-12.5560084200845, 49.4302200334448, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(4.16333634234432e-15, 51, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=19 - ID=326 - EdgeFaces(287, 288) - $begin 'EdTolVts' - TolVt(12.5560084200845, 49.4302200334448, 32.5, 5e-07) - TolVt(12.5560084200845, 49.4302200334448, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(12.5560084200845, 49.4302200334448, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=20 - ID=327 - EdgeFaces(281, 287) - $begin 'EdTolVts' - TolVt(12.5560084200845, 49.4302200334448, 32.5, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.93594774784466, 43.104834024283, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=21 - ID=328 - EdgeFaces(272, 287) - $begin 'EdTolVts' - TolVt(7.31588707560481, 36.7794480151211, 32.5, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(7.31588707560481, 36.7794480151211, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=22 - ID=329 - EdgeFaces(278, 286) - $begin 'EdTolVts' - TolVt(-7.31588707560481, 36.7794480151211, 32.5, 5e-07) - TolVt(-7.31588707560481, 36.7794480151211, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-7.31588707560481, 36.7794480151211, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=23 - ID=330 - EdgeFaces(281, 286) - $begin 'EdTolVts' - TolVt(-7.31588707560481, 36.7794480151211, 32.5, 5e-07) - TolVt(-12.5560084200845, 49.4302200334448, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.93594774784466, 43.104834024283, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=24 - ID=331 - EdgeFaces(286, 288) - $begin 'EdTolVts' - TolVt(-12.5560084200845, 49.4302200334448, 32.5, 5e-07) - TolVt(-12.5560084200845, 49.4302200334448, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-12.5560084200845, 49.4302200334448, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=25 - ID=332 - EdgeFaces(280, 288) - $begin 'EdTolVts' - TolVt(12.5560084200845, 49.4302200334448, -32.5, 5e-07) - TolVt(-12.5560084200845, 49.4302200334448, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(1.38777878078143e-15, 51, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=26 - ID=333 - EdgeFaces(280, 287) - $begin 'EdTolVts' - TolVt(12.5560084200845, 49.4302200334448, -32.5, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.93594774784466, 43.104834024283, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=27 - ID=334 - EdgeFaces(280, 286) - $begin 'EdTolVts' - TolVt(-7.31588707560481, 36.7794480151211, -32.5, 5e-07) - TolVt(-12.5560084200845, 49.4302200334448, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.93594774784466, 43.104834024283, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=28 - ID=335 - EdgeFaces(281, 291) - $begin 'EdTolVts' - TolVt(-26.0740050827148, 43.8308824796691, 32.5, 5e-07) - TolVt(-43.8308824796691, 26.0740050827148, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.0624458405139, 36.0624458405139, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=29 - ID=336 - EdgeFaces(290, 291) - $begin 'EdTolVts' - TolVt(-26.0740050827148, 43.8308824796691, 32.5, 5e-07) - TolVt(-26.0740050827148, 43.8308824796691, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-26.0740050827148, 43.8308824796691, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=30 - ID=337 - EdgeFaces(281, 290) - $begin 'EdTolVts' - TolVt(-26.0740050827148, 43.8308824796691, 32.5, 5e-07) - TolVt(-20.8338837382351, 31.1801104613454, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.4539444104749, 37.5054964705073, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=31 - ID=338 - EdgeFaces(278, 290) - $begin 'EdTolVts' - TolVt(-20.8338837382351, 31.1801104613454, 32.5, 5e-07) - TolVt(-20.8338837382351, 31.1801104613454, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-20.8338837382351, 31.1801104613454, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=32 - ID=339 - EdgeFaces(277, 289) - $begin 'EdTolVts' - TolVt(-31.1801104613454, 20.8338837382351, 32.5, 5e-07) - TolVt(-31.1801104613454, 20.8338837382351, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-31.1801104613454, 20.8338837382351, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=33 - ID=340 - EdgeFaces(281, 289) - $begin 'EdTolVts' - TolVt(-31.1801104613454, 20.8338837382351, 32.5, 5e-07) - TolVt(-43.8308824796691, 26.0740050827148, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.5054964705073, 23.4539444104749, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=34 - ID=341 - EdgeFaces(289, 291) - $begin 'EdTolVts' - TolVt(-43.8308824796691, 26.0740050827148, 32.5, 5e-07) - TolVt(-43.8308824796691, 26.0740050827148, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.8308824796691, 26.0740050827148, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=35 - ID=342 - EdgeFaces(280, 291) - $begin 'EdTolVts' - TolVt(-26.0740050827148, 43.8308824796691, -32.5, 5e-07) - TolVt(-43.8308824796691, 26.0740050827148, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.0624458405139, 36.0624458405139, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=36 - ID=343 - EdgeFaces(280, 290) - $begin 'EdTolVts' - TolVt(-26.0740050827148, 43.8308824796691, -32.5, 5e-07) - TolVt(-20.8338837382351, 31.1801104613454, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.4539444104749, 37.5054964705073, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=37 - ID=344 - EdgeFaces(280, 289) - $begin 'EdTolVts' - TolVt(-31.1801104613454, 20.8338837382351, -32.5, 5e-07) - TolVt(-43.8308824796691, 26.0740050827148, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.5054964705073, 23.4539444104749, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=38 - ID=345 - EdgeFaces(281, 294) - $begin 'EdTolVts' - TolVt(-49.4302200334448, 12.5560084200845, 32.5, 5e-07) - TolVt(-49.4302200334448, -12.5560084200845, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-51, 4.16333634234432e-15, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=39 - ID=346 - EdgeFaces(293, 294) - $begin 'EdTolVts' - TolVt(-49.4302200334448, 12.5560084200845, 32.5, 5e-07) - TolVt(-49.4302200334448, 12.5560084200845, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-49.4302200334448, 12.5560084200845, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=40 - ID=347 - EdgeFaces(281, 293) - $begin 'EdTolVts' - TolVt(-49.4302200334448, 12.5560084200845, 32.5, 5e-07) - TolVt(-36.7794480151211, 7.31588707560481, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.104834024283, 9.93594774784466, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=41 - ID=348 - EdgeFaces(277, 293) - $begin 'EdTolVts' - TolVt(-36.7794480151211, 7.31588707560481, 32.5, 5e-07) - TolVt(-36.7794480151211, 7.31588707560481, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.7794480151211, 7.31588707560481, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=42 - ID=349 - EdgeFaces(276, 292) - $begin 'EdTolVts' - TolVt(-36.7794480151211, -7.31588707560481, 32.5, 5e-07) - TolVt(-36.7794480151211, -7.31588707560481, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.7794480151211, -7.31588707560481, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=43 - ID=350 - EdgeFaces(281, 292) - $begin 'EdTolVts' - TolVt(-36.7794480151211, -7.31588707560481, 32.5, 5e-07) - TolVt(-49.4302200334448, -12.5560084200845, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.104834024283, -9.93594774784466, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=44 - ID=351 - EdgeFaces(292, 294) - $begin 'EdTolVts' - TolVt(-49.4302200334448, -12.5560084200845, 32.5, 5e-07) - TolVt(-49.4302200334448, -12.5560084200845, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-49.4302200334448, -12.5560084200845, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=45 - ID=352 - EdgeFaces(280, 294) - $begin 'EdTolVts' - TolVt(-49.4302200334448, 12.5560084200845, -32.5, 5e-07) - TolVt(-49.4302200334448, -12.5560084200845, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-51, 4.16333634234432e-15, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=46 - ID=353 - EdgeFaces(280, 293) - $begin 'EdTolVts' - TolVt(-49.4302200334448, 12.5560084200845, -32.5, 5e-07) - TolVt(-36.7794480151211, 7.31588707560481, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.104834024283, 9.93594774784466, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=47 - ID=354 - EdgeFaces(280, 292) - $begin 'EdTolVts' - TolVt(-36.7794480151211, -7.31588707560481, -32.5, 5e-07) - TolVt(-49.4302200334448, -12.5560084200845, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.104834024283, -9.93594774784466, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=48 - ID=355 - EdgeFaces(281, 297) - $begin 'EdTolVts' - TolVt(-43.8308824796691, -26.0740050827148, 32.5, 5e-07) - TolVt(-26.0740050827148, -43.8308824796691, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.0624458405139, -36.0624458405139, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=49 - ID=356 - EdgeFaces(296, 297) - $begin 'EdTolVts' - TolVt(-43.8308824796691, -26.0740050827148, 32.5, 5e-07) - TolVt(-43.8308824796691, -26.0740050827148, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.8308824796691, -26.0740050827148, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=50 - ID=357 - EdgeFaces(281, 296) - $begin 'EdTolVts' - TolVt(-43.8308824796691, -26.0740050827148, 32.5, 5e-07) - TolVt(-31.1801104613454, -20.8338837382351, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.5054964705073, -23.4539444104749, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=51 - ID=358 - EdgeFaces(276, 296) - $begin 'EdTolVts' - TolVt(-31.1801104613454, -20.8338837382351, 32.5, 5e-07) - TolVt(-31.1801104613454, -20.8338837382351, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-31.1801104613454, -20.8338837382351, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=52 - ID=359 - EdgeFaces(275, 295) - $begin 'EdTolVts' - TolVt(-20.8338837382351, -31.1801104613454, 32.5, 5e-07) - TolVt(-20.8338837382351, -31.1801104613454, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-20.8338837382351, -31.1801104613454, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=53 - ID=360 - EdgeFaces(281, 295) - $begin 'EdTolVts' - TolVt(-20.8338837382351, -31.1801104613454, 32.5, 5e-07) - TolVt(-26.0740050827148, -43.8308824796691, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.4539444104749, -37.5054964705073, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=54 - ID=361 - EdgeFaces(295, 297) - $begin 'EdTolVts' - TolVt(-26.0740050827148, -43.8308824796691, 32.5, 5e-07) - TolVt(-26.0740050827148, -43.8308824796691, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-26.0740050827148, -43.8308824796691, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=55 - ID=362 - EdgeFaces(280, 297) - $begin 'EdTolVts' - TolVt(-43.8308824796691, -26.0740050827148, -32.5, 5e-07) - TolVt(-26.0740050827148, -43.8308824796691, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.0624458405139, -36.0624458405139, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=56 - ID=363 - EdgeFaces(280, 296) - $begin 'EdTolVts' - TolVt(-43.8308824796691, -26.0740050827148, -32.5, 5e-07) - TolVt(-31.1801104613454, -20.8338837382351, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.5054964705073, -23.4539444104749, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=57 - ID=364 - EdgeFaces(280, 295) - $begin 'EdTolVts' - TolVt(-20.8338837382351, -31.1801104613454, -32.5, 5e-07) - TolVt(-26.0740050827148, -43.8308824796691, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.4539444104749, -37.5054964705073, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=58 - ID=365 - EdgeFaces(281, 300) - $begin 'EdTolVts' - TolVt(-12.5560084200845, -49.4302200334448, 32.5, 5e-07) - TolVt(12.5560084200845, -49.4302200334448, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.71445146547012e-15, -51, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=59 - ID=366 - EdgeFaces(299, 300) - $begin 'EdTolVts' - TolVt(-12.5560084200845, -49.4302200334448, 32.5, 5e-07) - TolVt(-12.5560084200845, -49.4302200334448, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-12.5560084200845, -49.4302200334448, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=60 - ID=367 - EdgeFaces(281, 299) - $begin 'EdTolVts' - TolVt(-12.5560084200845, -49.4302200334448, 32.5, 5e-07) - TolVt(-7.31588707560482, -36.7794480151211, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.93594774784466, -43.104834024283, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=61 - ID=368 - EdgeFaces(275, 299) - $begin 'EdTolVts' - TolVt(-7.31588707560482, -36.7794480151211, 32.5, 5e-07) - TolVt(-7.31588707560482, -36.7794480151211, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-7.31588707560482, -36.7794480151211, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=62 - ID=369 - EdgeFaces(274, 298) - $begin 'EdTolVts' - TolVt(7.3158870756048, -36.7794480151211, 32.5, 5e-07) - TolVt(7.3158870756048, -36.7794480151211, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(7.3158870756048, -36.7794480151211, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=63 - ID=370 - EdgeFaces(281, 298) - $begin 'EdTolVts' - TolVt(7.3158870756048, -36.7794480151211, 32.5, 5e-07) - TolVt(12.5560084200845, -49.4302200334448, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.93594774784466, -43.104834024283, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=64 - ID=371 - EdgeFaces(298, 300) - $begin 'EdTolVts' - TolVt(12.5560084200845, -49.4302200334448, 32.5, 5e-07) - TolVt(12.5560084200845, -49.4302200334448, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(12.5560084200845, -49.4302200334448, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=65 - ID=372 - EdgeFaces(280, 300) - $begin 'EdTolVts' - TolVt(-12.5560084200845, -49.4302200334448, -32.5, 5e-07) - TolVt(12.5560084200845, -49.4302200334448, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.71445146547012e-15, -51, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=66 - ID=373 - EdgeFaces(280, 299) - $begin 'EdTolVts' - TolVt(-12.5560084200845, -49.4302200334448, -32.5, 5e-07) - TolVt(-7.31588707560482, -36.7794480151211, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-9.93594774784466, -43.104834024283, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=67 - ID=374 - EdgeFaces(280, 298) - $begin 'EdTolVts' - TolVt(7.3158870756048, -36.7794480151211, -32.5, 5e-07) - TolVt(12.5560084200845, -49.4302200334448, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(9.93594774784466, -43.104834024283, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=68 - ID=375 - EdgeFaces(281, 303) - $begin 'EdTolVts' - TolVt(26.0740050827148, -43.8308824796691, 32.5, 5e-07) - TolVt(43.8308824796691, -26.0740050827148, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.0624458405139, -36.0624458405139, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=69 - ID=376 - EdgeFaces(302, 303) - $begin 'EdTolVts' - TolVt(26.0740050827148, -43.8308824796691, 32.5, 5e-07) - TolVt(26.0740050827148, -43.8308824796691, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(26.0740050827148, -43.8308824796691, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=70 - ID=377 - EdgeFaces(281, 302) - $begin 'EdTolVts' - TolVt(26.0740050827148, -43.8308824796691, 32.5, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.4539444104749, -37.5054964705073, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=71 - ID=378 - EdgeFaces(274, 302) - $begin 'EdTolVts' - TolVt(20.8338837382351, -31.1801104613454, 32.5, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(20.8338837382351, -31.1801104613454, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=72 - ID=379 - EdgeFaces(273, 301) - $begin 'EdTolVts' - TolVt(31.1801104613454, -20.8338837382351, 32.5, 5e-07) - TolVt(31.1801104613454, -20.8338837382351, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(31.1801104613454, -20.8338837382351, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=73 - ID=380 - EdgeFaces(281, 301) - $begin 'EdTolVts' - TolVt(31.1801104613454, -20.8338837382351, 32.5, 5e-07) - TolVt(43.8308824796691, -26.0740050827148, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(37.5054964705073, -23.4539444104749, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=74 - ID=381 - EdgeFaces(301, 303) - $begin 'EdTolVts' - TolVt(43.8308824796691, -26.0740050827148, 32.5, 5e-07) - TolVt(43.8308824796691, -26.0740050827148, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.8308824796691, -26.0740050827148, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=75 - ID=382 - EdgeFaces(280, 303) - $begin 'EdTolVts' - TolVt(26.0740050827148, -43.8308824796691, -32.5, 5e-07) - TolVt(43.8308824796691, -26.0740050827148, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.0624458405139, -36.0624458405139, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=76 - ID=383 - EdgeFaces(280, 302) - $begin 'EdTolVts' - TolVt(26.0740050827148, -43.8308824796691, -32.5, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.4539444104749, -37.5054964705073, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=77 - ID=384 - EdgeFaces(280, 301) - $begin 'EdTolVts' - TolVt(31.1801104613454, -20.8338837382351, -32.5, 5e-07) - TolVt(43.8308824796691, -26.0740050827148, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(37.5054964705073, -23.4539444104749, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=78 - ID=385 - EdgeFaces(281, 285) - $begin 'EdTolVts' - TolVt(49.4302200334448, -12.5560084200845, 32.5, 5e-07) - TolVt(49.4302200334448, 12.5560084200845, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(51, -1.52655665885959e-14, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=79 - ID=386 - EdgeFaces(284, 285) - $begin 'EdTolVts' - TolVt(49.4302200334448, -12.5560084200845, 32.5, 5e-07) - TolVt(49.4302200334448, -12.5560084200845, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(49.4302200334448, -12.5560084200845, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=80 - ID=387 - EdgeFaces(281, 284) - $begin 'EdTolVts' - TolVt(49.4302200334448, -12.5560084200845, 32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.104834024283, -9.93594774784467, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=81 - ID=388 - EdgeFaces(273, 284) - $begin 'EdTolVts' - TolVt(36.7794480151211, -7.31588707560481, 32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.7794480151211, -7.31588707560481, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=82 - ID=389 - EdgeFaces(282, 283) - $begin 'EdTolVts' - TolVt(36.7794480151211, 7.3158870756048, 32.5, 5e-07) - TolVt(36.7794480151211, 7.3158870756048, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.7794480151211, 7.3158870756048, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=83 - ID=390 - EdgeFaces(281, 283) - $begin 'EdTolVts' - TolVt(36.7794480151211, 7.3158870756048, 32.5, 5e-07) - TolVt(49.4302200334448, 12.5560084200845, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.104834024283, 9.93594774784466, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=84 - ID=391 - EdgeFaces(283, 285) - $begin 'EdTolVts' - TolVt(49.4302200334448, 12.5560084200845, 32.5, 5e-07) - TolVt(49.4302200334448, 12.5560084200845, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(49.4302200334448, 12.5560084200845, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=85 - ID=392 - EdgeFaces(280, 285) - $begin 'EdTolVts' - TolVt(49.4302200334448, -12.5560084200845, -32.5, 5e-07) - TolVt(49.4302200334448, 12.5560084200845, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(51, -1.52655665885959e-14, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=86 - ID=393 - EdgeFaces(280, 284) - $begin 'EdTolVts' - TolVt(49.4302200334448, -12.5560084200845, -32.5, 5e-07) - TolVt(36.7794480151211, -7.31588707560481, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.104834024283, -9.93594774784467, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=87 - ID=394 - EdgeFaces(280, 283) - $begin 'EdTolVts' - TolVt(36.7794480151211, 7.3158870756048, -32.5, 5e-07) - TolVt(49.4302200334448, 12.5560084200845, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.104834024283, 9.93594774784466, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=88 - ID=395 - EdgeFaces(281, 306) - $begin 'EdTolVts' - TolVt(43.8308824796691, 26.0740050827148, 32.5, 5e-07) - TolVt(26.0740050827148, 43.8308824796691, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.0624458405139, 36.0624458405139, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=89 - ID=396 - EdgeFaces(305, 306) - $begin 'EdTolVts' - TolVt(43.8308824796691, 26.0740050827148, 32.5, 5e-07) - TolVt(43.8308824796691, 26.0740050827148, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.8308824796691, 26.0740050827148, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=90 - ID=397 - EdgeFaces(281, 305) - $begin 'EdTolVts' - TolVt(43.8308824796691, 26.0740050827148, 32.5, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(37.5054964705073, 23.4539444104749, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=91 - ID=398 - EdgeFaces(282, 305) - $begin 'EdTolVts' - TolVt(31.1801104613454, 20.8338837382351, 32.5, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(31.1801104613454, 20.8338837382351, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=92 - ID=399 - EdgeFaces(272, 304) - $begin 'EdTolVts' - TolVt(20.8338837382351, 31.1801104613454, 32.5, 5e-07) - TolVt(20.8338837382351, 31.1801104613454, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(20.8338837382351, 31.1801104613454, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=93 - ID=400 - EdgeFaces(281, 304) - $begin 'EdTolVts' - TolVt(20.8338837382351, 31.1801104613454, 32.5, 5e-07) - TolVt(26.0740050827148, 43.8308824796691, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.4539444104749, 37.5054964705073, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=94 - ID=401 - EdgeFaces(304, 306) - $begin 'EdTolVts' - TolVt(26.0740050827148, 43.8308824796691, 32.5, 5e-07) - TolVt(26.0740050827148, 43.8308824796691, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(26.0740050827148, 43.8308824796691, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=95 - ID=402 - EdgeFaces(280, 306) - $begin 'EdTolVts' - TolVt(43.8308824796691, 26.0740050827148, -32.5, 5e-07) - TolVt(26.0740050827148, 43.8308824796691, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.0624458405139, 36.0624458405139, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=96 - ID=403 - EdgeFaces(280, 305) - $begin 'EdTolVts' - TolVt(43.8308824796691, 26.0740050827148, -32.5, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(37.5054964705073, 23.4539444104749, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=97 - ID=404 - EdgeFaces(280, 304) - $begin 'EdTolVts' - TolVt(20.8338837382351, 31.1801104613454, -32.5, 5e-07) - TolVt(26.0740050827148, 43.8308824796691, -32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.4539444104749, 37.5054964705073, -32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=98 - ID=405 - EdgeFaces(206, 207) - $begin 'EdTolVts' - TolVt(4.57426240369314, 49.4856893206376, -33.5, 5e-07) - TolVt(0.75917265266969, 40.2752479020462, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.66671752818142, 44.8804686113419, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=99 - ID=406 - EdgeFaces(205, 206) - $begin 'EdTolVts' - TolVt(4.57426240369314, 49.4856893206376, 33.5, 5e-07) - TolVt(4.57426240369314, 49.4856893206376, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(4.57426240369314, 49.4856893206376, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=100 - ID=407 - EdgeFaces(204, 205) - $begin 'EdTolVts' - TolVt(10.6475581634318, 46.9700478486509, -33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(10.6475581634318, 46.9700478486509, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=101 - ID=408 - EdgeFaces(202, 204) - $begin 'EdTolVts' - TolVt(10.6475581634318, 46.9700478486509, -33.5, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.74001328792012, 42.3648271393552, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=102 - ID=409 - EdgeFaces(203, 204) - $begin 'EdTolVts' - TolVt(6.83246841240839, 37.7596064300594, 33.5, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(6.83246841240839, 37.7596064300594, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=103 - ID=410 - EdgeFaces(203, 206) - $begin 'EdTolVts' - TolVt(0.75917265266969, 40.2752479020462, 33.5, 5e-07) - TolVt(0.75917265266969, 40.2752479020462, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0.759172652669694, 40.2752479020462, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=104 - ID=411 - EdgeFaces(206, 215) - $begin 'EdTolVts' - TolVt(4.57426240369314, 49.4856893206376, 33.5, 5e-07) - TolVt(0.75917265266969, 40.2752479020462, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.66671752818141, 44.8804686113419, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=105 - ID=412 - EdgeFaces(204, 212) - $begin 'EdTolVts' - TolVt(6.83246841240839, 37.7596064300594, 33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.74001328792011, 42.3648271393552, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=106 - ID=413 - EdgeFaces(207, 208) - $begin 'EdTolVts' - TolVt(10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - TolVt(6.8324684124084, 37.7596064300594, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.74001328792012, 42.3648271393552, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=107 - ID=414 - EdgeFaces(205, 207) - $begin 'EdTolVts' - TolVt(4.57426240369314, 49.4856893206376, -33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(6.35308954756911, 48.7488749925268, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=108 - ID=415 - EdgeFaces(203, 207) - $begin 'EdTolVts' - TolVt(0.75917265266969, 40.2752479020462, -33.5, 5e-07) - TolVt(6.8324684124084, 37.7596064300594, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.53799979654565, 39.5384335739354, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=109 - ID=416 - EdgeFaces(202, 205) - $begin 'EdTolVts' - TolVt(25.6838787659968, 40.7417999268785, -33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(18.1657184647143, 43.8559238877647, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=110 - ID=417 - EdgeFaces(202, 203) - $begin 'EdTolVts' - TolVt(6.83246841240839, 37.7596064300594, -33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, 34.6454824691733, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=111 - ID=418 - EdgeFaces(205, 208) - $begin 'EdTolVts' - TolVt(10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(18.1657184647143, 43.8559238877647, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=112 - ID=419 - EdgeFaces(203, 208) - $begin 'EdTolVts' - TolVt(6.8324684124084, 37.7596064300594, -40.07368796041, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, 34.6454824691733, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=113 - ID=420 - EdgeFaces(208, 209) - $begin 'EdTolVts' - TolVt(25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.7763338904851, 36.1365792175828, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=114 - ID=421 - EdgeFaces(205, 209) - $begin 'EdTolVts' - TolVt(25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - TolVt(31.7571745257355, 38.2261584548917, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.9783473818595, 38.9629727830025, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=115 - ID=422 - EdgeFaces(203, 209) - $begin 'EdTolVts' - TolVt(21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - TolVt(27.942084774712, 29.0157170363003, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(26.1632576308361, 29.7525313644111, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=116 - ID=423 - EdgeFaces(209, 211) - $begin 'EdTolVts' - TolVt(31.7571745257355, 38.2261584548917, -33.5, 5e-07) - TolVt(27.942084774712, 29.0157170363003, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.8496296502238, 33.620937745596, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=117 - ID=424 - EdgeFaces(211, 213) - $begin 'EdTolVts' - TolVt(31.7571745257355, 38.2261584548917, 33.5, 5e-07) - TolVt(27.942084774712, 29.0157170363003, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.8496296502238, 33.620937745596, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=118 - ID=425 - EdgeFaces(205, 211) - $begin 'EdTolVts' - TolVt(31.7571745257355, 38.2261584548917, -33.5, 5e-07) - TolVt(31.7571745257355, 38.2261584548917, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(31.7571745257355, 38.2261584548917, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=119 - ID=426 - EdgeFaces(205, 210) - $begin 'EdTolVts' - TolVt(25.6838787659968, 40.7417999268785, -33.5, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(25.6838787659968, 40.7417999268785, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=120 - ID=427 - EdgeFaces(210, 212) - $begin 'EdTolVts' - TolVt(25.6838787659968, 40.7417999268785, 33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.7763338904851, 36.1365792175828, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=121 - ID=428 - EdgeFaces(203, 210) - $begin 'EdTolVts' - TolVt(21.8687890149733, 31.5313585082871, -33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(21.8687890149733, 31.5313585082871, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=122 - ID=429 - EdgeFaces(203, 211) - $begin 'EdTolVts' - TolVt(27.942084774712, 29.0157170363003, -33.5, 5e-07) - TolVt(27.942084774712, 29.0157170363003, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(27.942084774712, 29.0157170363003, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=123 - ID=430 - EdgeFaces(202, 210) - $begin 'EdTolVts' - TolVt(25.6838787659968, 40.7417999268785, -33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.7763338904851, 36.1365792175828, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=124 - ID=431 - EdgeFaces(213, 214) - $begin 'EdTolVts' - TolVt(25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.7763338904851, 36.1365792175828, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=125 - ID=432 - EdgeFaces(205, 213) - $begin 'EdTolVts' - TolVt(31.7571745257355, 38.2261584548917, 33.5, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.9783473818595, 38.9629727830025, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=126 - ID=433 - EdgeFaces(203, 213) - $begin 'EdTolVts' - TolVt(27.942084774712, 29.0157170363003, 33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(26.1632576308361, 29.7525313644111, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=127 - ID=434 - EdgeFaces(205, 212) - $begin 'EdTolVts' - TolVt(10.6475581634318, 46.9700478486509, 33.5, 5e-07) - TolVt(25.6838787659968, 40.7417999268785, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(18.1657184647143, 43.8559238877647, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=128 - ID=435 - EdgeFaces(203, 212) - $begin 'EdTolVts' - TolVt(6.83246841240839, 37.7596064300594, 33.5, 5e-07) - TolVt(21.8687890149733, 31.5313585082871, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, 34.6454824691733, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=129 - ID=436 - EdgeFaces(205, 214) - $begin 'EdTolVts' - TolVt(25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(18.1657184647143, 43.8559238877647, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=130 - ID=437 - EdgeFaces(203, 214) - $begin 'EdTolVts' - TolVt(21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, 34.6454824691733, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=131 - ID=438 - EdgeFaces(214, 215) - $begin 'EdTolVts' - TolVt(10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.74001328792012, 42.3648271393552, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=132 - ID=439 - EdgeFaces(205, 215) - $begin 'EdTolVts' - TolVt(4.57426240369314, 49.4856893206376, 33.5, 5e-07) - TolVt(10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(6.35308954756911, 48.7488749925268, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=133 - ID=440 - EdgeFaces(203, 215) - $begin 'EdTolVts' - TolVt(0.75917265266969, 40.2752479020462, 33.5, 5e-07) - TolVt(6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.53799979654565, 39.5384335739354, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=134 - ID=441 - EdgeFaces(220, 221) - $begin 'EdTolVts' - TolVt(-31.7571745257355, 38.2261584548917, -33.5, 5e-07) - TolVt(-27.942084774712, 29.0157170363003, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.8496296502238, 33.620937745596, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=135 - ID=442 - EdgeFaces(219, 220) - $begin 'EdTolVts' - TolVt(-31.7571745257355, 38.2261584548917, 33.5, 5e-07) - TolVt(-31.7571745257355, 38.2261584548917, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-31.7571745257355, 38.2261584548917, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=136 - ID=443 - EdgeFaces(218, 219) - $begin 'EdTolVts' - TolVt(-25.6838787659968, 40.7417999268785, -33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-25.6838787659968, 40.7417999268785, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=137 - ID=444 - EdgeFaces(216, 218) - $begin 'EdTolVts' - TolVt(-25.6838787659968, 40.7417999268785, -33.5, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.7763338904851, 36.1365792175828, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=138 - ID=445 - EdgeFaces(217, 218) - $begin 'EdTolVts' - TolVt(-21.8687890149733, 31.5313585082871, 33.5, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-21.8687890149733, 31.5313585082871, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=139 - ID=446 - EdgeFaces(217, 220) - $begin 'EdTolVts' - TolVt(-27.942084774712, 29.0157170363003, 33.5, 5e-07) - TolVt(-27.942084774712, 29.0157170363003, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-27.942084774712, 29.0157170363003, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=140 - ID=447 - EdgeFaces(220, 229) - $begin 'EdTolVts' - TolVt(-31.7571745257355, 38.2261584548917, 33.5, 5e-07) - TolVt(-27.942084774712, 29.0157170363003, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.8496296502238, 33.620937745596, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=141 - ID=448 - EdgeFaces(218, 226) - $begin 'EdTolVts' - TolVt(-21.8687890149733, 31.5313585082871, 33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.7763338904851, 36.1365792175828, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=142 - ID=449 - EdgeFaces(221, 222) - $begin 'EdTolVts' - TolVt(-25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.7763338904851, 36.1365792175828, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=143 - ID=450 - EdgeFaces(219, 221) - $begin 'EdTolVts' - TolVt(-31.7571745257355, 38.2261584548917, -33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.9783473818595, 38.9629727830025, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=144 - ID=451 - EdgeFaces(217, 221) - $begin 'EdTolVts' - TolVt(-27.942084774712, 29.0157170363003, -33.5, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-26.1632576308361, 29.7525313644111, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=145 - ID=452 - EdgeFaces(216, 219) - $begin 'EdTolVts' - TolVt(-10.6475581634318, 46.9700478486509, -33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.1657184647143, 43.8559238877647, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=146 - ID=453 - EdgeFaces(216, 217) - $begin 'EdTolVts' - TolVt(-21.8687890149733, 31.5313585082871, -33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, 34.6454824691733, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=147 - ID=454 - EdgeFaces(219, 222) - $begin 'EdTolVts' - TolVt(-25.6838787659968, 40.7417999268785, -40.07368796041, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.1657184647143, 43.8559238877647, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=148 - ID=455 - EdgeFaces(217, 222) - $begin 'EdTolVts' - TolVt(-21.8687890149733, 31.5313585082871, -40.07368796041, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, 34.6454824691733, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=149 - ID=456 - EdgeFaces(222, 223) - $begin 'EdTolVts' - TolVt(-10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.74001328792011, 42.3648271393552, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=150 - ID=457 - EdgeFaces(219, 223) - $begin 'EdTolVts' - TolVt(-10.6475581634318, 46.9700478486509, -40.07368796041, 5e-07) - TolVt(-4.57426240369314, 49.4856893206376, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.3530895475691, 48.7488749925268, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=151 - ID=458 - EdgeFaces(217, 223) - $begin 'EdTolVts' - TolVt(-6.83246841240839, 37.7596064300594, -40.07368796041, 5e-07) - TolVt(-0.759172652669688, 40.2752479020462, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.53799979654565, 39.5384335739354, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=152 - ID=459 - EdgeFaces(223, 225) - $begin 'EdTolVts' - TolVt(-4.57426240369314, 49.4856893206376, -33.5, 5e-07) - TolVt(-0.759172652669688, 40.2752479020462, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.66671752818141, 44.8804686113419, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=153 - ID=460 - EdgeFaces(225, 227) - $begin 'EdTolVts' - TolVt(-4.57426240369314, 49.4856893206376, 33.5, 5e-07) - TolVt(-0.759172652669688, 40.2752479020462, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.66671752818141, 44.8804686113419, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=154 - ID=461 - EdgeFaces(219, 225) - $begin 'EdTolVts' - TolVt(-4.57426240369314, 49.4856893206376, -33.5, 5e-07) - TolVt(-4.57426240369314, 49.4856893206376, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-4.57426240369314, 49.4856893206376, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=155 - ID=462 - EdgeFaces(219, 224) - $begin 'EdTolVts' - TolVt(-10.6475581634318, 46.9700478486509, -33.5, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-10.6475581634318, 46.9700478486509, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=156 - ID=463 - EdgeFaces(224, 226) - $begin 'EdTolVts' - TolVt(-10.6475581634318, 46.9700478486509, 33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.74001328792011, 42.3648271393552, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=157 - ID=464 - EdgeFaces(217, 224) - $begin 'EdTolVts' - TolVt(-6.83246841240839, 37.7596064300594, -33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.83246841240839, 37.7596064300594, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=158 - ID=465 - EdgeFaces(217, 225) - $begin 'EdTolVts' - TolVt(-0.759172652669688, 40.2752479020462, -33.5, 5e-07) - TolVt(-0.759172652669688, 40.2752479020462, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-0.759172652669688, 40.2752479020462, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=159 - ID=466 - EdgeFaces(216, 224) - $begin 'EdTolVts' - TolVt(-10.6475581634318, 46.9700478486509, -33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.74001328792011, 42.3648271393552, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=160 - ID=467 - EdgeFaces(227, 228) - $begin 'EdTolVts' - TolVt(-10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.74001328792012, 42.3648271393552, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=161 - ID=468 - EdgeFaces(219, 227) - $begin 'EdTolVts' - TolVt(-4.57426240369314, 49.4856893206376, 33.5, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.3530895475691, 48.7488749925268, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=162 - ID=469 - EdgeFaces(217, 227) - $begin 'EdTolVts' - TolVt(-0.759172652669688, 40.2752479020462, 33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.53799979654565, 39.5384335739354, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=163 - ID=470 - EdgeFaces(219, 226) - $begin 'EdTolVts' - TolVt(-25.6838787659968, 40.7417999268785, 33.5, 5e-07) - TolVt(-10.6475581634318, 46.9700478486509, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.1657184647143, 43.8559238877647, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=164 - ID=471 - EdgeFaces(217, 226) - $begin 'EdTolVts' - TolVt(-21.8687890149733, 31.5313585082871, 33.5, 5e-07) - TolVt(-6.83246841240839, 37.7596064300594, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, 34.6454824691733, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=165 - ID=472 - EdgeFaces(219, 228) - $begin 'EdTolVts' - TolVt(-10.6475581634318, 46.9700478486509, 40.07368796041, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.1657184647143, 43.8559238877647, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=166 - ID=473 - EdgeFaces(217, 228) - $begin 'EdTolVts' - TolVt(-6.83246841240839, 37.7596064300594, 40.07368796041, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, 34.6454824691733, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=167 - ID=474 - EdgeFaces(228, 229) - $begin 'EdTolVts' - TolVt(-25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.7763338904851, 36.1365792175828, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=168 - ID=475 - EdgeFaces(219, 229) - $begin 'EdTolVts' - TolVt(-31.7571745257355, 38.2261584548917, 33.5, 5e-07) - TolVt(-25.6838787659968, 40.7417999268785, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.9783473818595, 38.9629727830025, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=169 - ID=476 - EdgeFaces(217, 229) - $begin 'EdTolVts' - TolVt(-27.942084774712, 29.0157170363003, 33.5, 5e-07) - TolVt(-21.8687890149733, 31.5313585082871, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-26.1632576308361, 29.7525313644111, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=170 - ID=477 - EdgeFaces(234, 235) - $begin 'EdTolVts' - TolVt(-49.4856893206376, 4.57426240369315, -33.5, 5e-07) - TolVt(-40.2752479020462, 0.759172652669693, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-44.8804686113419, 2.66671752818142, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=171 - ID=478 - EdgeFaces(233, 234) - $begin 'EdTolVts' - TolVt(-49.4856893206376, 4.57426240369314, 33.5, 5e-07) - TolVt(-49.4856893206376, 4.57426240369315, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-49.4856893206376, 4.57426240369315, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=172 - ID=479 - EdgeFaces(232, 233) - $begin 'EdTolVts' - TolVt(-46.9700478486509, 10.6475581634318, -33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-46.9700478486509, 10.6475581634318, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=173 - ID=480 - EdgeFaces(230, 232) - $begin 'EdTolVts' - TolVt(-46.9700478486509, 10.6475581634318, -33.5, 5e-07) - TolVt(-37.7596064300594, 6.8324684124084, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.3648271393552, 8.74001328792012, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=174 - ID=481 - EdgeFaces(231, 232) - $begin 'EdTolVts' - TolVt(-37.7596064300594, 6.83246841240839, 33.5, 5e-07) - TolVt(-37.7596064300594, 6.8324684124084, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.7596064300594, 6.83246841240839, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=175 - ID=482 - EdgeFaces(231, 234) - $begin 'EdTolVts' - TolVt(-40.2752479020462, 0.759172652669693, 33.5, 5e-07) - TolVt(-40.2752479020462, 0.759172652669693, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.2752479020462, 0.759172652669697, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=176 - ID=483 - EdgeFaces(234, 243) - $begin 'EdTolVts' - TolVt(-49.4856893206376, 4.57426240369314, 33.5, 5e-07) - TolVt(-40.2752479020462, 0.759172652669693, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-44.8804686113419, 2.66671752818142, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=177 - ID=484 - EdgeFaces(232, 240) - $begin 'EdTolVts' - TolVt(-37.7596064300594, 6.83246841240839, 33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.3648271393552, 8.74001328792012, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=178 - ID=485 - EdgeFaces(235, 236) - $begin 'EdTolVts' - TolVt(-46.9700478486509, 10.6475581634319, -40.07368796041, 5e-07) - TolVt(-37.7596064300594, 6.8324684124084, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.3648271393551, 8.74001328792013, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=179 - ID=486 - EdgeFaces(233, 235) - $begin 'EdTolVts' - TolVt(-49.4856893206376, 4.57426240369315, -33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634319, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-48.7488749925268, 6.35308954756911, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=180 - ID=487 - EdgeFaces(231, 235) - $begin 'EdTolVts' - TolVt(-40.2752479020462, 0.759172652669693, -33.5, 5e-07) - TolVt(-37.7596064300594, 6.8324684124084, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-39.5384335739354, 2.53799979654566, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=181 - ID=488 - EdgeFaces(230, 233) - $begin 'EdTolVts' - TolVt(-40.7417999268785, 25.6838787659968, -33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.8559238877647, 18.1657184647143, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=182 - ID=489 - EdgeFaces(230, 231) - $begin 'EdTolVts' - TolVt(-37.7596064300594, 6.8324684124084, -33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, 14.3506287136909, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=183 - ID=490 - EdgeFaces(233, 236) - $begin 'EdTolVts' - TolVt(-46.9700478486509, 10.6475581634319, -40.07368796041, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.8559238877647, 18.1657184647143, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=184 - ID=491 - EdgeFaces(231, 236) - $begin 'EdTolVts' - TolVt(-37.7596064300594, 6.8324684124084, -40.07368796041, 5e-07) - TolVt(-31.531358508287, 21.8687890149733, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691732, 14.3506287136909, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=185 - ID=492 - EdgeFaces(236, 237) - $begin 'EdTolVts' - TolVt(-40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - TolVt(-31.531358508287, 21.8687890149733, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.1365792175828, 23.7763338904851, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=186 - ID=493 - EdgeFaces(233, 237) - $begin 'EdTolVts' - TolVt(-40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - TolVt(-38.2261584548917, 31.7571745257355, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-38.9629727830025, 29.9783473818595, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=187 - ID=494 - EdgeFaces(231, 237) - $begin 'EdTolVts' - TolVt(-31.531358508287, 21.8687890149733, -40.07368796041, 5e-07) - TolVt(-29.0157170363003, 27.942084774712, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.7525313644111, 26.1632576308361, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=188 - ID=495 - EdgeFaces(237, 239) - $begin 'EdTolVts' - TolVt(-38.2261584548917, 31.7571745257355, -33.5, 5e-07) - TolVt(-29.0157170363003, 27.942084774712, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-33.620937745596, 29.8496296502238, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=189 - ID=496 - EdgeFaces(239, 241) - $begin 'EdTolVts' - TolVt(-38.2261584548917, 31.7571745257355, 33.5, 5e-07) - TolVt(-29.0157170363003, 27.942084774712, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-33.620937745596, 29.8496296502238, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=190 - ID=497 - EdgeFaces(233, 239) - $begin 'EdTolVts' - TolVt(-38.2261584548917, 31.7571745257355, -33.5, 5e-07) - TolVt(-38.2261584548917, 31.7571745257355, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-38.2261584548917, 31.7571745257355, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=191 - ID=498 - EdgeFaces(233, 238) - $begin 'EdTolVts' - TolVt(-40.7417999268785, 25.6838787659968, -33.5, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.7417999268785, 25.6838787659968, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=192 - ID=499 - EdgeFaces(238, 240) - $begin 'EdTolVts' - TolVt(-40.7417999268785, 25.6838787659968, 33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.1365792175828, 23.7763338904851, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=193 - ID=500 - EdgeFaces(231, 238) - $begin 'EdTolVts' - TolVt(-31.5313585082871, 21.8687890149733, -33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-31.5313585082871, 21.8687890149733, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=194 - ID=501 - EdgeFaces(231, 239) - $begin 'EdTolVts' - TolVt(-29.0157170363003, 27.942084774712, -33.5, 5e-07) - TolVt(-29.0157170363003, 27.942084774712, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.0157170363003, 27.942084774712, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=195 - ID=502 - EdgeFaces(230, 238) - $begin 'EdTolVts' - TolVt(-40.7417999268785, 25.6838787659968, -33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.1365792175828, 23.7763338904851, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=196 - ID=503 - EdgeFaces(241, 242) - $begin 'EdTolVts' - TolVt(-40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.1365792175828, 23.7763338904851, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=197 - ID=504 - EdgeFaces(233, 241) - $begin 'EdTolVts' - TolVt(-38.2261584548917, 31.7571745257355, 33.5, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-38.9629727830025, 29.9783473818595, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=198 - ID=505 - EdgeFaces(231, 241) - $begin 'EdTolVts' - TolVt(-29.0157170363003, 27.942084774712, 33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.7525313644111, 26.1632576308361, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=199 - ID=506 - EdgeFaces(233, 240) - $begin 'EdTolVts' - TolVt(-46.9700478486509, 10.6475581634318, 33.5, 5e-07) - TolVt(-40.7417999268785, 25.6838787659968, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.8559238877647, 18.1657184647143, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=200 - ID=507 - EdgeFaces(231, 240) - $begin 'EdTolVts' - TolVt(-37.7596064300594, 6.83246841240839, 33.5, 5e-07) - TolVt(-31.5313585082871, 21.8687890149733, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, 14.3506287136909, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=201 - ID=508 - EdgeFaces(233, 242) - $begin 'EdTolVts' - TolVt(-40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.8559238877647, 18.1657184647143, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=202 - ID=509 - EdgeFaces(231, 242) - $begin 'EdTolVts' - TolVt(-31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - TolVt(-37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, 14.3506287136909, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=203 - ID=510 - EdgeFaces(242, 243) - $begin 'EdTolVts' - TolVt(-46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - TolVt(-37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.3648271393551, 8.74001328792012, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=204 - ID=511 - EdgeFaces(233, 243) - $begin 'EdTolVts' - TolVt(-49.4856893206376, 4.57426240369314, 33.5, 5e-07) - TolVt(-46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-48.7488749925268, 6.35308954756911, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=205 - ID=512 - EdgeFaces(231, 243) - $begin 'EdTolVts' - TolVt(-40.2752479020462, 0.759172652669693, 33.5, 5e-07) - TolVt(-37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-39.5384335739354, 2.53799979654565, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=206 - ID=513 - EdgeFaces(192, 193) - $begin 'EdTolVts' - TolVt(-38.2261584548917, -31.7571745257355, -33.5, 5e-07) - TolVt(-29.0157170363003, -27.942084774712, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-33.620937745596, -29.8496296502238, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=207 - ID=514 - EdgeFaces(191, 192) - $begin 'EdTolVts' - TolVt(-38.2261584548917, -31.7571745257355, 33.5, 5e-07) - TolVt(-38.2261584548917, -31.7571745257355, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-38.2261584548917, -31.7571745257355, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=208 - ID=515 - EdgeFaces(190, 191) - $begin 'EdTolVts' - TolVt(-40.7417999268785, -25.6838787659968, -33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.7417999268785, -25.6838787659968, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=209 - ID=516 - EdgeFaces(188, 190) - $begin 'EdTolVts' - TolVt(-40.7417999268785, -25.6838787659968, -33.5, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.1365792175828, -23.7763338904851, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=210 - ID=517 - EdgeFaces(189, 190) - $begin 'EdTolVts' - TolVt(-31.5313585082871, -21.8687890149733, 33.5, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-31.5313585082871, -21.8687890149733, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=211 - ID=518 - EdgeFaces(189, 192) - $begin 'EdTolVts' - TolVt(-29.0157170363003, -27.942084774712, 33.5, 5e-07) - TolVt(-29.0157170363003, -27.942084774712, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.0157170363003, -27.942084774712, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=212 - ID=519 - EdgeFaces(192, 201) - $begin 'EdTolVts' - TolVt(-38.2261584548917, -31.7571745257355, 33.5, 5e-07) - TolVt(-29.0157170363003, -27.942084774712, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-33.620937745596, -29.8496296502238, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=213 - ID=520 - EdgeFaces(190, 198) - $begin 'EdTolVts' - TolVt(-31.5313585082871, -21.8687890149733, 33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.1365792175828, -23.7763338904851, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=214 - ID=521 - EdgeFaces(193, 194) - $begin 'EdTolVts' - TolVt(-40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.1365792175828, -23.7763338904851, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=215 - ID=522 - EdgeFaces(191, 193) - $begin 'EdTolVts' - TolVt(-38.2261584548917, -31.7571745257355, -33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-38.9629727830025, -29.9783473818595, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=216 - ID=523 - EdgeFaces(189, 193) - $begin 'EdTolVts' - TolVt(-29.0157170363003, -27.942084774712, -33.5, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.7525313644111, -26.1632576308361, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=217 - ID=524 - EdgeFaces(188, 191) - $begin 'EdTolVts' - TolVt(-46.9700478486509, -10.6475581634318, -33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.8559238877647, -18.1657184647143, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=218 - ID=525 - EdgeFaces(188, 189) - $begin 'EdTolVts' - TolVt(-31.5313585082871, -21.8687890149733, -33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, -14.3506287136909, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=219 - ID=526 - EdgeFaces(191, 194) - $begin 'EdTolVts' - TolVt(-40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.8559238877647, -18.1657184647143, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=220 - ID=527 - EdgeFaces(189, 194) - $begin 'EdTolVts' - TolVt(-31.5313585082871, -21.8687890149733, -40.07368796041, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, -14.3506287136909, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=221 - ID=528 - EdgeFaces(194, 195) - $begin 'EdTolVts' - TolVt(-46.9700478486509, -10.6475581634318, -40.07368796041, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.3648271393552, -8.74001328792011, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=222 - ID=529 - EdgeFaces(191, 195) - $begin 'EdTolVts' - TolVt(-46.9700478486509, -10.6475581634318, -40.07368796041, 5e-07) - TolVt(-49.4856893206376, -4.57426240369314, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-48.7488749925268, -6.3530895475691, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=223 - ID=530 - EdgeFaces(189, 195) - $begin 'EdTolVts' - TolVt(-37.7596064300594, -6.83246841240839, -40.07368796041, 5e-07) - TolVt(-40.2752479020462, -0.759172652669685, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-39.5384335739354, -2.53799979654564, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=224 - ID=531 - EdgeFaces(195, 197) - $begin 'EdTolVts' - TolVt(-49.4856893206376, -4.57426240369314, -33.5, 5e-07) - TolVt(-40.2752479020462, -0.759172652669685, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-44.8804686113419, -2.66671752818141, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=225 - ID=532 - EdgeFaces(197, 199) - $begin 'EdTolVts' - TolVt(-49.4856893206376, -4.57426240369314, 33.5, 5e-07) - TolVt(-40.2752479020462, -0.759172652669685, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-44.8804686113419, -2.66671752818141, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=226 - ID=533 - EdgeFaces(191, 197) - $begin 'EdTolVts' - TolVt(-49.4856893206376, -4.57426240369314, -33.5, 5e-07) - TolVt(-49.4856893206376, -4.57426240369314, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-49.4856893206376, -4.57426240369314, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=227 - ID=534 - EdgeFaces(191, 196) - $begin 'EdTolVts' - TolVt(-46.9700478486509, -10.6475581634318, -33.5, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-46.9700478486509, -10.6475581634318, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=228 - ID=535 - EdgeFaces(196, 198) - $begin 'EdTolVts' - TolVt(-46.9700478486509, -10.6475581634318, 33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.3648271393552, -8.74001328792011, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=229 - ID=536 - EdgeFaces(189, 196) - $begin 'EdTolVts' - TolVt(-37.7596064300594, -6.83246841240839, -33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.7596064300594, -6.83246841240839, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=230 - ID=537 - EdgeFaces(189, 197) - $begin 'EdTolVts' - TolVt(-40.2752479020462, -0.759172652669685, -33.5, 5e-07) - TolVt(-40.2752479020462, -0.759172652669685, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.2752479020462, -0.759172652669685, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=231 - ID=538 - EdgeFaces(188, 196) - $begin 'EdTolVts' - TolVt(-46.9700478486509, -10.6475581634318, -33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.3648271393552, -8.74001328792011, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=232 - ID=539 - EdgeFaces(199, 200) - $begin 'EdTolVts' - TolVt(-46.9700478486509, -10.6475581634318, 40.07368796041, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.3648271393552, -8.74001328792011, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=233 - ID=540 - EdgeFaces(191, 199) - $begin 'EdTolVts' - TolVt(-49.4856893206376, -4.57426240369314, 33.5, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-48.7488749925268, -6.3530895475691, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=234 - ID=541 - EdgeFaces(189, 199) - $begin 'EdTolVts' - TolVt(-40.2752479020462, -0.759172652669685, 33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-39.5384335739354, -2.53799979654565, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=235 - ID=542 - EdgeFaces(191, 198) - $begin 'EdTolVts' - TolVt(-40.7417999268785, -25.6838787659968, 33.5, 5e-07) - TolVt(-46.9700478486509, -10.6475581634318, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.8559238877647, -18.1657184647143, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=236 - ID=543 - EdgeFaces(189, 198) - $begin 'EdTolVts' - TolVt(-31.5313585082871, -21.8687890149733, 33.5, 5e-07) - TolVt(-37.7596064300594, -6.83246841240839, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, -14.3506287136909, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=237 - ID=544 - EdgeFaces(191, 200) - $begin 'EdTolVts' - TolVt(-46.9700478486509, -10.6475581634318, 40.07368796041, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.8559238877647, -18.1657184647143, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=238 - ID=545 - EdgeFaces(189, 200) - $begin 'EdTolVts' - TolVt(-37.7596064300594, -6.83246841240839, 40.07368796041, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.6454824691733, -14.3506287136909, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=239 - ID=546 - EdgeFaces(200, 201) - $begin 'EdTolVts' - TolVt(-40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.1365792175828, -23.7763338904851, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=240 - ID=547 - EdgeFaces(191, 201) - $begin 'EdTolVts' - TolVt(-38.2261584548917, -31.7571745257355, 33.5, 5e-07) - TolVt(-40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-38.9629727830025, -29.9783473818595, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=241 - ID=548 - EdgeFaces(189, 201) - $begin 'EdTolVts' - TolVt(-29.0157170363003, -27.942084774712, 33.5, 5e-07) - TolVt(-31.5313585082871, -21.8687890149733, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.7525313644111, -26.1632576308361, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=242 - ID=549 - EdgeFaces(178, 179) - $begin 'EdTolVts' - TolVt(-4.57426240369315, -49.4856893206376, -33.5, 5e-07) - TolVt(-0.759172652669698, -40.2752479020462, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.66671752818142, -44.8804686113419, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=243 - ID=550 - EdgeFaces(177, 178) - $begin 'EdTolVts' - TolVt(-4.57426240369314, -49.4856893206376, 33.5, 5e-07) - TolVt(-4.57426240369315, -49.4856893206376, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-4.57426240369315, -49.4856893206376, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=244 - ID=551 - EdgeFaces(176, 177) - $begin 'EdTolVts' - TolVt(-10.6475581634318, -46.9700478486509, -33.5, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-10.6475581634318, -46.9700478486509, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=245 - ID=552 - EdgeFaces(174, 176) - $begin 'EdTolVts' - TolVt(-10.6475581634318, -46.9700478486509, -33.5, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.74001328792013, -42.3648271393552, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=246 - ID=553 - EdgeFaces(175, 176) - $begin 'EdTolVts' - TolVt(-6.8324684124084, -37.7596064300594, 33.5, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.8324684124084, -37.7596064300594, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=247 - ID=554 - EdgeFaces(175, 178) - $begin 'EdTolVts' - TolVt(-0.759172652669698, -40.2752479020462, 33.5, 5e-07) - TolVt(-0.759172652669698, -40.2752479020462, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-0.759172652669702, -40.2752479020462, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=248 - ID=555 - EdgeFaces(178, 187) - $begin 'EdTolVts' - TolVt(-4.57426240369314, -49.4856893206376, 33.5, 5e-07) - TolVt(-0.759172652669698, -40.2752479020462, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.66671752818142, -44.8804686113419, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=249 - ID=556 - EdgeFaces(176, 184) - $begin 'EdTolVts' - TolVt(-6.8324684124084, -37.7596064300594, 33.5, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.74001328792012, -42.3648271393552, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=250 - ID=557 - EdgeFaces(179, 180) - $begin 'EdTolVts' - TolVt(-10.6475581634319, -46.9700478486509, -40.07368796041, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.74001328792013, -42.3648271393552, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=251 - ID=558 - EdgeFaces(177, 179) - $begin 'EdTolVts' - TolVt(-4.57426240369315, -49.4856893206376, -33.5, 5e-07) - TolVt(-10.6475581634319, -46.9700478486509, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.35308954756911, -48.7488749925268, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=252 - ID=559 - EdgeFaces(175, 179) - $begin 'EdTolVts' - TolVt(-0.759172652669698, -40.2752479020462, -33.5, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.53799979654566, -39.5384335739354, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=253 - ID=560 - EdgeFaces(174, 177) - $begin 'EdTolVts' - TolVt(-25.6838787659968, -40.7417999268785, -33.5, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.1657184647143, -43.8559238877647, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=254 - ID=561 - EdgeFaces(174, 175) - $begin 'EdTolVts' - TolVt(-6.8324684124084, -37.7596064300594, -33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, -34.6454824691733, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=255 - ID=562 - EdgeFaces(177, 180) - $begin 'EdTolVts' - TolVt(-10.6475581634319, -46.9700478486509, -40.07368796041, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.1657184647143, -43.8559238877647, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=256 - ID=563 - EdgeFaces(175, 180) - $begin 'EdTolVts' - TolVt(-6.8324684124084, -37.7596064300594, -40.07368796041, 5e-07) - TolVt(-21.8687890149733, -31.531358508287, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, -34.6454824691733, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=257 - ID=564 - EdgeFaces(180, 181) - $begin 'EdTolVts' - TolVt(-25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - TolVt(-21.8687890149733, -31.531358508287, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.7763338904851, -36.1365792175828, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=258 - ID=565 - EdgeFaces(177, 181) - $begin 'EdTolVts' - TolVt(-25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - TolVt(-31.7571745257355, -38.2261584548917, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.9783473818595, -38.9629727830025, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=259 - ID=566 - EdgeFaces(175, 181) - $begin 'EdTolVts' - TolVt(-21.8687890149733, -31.531358508287, -40.07368796041, 5e-07) - TolVt(-27.942084774712, -29.0157170363003, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-26.1632576308361, -29.7525313644111, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=260 - ID=567 - EdgeFaces(181, 183) - $begin 'EdTolVts' - TolVt(-31.7571745257355, -38.2261584548917, -33.5, 5e-07) - TolVt(-27.942084774712, -29.0157170363003, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.8496296502238, -33.620937745596, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=261 - ID=568 - EdgeFaces(183, 185) - $begin 'EdTolVts' - TolVt(-31.7571745257355, -38.2261584548917, 33.5, 5e-07) - TolVt(-27.942084774712, -29.0157170363003, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.8496296502238, -33.620937745596, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=262 - ID=569 - EdgeFaces(177, 183) - $begin 'EdTolVts' - TolVt(-31.7571745257355, -38.2261584548917, -33.5, 5e-07) - TolVt(-31.7571745257355, -38.2261584548917, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-31.7571745257355, -38.2261584548917, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=263 - ID=570 - EdgeFaces(177, 182) - $begin 'EdTolVts' - TolVt(-25.6838787659968, -40.7417999268785, -33.5, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-25.6838787659968, -40.7417999268785, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=264 - ID=571 - EdgeFaces(182, 184) - $begin 'EdTolVts' - TolVt(-25.6838787659968, -40.7417999268785, 33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.7763338904851, -36.1365792175828, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=265 - ID=572 - EdgeFaces(175, 182) - $begin 'EdTolVts' - TolVt(-21.8687890149733, -31.5313585082871, -33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-21.8687890149733, -31.5313585082871, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=266 - ID=573 - EdgeFaces(175, 183) - $begin 'EdTolVts' - TolVt(-27.942084774712, -29.0157170363003, -33.5, 5e-07) - TolVt(-27.942084774712, -29.0157170363003, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-27.942084774712, -29.0157170363003, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=267 - ID=574 - EdgeFaces(174, 182) - $begin 'EdTolVts' - TolVt(-25.6838787659968, -40.7417999268785, -33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.7763338904851, -36.1365792175828, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=268 - ID=575 - EdgeFaces(185, 186) - $begin 'EdTolVts' - TolVt(-25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-23.7763338904851, -36.1365792175828, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=269 - ID=576 - EdgeFaces(177, 185) - $begin 'EdTolVts' - TolVt(-31.7571745257355, -38.2261584548917, 33.5, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-29.9783473818595, -38.9629727830025, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=270 - ID=577 - EdgeFaces(175, 185) - $begin 'EdTolVts' - TolVt(-27.942084774712, -29.0157170363003, 33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-26.1632576308361, -29.7525313644111, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=271 - ID=578 - EdgeFaces(177, 184) - $begin 'EdTolVts' - TolVt(-10.6475581634318, -46.9700478486509, 33.5, 5e-07) - TolVt(-25.6838787659968, -40.7417999268785, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.1657184647143, -43.8559238877647, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=272 - ID=579 - EdgeFaces(175, 184) - $begin 'EdTolVts' - TolVt(-6.8324684124084, -37.7596064300594, 33.5, 5e-07) - TolVt(-21.8687890149733, -31.5313585082871, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, -34.6454824691733, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=273 - ID=580 - EdgeFaces(177, 186) - $begin 'EdTolVts' - TolVt(-25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.1657184647143, -43.8559238877647, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=274 - ID=581 - EdgeFaces(175, 186) - $begin 'EdTolVts' - TolVt(-21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.3506287136909, -34.6454824691733, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=275 - ID=582 - EdgeFaces(186, 187) - $begin 'EdTolVts' - TolVt(-10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.74001328792012, -42.3648271393552, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=276 - ID=583 - EdgeFaces(177, 187) - $begin 'EdTolVts' - TolVt(-4.57426240369314, -49.4856893206376, 33.5, 5e-07) - TolVt(-10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.35308954756911, -48.7488749925268, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=277 - ID=584 - EdgeFaces(175, 187) - $begin 'EdTolVts' - TolVt(-0.759172652669698, -40.2752479020462, 33.5, 5e-07) - TolVt(-6.8324684124084, -37.7596064300594, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-2.53799979654566, -39.5384335739354, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=278 - ID=585 - EdgeFaces(248, 249) - $begin 'EdTolVts' - TolVt(31.7571745257355, -38.2261584548917, -33.5, 5e-07) - TolVt(27.942084774712, -29.0157170363003, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.8496296502238, -33.620937745596, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=279 - ID=586 - EdgeFaces(247, 248) - $begin 'EdTolVts' - TolVt(31.7571745257355, -38.2261584548917, 33.5, 5e-07) - TolVt(31.7571745257355, -38.2261584548917, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(31.7571745257355, -38.2261584548917, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=280 - ID=587 - EdgeFaces(246, 247) - $begin 'EdTolVts' - TolVt(25.6838787659968, -40.7417999268785, -33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(25.6838787659968, -40.7417999268785, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=281 - ID=588 - EdgeFaces(244, 246) - $begin 'EdTolVts' - TolVt(25.6838787659968, -40.7417999268785, -33.5, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.7763338904851, -36.1365792175828, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=282 - ID=589 - EdgeFaces(245, 246) - $begin 'EdTolVts' - TolVt(21.8687890149733, -31.5313585082871, 33.5, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(21.8687890149733, -31.5313585082871, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=283 - ID=590 - EdgeFaces(245, 248) - $begin 'EdTolVts' - TolVt(27.942084774712, -29.0157170363003, 33.5, 5e-07) - TolVt(27.942084774712, -29.0157170363003, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(27.942084774712, -29.0157170363003, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=284 - ID=591 - EdgeFaces(248, 257) - $begin 'EdTolVts' - TolVt(31.7571745257355, -38.2261584548917, 33.5, 5e-07) - TolVt(27.942084774712, -29.0157170363003, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.8496296502238, -33.620937745596, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=285 - ID=592 - EdgeFaces(246, 254) - $begin 'EdTolVts' - TolVt(21.8687890149733, -31.5313585082871, 33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.7763338904851, -36.1365792175828, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=286 - ID=593 - EdgeFaces(249, 250) - $begin 'EdTolVts' - TolVt(25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.7763338904851, -36.1365792175828, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=287 - ID=594 - EdgeFaces(247, 249) - $begin 'EdTolVts' - TolVt(31.7571745257355, -38.2261584548917, -33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.9783473818595, -38.9629727830025, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=288 - ID=595 - EdgeFaces(245, 249) - $begin 'EdTolVts' - TolVt(27.942084774712, -29.0157170363003, -33.5, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(26.1632576308361, -29.7525313644111, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=289 - ID=596 - EdgeFaces(244, 247) - $begin 'EdTolVts' - TolVt(10.6475581634318, -46.9700478486509, -33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(18.1657184647143, -43.8559238877647, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=290 - ID=597 - EdgeFaces(244, 245) - $begin 'EdTolVts' - TolVt(21.8687890149733, -31.5313585082871, -33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, -34.6454824691733, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=291 - ID=598 - EdgeFaces(247, 250) - $begin 'EdTolVts' - TolVt(25.6838787659968, -40.7417999268785, -40.07368796041, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(18.1657184647143, -43.8559238877647, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=292 - ID=599 - EdgeFaces(245, 250) - $begin 'EdTolVts' - TolVt(21.8687890149733, -31.5313585082871, -40.07368796041, 5e-07) - TolVt(6.83246841240838, -37.7596064300594, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, -34.6454824691733, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=293 - ID=600 - EdgeFaces(250, 251) - $begin 'EdTolVts' - TolVt(10.6475581634318, -46.9700478486509, -40.07368796041, 5e-07) - TolVt(6.83246841240838, -37.7596064300594, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.74001328792011, -42.3648271393551, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=294 - ID=601 - EdgeFaces(247, 251) - $begin 'EdTolVts' - TolVt(10.6475581634318, -46.9700478486509, -40.07368796041, 5e-07) - TolVt(4.57426240369313, -49.4856893206376, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(6.35308954756909, -48.7488749925268, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=295 - ID=602 - EdgeFaces(245, 251) - $begin 'EdTolVts' - TolVt(6.83246841240838, -37.7596064300594, -40.07368796041, 5e-07) - TolVt(0.759172652669683, -40.2752479020462, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.53799979654564, -39.5384335739354, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=296 - ID=603 - EdgeFaces(251, 253) - $begin 'EdTolVts' - TolVt(4.57426240369313, -49.4856893206376, -33.5, 5e-07) - TolVt(0.759172652669683, -40.2752479020462, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.66671752818141, -44.8804686113419, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=297 - ID=604 - EdgeFaces(253, 255) - $begin 'EdTolVts' - TolVt(4.57426240369313, -49.4856893206376, 33.5, 5e-07) - TolVt(0.759172652669683, -40.2752479020462, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.66671752818141, -44.8804686113419, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=298 - ID=605 - EdgeFaces(247, 253) - $begin 'EdTolVts' - TolVt(4.57426240369313, -49.4856893206376, -33.5, 5e-07) - TolVt(4.57426240369313, -49.4856893206376, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(4.57426240369313, -49.4856893206376, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=299 - ID=606 - EdgeFaces(247, 252) - $begin 'EdTolVts' - TolVt(10.6475581634318, -46.9700478486509, -33.5, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(10.6475581634318, -46.9700478486509, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=300 - ID=607 - EdgeFaces(252, 254) - $begin 'EdTolVts' - TolVt(10.6475581634318, -46.9700478486509, 33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.74001328792011, -42.3648271393552, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=301 - ID=608 - EdgeFaces(245, 252) - $begin 'EdTolVts' - TolVt(6.83246841240839, -37.7596064300594, -33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(6.83246841240839, -37.7596064300594, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=302 - ID=609 - EdgeFaces(245, 253) - $begin 'EdTolVts' - TolVt(0.759172652669683, -40.2752479020462, -33.5, 5e-07) - TolVt(0.759172652669683, -40.2752479020462, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0.759172652669683, -40.2752479020462, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=303 - ID=610 - EdgeFaces(244, 252) - $begin 'EdTolVts' - TolVt(10.6475581634318, -46.9700478486509, -33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.74001328792011, -42.3648271393552, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=304 - ID=611 - EdgeFaces(255, 256) - $begin 'EdTolVts' - TolVt(10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.74001328792011, -42.3648271393551, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=305 - ID=612 - EdgeFaces(247, 255) - $begin 'EdTolVts' - TolVt(4.57426240369313, -49.4856893206376, 33.5, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(6.3530895475691, -48.7488749925268, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=306 - ID=613 - EdgeFaces(245, 255) - $begin 'EdTolVts' - TolVt(0.759172652669683, -40.2752479020462, 33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.53799979654564, -39.5384335739354, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=307 - ID=614 - EdgeFaces(247, 254) - $begin 'EdTolVts' - TolVt(25.6838787659968, -40.7417999268785, 33.5, 5e-07) - TolVt(10.6475581634318, -46.9700478486509, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(18.1657184647143, -43.8559238877647, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=308 - ID=615 - EdgeFaces(245, 254) - $begin 'EdTolVts' - TolVt(21.8687890149733, -31.5313585082871, 33.5, 5e-07) - TolVt(6.83246841240839, -37.7596064300594, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, -34.6454824691733, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=309 - ID=616 - EdgeFaces(247, 256) - $begin 'EdTolVts' - TolVt(10.6475581634318, -46.9700478486509, 40.07368796041, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(18.1657184647143, -43.8559238877647, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=310 - ID=617 - EdgeFaces(245, 256) - $begin 'EdTolVts' - TolVt(6.83246841240839, -37.7596064300594, 40.07368796041, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.3506287136909, -34.6454824691733, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=311 - ID=618 - EdgeFaces(256, 257) - $begin 'EdTolVts' - TolVt(25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(23.7763338904851, -36.1365792175828, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=312 - ID=619 - EdgeFaces(247, 257) - $begin 'EdTolVts' - TolVt(31.7571745257355, -38.2261584548917, 33.5, 5e-07) - TolVt(25.6838787659968, -40.7417999268785, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.9783473818595, -38.9629727830025, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=313 - ID=620 - EdgeFaces(245, 257) - $begin 'EdTolVts' - TolVt(27.942084774712, -29.0157170363003, 33.5, 5e-07) - TolVt(21.8687890149733, -31.5313585082871, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(26.1632576308361, -29.7525313644111, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=314 - ID=621 - EdgeFaces(164, 165) - $begin 'EdTolVts' - TolVt(49.4856893206376, -4.57426240369315, -33.5, 5e-07) - TolVt(40.2752479020462, -0.759172652669701, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(44.8804686113419, -2.66671752818143, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=315 - ID=622 - EdgeFaces(163, 164) - $begin 'EdTolVts' - TolVt(49.4856893206376, -4.57426240369315, 33.5, 5e-07) - TolVt(49.4856893206376, -4.57426240369315, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(49.4856893206376, -4.57426240369315, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=316 - ID=623 - EdgeFaces(162, 163) - $begin 'EdTolVts' - TolVt(46.9700478486509, -10.6475581634319, -33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634318, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(46.9700478486509, -10.6475581634319, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=317 - ID=624 - EdgeFaces(160, 162) - $begin 'EdTolVts' - TolVt(46.9700478486509, -10.6475581634319, -33.5, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(42.3648271393551, -8.74001328792013, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=318 - ID=625 - EdgeFaces(161, 162) - $begin 'EdTolVts' - TolVt(37.7596064300594, -6.8324684124084, 33.5, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(37.7596064300594, -6.8324684124084, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=319 - ID=626 - EdgeFaces(161, 164) - $begin 'EdTolVts' - TolVt(40.2752479020462, -0.759172652669701, 33.5, 5e-07) - TolVt(40.2752479020462, -0.759172652669701, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(40.2752479020462, -0.759172652669705, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=320 - ID=627 - EdgeFaces(164, 173) - $begin 'EdTolVts' - TolVt(49.4856893206376, -4.57426240369315, 33.5, 5e-07) - TolVt(40.2752479020462, -0.759172652669701, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(44.8804686113419, -2.66671752818142, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=321 - ID=628 - EdgeFaces(162, 170) - $begin 'EdTolVts' - TolVt(37.7596064300594, -6.8324684124084, 33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634318, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(42.3648271393552, -8.74001328792013, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=322 - ID=629 - EdgeFaces(165, 166) - $begin 'EdTolVts' - TolVt(46.9700478486509, -10.6475581634319, -40.07368796041, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(42.3648271393551, -8.74001328792013, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=323 - ID=630 - EdgeFaces(163, 165) - $begin 'EdTolVts' - TolVt(49.4856893206376, -4.57426240369315, -33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(48.7488749925268, -6.35308954756911, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=324 - ID=631 - EdgeFaces(161, 165) - $begin 'EdTolVts' - TolVt(40.2752479020462, -0.759172652669701, -33.5, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(39.5384335739354, -2.53799979654567, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=325 - ID=632 - EdgeFaces(160, 163) - $begin 'EdTolVts' - TolVt(40.7417999268785, -25.6838787659968, -33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.8559238877647, -18.1657184647143, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=326 - ID=633 - EdgeFaces(160, 161) - $begin 'EdTolVts' - TolVt(37.7596064300594, -6.8324684124084, -33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691733, -14.3506287136909, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=327 - ID=634 - EdgeFaces(163, 166) - $begin 'EdTolVts' - TolVt(46.9700478486509, -10.6475581634319, -40.07368796041, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.8559238877647, -18.1657184647143, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=328 - ID=635 - EdgeFaces(161, 166) - $begin 'EdTolVts' - TolVt(37.7596064300594, -6.8324684124084, -40.07368796041, 5e-07) - TolVt(31.531358508287, -21.8687890149733, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691732, -14.3506287136909, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=329 - ID=636 - EdgeFaces(166, 167) - $begin 'EdTolVts' - TolVt(40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - TolVt(31.531358508287, -21.8687890149733, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.1365792175828, -23.7763338904851, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=330 - ID=637 - EdgeFaces(163, 167) - $begin 'EdTolVts' - TolVt(40.7417999268785, -25.6838787659968, -40.07368796041, 5e-07) - TolVt(38.2261584548917, -31.7571745257355, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.9629727830025, -29.9783473818595, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=331 - ID=638 - EdgeFaces(161, 167) - $begin 'EdTolVts' - TolVt(31.531358508287, -21.8687890149733, -40.07368796041, 5e-07) - TolVt(29.0157170363003, -27.942084774712, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.7525313644111, -26.1632576308361, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=332 - ID=639 - EdgeFaces(167, 169) - $begin 'EdTolVts' - TolVt(38.2261584548917, -31.7571745257355, -33.5, 5e-07) - TolVt(29.0157170363003, -27.942084774712, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(33.620937745596, -29.8496296502238, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=333 - ID=640 - EdgeFaces(169, 171) - $begin 'EdTolVts' - TolVt(38.2261584548917, -31.7571745257355, 33.5, 5e-07) - TolVt(29.0157170363003, -27.942084774712, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(33.620937745596, -29.8496296502238, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=334 - ID=641 - EdgeFaces(163, 169) - $begin 'EdTolVts' - TolVt(38.2261584548917, -31.7571745257355, -33.5, 5e-07) - TolVt(38.2261584548917, -31.7571745257355, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.2261584548917, -31.7571745257355, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=335 - ID=642 - EdgeFaces(163, 168) - $begin 'EdTolVts' - TolVt(40.7417999268785, -25.6838787659968, -33.5, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(40.7417999268785, -25.6838787659968, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=336 - ID=643 - EdgeFaces(168, 170) - $begin 'EdTolVts' - TolVt(40.7417999268785, -25.6838787659968, 33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.1365792175828, -23.7763338904851, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=337 - ID=644 - EdgeFaces(161, 168) - $begin 'EdTolVts' - TolVt(31.531358508287, -21.8687890149733, -33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(31.531358508287, -21.8687890149733, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=338 - ID=645 - EdgeFaces(161, 169) - $begin 'EdTolVts' - TolVt(29.0157170363003, -27.942084774712, -33.5, 5e-07) - TolVt(29.0157170363003, -27.942084774712, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.0157170363003, -27.942084774712, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=339 - ID=646 - EdgeFaces(160, 168) - $begin 'EdTolVts' - TolVt(40.7417999268785, -25.6838787659968, -33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.1365792175828, -23.7763338904851, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=340 - ID=647 - EdgeFaces(171, 172) - $begin 'EdTolVts' - TolVt(40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - TolVt(31.531358508287, -21.8687890149733, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.1365792175828, -23.7763338904851, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=341 - ID=648 - EdgeFaces(163, 171) - $begin 'EdTolVts' - TolVt(38.2261584548917, -31.7571745257355, 33.5, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.9629727830025, -29.9783473818595, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=342 - ID=649 - EdgeFaces(161, 171) - $begin 'EdTolVts' - TolVt(29.0157170363003, -27.942084774712, 33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.7525313644111, -26.1632576308361, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=343 - ID=650 - EdgeFaces(163, 170) - $begin 'EdTolVts' - TolVt(46.9700478486509, -10.6475581634318, 33.5, 5e-07) - TolVt(40.7417999268785, -25.6838787659968, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.8559238877647, -18.1657184647143, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=344 - ID=651 - EdgeFaces(161, 170) - $begin 'EdTolVts' - TolVt(37.7596064300594, -6.8324684124084, 33.5, 5e-07) - TolVt(31.531358508287, -21.8687890149733, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691732, -14.3506287136909, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=345 - ID=652 - EdgeFaces(163, 172) - $begin 'EdTolVts' - TolVt(40.7417999268785, -25.6838787659968, 40.07368796041, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.8559238877647, -18.1657184647143, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=346 - ID=653 - EdgeFaces(161, 172) - $begin 'EdTolVts' - TolVt(31.531358508287, -21.8687890149733, 40.07368796041, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691733, -14.3506287136909, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=347 - ID=654 - EdgeFaces(172, 173) - $begin 'EdTolVts' - TolVt(46.9700478486509, -10.6475581634319, 40.07368796041, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(42.3648271393551, -8.74001328792013, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=348 - ID=655 - EdgeFaces(163, 173) - $begin 'EdTolVts' - TolVt(49.4856893206376, -4.57426240369315, 33.5, 5e-07) - TolVt(46.9700478486509, -10.6475581634319, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(48.7488749925268, -6.35308954756911, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=349 - ID=656 - EdgeFaces(161, 173) - $begin 'EdTolVts' - TolVt(40.2752479020462, -0.759172652669701, 33.5, 5e-07) - TolVt(37.7596064300594, -6.8324684124084, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(39.5384335739354, -2.53799979654566, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=350 - ID=657 - EdgeFaces(262, 263) - $begin 'EdTolVts' - TolVt(38.2261584548917, 31.7571745257355, -33.5, 5e-07) - TolVt(29.0157170363003, 27.942084774712, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(33.620937745596, 29.8496296502238, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=351 - ID=658 - EdgeFaces(261, 262) - $begin 'EdTolVts' - TolVt(38.2261584548917, 31.7571745257355, 33.5, 5e-07) - TolVt(38.2261584548917, 31.7571745257355, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.2261584548917, 31.7571745257355, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=352 - ID=659 - EdgeFaces(260, 261) - $begin 'EdTolVts' - TolVt(40.7417999268785, 25.6838787659968, -33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(40.7417999268785, 25.6838787659968, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=353 - ID=660 - EdgeFaces(258, 260) - $begin 'EdTolVts' - TolVt(40.7417999268785, 25.6838787659968, -33.5, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.1365792175828, 23.7763338904851, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=354 - ID=661 - EdgeFaces(259, 260) - $begin 'EdTolVts' - TolVt(31.5313585082871, 21.8687890149733, 33.5, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(31.5313585082871, 21.8687890149733, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=355 - ID=662 - EdgeFaces(259, 262) - $begin 'EdTolVts' - TolVt(29.0157170363003, 27.942084774712, 33.5, 5e-07) - TolVt(29.0157170363003, 27.942084774712, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.0157170363003, 27.942084774712, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=356 - ID=663 - EdgeFaces(262, 271) - $begin 'EdTolVts' - TolVt(38.2261584548917, 31.7571745257355, 33.5, 5e-07) - TolVt(29.0157170363003, 27.942084774712, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(33.620937745596, 29.8496296502238, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=357 - ID=664 - EdgeFaces(260, 268) - $begin 'EdTolVts' - TolVt(31.5313585082871, 21.8687890149733, 33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.1365792175828, 23.7763338904851, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=358 - ID=665 - EdgeFaces(263, 264) - $begin 'EdTolVts' - TolVt(40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.1365792175828, 23.7763338904851, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=359 - ID=666 - EdgeFaces(261, 263) - $begin 'EdTolVts' - TolVt(38.2261584548917, 31.7571745257355, -33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.9629727830025, 29.9783473818595, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=360 - ID=667 - EdgeFaces(259, 263) - $begin 'EdTolVts' - TolVt(29.0157170363003, 27.942084774712, -33.5, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.7525313644111, 26.1632576308361, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=361 - ID=668 - EdgeFaces(258, 261) - $begin 'EdTolVts' - TolVt(46.9700478486509, 10.6475581634318, -33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.8559238877647, 18.1657184647143, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=362 - ID=669 - EdgeFaces(258, 259) - $begin 'EdTolVts' - TolVt(31.5313585082871, 21.8687890149733, -33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691733, 14.3506287136909, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=363 - ID=670 - EdgeFaces(261, 264) - $begin 'EdTolVts' - TolVt(40.7417999268785, 25.6838787659968, -40.07368796041, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.8559238877647, 18.1657184647143, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=364 - ID=671 - EdgeFaces(259, 264) - $begin 'EdTolVts' - TolVt(31.5313585082871, 21.8687890149733, -40.07368796041, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691733, 14.3506287136909, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=365 - ID=672 - EdgeFaces(264, 265) - $begin 'EdTolVts' - TolVt(46.9700478486509, 10.6475581634318, -40.07368796041, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, -40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(42.3648271393552, 8.74001328792011, -40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=366 - ID=673 - EdgeFaces(261, 265) - $begin 'EdTolVts' - TolVt(46.9700478486509, 10.6475581634318, -40.07368796041, 5e-07) - TolVt(49.4856893206376, 4.57426240369314, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(48.7488749925268, 6.3530895475691, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=367 - ID=674 - EdgeFaces(259, 265) - $begin 'EdTolVts' - TolVt(37.7596064300594, 6.83246841240839, -40.07368796041, 5e-07) - TolVt(40.2752479020462, 0.75917265266969, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(39.5384335739354, 2.53799979654565, -38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=368 - ID=675 - EdgeFaces(265, 267) - $begin 'EdTolVts' - TolVt(49.4856893206376, 4.57426240369314, -33.5, 5e-07) - TolVt(40.2752479020462, 0.75917265266969, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(44.8804686113419, 2.66671752818142, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=369 - ID=676 - EdgeFaces(267, 269) - $begin 'EdTolVts' - TolVt(49.4856893206376, 4.57426240369314, 33.5, 5e-07) - TolVt(40.2752479020462, 0.75917265266969, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(44.8804686113419, 2.66671752818142, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=370 - ID=677 - EdgeFaces(261, 267) - $begin 'EdTolVts' - TolVt(49.4856893206376, 4.57426240369314, -33.5, 5e-07) - TolVt(49.4856893206376, 4.57426240369314, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(49.4856893206376, 4.57426240369314, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=371 - ID=678 - EdgeFaces(261, 266) - $begin 'EdTolVts' - TolVt(46.9700478486509, 10.6475581634318, -33.5, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(46.9700478486509, 10.6475581634318, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=372 - ID=679 - EdgeFaces(266, 268) - $begin 'EdTolVts' - TolVt(46.9700478486509, 10.6475581634318, 33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(42.3648271393552, 8.74001328792012, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=373 - ID=680 - EdgeFaces(259, 266) - $begin 'EdTolVts' - TolVt(37.7596064300594, 6.83246841240839, -33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(37.7596064300594, 6.83246841240839, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=374 - ID=681 - EdgeFaces(259, 267) - $begin 'EdTolVts' - TolVt(40.2752479020462, 0.75917265266969, -33.5, 5e-07) - TolVt(40.2752479020462, 0.75917265266969, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(40.2752479020462, 0.75917265266969, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=375 - ID=682 - EdgeFaces(258, 266) - $begin 'EdTolVts' - TolVt(46.9700478486509, 10.6475581634318, -33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, -33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(42.3648271393552, 8.74001328792012, -33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=376 - ID=683 - EdgeFaces(269, 270) - $begin 'EdTolVts' - TolVt(46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(42.3648271393552, 8.74001328792012, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=377 - ID=684 - EdgeFaces(261, 269) - $begin 'EdTolVts' - TolVt(49.4856893206376, 4.57426240369314, 33.5, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(48.7488749925268, 6.3530895475691, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=378 - ID=685 - EdgeFaces(259, 269) - $begin 'EdTolVts' - TolVt(40.2752479020462, 0.75917265266969, 33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(39.5384335739354, 2.53799979654565, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=379 - ID=686 - EdgeFaces(261, 268) - $begin 'EdTolVts' - TolVt(40.7417999268785, 25.6838787659968, 33.5, 5e-07) - TolVt(46.9700478486509, 10.6475581634318, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.8559238877647, 18.1657184647143, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=380 - ID=687 - EdgeFaces(259, 268) - $begin 'EdTolVts' - TolVt(31.5313585082871, 21.8687890149733, 33.5, 5e-07) - TolVt(37.7596064300594, 6.83246841240839, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691733, 14.3506287136909, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=381 - ID=688 - EdgeFaces(261, 270) - $begin 'EdTolVts' - TolVt(46.9700478486509, 10.6475581634318, 40.07368796041, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.8559238877647, 18.1657184647143, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=382 - ID=689 - EdgeFaces(259, 270) - $begin 'EdTolVts' - TolVt(37.7596064300594, 6.83246841240839, 40.07368796041, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(34.6454824691733, 14.3506287136909, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=383 - ID=690 - EdgeFaces(270, 271) - $begin 'EdTolVts' - TolVt(40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.1365792175828, 23.7763338904851, 40.07368796041) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=384 - ID=691 - EdgeFaces(261, 271) - $begin 'EdTolVts' - TolVt(38.2261584548917, 31.7571745257355, 33.5, 5e-07) - TolVt(40.7417999268785, 25.6838787659968, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(38.9629727830025, 29.9783473818595, 38.1482993342103) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=385 - ID=692 - EdgeFaces(259, 271) - $begin 'EdTolVts' - TolVt(29.0157170363003, 27.942084774712, 33.5, 5e-07) - TolVt(31.5313585082871, 21.8687890149733, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(29.7525313644111, 26.1632576308361, 38.1482993342103) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=693 - VtPos(43.8308824796691, 26.0740050827148, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=694 - VtPos(26.0740050827148, -43.8308824796691, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=695 - VtPos(-12.5560084200845, -49.4302200334448, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=696 - VtPos(-43.8308824796691, -26.0740050827148, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=697 - VtPos(-49.4302200334448, 12.5560084200845, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=698 - VtPos(-26.0740050827148, 43.8308824796691, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=699 - VtPos(12.5560084200845, 49.4302200334448, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=700 - VtPos(49.4302200334448, -12.5560084200845, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=8 - ID=701 - VtPos(7.31588707560481, 36.7794480151211, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=9 - ID=702 - VtPos(-7.31588707560481, 36.7794480151211, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=10 - ID=703 - VtPos(-12.5560084200845, 49.4302200334448, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=11 - ID=704 - VtPos(12.5560084200845, 49.4302200334448, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=12 - ID=705 - VtPos(7.31588707560481, 36.7794480151211, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=13 - ID=706 - VtPos(-7.31588707560481, 36.7794480151211, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=14 - ID=707 - VtPos(-12.5560084200845, 49.4302200334448, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=15 - ID=708 - VtPos(-20.8338837382351, 31.1801104613454, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=16 - ID=709 - VtPos(-31.1801104613454, 20.8338837382351, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=17 - ID=710 - VtPos(-43.8308824796691, 26.0740050827148, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=18 - ID=711 - VtPos(-26.0740050827148, 43.8308824796691, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=19 - ID=712 - VtPos(-20.8338837382351, 31.1801104613454, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=20 - ID=713 - VtPos(-31.1801104613454, 20.8338837382351, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=21 - ID=714 - VtPos(-43.8308824796691, 26.0740050827148, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=22 - ID=715 - VtPos(-36.7794480151211, 7.31588707560481, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=23 - ID=716 - VtPos(-36.7794480151211, -7.31588707560481, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=24 - ID=717 - VtPos(-49.4302200334448, -12.5560084200845, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=25 - ID=718 - VtPos(-49.4302200334448, 12.5560084200845, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=26 - ID=719 - VtPos(-36.7794480151211, 7.31588707560481, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=27 - ID=720 - VtPos(-36.7794480151211, -7.31588707560481, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=28 - ID=721 - VtPos(-49.4302200334448, -12.5560084200845, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=29 - ID=722 - VtPos(-31.1801104613454, -20.8338837382351, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=30 - ID=723 - VtPos(-20.8338837382351, -31.1801104613454, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=31 - ID=724 - VtPos(-26.0740050827148, -43.8308824796691, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=32 - ID=725 - VtPos(-43.8308824796691, -26.0740050827148, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=33 - ID=726 - VtPos(-31.1801104613454, -20.8338837382351, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=34 - ID=727 - VtPos(-20.8338837382351, -31.1801104613454, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=35 - ID=728 - VtPos(-26.0740050827148, -43.8308824796691, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=36 - ID=729 - VtPos(-7.31588707560482, -36.7794480151211, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=37 - ID=730 - VtPos(7.3158870756048, -36.7794480151211, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=38 - ID=731 - VtPos(12.5560084200845, -49.4302200334448, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=39 - ID=732 - VtPos(-12.5560084200845, -49.4302200334448, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=40 - ID=733 - VtPos(-7.31588707560482, -36.7794480151211, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=41 - ID=734 - VtPos(7.3158870756048, -36.7794480151211, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=42 - ID=735 - VtPos(12.5560084200845, -49.4302200334448, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=43 - ID=736 - VtPos(20.8338837382351, -31.1801104613454, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=44 - ID=737 - VtPos(31.1801104613454, -20.8338837382351, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=45 - ID=738 - VtPos(43.8308824796691, -26.0740050827148, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=46 - ID=739 - VtPos(26.0740050827148, -43.8308824796691, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=47 - ID=740 - VtPos(20.8338837382351, -31.1801104613454, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=48 - ID=741 - VtPos(31.1801104613454, -20.8338837382351, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=49 - ID=742 - VtPos(43.8308824796691, -26.0740050827148, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=50 - ID=743 - VtPos(36.7794480151211, -7.31588707560481, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=51 - ID=744 - VtPos(36.7794480151211, 7.3158870756048, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=52 - ID=745 - VtPos(49.4302200334448, 12.5560084200845, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=53 - ID=746 - VtPos(49.4302200334448, -12.5560084200845, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=54 - ID=747 - VtPos(36.7794480151211, -7.31588707560481, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=55 - ID=748 - VtPos(36.7794480151211, 7.3158870756048, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=56 - ID=749 - VtPos(49.4302200334448, 12.5560084200845, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=57 - ID=750 - VtPos(31.1801104613454, 20.8338837382351, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=58 - ID=751 - VtPos(20.8338837382351, 31.1801104613454, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=59 - ID=752 - VtPos(26.0740050827148, 43.8308824796691, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=60 - ID=753 - VtPos(43.8308824796691, 26.0740050827148, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=61 - ID=754 - VtPos(31.1801104613454, 20.8338837382351, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=62 - ID=755 - VtPos(20.8338837382351, 31.1801104613454, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=63 - ID=756 - VtPos(26.0740050827148, 43.8308824796691, -32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=64 - ID=757 - VtPos(25.6838787659968, 40.7417999268785, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=65 - ID=758 - VtPos(10.6475581634318, 46.9700478486509, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=66 - ID=759 - VtPos(4.57426240369314, 49.4856893206376, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=67 - ID=760 - VtPos(6.83246841240839, 37.7596064300594, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=68 - ID=761 - VtPos(0.75917265266969, 40.2752479020462, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=69 - ID=762 - VtPos(6.83246841240839, 37.7596064300594, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=70 - ID=763 - VtPos(4.57426240369314, 49.4856893206376, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=71 - ID=764 - VtPos(0.75917265266969, 40.2752479020462, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=72 - ID=765 - VtPos(10.6475581634318, 46.9700478486509, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=73 - ID=766 - VtPos(6.8324684124084, 37.7596064300594, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=74 - ID=767 - VtPos(25.6838787659968, 40.7417999268785, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=75 - ID=768 - VtPos(21.8687890149733, 31.5313585082871, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=76 - ID=769 - VtPos(10.6475581634318, 46.9700478486509, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=77 - ID=770 - VtPos(25.6838787659968, 40.7417999268785, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=78 - ID=771 - VtPos(31.7571745257355, 38.2261584548917, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=79 - ID=772 - VtPos(21.8687890149733, 31.5313585082871, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=80 - ID=773 - VtPos(27.942084774712, 29.0157170363003, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=81 - ID=774 - VtPos(21.8687890149733, 31.5313585082871, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=82 - ID=775 - VtPos(31.7571745257355, 38.2261584548917, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=83 - ID=776 - VtPos(27.942084774712, 29.0157170363003, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=84 - ID=777 - VtPos(25.6838787659968, 40.7417999268785, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=85 - ID=778 - VtPos(21.8687890149733, 31.5313585082871, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=86 - ID=779 - VtPos(10.6475581634318, 46.9700478486509, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=87 - ID=780 - VtPos(6.83246841240839, 37.7596064300594, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=88 - ID=781 - VtPos(-10.6475581634318, 46.9700478486509, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=89 - ID=782 - VtPos(-25.6838787659968, 40.7417999268785, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=90 - ID=783 - VtPos(-31.7571745257355, 38.2261584548917, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=91 - ID=784 - VtPos(-21.8687890149733, 31.5313585082871, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=92 - ID=785 - VtPos(-27.942084774712, 29.0157170363003, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=93 - ID=786 - VtPos(-21.8687890149733, 31.5313585082871, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=94 - ID=787 - VtPos(-31.7571745257355, 38.2261584548917, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=95 - ID=788 - VtPos(-27.942084774712, 29.0157170363003, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=96 - ID=789 - VtPos(-25.6838787659968, 40.7417999268785, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=97 - ID=790 - VtPos(-21.8687890149733, 31.5313585082871, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=98 - ID=791 - VtPos(-10.6475581634318, 46.9700478486509, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=99 - ID=792 - VtPos(-6.83246841240839, 37.7596064300594, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=100 - ID=793 - VtPos(-25.6838787659968, 40.7417999268785, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=101 - ID=794 - VtPos(-10.6475581634318, 46.9700478486509, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=102 - ID=795 - VtPos(-4.57426240369314, 49.4856893206376, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=103 - ID=796 - VtPos(-6.83246841240839, 37.7596064300594, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=104 - ID=797 - VtPos(-0.759172652669688, 40.2752479020462, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=105 - ID=798 - VtPos(-6.83246841240839, 37.7596064300594, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=106 - ID=799 - VtPos(-4.57426240369314, 49.4856893206376, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=107 - ID=800 - VtPos(-0.759172652669688, 40.2752479020462, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=108 - ID=801 - VtPos(-10.6475581634318, 46.9700478486509, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=109 - ID=802 - VtPos(-6.83246841240839, 37.7596064300594, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=110 - ID=803 - VtPos(-25.6838787659968, 40.7417999268785, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=111 - ID=804 - VtPos(-21.8687890149733, 31.5313585082871, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=112 - ID=805 - VtPos(-40.7417999268785, 25.6838787659968, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=113 - ID=806 - VtPos(-46.9700478486509, 10.6475581634318, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=114 - ID=807 - VtPos(-49.4856893206376, 4.57426240369314, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=115 - ID=808 - VtPos(-37.7596064300594, 6.83246841240839, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=116 - ID=809 - VtPos(-40.2752479020462, 0.759172652669693, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=117 - ID=810 - VtPos(-37.7596064300594, 6.8324684124084, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=118 - ID=811 - VtPos(-49.4856893206376, 4.57426240369315, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=119 - ID=812 - VtPos(-40.2752479020462, 0.759172652669693, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=120 - ID=813 - VtPos(-46.9700478486509, 10.6475581634319, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=121 - ID=814 - VtPos(-37.7596064300594, 6.8324684124084, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=122 - ID=815 - VtPos(-40.7417999268785, 25.6838787659968, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=123 - ID=816 - VtPos(-31.531358508287, 21.8687890149733, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=124 - ID=817 - VtPos(-46.9700478486509, 10.6475581634318, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=125 - ID=818 - VtPos(-40.7417999268785, 25.6838787659968, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=126 - ID=819 - VtPos(-38.2261584548917, 31.7571745257355, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=127 - ID=820 - VtPos(-31.5313585082871, 21.8687890149733, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=128 - ID=821 - VtPos(-29.0157170363003, 27.942084774712, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=129 - ID=822 - VtPos(-31.5313585082871, 21.8687890149733, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=130 - ID=823 - VtPos(-38.2261584548917, 31.7571745257355, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=131 - ID=824 - VtPos(-29.0157170363003, 27.942084774712, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=132 - ID=825 - VtPos(-40.7417999268785, 25.6838787659968, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=133 - ID=826 - VtPos(-31.5313585082871, 21.8687890149733, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=134 - ID=827 - VtPos(-46.9700478486509, 10.6475581634318, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=135 - ID=828 - VtPos(-37.7596064300594, 6.83246841240839, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=136 - ID=829 - VtPos(-46.9700478486509, -10.6475581634318, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=137 - ID=830 - VtPos(-40.7417999268785, -25.6838787659968, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=138 - ID=831 - VtPos(-38.2261584548917, -31.7571745257355, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=139 - ID=832 - VtPos(-31.5313585082871, -21.8687890149733, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=140 - ID=833 - VtPos(-29.0157170363003, -27.942084774712, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=141 - ID=834 - VtPos(-31.5313585082871, -21.8687890149733, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=142 - ID=835 - VtPos(-38.2261584548917, -31.7571745257355, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=143 - ID=836 - VtPos(-29.0157170363003, -27.942084774712, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=144 - ID=837 - VtPos(-40.7417999268785, -25.6838787659968, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=145 - ID=838 - VtPos(-31.5313585082871, -21.8687890149733, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=146 - ID=839 - VtPos(-46.9700478486509, -10.6475581634318, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=147 - ID=840 - VtPos(-37.7596064300594, -6.83246841240839, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=148 - ID=841 - VtPos(-40.7417999268785, -25.6838787659968, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=149 - ID=842 - VtPos(-46.9700478486509, -10.6475581634318, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=150 - ID=843 - VtPos(-49.4856893206376, -4.57426240369314, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=151 - ID=844 - VtPos(-37.7596064300594, -6.83246841240839, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=152 - ID=845 - VtPos(-40.2752479020462, -0.759172652669685, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=153 - ID=846 - VtPos(-37.7596064300594, -6.83246841240839, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=154 - ID=847 - VtPos(-49.4856893206376, -4.57426240369314, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=155 - ID=848 - VtPos(-40.2752479020462, -0.759172652669685, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=156 - ID=849 - VtPos(-46.9700478486509, -10.6475581634318, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=157 - ID=850 - VtPos(-37.7596064300594, -6.83246841240839, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=158 - ID=851 - VtPos(-40.7417999268785, -25.6838787659968, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=159 - ID=852 - VtPos(-31.5313585082871, -21.8687890149733, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=160 - ID=853 - VtPos(-25.6838787659968, -40.7417999268785, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=161 - ID=854 - VtPos(-10.6475581634318, -46.9700478486509, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=162 - ID=855 - VtPos(-4.57426240369314, -49.4856893206376, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=163 - ID=856 - VtPos(-6.8324684124084, -37.7596064300594, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=164 - ID=857 - VtPos(-0.759172652669698, -40.2752479020462, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=165 - ID=858 - VtPos(-6.8324684124084, -37.7596064300594, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=166 - ID=859 - VtPos(-4.57426240369315, -49.4856893206376, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=167 - ID=860 - VtPos(-0.759172652669698, -40.2752479020462, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=168 - ID=861 - VtPos(-10.6475581634319, -46.9700478486509, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=169 - ID=862 - VtPos(-6.8324684124084, -37.7596064300594, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=170 - ID=863 - VtPos(-25.6838787659968, -40.7417999268785, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=171 - ID=864 - VtPos(-21.8687890149733, -31.531358508287, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=172 - ID=865 - VtPos(-10.6475581634318, -46.9700478486509, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=173 - ID=866 - VtPos(-25.6838787659968, -40.7417999268785, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=174 - ID=867 - VtPos(-31.7571745257355, -38.2261584548917, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=175 - ID=868 - VtPos(-21.8687890149733, -31.5313585082871, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=176 - ID=869 - VtPos(-27.942084774712, -29.0157170363003, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=177 - ID=870 - VtPos(-21.8687890149733, -31.5313585082871, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=178 - ID=871 - VtPos(-31.7571745257355, -38.2261584548917, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=179 - ID=872 - VtPos(-27.942084774712, -29.0157170363003, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=180 - ID=873 - VtPos(-25.6838787659968, -40.7417999268785, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=181 - ID=874 - VtPos(-21.8687890149733, -31.5313585082871, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=182 - ID=875 - VtPos(-10.6475581634318, -46.9700478486509, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=183 - ID=876 - VtPos(-6.8324684124084, -37.7596064300594, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=184 - ID=877 - VtPos(10.6475581634318, -46.9700478486509, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=185 - ID=878 - VtPos(25.6838787659968, -40.7417999268785, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=186 - ID=879 - VtPos(31.7571745257355, -38.2261584548917, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=187 - ID=880 - VtPos(21.8687890149733, -31.5313585082871, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=188 - ID=881 - VtPos(27.942084774712, -29.0157170363003, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=189 - ID=882 - VtPos(21.8687890149733, -31.5313585082871, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=190 - ID=883 - VtPos(31.7571745257355, -38.2261584548917, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=191 - ID=884 - VtPos(27.942084774712, -29.0157170363003, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=192 - ID=885 - VtPos(25.6838787659968, -40.7417999268785, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=193 - ID=886 - VtPos(21.8687890149733, -31.5313585082871, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=194 - ID=887 - VtPos(10.6475581634318, -46.9700478486509, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=195 - ID=888 - VtPos(6.83246841240838, -37.7596064300594, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=196 - ID=889 - VtPos(25.6838787659968, -40.7417999268785, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=197 - ID=890 - VtPos(10.6475581634318, -46.9700478486509, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=198 - ID=891 - VtPos(4.57426240369313, -49.4856893206376, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=199 - ID=892 - VtPos(6.83246841240839, -37.7596064300594, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=200 - ID=893 - VtPos(0.759172652669683, -40.2752479020462, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=201 - ID=894 - VtPos(6.83246841240839, -37.7596064300594, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=202 - ID=895 - VtPos(4.57426240369313, -49.4856893206376, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=203 - ID=896 - VtPos(0.759172652669683, -40.2752479020462, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=204 - ID=897 - VtPos(10.6475581634318, -46.9700478486509, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=205 - ID=898 - VtPos(6.83246841240839, -37.7596064300594, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=206 - ID=899 - VtPos(25.6838787659968, -40.7417999268785, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=207 - ID=900 - VtPos(21.8687890149733, -31.5313585082871, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=208 - ID=901 - VtPos(40.7417999268785, -25.6838787659968, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=209 - ID=902 - VtPos(46.9700478486509, -10.6475581634319, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=210 - ID=903 - VtPos(49.4856893206376, -4.57426240369315, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=211 - ID=904 - VtPos(37.7596064300594, -6.8324684124084, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=212 - ID=905 - VtPos(40.2752479020462, -0.759172652669701, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=213 - ID=906 - VtPos(37.7596064300594, -6.8324684124084, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=214 - ID=907 - VtPos(49.4856893206376, -4.57426240369315, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=215 - ID=908 - VtPos(40.2752479020462, -0.759172652669701, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=216 - ID=909 - VtPos(46.9700478486509, -10.6475581634319, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=217 - ID=910 - VtPos(37.7596064300594, -6.8324684124084, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=218 - ID=911 - VtPos(40.7417999268785, -25.6838787659968, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=219 - ID=912 - VtPos(31.531358508287, -21.8687890149733, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=220 - ID=913 - VtPos(46.9700478486509, -10.6475581634318, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=221 - ID=914 - VtPos(40.7417999268785, -25.6838787659968, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=222 - ID=915 - VtPos(38.2261584548917, -31.7571745257355, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=223 - ID=916 - VtPos(31.531358508287, -21.8687890149733, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=224 - ID=917 - VtPos(29.0157170363003, -27.942084774712, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=225 - ID=918 - VtPos(31.531358508287, -21.8687890149733, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=226 - ID=919 - VtPos(38.2261584548917, -31.7571745257355, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=227 - ID=920 - VtPos(29.0157170363003, -27.942084774712, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=228 - ID=921 - VtPos(40.7417999268785, -25.6838787659968, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=229 - ID=922 - VtPos(31.531358508287, -21.8687890149733, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=230 - ID=923 - VtPos(46.9700478486509, -10.6475581634319, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=231 - ID=924 - VtPos(37.7596064300594, -6.8324684124084, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=232 - ID=925 - VtPos(46.9700478486509, 10.6475581634318, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=233 - ID=926 - VtPos(40.7417999268785, 25.6838787659968, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=234 - ID=927 - VtPos(38.2261584548917, 31.7571745257355, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=235 - ID=928 - VtPos(31.5313585082871, 21.8687890149733, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=236 - ID=929 - VtPos(29.0157170363003, 27.942084774712, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=237 - ID=930 - VtPos(31.5313585082871, 21.8687890149733, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=238 - ID=931 - VtPos(38.2261584548917, 31.7571745257355, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=239 - ID=932 - VtPos(29.0157170363003, 27.942084774712, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=240 - ID=933 - VtPos(40.7417999268785, 25.6838787659968, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=241 - ID=934 - VtPos(31.5313585082871, 21.8687890149733, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=242 - ID=935 - VtPos(46.9700478486509, 10.6475581634318, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=243 - ID=936 - VtPos(37.7596064300594, 6.83246841240839, -40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=244 - ID=937 - VtPos(40.7417999268785, 25.6838787659968, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=245 - ID=938 - VtPos(46.9700478486509, 10.6475581634318, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=246 - ID=939 - VtPos(49.4856893206376, 4.57426240369314, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=247 - ID=940 - VtPos(37.7596064300594, 6.83246841240839, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=248 - ID=941 - VtPos(40.2752479020462, 0.75917265266969, -33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=249 - ID=942 - VtPos(37.7596064300594, 6.83246841240839, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=250 - ID=943 - VtPos(49.4856893206376, 4.57426240369314, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=251 - ID=944 - VtPos(40.2752479020462, 0.75917265266969, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=252 - ID=945 - VtPos(46.9700478486509, 10.6475581634318, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=253 - ID=946 - VtPos(37.7596064300594, 6.83246841240839, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=254 - ID=947 - VtPos(40.7417999268785, 25.6838787659968, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=255 - ID=948 - VtPos(31.5313585082871, 21.8687890149733, 40.07368796041) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Separate' - ID=951 - $begin 'SeparateToParameters' - KernelVersion=4 - SeparatedPart=159 - $end 'SeparateToParameters' - ParentPartID=159 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=35 - NumWires=0 - NumLoops=38 - NumCoedges=196 - NumEdges=98 - NumVertices=64 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'BodyGeomTopoForSeparate' - FaceId=272 - EdgeId=307 - VertexId=693 - BoundingBoxLow[3: -60, -60, -32.5] - BoundingBoxHigh[3: 60, 60, 32.5] - $end 'BodyGeomTopoForSeparate' - $end 'OperationIdentity' - SeparateFromOpnIDs[8: 952, 953, 954, 955, 956, 957, 958, 959] - ParentOperation=158 - SeparateToLumpIndex=0 - $end 'Operation' - $begin 'Operation' - OperationType='Rotate' - ID=1680 - ReferenceCoordSystemID=1 - $begin 'RotateParameters' - KernelVersion=4 - TargetID=159 - RotateAxis='Z' - RotateAngle='22.5deg' - $end 'RotateParameters' - ParentPartID=159 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=35 - NumWires=0 - NumLoops=38 - NumCoedges=196 - NumEdges=98 - NumVertices=64 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=951 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1752 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=159 - SplitPlane='XY' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=159 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1753 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=159 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=35 - NumWires=0 - NumLoops=38 - NumCoedges=196 - NumEdges=98 - NumVertices=64 - $end 'Topology' - BodyID=-1 - StartFaceID=1754 - StartEdgeID=1755 - StartVertexID=1788 - NumNewFaces=1 - NumNewEdges=33 - NumNewVertices=32 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1754 - $begin 'FaceGeomTopol' - FaceTopol(2, 33, 33, 32) - $begin 'FaceGeometry' - Area=4726.15075774784 - FcUVMid(0, 0, 0) - $begin 'FcTolVts' - TolVt(-7.31588707560482, -36.7794480151211, 0, 5e-07) - TolVt(7.31588707560481, -36.7794480151211, 0, 5e-07) - TolVt(7.31588707560481, -50.4725449754319, 0, 5e-07) - TolVt(30.5163654543157, -40.8625921774261, 0, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, 0, 5e-07) - TolVt(31.1801104613454, -20.8338837382351, 0, 5e-07) - TolVt(40.8625921774261, -30.5163654543157, 0, 5e-07) - TolVt(50.4725449754319, -7.31588707560482, 0, 5e-07) - TolVt(36.7794480151211, -7.31588707560482, 0, 5e-07) - TolVt(36.7794480151211, 7.3158870756048, 0, 5e-07) - TolVt(50.4725449754319, 7.3158870756048, 0, 5e-07) - TolVt(40.8625921774261, 30.5163654543157, 0, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, 0, 5e-07) - TolVt(20.8338837382351, 31.1801104613454, 0, 5e-07) - TolVt(30.5163654543157, 40.8625921774261, 0, 5e-07) - TolVt(7.3158870756048, 50.4725449754319, 0, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, 0, 5e-07) - TolVt(-7.31588707560481, 36.7794480151211, 0, 5e-07) - TolVt(-7.31588707560482, 50.4725449754319, 0, 5e-07) - TolVt(-30.5163654543157, 40.8625921774261, 0, 5e-07) - TolVt(-20.8338837382351, 31.1801104613454, 0, 5e-07) - TolVt(-31.1801104613454, 20.8338837382351, 0, 5e-07) - TolVt(-40.8625921774261, 30.5163654543157, 0, 5e-07) - TolVt(-50.4725449754319, 7.31588707560481, 0, 5e-07) - TolVt(-36.7794480151211, 7.31588707560481, 0, 5e-07) - TolVt(-36.7794480151211, -7.31588707560481, 0, 5e-07) - TolVt(-50.4725449754319, -7.31588707560481, 0, 5e-07) - TolVt(-40.8625921774261, -30.5163654543157, 0, 5e-07) - TolVt(-31.1801104613454, -20.8338837382351, 0, 5e-07) - TolVt(-20.8338837382351, -31.1801104613454, 0, 5e-07) - TolVt(-30.5163654543157, -40.8625921774261, 0, 5e-07) - TolVt(-7.31588707560481, -50.4725449754319, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1755 - EdgeFaces(272, 1754) - $begin 'EdTolVts' - TolVt(7.31588707560481, 36.7794480151211, 0, 5e-07) - TolVt(-7.31588707560481, 36.7794480151211, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(2.29621274840129e-15, 37.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1756 - EdgeFaces(273, 1754) - $begin 'EdTolVts' - TolVt(36.7794480151211, 7.3158870756048, 0, 5e-07) - TolVt(36.7794480151211, -7.31588707560482, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(37.5, 0, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1757 - EdgeFaces(274, 1754) - $begin 'EdTolVts' - TolVt(31.1801104613454, -20.8338837382351, 0, 5e-07) - TolVt(20.8338837382351, -31.1801104613454, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(26.5165042944955, -26.5165042944955, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=1758 - EdgeFaces(275, 1754) - $begin 'EdTolVts' - TolVt(7.31588707560481, -36.7794480151211, 0, 5e-07) - TolVt(-7.31588707560482, -36.7794480151211, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-6.88863824520386e-15, -37.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=1759 - EdgeFaces(276, 1754) - $begin 'EdTolVts' - TolVt(-31.1801104613454, -20.8338837382351, 0, 5e-07) - TolVt(-20.8338837382351, -31.1801104613454, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-26.5165042944955, -26.5165042944955, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=1760 - EdgeFaces(277, 1754) - $begin 'EdTolVts' - TolVt(-36.7794480151211, 7.31588707560481, 0, 5e-07) - TolVt(-36.7794480151211, -7.31588707560481, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.5, 4.59242549680257e-15, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=1761 - EdgeFaces(278, 1754) - $begin 'EdTolVts' - TolVt(-20.8338837382351, 31.1801104613454, 0, 5e-07) - TolVt(-31.1801104613454, 20.8338837382351, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-26.5165042944955, 26.5165042944955, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=1762 - EdgeFaces(279, 1754) - $begin 'EdTolVts' - $end 'EdTolVts' - EdgeMidPoint(-60, 7.34788079488412e-15, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=8 - ID=1763 - EdgeFaces(282, 1754) - $begin 'EdTolVts' - TolVt(20.8338837382351, 31.1801104613454, 0, 5e-07) - TolVt(31.1801104613454, 20.8338837382351, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(26.5165042944955, 26.5165042944955, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=9 - ID=1764 - EdgeFaces(283, 1754) - $begin 'EdTolVts' - TolVt(31.1801104613454, 20.8338837382351, 0, 5e-07) - TolVt(40.8625921774261, 30.5163654543157, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.0213513193858, 25.6751245962754, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=10 - ID=1765 - EdgeFaces(284, 1754) - $begin 'EdTolVts' - TolVt(50.4725449754319, 7.3158870756048, 0, 5e-07) - TolVt(36.7794480151211, 7.3158870756048, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.6259964952765, 7.31588707560481, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=11 - ID=1766 - EdgeFaces(285, 1754) - $begin 'EdTolVts' - TolVt(40.8625921774261, 30.5163654543157, 0, 5e-07) - TolVt(50.4725449754319, 7.3158870756048, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(47.1178561580756, 19.5168550506196, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=12 - ID=1767 - EdgeFaces(286, 1754) - $begin 'EdTolVts' - TolVt(-30.5163654543157, 40.8625921774261, 0, 5e-07) - TolVt(-20.8338837382351, 31.1801104613454, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-25.6751245962754, 36.0213513193858, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=13 - ID=1768 - EdgeFaces(287, 1754) - $begin 'EdTolVts' - TolVt(-7.31588707560481, 36.7794480151211, 0, 5e-07) - TolVt(-7.31588707560482, 50.4725449754319, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-7.31588707560482, 43.6259964952765, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=14 - ID=1769 - EdgeFaces(288, 1754) - $begin 'EdTolVts' - TolVt(-7.31588707560482, 50.4725449754319, 0, 5e-07) - TolVt(-30.5163654543157, 40.8625921774261, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.5168550506196, 47.1178561580756, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=15 - ID=1770 - EdgeFaces(289, 1754) - $begin 'EdTolVts' - TolVt(-50.4725449754319, 7.31588707560481, 0, 5e-07) - TolVt(-36.7794480151211, 7.31588707560481, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.6259964952765, 7.31588707560481, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=16 - ID=1771 - EdgeFaces(290, 1754) - $begin 'EdTolVts' - TolVt(-31.1801104613454, 20.8338837382351, 0, 5e-07) - TolVt(-40.8625921774261, 30.5163654543157, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.0213513193858, 25.6751245962754, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=17 - ID=1772 - EdgeFaces(291, 1754) - $begin 'EdTolVts' - TolVt(-40.8625921774261, 30.5163654543157, 0, 5e-07) - TolVt(-50.4725449754319, 7.31588707560481, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-47.1178561580756, 19.5168550506196, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=18 - ID=1773 - EdgeFaces(292, 1754) - $begin 'EdTolVts' - TolVt(-40.8625921774261, -30.5163654543157, 0, 5e-07) - TolVt(-31.1801104613454, -20.8338837382351, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-36.0213513193858, -25.6751245962754, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=19 - ID=1774 - EdgeFaces(293, 1754) - $begin 'EdTolVts' - TolVt(-36.7794480151211, -7.31588707560481, 0, 5e-07) - TolVt(-50.4725449754319, -7.31588707560481, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-43.6259964952765, -7.31588707560481, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=20 - ID=1775 - EdgeFaces(294, 1754) - $begin 'EdTolVts' - TolVt(-50.4725449754319, -7.31588707560481, 0, 5e-07) - TolVt(-40.8625921774261, -30.5163654543157, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-47.1178561580756, -19.5168550506195, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=21 - ID=1776 - EdgeFaces(295, 1754) - $begin 'EdTolVts' - TolVt(-7.31588707560482, -36.7794480151211, 0, 5e-07) - TolVt(-7.31588707560481, -50.4725449754319, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-7.31588707560481, -43.6259964952765, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=22 - ID=1777 - EdgeFaces(296, 1754) - $begin 'EdTolVts' - TolVt(-20.8338837382351, -31.1801104613454, 0, 5e-07) - TolVt(-30.5163654543157, -40.8625921774261, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-25.6751245962754, -36.0213513193858, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=23 - ID=1778 - EdgeFaces(297, 1754) - $begin 'EdTolVts' - TolVt(-30.5163654543157, -40.8625921774261, 0, 5e-07) - TolVt(-7.31588707560481, -50.4725449754319, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.5168550506196, -47.1178561580756, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=24 - ID=1779 - EdgeFaces(298, 1754) - $begin 'EdTolVts' - TolVt(20.8338837382351, -31.1801104613454, 0, 5e-07) - TolVt(30.5163654543157, -40.8625921774261, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(25.6751245962754, -36.0213513193858, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=25 - ID=1780 - EdgeFaces(299, 1754) - $begin 'EdTolVts' - TolVt(7.31588707560481, -50.4725449754319, 0, 5e-07) - TolVt(7.31588707560481, -36.7794480151211, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(7.31588707560481, -43.6259964952765, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=26 - ID=1781 - EdgeFaces(300, 1754) - $begin 'EdTolVts' - TolVt(30.5163654543157, -40.8625921774261, 0, 5e-07) - TolVt(7.31588707560481, -50.4725449754319, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(19.5168550506195, -47.1178561580756, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=27 - ID=1782 - EdgeFaces(301, 1754) - $begin 'EdTolVts' - TolVt(36.7794480151211, -7.31588707560482, 0, 5e-07) - TolVt(50.4725449754319, -7.31588707560482, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(43.6259964952765, -7.31588707560482, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=28 - ID=1783 - EdgeFaces(302, 1754) - $begin 'EdTolVts' - TolVt(40.8625921774261, -30.5163654543157, 0, 5e-07) - TolVt(31.1801104613454, -20.8338837382351, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(36.0213513193858, -25.6751245962754, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=29 - ID=1784 - EdgeFaces(303, 1754) - $begin 'EdTolVts' - TolVt(50.4725449754319, -7.31588707560482, 0, 5e-07) - TolVt(40.8625921774261, -30.5163654543157, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(47.1178561580756, -19.5168550506196, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=30 - ID=1785 - EdgeFaces(304, 1754) - $begin 'EdTolVts' - TolVt(7.3158870756048, 50.4725449754319, 0, 5e-07) - TolVt(7.31588707560481, 36.7794480151211, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(7.31588707560481, 43.6259964952765, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=31 - ID=1786 - EdgeFaces(305, 1754) - $begin 'EdTolVts' - TolVt(30.5163654543157, 40.8625921774261, 0, 5e-07) - TolVt(20.8338837382351, 31.1801104613454, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(25.6751245962754, 36.0213513193858, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=32 - ID=1787 - EdgeFaces(306, 1754) - $begin 'EdTolVts' - TolVt(30.5163654543157, 40.8625921774261, 0, 5e-07) - TolVt(7.3158870756048, 50.4725449754319, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(19.5168550506196, 47.1178561580756, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1792 - VtPos(30.5163654543157, 40.8625921774261, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1809 - VtPos(-7.31588707560481, -50.4725449754319, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1808 - VtPos(-30.5163654543157, -40.8625921774261, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1810 - VtPos(-7.31588707560482, -36.7794480151211, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=1807 - VtPos(-20.8338837382351, -31.1801104613454, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=1806 - VtPos(-31.1801104613454, -20.8338837382351, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=1805 - VtPos(-40.8625921774261, -30.5163654543157, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=1811 - VtPos(7.31588707560481, -36.7794480151211, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=8 - ID=1812 - VtPos(7.31588707560481, -50.4725449754319, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=9 - ID=1804 - VtPos(-50.4725449754319, -7.31588707560481, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=10 - ID=1813 - VtPos(30.5163654543157, -40.8625921774261, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=11 - ID=1814 - VtPos(20.8338837382351, -31.1801104613454, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=12 - ID=1803 - VtPos(-36.7794480151211, -7.31588707560481, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=13 - ID=1802 - VtPos(-36.7794480151211, 7.31588707560481, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=14 - ID=1801 - VtPos(-50.4725449754319, 7.31588707560481, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=15 - ID=1815 - VtPos(31.1801104613454, -20.8338837382351, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=16 - ID=1816 - VtPos(40.8625921774261, -30.5163654543157, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=17 - ID=1800 - VtPos(-40.8625921774261, 30.5163654543157, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=18 - ID=1817 - VtPos(50.4725449754319, -7.31588707560482, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=19 - ID=1818 - VtPos(36.7794480151211, -7.31588707560482, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=20 - ID=1799 - VtPos(-31.1801104613454, 20.8338837382351, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=21 - ID=1819 - VtPos(36.7794480151211, 7.3158870756048, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=22 - ID=1820 - VtPos(50.4725449754319, 7.3158870756048, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=23 - ID=1798 - VtPos(-20.8338837382351, 31.1801104613454, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=24 - ID=1797 - VtPos(-30.5163654543157, 40.8625921774261, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=25 - ID=1789 - VtPos(40.8625921774261, 30.5163654543157, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=26 - ID=1796 - VtPos(-7.31588707560482, 50.4725449754319, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=27 - ID=1795 - VtPos(-7.31588707560481, 36.7794480151211, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=28 - ID=1790 - VtPos(31.1801104613454, 20.8338837382351, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=29 - ID=1794 - VtPos(7.31588707560481, 36.7794480151211, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=30 - ID=1791 - VtPos(20.8338837382351, 31.1801104613454, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=31 - ID=1793 - VtPos(7.3158870756048, 50.4725449754319, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1752 - ParentOperation=1680 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=2044 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=159 - SplitPlane='YZ' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=159 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=2045 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=159 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=22 - NumWires=0 - NumLoops=22 - NumCoedges=120 - NumEdges=60 - NumVertices=40 - $end 'Topology' - BodyID=-1 - StartFaceID=2046 - StartEdgeID=2048 - StartVertexID=2056 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2046 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=731.25 - FcUVMid(0, -48.75, 16.25) - $begin 'FcTolVts' - TolVt(0, -60, 32.5, 5e-07) - TolVt(0, -60, 0, 5e-07) - TolVt(0, -37.5, 0, 5e-07) - TolVt(0, -37.5, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=2047 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=731.25 - FcUVMid(0, 48.75, 16.25) - $begin 'FcTolVts' - TolVt(0, 37.5, 32.5, 5e-07) - TolVt(0, 37.5, 0, 5e-07) - TolVt(0, 60, 0, 5e-07) - TolVt(0, 60, 32.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=2048 - EdgeFaces(272, 2047) - $begin 'EdTolVts' - TolVt(0, 37.5, 0, 5e-07) - TolVt(0, 37.5, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 37.5, 16.25) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=2049 - EdgeFaces(275, 2046) - $begin 'EdTolVts' - TolVt(0, -37.5, 0, 5e-07) - TolVt(0, -37.5, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -37.5, 16.25) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=2050 - EdgeFaces(279, 2046) - $begin 'EdTolVts' - TolVt(0, -60, 0, 5e-07) - TolVt(0, -60, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -60, 16.25) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=2051 - EdgeFaces(279, 2047) - $begin 'EdTolVts' - TolVt(0, 60, 0, 5e-07) - TolVt(0, 60, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 60, 16.25) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=2052 - EdgeFaces(281, 2047) - $begin 'EdTolVts' - TolVt(0, 60, 32.5, 5e-07) - TolVt(0, 37.5, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 48.75, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=2053 - EdgeFaces(281, 2046) - $begin 'EdTolVts' - TolVt(0, -60, 32.5, 5e-07) - TolVt(0, -37.5, 32.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -48.75, 32.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=2054 - EdgeFaces(1754, 2047) - $begin 'EdTolVts' - TolVt(0, 37.5, 0, 5e-07) - TolVt(0, 60, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 48.75, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=2055 - EdgeFaces(1754, 2046) - $begin 'EdTolVts' - TolVt(0, -60, 0, 5e-07) - TolVt(0, -37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -48.75, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=2060 - VtPos(0, 37.5, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=2056 - VtPos(0, -60, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=2063 - VtPos(0, 37.5, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=2062 - VtPos(0, 60, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=2061 - VtPos(0, 60, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=2058 - VtPos(0, -37.5, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=2059 - VtPos(0, -60, 32.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=2057 - VtPos(0, -37.5, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=2044 - ParentOperation=1753 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_B1' - Flags='' - Color='(0 0 255)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyAroundAxis' - ID=993 - $begin 'CloneFromParameters' - KernelVersion=4 - SourceID=960 - WhichClone=0 - $end 'CloneFromParameters' - ParentPartID=994 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=994 - StartFaceID=2189 - StartEdgeID=2203 - StartVertexID=2239 - NumNewFaces=14 - NumNewEdges=36 - NumNewVertices=24 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('258'='2189', '259'='2190', '260'='2191', '261'='2192', '262'='2193', '263'='2194', '264'='2195', '265'='2196', '266'='2197', '267'='2198', '268'='2199', '269'='2200', '270'='2201', '271'='2202') - CloneEdges('657'='2238', '658'='2237', '659'='2236', '660'='2235', '661'='2234', '662'='2233', '663'='2232', '664'='2231', '665'='2230', '666'='2229', '667'='2228', '668'='2227', '669'='2226', '670'='2225', '671'='2224', '672'='2223', '673'='2222', '674'='2221', '675'='2220', '676'='2219', '677'='2218', '678'='2217', '679'='2216', '680'='2215', '681'='2214', '682'='2213', '683'='2212', '684'='2211', '685'='2210', '686'='2209', '687'='2208', '688'='2207', '689'='2206', '690'='2205', '691'='2204', '692'='2203') - CloneVertices('925'='2262', '926'='2261', '927'='2260', '928'='2259', '929'='2258', '930'='2257', '931'='2256', '932'='2255', '933'='2254', '934'='2253', '935'='2252', '936'='2251', '937'='2250', '938'='2249', '939'='2248', '940'='2247', '941'='2246', '942'='2245', '943'='2244', '944'='2243', '945'='2242', '946'='2241', '947'='2240', '948'='2239') - CloneIdentityHelperKernelType=0 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271) - OriginalEdgeIDs(657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692) - OriginalVertexIDs(925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948) - $end 'OperationIdentity' - PlaceHolderOpnId=992 - $end 'Operation' - $begin 'Operation' - OperationType='Rotate' - ID=1683 - ReferenceCoordSystemID=1 - $begin 'RotateParameters' - KernelVersion=4 - TargetID=994 - RotateAxis='Z' - RotateAngle='22.5deg' - $end 'RotateParameters' - ParentPartID=994 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=993 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1843 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=994 - SplitPlane='XY' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=994 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1844 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=994 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=1845 - StartEdgeID=1847 - StartVertexID=1855 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1846 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(11.4244420508611, 42.4846549763667, 0) - $begin 'FcTolVts' - TolVt(14.7112860310661, 47.4693099527334, 0, 5e-07) - TolVt(14.7112860310661, 37.5, 0, 5e-07) - TolVt(8.13759807065607, 37.5, 0, 5e-07) - TolVt(8.13759807065606, 47.4693099527334, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=1845 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(-11.4244420508611, 42.4846549763667, 0) - $begin 'FcTolVts' - TolVt(-14.7112860310661, 47.4693099527334, 0, 5e-07) - TolVt(-8.13759807065607, 47.4693099527334, 0, 5e-07) - TolVt(-8.13759807065606, 37.5, 0, 5e-07) - TolVt(-14.7112860310661, 37.5, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1847 - EdgeFaces(1845, 2190) - $begin 'EdTolVts' - TolVt(-8.13759807065606, 37.5, 0, 5e-07) - TolVt(-14.7112860310661, 37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-11.4244420508611, 37.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1848 - EdgeFaces(1846, 2190) - $begin 'EdTolVts' - TolVt(14.7112860310661, 37.5, 0, 5e-07) - TolVt(8.13759807065607, 37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(11.4244420508611, 37.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1849 - EdgeFaces(1845, 2191) - $begin 'EdTolVts' - TolVt(-8.13759807065607, 47.4693099527334, 0, 5e-07) - TolVt(-8.13759807065606, 37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.13759807065606, 42.4846549763667, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=1850 - EdgeFaces(1846, 2192) - $begin 'EdTolVts' - TolVt(14.7112860310661, 47.4693099527334, 0, 5e-07) - TolVt(8.13759807065606, 47.4693099527334, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(11.4244420508611, 47.4693099527334, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=1851 - EdgeFaces(1845, 2192) - $begin 'EdTolVts' - TolVt(-14.7112860310661, 47.4693099527334, 0, 5e-07) - TolVt(-8.13759807065607, 47.4693099527334, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-11.4244420508611, 47.4693099527334, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=1852 - EdgeFaces(1845, 2193) - $begin 'EdTolVts' - TolVt(-14.7112860310661, 47.4693099527334, 0, 5e-07) - TolVt(-14.7112860310661, 37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.7112860310661, 42.4846549763667, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=1853 - EdgeFaces(1846, 2197) - $begin 'EdTolVts' - TolVt(8.13759807065606, 47.4693099527334, 0, 5e-07) - TolVt(8.13759807065607, 37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.13759807065607, 42.4846549763667, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=1854 - EdgeFaces(1846, 2198) - $begin 'EdTolVts' - TolVt(14.7112860310661, 47.4693099527334, 0, 5e-07) - TolVt(14.7112860310661, 37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.7112860310661, 42.4846549763667, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1856 - VtPos(-14.7112860310661, 37.5, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1859 - VtPos(14.7112860310661, 47.4693099527334, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1855 - VtPos(-8.13759807065606, 37.5, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1858 - VtPos(-8.13759807065607, 47.4693099527334, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=1857 - VtPos(-14.7112860310661, 47.4693099527334, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=1861 - VtPos(8.13759807065607, 37.5, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=1862 - VtPos(8.13759807065606, 47.4693099527334, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=1860 - VtPos(14.7112860310661, 37.5, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1843 - ParentOperation=1683 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=2066 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=994 - SplitPlane='YZ' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=994 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=2067 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=994 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=9 - NumWires=0 - NumLoops=9 - NumCoedges=42 - NumEdges=21 - NumVertices=14 - $end 'Topology' - BodyID=-1 - StartFaceID=2068 - StartEdgeID=2069 - StartVertexID=2073 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2068 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(0, 42.4846549763667, 36.786843980205) - $begin 'FcTolVts' - TolVt(0, 47.4693099527334, 33.5, 5e-07) - TolVt(0, 47.4693099527334, 40.07368796041, 5e-07) - TolVt(0, 37.5, 40.07368796041, 5e-07) - TolVt(0, 37.5, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=2069 - EdgeFaces(2068, 2190) - $begin 'EdTolVts' - TolVt(0, 37.5, 40.07368796041, 5e-07) - TolVt(0, 37.5, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 37.5, 36.786843980205) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=2070 - EdgeFaces(2068, 2192) - $begin 'EdTolVts' - TolVt(0, 47.4693099527334, 40.07368796041, 5e-07) - TolVt(0, 47.4693099527334, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 47.4693099527334, 36.786843980205) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=2071 - EdgeFaces(2068, 2199) - $begin 'EdTolVts' - TolVt(0, 47.4693099527334, 33.5, 5e-07) - TolVt(0, 37.5, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 42.4846549763667, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=2072 - EdgeFaces(2068, 2201) - $begin 'EdTolVts' - TolVt(0, 47.4693099527334, 40.07368796041, 5e-07) - TolVt(0, 37.5, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, 42.4846549763667, 40.07368796041) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=2076 - VtPos(0, 47.4693099527334, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=2074 - VtPos(0, 37.5, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=2075 - VtPos(0, 47.4693099527334, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=2073 - VtPos(0, 37.5, 40.07368796041) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=2066 - ParentOperation=1844 - $end 'Operation' - $begin 'BodyFromFaceToOperation' - OperationType='BodyFromFace' - ID=2173 - $begin 'BodyFromFaceToParameters' - KernelVersion=13 - LocalOpPart=994 - FacesToDetach[1: 1845] - $end 'BodyFromFaceToParameters' - ParentPartID=994 - ReferenceUDMID=-1 - $end 'BodyFromFaceToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_C1' - Flags='' - Color='(255 255 0)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyAroundAxis' - ID=1069 - $begin 'CloneFromParameters' - KernelVersion=4 - SourceID=960 - WhichClone=1 - $end 'CloneFromParameters' - ParentPartID=1070 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=1070 - StartFaceID=2263 - StartEdgeID=2277 - StartVertexID=2313 - NumNewFaces=14 - NumNewEdges=36 - NumNewVertices=24 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('258'='2263', '259'='2264', '260'='2265', '261'='2266', '262'='2267', '263'='2268', '264'='2269', '265'='2270', '266'='2271', '267'='2272', '268'='2273', '269'='2274', '270'='2275', '271'='2276') - CloneEdges('657'='2312', '658'='2311', '659'='2310', '660'='2309', '661'='2308', '662'='2307', '663'='2306', '664'='2305', '665'='2304', '666'='2303', '667'='2302', '668'='2301', '669'='2300', '670'='2299', '671'='2298', '672'='2297', '673'='2296', '674'='2295', '675'='2294', '676'='2293', '677'='2292', '678'='2291', '679'='2290', '680'='2289', '681'='2288', '682'='2287', '683'='2286', '684'='2285', '685'='2284', '686'='2283', '687'='2282', '688'='2281', '689'='2280', '690'='2279', '691'='2278', '692'='2277') - CloneVertices('925'='2336', '926'='2335', '927'='2334', '928'='2333', '929'='2332', '930'='2331', '931'='2330', '932'='2329', '933'='2328', '934'='2327', '935'='2326', '936'='2325', '937'='2324', '938'='2323', '939'='2322', '940'='2321', '941'='2320', '942'='2319', '943'='2318', '944'='2317', '945'='2316', '946'='2315', '947'='2314', '948'='2313') - CloneIdentityHelperKernelType=0 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271) - OriginalEdgeIDs(657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692) - OriginalVertexIDs(925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948) - $end 'OperationIdentity' - PlaceHolderOpnId=992 - $end 'Operation' - $begin 'Operation' - OperationType='Rotate' - ID=1684 - ReferenceCoordSystemID=1 - $begin 'RotateParameters' - KernelVersion=4 - TargetID=1070 - RotateAxis='Z' - RotateAngle='22.5deg' - $end 'RotateParameters' - ParentPartID=1070 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=1069 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1863 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=1070 - SplitPlane='XY' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1070 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1864 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1070 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=1865 - StartEdgeID=1867 - StartVertexID=1875 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1866 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(-21.9628871847231, 38.1194880755963, 0) - $begin 'FcTolVts' - TolVt(-23.1634208532821, 43.9683210783656, 0, 5e-07) - TolVt(-16.1140541819538, 36.9189544070373, 0, 5e-07) - TolVt(-20.7623535161641, 32.270655072827, 0, 5e-07) - TolVt(-27.8117201874924, 39.3200217441553, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=1865 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(-38.1194880755963, 21.9628871847231, 0) - $begin 'FcTolVts' - TolVt(-43.9683210783656, 23.1634208532821, 0, 5e-07) - TolVt(-39.3200217441553, 27.8117201874924, 0, 5e-07) - TolVt(-32.270655072827, 20.7623535161641, 0, 5e-07) - TolVt(-36.9189544070373, 16.1140541819538, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1867 - EdgeFaces(1865, 2264) - $begin 'EdTolVts' - TolVt(-32.270655072827, 20.7623535161641, 0, 5e-07) - TolVt(-36.9189544070373, 16.1140541819538, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.5948047399321, 18.4382038490589, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1868 - EdgeFaces(1866, 2264) - $begin 'EdTolVts' - TolVt(-16.1140541819538, 36.9189544070373, 0, 5e-07) - TolVt(-20.7623535161641, 32.270655072827, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.4382038490589, 34.5948047399322, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1869 - EdgeFaces(1865, 2265) - $begin 'EdTolVts' - TolVt(-39.3200217441553, 27.8117201874924, 0, 5e-07) - TolVt(-32.270655072827, 20.7623535161641, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-35.7953384084911, 24.2870368518282, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=1870 - EdgeFaces(1866, 2266) - $begin 'EdTolVts' - TolVt(-23.1634208532821, 43.9683210783656, 0, 5e-07) - TolVt(-27.8117201874924, 39.3200217441553, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-25.4875705203872, 41.6441714112605, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=1871 - EdgeFaces(1865, 2266) - $begin 'EdTolVts' - TolVt(-43.9683210783656, 23.1634208532821, 0, 5e-07) - TolVt(-39.3200217441553, 27.8117201874924, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-41.6441714112605, 25.4875705203872, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=1872 - EdgeFaces(1865, 2267) - $begin 'EdTolVts' - TolVt(-43.9683210783656, 23.1634208532821, 0, 5e-07) - TolVt(-36.9189544070373, 16.1140541819538, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.4436377427014, 19.6387375176179, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=1873 - EdgeFaces(1866, 2271) - $begin 'EdTolVts' - TolVt(-27.8117201874924, 39.3200217441553, 0, 5e-07) - TolVt(-20.7623535161641, 32.270655072827, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-24.2870368518282, 35.7953384084911, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=1874 - EdgeFaces(1866, 2272) - $begin 'EdTolVts' - TolVt(-23.1634208532821, 43.9683210783656, 0, 5e-07) - TolVt(-16.1140541819538, 36.9189544070373, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.6387375176179, 40.4436377427015, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1876 - VtPos(-36.9189544070373, 16.1140541819538, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1879 - VtPos(-23.1634208532821, 43.9683210783656, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1875 - VtPos(-32.270655072827, 20.7623535161641, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1878 - VtPos(-39.3200217441553, 27.8117201874924, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=1877 - VtPos(-43.9683210783656, 23.1634208532821, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=1881 - VtPos(-20.7623535161641, 32.270655072827, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=1882 - VtPos(-27.8117201874924, 39.3200217441553, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=1880 - VtPos(-16.1140541819538, 36.9189544070373, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1863 - ParentOperation=1684 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=2077 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=1070 - SplitPlane='YZ' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1070 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=2078 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1070 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=2077 - ParentOperation=1864 - $end 'Operation' - $begin 'BodyFromFaceToOperation' - OperationType='BodyFromFace' - ID=2161 - $begin 'BodyFromFaceToParameters' - KernelVersion=13 - LocalOpPart=1070 - FacesToDetach[1: 1865] - $end 'BodyFromFaceToParameters' - ParentPartID=1070 - ReferenceUDMID=-1 - $end 'BodyFromFaceToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_D1' - Flags='' - Color='(0 255 0)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyAroundAxis' - ID=1145 - $begin 'CloneFromParameters' - KernelVersion=4 - SourceID=960 - WhichClone=2 - $end 'CloneFromParameters' - ParentPartID=1146 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=1146 - StartFaceID=2337 - StartEdgeID=2351 - StartVertexID=2387 - NumNewFaces=14 - NumNewEdges=36 - NumNewVertices=24 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('258'='2337', '259'='2338', '260'='2339', '261'='2340', '262'='2341', '263'='2342', '264'='2343', '265'='2344', '266'='2345', '267'='2346', '268'='2347', '269'='2348', '270'='2349', '271'='2350') - CloneEdges('657'='2386', '658'='2385', '659'='2384', '660'='2383', '661'='2382', '662'='2381', '663'='2380', '664'='2379', '665'='2378', '666'='2377', '667'='2376', '668'='2375', '669'='2374', '670'='2373', '671'='2372', '672'='2371', '673'='2370', '674'='2369', '675'='2368', '676'='2367', '677'='2366', '678'='2365', '679'='2364', '680'='2363', '681'='2362', '682'='2361', '683'='2360', '684'='2359', '685'='2358', '686'='2357', '687'='2356', '688'='2355', '689'='2354', '690'='2353', '691'='2352', '692'='2351') - CloneVertices('925'='2410', '926'='2409', '927'='2408', '928'='2407', '929'='2406', '930'='2405', '931'='2404', '932'='2403', '933'='2402', '934'='2401', '935'='2400', '936'='2399', '937'='2398', '938'='2397', '939'='2396', '940'='2395', '941'='2394', '942'='2393', '943'='2392', '944'='2391', '945'='2390', '946'='2389', '947'='2388', '948'='2387') - CloneIdentityHelperKernelType=0 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271) - OriginalEdgeIDs(657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692) - OriginalVertexIDs(925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948) - $end 'OperationIdentity' - PlaceHolderOpnId=992 - $end 'Operation' - $begin 'Operation' - OperationType='Rotate' - ID=1685 - ReferenceCoordSystemID=1 - $begin 'RotateParameters' - KernelVersion=4 - TargetID=1146 - RotateAxis='Z' - RotateAngle='22.5deg' - $end 'RotateParameters' - ParentPartID=1146 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=1145 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1883 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=1146 - SplitPlane='XY' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1146 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1884 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1146 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=1885 - StartEdgeID=1887 - StartVertexID=1895 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1886 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(-42.4846549763667, 11.4244420508611, 0) - $begin 'FcTolVts' - TolVt(-47.4693099527334, 14.7112860310661, 0, 5e-07) - TolVt(-37.5, 14.7112860310661, 0, 5e-07) - TolVt(-37.5, 8.13759807065607, 0, 5e-07) - TolVt(-47.4693099527334, 8.13759807065607, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=1885 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(-42.4846549763667, -11.4244420508611, 0) - $begin 'FcTolVts' - TolVt(-47.4693099527334, -14.7112860310661, 0, 5e-07) - TolVt(-47.4693099527334, -8.13759807065606, 0, 5e-07) - TolVt(-37.5, -8.13759807065606, 0, 5e-07) - TolVt(-37.5, -14.7112860310661, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1887 - EdgeFaces(1885, 2338) - $begin 'EdTolVts' - TolVt(-37.5, -8.13759807065606, 0, 5e-07) - TolVt(-37.5, -14.7112860310661, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.5, -11.4244420508611, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1888 - EdgeFaces(1886, 2338) - $begin 'EdTolVts' - TolVt(-37.5, 14.7112860310661, 0, 5e-07) - TolVt(-37.5, 8.13759807065607, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.5, 11.4244420508611, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1889 - EdgeFaces(1885, 2339) - $begin 'EdTolVts' - TolVt(-47.4693099527334, -8.13759807065606, 0, 5e-07) - TolVt(-37.5, -8.13759807065606, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.4846549763667, -8.13759807065606, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=1890 - EdgeFaces(1886, 2340) - $begin 'EdTolVts' - TolVt(-47.4693099527334, 14.7112860310661, 0, 5e-07) - TolVt(-47.4693099527334, 8.13759807065607, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-47.4693099527334, 11.4244420508611, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=1891 - EdgeFaces(1885, 2340) - $begin 'EdTolVts' - TolVt(-47.4693099527334, -14.7112860310661, 0, 5e-07) - TolVt(-47.4693099527334, -8.13759807065606, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-47.4693099527334, -11.4244420508611, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=1892 - EdgeFaces(1885, 2341) - $begin 'EdTolVts' - TolVt(-47.4693099527334, -14.7112860310661, 0, 5e-07) - TolVt(-37.5, -14.7112860310661, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.4846549763667, -14.7112860310661, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=1893 - EdgeFaces(1886, 2345) - $begin 'EdTolVts' - TolVt(-47.4693099527334, 8.13759807065607, 0, 5e-07) - TolVt(-37.5, 8.13759807065607, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.4846549763667, 8.13759807065607, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=1894 - EdgeFaces(1886, 2346) - $begin 'EdTolVts' - TolVt(-47.4693099527334, 14.7112860310661, 0, 5e-07) - TolVt(-37.5, 14.7112860310661, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.4846549763667, 14.7112860310661, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1896 - VtPos(-37.5, -14.7112860310661, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1899 - VtPos(-47.4693099527334, 14.7112860310661, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1895 - VtPos(-37.5, -8.13759807065606, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1898 - VtPos(-47.4693099527334, -8.13759807065606, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=1897 - VtPos(-47.4693099527334, -14.7112860310661, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=1901 - VtPos(-37.5, 8.13759807065607, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=1902 - VtPos(-47.4693099527334, 8.13759807065607, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=1900 - VtPos(-37.5, 14.7112860310661, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1883 - ParentOperation=1685 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=2079 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=1146 - SplitPlane='YZ' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1146 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=2080 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1146 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=2079 - ParentOperation=1884 - $end 'Operation' - $begin 'BodyFromFaceToOperation' - OperationType='BodyFromFace' - ID=2149 - $begin 'BodyFromFaceToParameters' - KernelVersion=13 - LocalOpPart=1146 - FacesToDetach[1: 1885] - $end 'BodyFromFaceToParameters' - ParentPartID=1146 - ReferenceUDMID=-1 - $end 'BodyFromFaceToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_A2' - Flags='' - Color='(255 0 0)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyAroundAxis' - ID=1221 - $begin 'CloneFromParameters' - KernelVersion=4 - SourceID=960 - WhichClone=3 - $end 'CloneFromParameters' - ParentPartID=1222 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=1222 - StartFaceID=2411 - StartEdgeID=2425 - StartVertexID=2461 - NumNewFaces=14 - NumNewEdges=36 - NumNewVertices=24 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('258'='2411', '259'='2412', '260'='2413', '261'='2414', '262'='2415', '263'='2416', '264'='2417', '265'='2418', '266'='2419', '267'='2420', '268'='2421', '269'='2422', '270'='2423', '271'='2424') - CloneEdges('657'='2460', '658'='2459', '659'='2458', '660'='2457', '661'='2456', '662'='2455', '663'='2454', '664'='2453', '665'='2452', '666'='2451', '667'='2450', '668'='2449', '669'='2448', '670'='2447', '671'='2446', '672'='2445', '673'='2444', '674'='2443', '675'='2442', '676'='2441', '677'='2440', '678'='2439', '679'='2438', '680'='2437', '681'='2436', '682'='2435', '683'='2434', '684'='2433', '685'='2432', '686'='2431', '687'='2430', '688'='2429', '689'='2428', '690'='2427', '691'='2426', '692'='2425') - CloneVertices('925'='2484', '926'='2483', '927'='2482', '928'='2481', '929'='2480', '930'='2479', '931'='2478', '932'='2477', '933'='2476', '934'='2475', '935'='2474', '936'='2473', '937'='2472', '938'='2471', '939'='2470', '940'='2469', '941'='2468', '942'='2467', '943'='2466', '944'='2465', '945'='2464', '946'='2463', '947'='2462', '948'='2461') - CloneIdentityHelperKernelType=0 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271) - OriginalEdgeIDs(657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692) - OriginalVertexIDs(925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948) - $end 'OperationIdentity' - PlaceHolderOpnId=992 - $end 'Operation' - $begin 'Operation' - OperationType='Rotate' - ID=1686 - ReferenceCoordSystemID=1 - $begin 'RotateParameters' - KernelVersion=4 - TargetID=1222 - RotateAxis='Z' - RotateAngle='22.5deg' - $end 'RotateParameters' - ParentPartID=1222 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=1221 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1903 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=1222 - SplitPlane='XY' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1222 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1904 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1222 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=1905 - StartEdgeID=1907 - StartVertexID=1915 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1906 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098792 - FcUVMid(-38.1194880755963, -21.9628871847231, 0) - $begin 'FcTolVts' - TolVt(-43.9683210783656, -23.163420853282, 0, 5e-07) - TolVt(-36.9189544070373, -16.1140541819538, 0, 5e-07) - TolVt(-32.270655072827, -20.7623535161641, 0, 5e-07) - TolVt(-39.3200217441553, -27.8117201874923, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=1905 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098792 - FcUVMid(-21.9628871847231, -38.1194880755963, 0) - $begin 'FcTolVts' - TolVt(-23.1634208532821, -43.9683210783656, 0, 5e-07) - TolVt(-27.8117201874924, -39.3200217441553, 0, 5e-07) - TolVt(-20.7623535161641, -32.270655072827, 0, 5e-07) - TolVt(-16.1140541819538, -36.9189544070373, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1907 - EdgeFaces(1905, 2412) - $begin 'EdTolVts' - TolVt(-20.7623535161641, -32.270655072827, 0, 5e-07) - TolVt(-16.1140541819538, -36.9189544070373, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.4382038490589, -34.5948047399321, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1908 - EdgeFaces(1906, 2412) - $begin 'EdTolVts' - TolVt(-36.9189544070373, -16.1140541819538, 0, 5e-07) - TolVt(-32.270655072827, -20.7623535161641, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.5948047399322, -18.4382038490589, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1909 - EdgeFaces(1905, 2413) - $begin 'EdTolVts' - TolVt(-27.8117201874924, -39.3200217441553, 0, 5e-07) - TolVt(-20.7623535161641, -32.270655072827, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-24.2870368518282, -35.7953384084911, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=1910 - EdgeFaces(1906, 2414) - $begin 'EdTolVts' - TolVt(-43.9683210783656, -23.163420853282, 0, 5e-07) - TolVt(-39.3200217441553, -27.8117201874923, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-41.6441714112605, -25.4875705203872, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=1911 - EdgeFaces(1905, 2414) - $begin 'EdTolVts' - TolVt(-23.1634208532821, -43.9683210783656, 0, 5e-07) - TolVt(-27.8117201874924, -39.3200217441553, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-25.4875705203872, -41.6441714112605, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=1912 - EdgeFaces(1905, 2415) - $begin 'EdTolVts' - TolVt(-23.1634208532821, -43.9683210783656, 0, 5e-07) - TolVt(-16.1140541819538, -36.9189544070373, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.6387375176179, -40.4436377427014, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=1913 - EdgeFaces(1906, 2419) - $begin 'EdTolVts' - TolVt(-39.3200217441553, -27.8117201874923, 0, 5e-07) - TolVt(-32.270655072827, -20.7623535161641, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-35.7953384084911, -24.2870368518282, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=1914 - EdgeFaces(1906, 2420) - $begin 'EdTolVts' - TolVt(-43.9683210783656, -23.163420853282, 0, 5e-07) - TolVt(-36.9189544070373, -16.1140541819538, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.4436377427015, -19.6387375176179, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1916 - VtPos(-16.1140541819538, -36.9189544070373, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1919 - VtPos(-43.9683210783656, -23.163420853282, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1915 - VtPos(-20.7623535161641, -32.270655072827, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1918 - VtPos(-27.8117201874924, -39.3200217441553, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=1917 - VtPos(-23.1634208532821, -43.9683210783656, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=1921 - VtPos(-32.270655072827, -20.7623535161641, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=1922 - VtPos(-39.3200217441553, -27.8117201874923, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=1920 - VtPos(-36.9189544070373, -16.1140541819538, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1903 - ParentOperation=1686 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=2081 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=1222 - SplitPlane='YZ' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1222 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=2082 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1222 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=2081 - ParentOperation=1904 - $end 'Operation' - $begin 'BodyFromFaceToOperation' - OperationType='BodyFromFace' - ID=2137 - $begin 'BodyFromFaceToParameters' - KernelVersion=13 - LocalOpPart=1222 - FacesToDetach[1: 1905] - $end 'BodyFromFaceToParameters' - ParentPartID=1222 - ReferenceUDMID=-1 - $end 'BodyFromFaceToOperation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_B2' - Flags='' - Color='(0 0 255)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='DuplicateBodyAroundAxis' - ID=1297 - $begin 'CloneFromParameters' - KernelVersion=4 - SourceID=960 - WhichClone=4 - $end 'CloneFromParameters' - ParentPartID=1298 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=1298 - StartFaceID=2485 - StartEdgeID=2499 - StartVertexID=2535 - NumNewFaces=14 - NumNewEdges=36 - NumNewVertices=24 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'CloneFromOperationIdentityHelper' - CloneFaces('258'='2485', '259'='2486', '260'='2487', '261'='2488', '262'='2489', '263'='2490', '264'='2491', '265'='2492', '266'='2493', '267'='2494', '268'='2495', '269'='2496', '270'='2497', '271'='2498') - CloneEdges('657'='2534', '658'='2533', '659'='2532', '660'='2531', '661'='2530', '662'='2529', '663'='2528', '664'='2527', '665'='2526', '666'='2525', '667'='2524', '668'='2523', '669'='2522', '670'='2521', '671'='2520', '672'='2519', '673'='2518', '674'='2517', '675'='2516', '676'='2515', '677'='2514', '678'='2513', '679'='2512', '680'='2511', '681'='2510', '682'='2509', '683'='2508', '684'='2507', '685'='2506', '686'='2505', '687'='2504', '688'='2503', '689'='2502', '690'='2501', '691'='2500', '692'='2499') - CloneVertices('925'='2558', '926'='2557', '927'='2556', '928'='2555', '929'='2554', '930'='2553', '931'='2552', '932'='2551', '933'='2550', '934'='2549', '935'='2548', '936'='2547', '937'='2546', '938'='2545', '939'='2544', '940'='2543', '941'='2542', '942'='2541', '943'='2540', '944'='2539', '945'='2538', '946'='2537', '947'='2536', '948'='2535') - CloneIdentityHelperKernelType=0 - $end 'CloneFromOperationIdentityHelper' - OriginalFaceIDs(258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271) - OriginalEdgeIDs(657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692) - OriginalVertexIDs(925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948) - $end 'OperationIdentity' - PlaceHolderOpnId=992 - $end 'Operation' - $begin 'Operation' - OperationType='Rotate' - ID=1687 - ReferenceCoordSystemID=1 - $begin 'RotateParameters' - KernelVersion=4 - TargetID=1298 - RotateAxis='Z' - RotateAngle='22.5deg' - $end 'RotateParameters' - ParentPartID=1298 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=1297 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1923 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=1298 - SplitPlane='XY' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1298 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1924 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1298 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=1925 - StartEdgeID=1927 - StartVertexID=1935 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1926 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098792 - FcUVMid(-11.4244420508611, -42.4846549763667, 0) - $begin 'FcTolVts' - TolVt(-14.7112860310661, -47.4693099527334, 0, 5e-07) - TolVt(-14.7112860310661, -37.5, 0, 5e-07) - TolVt(-8.13759807065607, -37.5, 0, 5e-07) - TolVt(-8.13759807065607, -47.4693099527334, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=1925 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(11.4244420508611, -42.4846549763667, 0) - $begin 'FcTolVts' - TolVt(14.7112860310661, -47.4693099527334, 0, 5e-07) - TolVt(8.13759807065606, -47.4693099527334, 0, 5e-07) - TolVt(8.13759807065606, -37.5, 0, 5e-07) - TolVt(14.7112860310661, -37.5, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1927 - EdgeFaces(1925, 2486) - $begin 'EdTolVts' - TolVt(8.13759807065606, -37.5, 0, 5e-07) - TolVt(14.7112860310661, -37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(11.4244420508611, -37.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1928 - EdgeFaces(1926, 2486) - $begin 'EdTolVts' - TolVt(-14.7112860310661, -37.5, 0, 5e-07) - TolVt(-8.13759807065607, -37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-11.4244420508611, -37.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1929 - EdgeFaces(1925, 2487) - $begin 'EdTolVts' - TolVt(8.13759807065606, -47.4693099527334, 0, 5e-07) - TolVt(8.13759807065606, -37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(8.13759807065606, -42.4846549763667, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=1930 - EdgeFaces(1926, 2488) - $begin 'EdTolVts' - TolVt(-14.7112860310661, -47.4693099527334, 0, 5e-07) - TolVt(-8.13759807065607, -47.4693099527334, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-11.4244420508611, -47.4693099527334, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=1931 - EdgeFaces(1925, 2488) - $begin 'EdTolVts' - TolVt(14.7112860310661, -47.4693099527334, 0, 5e-07) - TolVt(8.13759807065606, -47.4693099527334, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(11.4244420508611, -47.4693099527334, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=1932 - EdgeFaces(1925, 2489) - $begin 'EdTolVts' - TolVt(14.7112860310661, -47.4693099527334, 0, 5e-07) - TolVt(14.7112860310661, -37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(14.7112860310661, -42.4846549763667, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=1933 - EdgeFaces(1926, 2493) - $begin 'EdTolVts' - TolVt(-8.13759807065607, -47.4693099527334, 0, 5e-07) - TolVt(-8.13759807065607, -37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.13759807065607, -42.4846549763667, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=1934 - EdgeFaces(1926, 2494) - $begin 'EdTolVts' - TolVt(-14.7112860310661, -47.4693099527334, 0, 5e-07) - TolVt(-14.7112860310661, -37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.7112860310661, -42.4846549763667, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1936 - VtPos(14.7112860310661, -37.5, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1939 - VtPos(-14.7112860310661, -47.4693099527334, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1935 - VtPos(8.13759807065606, -37.5, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1938 - VtPos(8.13759807065606, -47.4693099527334, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=1937 - VtPos(14.7112860310661, -47.4693099527334, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=1941 - VtPos(-8.13759807065607, -37.5, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=1942 - VtPos(-8.13759807065607, -47.4693099527334, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=1940 - VtPos(-14.7112860310661, -37.5, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1923 - ParentOperation=1687 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=2083 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=1298 - SplitPlane='YZ' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1298 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=2084 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1298 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=9 - NumWires=0 - NumLoops=9 - NumCoedges=42 - NumEdges=21 - NumVertices=14 - $end 'Topology' - BodyID=-1 - StartFaceID=2085 - StartEdgeID=2086 - StartVertexID=2090 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2085 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(0, -42.4846549763667, 36.786843980205) - $begin 'FcTolVts' - TolVt(0, -37.5, 33.5, 5e-07) - TolVt(0, -37.5, 40.07368796041, 5e-07) - TolVt(0, -47.4693099527334, 40.07368796041, 5e-07) - TolVt(0, -47.4693099527334, 33.5, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=2086 - EdgeFaces(2085, 2486) - $begin 'EdTolVts' - TolVt(0, -37.5, 40.07368796041, 5e-07) - TolVt(0, -37.5, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -37.5, 36.786843980205) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=2087 - EdgeFaces(2085, 2488) - $begin 'EdTolVts' - TolVt(0, -47.4693099527334, 40.07368796041, 5e-07) - TolVt(0, -47.4693099527334, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -47.4693099527334, 36.786843980205) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=2088 - EdgeFaces(2085, 2495) - $begin 'EdTolVts' - TolVt(0, -47.4693099527334, 33.5, 5e-07) - TolVt(0, -37.5, 33.5, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -42.4846549763667, 33.5) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=2089 - EdgeFaces(2085, 2497) - $begin 'EdTolVts' - TolVt(0, -37.5, 40.07368796041, 5e-07) - TolVt(0, -47.4693099527334, 40.07368796041, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -42.4846549763667, 40.07368796041) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=2091 - VtPos(0, -37.5, 40.07368796041) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=2090 - VtPos(0, -37.5, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=2093 - VtPos(0, -47.4693099527334, 33.5) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=2092 - VtPos(0, -47.4693099527334, 40.07368796041) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=2083 - ParentOperation=1924 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Region' - Flags='Wireframe#' - Color='(132 132 193)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Polyhedron' - ID=1603 - ReferenceCoordSystemID=1 - $begin 'PolyhedronParameters' - KernelVersion=4 - XCenter='0mm' - YCenter='0mm' - ZCenter='-100mm' - XStart='150mm' - YStart='0mm' - ZStart='-100mm' - Height='200mm' - NumSides='12' - WhichAxis='Z' - $end 'PolyhedronParameters' - ParentPartID=1604 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=14 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=1604 - StartFaceID=1605 - StartEdgeID=1619 - StartVertexID=1655 - NumNewFaces=14 - NumNewEdges=36 - NumNewVertices=24 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1997 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=1604 - SplitPlane='XY' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1604 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1998 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1604 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=14 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=-1 - StartFaceID=1999 - StartEdgeID=2000 - StartVertexID=2012 - NumNewFaces=1 - NumNewEdges=12 - NumNewVertices=12 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1999 - $begin 'FaceGeomTopol' - FaceTopol(1, 12, 12, 12) - $begin 'FaceGeometry' - Area=67500 - FcUVMid(0, -1.11022302462516e-14, 0) - $begin 'FcTolVts' - TolVt(129.903810567666, -75.0000000000001, 0, 5e-07) - TolVt(75, -129.903810567666, 0, 5e-07) - TolVt(-2.22044604925031e-14, -150, 0, 5e-07) - TolVt(-75.0000000000001, -129.903810567666, 0, 5e-07) - TolVt(-129.903810567666, -75, 0, 5e-07) - TolVt(-150, 2.22044604925031e-14, 0, 5e-07) - TolVt(-129.903810567666, 75, 0, 5e-07) - TolVt(-75, 129.903810567666, 0, 5e-07) - TolVt(1.11022302462516e-14, 150, 0, 5e-07) - TolVt(75, 129.903810567666, 0, 5e-07) - TolVt(129.903810567666, 75, 0, 5e-07) - TolVt(150, 5.55111512312578e-15, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=2000 - EdgeFaces(1607, 1999) - $begin 'EdTolVts' - TolVt(150, 5.55111512312578e-15, 0, 5e-07) - TolVt(129.903810567666, -75.0000000000001, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(139.951905283833, -37.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=2001 - EdgeFaces(1608, 1999) - $begin 'EdTolVts' - TolVt(75, -129.903810567666, 0, 5e-07) - TolVt(129.903810567666, -75.0000000000001, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(102.451905283833, -102.451905283833, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=2002 - EdgeFaces(1609, 1999) - $begin 'EdTolVts' - TolVt(-2.22044604925031e-14, -150, 0, 5e-07) - TolVt(75, -129.903810567666, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(37.5, -139.951905283833, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=2003 - EdgeFaces(1610, 1999) - $begin 'EdTolVts' - TolVt(-75.0000000000001, -129.903810567666, 0, 5e-07) - TolVt(-2.22044604925031e-14, -150, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.5, -139.951905283833, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=2004 - EdgeFaces(1611, 1999) - $begin 'EdTolVts' - TolVt(-129.903810567666, -75, 0, 5e-07) - TolVt(-75.0000000000001, -129.903810567666, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-102.451905283833, -102.451905283833, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=2005 - EdgeFaces(1612, 1999) - $begin 'EdTolVts' - TolVt(-150, 2.22044604925031e-14, 0, 5e-07) - TolVt(-129.903810567666, -75, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-139.951905283833, -37.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=2006 - EdgeFaces(1613, 1999) - $begin 'EdTolVts' - TolVt(-129.903810567666, 75, 0, 5e-07) - TolVt(-150, 2.22044604925031e-14, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-139.951905283833, 37.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=2007 - EdgeFaces(1614, 1999) - $begin 'EdTolVts' - TolVt(-75, 129.903810567666, 0, 5e-07) - TolVt(-129.903810567666, 75, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-102.451905283833, 102.451905283833, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=8 - ID=2008 - EdgeFaces(1615, 1999) - $begin 'EdTolVts' - TolVt(1.11022302462516e-14, 150, 0, 5e-07) - TolVt(-75, 129.903810567666, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.5, 139.951905283833, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=9 - ID=2009 - EdgeFaces(1616, 1999) - $begin 'EdTolVts' - TolVt(75, 129.903810567666, 0, 5e-07) - TolVt(1.11022302462516e-14, 150, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(37.5, 139.951905283833, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=10 - ID=2010 - EdgeFaces(1617, 1999) - $begin 'EdTolVts' - TolVt(129.903810567666, 75, 0, 5e-07) - TolVt(75, 129.903810567666, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(102.451905283833, 102.451905283833, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=11 - ID=2011 - EdgeFaces(1618, 1999) - $begin 'EdTolVts' - TolVt(129.903810567666, 75, 0, 5e-07) - TolVt(150, 5.55111512312578e-15, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(139.951905283833, 37.5, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=2023 - VtPos(129.903810567666, 75, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=2013 - VtPos(129.903810567666, -75.0000000000001, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=2014 - VtPos(75, -129.903810567666, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=2015 - VtPos(-2.22044604925031e-14, -150, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=2016 - VtPos(-75.0000000000001, -129.903810567666, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=2017 - VtPos(-129.903810567666, -75, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=2018 - VtPos(-150, 2.22044604925031e-14, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=2019 - VtPos(-129.903810567666, 75, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=8 - ID=2020 - VtPos(-75, 129.903810567666, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=9 - ID=2021 - VtPos(1.11022302462516e-14, 150, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=10 - ID=2022 - VtPos(75, 129.903810567666, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=11 - ID=2012 - VtPos(150, 5.55111512312578e-15, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1997 - ParentOperation=1603 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=2098 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=1604 - SplitPlane='YZ' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=1604 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=2099 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=1604 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=9 - NumWires=0 - NumLoops=9 - NumCoedges=42 - NumEdges=21 - NumVertices=14 - $end 'Topology' - BodyID=-1 - StartFaceID=2122 - StartEdgeID=2123 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=2 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2122 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=30000 - FcUVMid(0, -1.11022302462516e-14, 50) - $begin 'FcTolVts' - TolVt(0, -150, 100, 5e-07) - TolVt(-2.22044604925031e-14, -150, 0, 5e-07) - TolVt(0, 150, 0, 5e-07) - TolVt(0, 150, 100, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=2124 - EdgeFaces(1605, 2122) - $begin 'EdTolVts' - TolVt(0, 150, 100, 5e-07) - TolVt(0, -150, 100, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -1.11022302462516e-14, 100) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=2123 - EdgeFaces(1999, 2122) - $begin 'EdTolVts' - TolVt(-2.22044604925031e-14, -150, 0, 5e-07) - TolVt(0, 150, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(0, -1.11022302462516e-14, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=2098 - ParentOperation=1998 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PeriodicBC1' - Flags='Wireframe#' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Rectangle' - ID=2110 - ReferenceCoordSystemID=1 - $begin 'RectangleParameters' - KernelVersion=13 - XStart='0mm' - YStart='0mm' - ZStart='0mm' - Width='150mm' - Height='100mm' - WhichAxis='X' - $end 'RectangleParameters' - ParentPartID=2111 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=2111 - StartFaceID=-1 - StartEdgeID=2112 - StartVertexID=2116 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=2120 - $begin 'LocalOperationParameters' - KernelVersion=13 - LocalOpPart=2111 - $end 'LocalOperationParameters' - ParentPartID=2111 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=2121 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2121 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=15000 - FcUVMid(1.26330387451858e-14, 75, 50) - $begin 'FcTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(9.18485099360516e-15, 150, 3.33066907387547e-14, 5e-07) - TolVt(2.52660774903715e-14, 150, 100, 5e-07) - TolVt(1.60812264967664e-14, -2.22044604925031e-14, 100, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=2110 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='PeriodicBC2' - Flags='Wireframe#' - Color='(143 175 143)' - Transparency=0 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"vacuum"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='Rectangle' - ID=2125 - ReferenceCoordSystemID=1 - $begin 'RectangleParameters' - KernelVersion=13 - XStart='0mm' - YStart='0mm' - ZStart='0mm' - Width='-150mm' - Height='100mm' - WhichAxis='X' - $end 'RectangleParameters' - ParentPartID=2126 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=0 - NumWires=1 - NumLoops=0 - NumCoedges=0 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=2126 - StartFaceID=-1 - StartEdgeID=2127 - StartVertexID=2131 - NumNewFaces=0 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - $end 'Operation' - $begin 'Operation' - OperationType='CoverLines' - ID=2135 - $begin 'LocalOperationParameters' - KernelVersion=13 - LocalOpPart=2126 - $end 'LocalOperationParameters' - ParentPartID=2126 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=2136 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=1 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2136 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=15000 - FcUVMid(3.44818775158061e-15, -75, 50) - $begin 'FcTolVts' - TolVt(0, 0, 0, 5e-07) - TolVt(-9.18485099360516e-15, -150, -3.33066907387547e-14, 5e-07) - TolVt(6.89637550316121e-15, -150, 100, 5e-07) - TolVt(1.60812264967664e-14, -2.22044604925031e-14, 100, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - ParentOperationID=2125 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_A2_ObjectFromFace1' - Flags='' - Color='(255 0 0)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='BodyFromFaceFrom' - ID=2138 - $begin 'BodyFromFaceFromParameters' - KernelVersion=13 - WhichFace=0 - $end 'BodyFromFaceFromParameters' - ParentPartID=2139 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=2139 - StartFaceID=2140 - StartEdgeID=2141 - StartVertexID=2145 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2140 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098792 - FcUVMid(-21.9628871847231, -38.1194880755963, 0) - $begin 'FcTolVts' - TolVt(-23.1634208532821, -43.9683210783656, 0, 5e-07) - TolVt(-27.8117201874924, -39.3200217441553, 0, 5e-07) - TolVt(-20.7623535161641, -32.270655072827, 0, 5e-07) - TolVt(-16.1140541819538, -36.9189544070373, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=2143 - EdgeFaces(2140) - $begin 'EdTolVts' - TolVt(-20.7623535161641, -32.270655072827, 0, 5e-07) - TolVt(-16.1140541819538, -36.9189544070373, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-18.4382038490589, -34.5948047399321, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=2142 - EdgeFaces(2140) - $begin 'EdTolVts' - TolVt(-27.8117201874924, -39.3200217441553, 0, 5e-07) - TolVt(-20.7623535161641, -32.270655072827, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-24.2870368518282, -35.7953384084911, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=2141 - EdgeFaces(2140) - $begin 'EdTolVts' - TolVt(-23.1634208532821, -43.9683210783656, 0, 5e-07) - TolVt(-27.8117201874924, -39.3200217441553, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-25.4875705203872, -41.6441714112605, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=2144 - EdgeFaces(2140) - $begin 'EdTolVts' - TolVt(-23.1634208532821, -43.9683210783656, 0, 5e-07) - TolVt(-16.1140541819538, -36.9189544070373, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-19.6387375176179, -40.4436377427014, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=2148 - VtPos(-16.1140541819538, -36.9189544070373, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=2147 - VtPos(-20.7623535161641, -32.270655072827, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=2146 - VtPos(-27.8117201874924, -39.3200217441553, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=2145 - VtPos(-23.1634208532821, -43.9683210783656, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - BodyFromFaceToOpnId=2137 - SourceOperationID=2082 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=2185 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=13 - TargetID=2139 - TranslateVectorX='0mm' - TranslateVectorY='0mm' - TranslateVectorZ='8.375mm' - $end 'TranslateParameters' - ParentPartID=2139 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=2138 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_D1_ObjectFromFace1' - Flags='' - Color='(0 255 0)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='BodyFromFaceFrom' - ID=2150 - $begin 'BodyFromFaceFromParameters' - KernelVersion=13 - WhichFace=0 - $end 'BodyFromFaceFromParameters' - ParentPartID=2151 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=2151 - StartFaceID=2152 - StartEdgeID=2153 - StartVertexID=2157 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2152 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(-42.4846549763667, -11.4244420508611, 0) - $begin 'FcTolVts' - TolVt(-47.4693099527334, -14.7112860310661, 0, 5e-07) - TolVt(-47.4693099527334, -8.13759807065606, 0, 5e-07) - TolVt(-37.5, -8.13759807065606, 0, 5e-07) - TolVt(-37.5, -14.7112860310661, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=2155 - EdgeFaces(2152) - $begin 'EdTolVts' - TolVt(-37.5, -8.13759807065606, 0, 5e-07) - TolVt(-37.5, -14.7112860310661, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-37.5, -11.4244420508611, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=2154 - EdgeFaces(2152) - $begin 'EdTolVts' - TolVt(-47.4693099527334, -8.13759807065606, 0, 5e-07) - TolVt(-37.5, -8.13759807065606, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.4846549763667, -8.13759807065606, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=2153 - EdgeFaces(2152) - $begin 'EdTolVts' - TolVt(-47.4693099527334, -14.7112860310661, 0, 5e-07) - TolVt(-47.4693099527334, -8.13759807065606, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-47.4693099527334, -11.4244420508611, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=2156 - EdgeFaces(2152) - $begin 'EdTolVts' - TolVt(-47.4693099527334, -14.7112860310661, 0, 5e-07) - TolVt(-37.5, -14.7112860310661, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-42.4846549763667, -14.7112860310661, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=2160 - VtPos(-37.5, -14.7112860310661, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=2159 - VtPos(-37.5, -8.13759807065606, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=2158 - VtPos(-47.4693099527334, -8.13759807065606, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=2157 - VtPos(-47.4693099527334, -14.7112860310661, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - BodyFromFaceToOpnId=2149 - SourceOperationID=2080 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=2186 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=13 - TargetID=2151 - TranslateVectorX='0mm' - TranslateVectorY='0mm' - TranslateVectorZ='8.375mm' - $end 'TranslateParameters' - ParentPartID=2151 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=2150 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_C1_ObjectFromFace1' - Flags='' - Color='(255 255 0)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='BodyFromFaceFrom' - ID=2162 - $begin 'BodyFromFaceFromParameters' - KernelVersion=13 - WhichFace=0 - $end 'BodyFromFaceFromParameters' - ParentPartID=2163 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=2163 - StartFaceID=2164 - StartEdgeID=2165 - StartVertexID=2169 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2164 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(-38.1194880755963, 21.9628871847231, 0) - $begin 'FcTolVts' - TolVt(-43.9683210783656, 23.1634208532821, 0, 5e-07) - TolVt(-39.3200217441553, 27.8117201874924, 0, 5e-07) - TolVt(-32.270655072827, 20.7623535161641, 0, 5e-07) - TolVt(-36.9189544070373, 16.1140541819538, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=2167 - EdgeFaces(2164) - $begin 'EdTolVts' - TolVt(-32.270655072827, 20.7623535161641, 0, 5e-07) - TolVt(-36.9189544070373, 16.1140541819538, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-34.5948047399321, 18.4382038490589, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=2166 - EdgeFaces(2164) - $begin 'EdTolVts' - TolVt(-39.3200217441553, 27.8117201874924, 0, 5e-07) - TolVt(-32.270655072827, 20.7623535161641, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-35.7953384084911, 24.2870368518282, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=2165 - EdgeFaces(2164) - $begin 'EdTolVts' - TolVt(-43.9683210783656, 23.1634208532821, 0, 5e-07) - TolVt(-39.3200217441553, 27.8117201874924, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-41.6441714112605, 25.4875705203872, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=2168 - EdgeFaces(2164) - $begin 'EdTolVts' - TolVt(-43.9683210783656, 23.1634208532821, 0, 5e-07) - TolVt(-36.9189544070373, 16.1140541819538, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-40.4436377427014, 19.6387375176179, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=2172 - VtPos(-36.9189544070373, 16.1140541819538, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=2171 - VtPos(-32.270655072827, 20.7623535161641, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=2170 - VtPos(-39.3200217441553, 27.8117201874924, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=2169 - VtPos(-43.9683210783656, 23.1634208532821, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - BodyFromFaceToOpnId=2161 - SourceOperationID=2078 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=2187 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=13 - TargetID=2163 - TranslateVectorX='0mm' - TranslateVectorY='0mm' - TranslateVectorZ='8.375mm' - $end 'TranslateParameters' - ParentPartID=2163 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=2162 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_B1_ObjectFromFace1' - Flags='' - Color='(0 0 255)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='BodyFromFaceFrom' - ID=2174 - $begin 'BodyFromFaceFromParameters' - KernelVersion=13 - WhichFace=0 - $end 'BodyFromFaceFromParameters' - ParentPartID=2175 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=2175 - StartFaceID=2176 - StartEdgeID=2177 - StartVertexID=2181 - NumNewFaces=1 - NumNewEdges=4 - NumNewVertices=4 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=2176 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098793 - FcUVMid(-11.4244420508611, 42.4846549763667, 0) - $begin 'FcTolVts' - TolVt(-14.7112860310661, 47.4693099527334, 0, 5e-07) - TolVt(-8.13759807065607, 47.4693099527334, 0, 5e-07) - TolVt(-8.13759807065606, 37.5, 0, 5e-07) - TolVt(-14.7112860310661, 37.5, 0, 5e-07) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=2179 - EdgeFaces(2176) - $begin 'EdTolVts' - TolVt(-8.13759807065606, 37.5, 0, 5e-07) - TolVt(-14.7112860310661, 37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-11.4244420508611, 37.5, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=2178 - EdgeFaces(2176) - $begin 'EdTolVts' - TolVt(-8.13759807065607, 47.4693099527334, 0, 5e-07) - TolVt(-8.13759807065606, 37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-8.13759807065606, 42.4846549763667, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=2177 - EdgeFaces(2176) - $begin 'EdTolVts' - TolVt(-14.7112860310661, 47.4693099527334, 0, 5e-07) - TolVt(-8.13759807065607, 47.4693099527334, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-11.4244420508611, 47.4693099527334, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=2180 - EdgeFaces(2176) - $begin 'EdTolVts' - TolVt(-14.7112860310661, 47.4693099527334, 0, 5e-07) - TolVt(-14.7112860310661, 37.5, 0, 5e-07) - $end 'EdTolVts' - EdgeMidPoint(-14.7112860310661, 42.4846549763667, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=2184 - VtPos(-14.7112860310661, 37.5, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=2183 - VtPos(-8.13759807065606, 37.5, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=2182 - VtPos(-8.13759807065607, 47.4693099527334, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=2181 - VtPos(-14.7112860310661, 47.4693099527334, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - BodyFromFaceToOpnId=2173 - SourceOperationID=2067 - $end 'Operation' - $begin 'Operation' - OperationType='Move' - ID=2188 - ReferenceCoordSystemID=1 - $begin 'TranslateParameters' - KernelVersion=13 - TargetID=2175 - TranslateVectorX='0mm' - TranslateVectorY='0mm' - TranslateVectorZ='8.375mm' - $end 'TranslateParameters' - ParentPartID=2175 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=1 - NumWires=0 - NumLoops=1 - NumCoedges=4 - NumEdges=4 - NumVertices=4 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=2174 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $end 'ToplevelParts' - $begin 'OperandParts' - $begin 'GeometryPart' - $begin 'Attributes' - Name='Coil_A1' - Flags='' - Color='(255 0 0)' - Transparency=0.7 - PartCoordinateSystem=1 - UDMId=-1 - GroupId=-1 - MaterialValue='"copper"' - SurfaceMaterialValue='""' - SolveInside=true - ShellElement=false - ShellElementThickness='0mm' - ReferenceTemperature='20cel' - IsMaterialEditable=true - UseMaterialAppearance=false - IsLightweight=false - IsAlwaysHidden=false - $end 'Attributes' - $begin 'Operations' - $begin 'Operation' - OperationType='SeparateFrom' - ID=952 - $begin 'SeparateFromParameters' - KernelVersion=4 - WhichBody=0 - $end 'SeparateFromParameters' - ParentPartID=960 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=960 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'BodyGeomTopoForSeparate' - FaceId=258 - EdgeId=692 - VertexId=948 - BoundingBoxLow[3: 29.0157170363003, 0.759172652669693, -40.07368796041] - BoundingBoxHigh[3: 49.4856893206376, 31.7571745257355, 40.07368796041] - $end 'BodyGeomTopoForSeparate' - $end 'OperationIdentity' - $end 'Operation' - $begin 'SectionToOperation' - OperationType='SectionTo' - ID=968 - ReferenceCoordSystemID=1 - $begin 'SectionToParameters' - KernelVersion=4 - ClonedEntity=960 - CreateNewObjects=true - SectionPlane='XY' - $end 'SectionToParameters' - ParentPartID=960 - ReferenceUDMID=-1 - $end 'SectionToOperation' - $begin 'CloneToOperation' - OperationType='DuplicateAroundAxis' - ID=992 - ReferenceCoordSystemID=1 - $begin 'DuplicateAroundAxisParameters' - KernelVersion=4 - ClonedEntity=960 - CreateNewObjects=true - WhichAxis='Z' - AngleStr='45deg' - NumClones='8' - $end 'DuplicateAroundAxisParameters' - ParentPartID=960 - ReferenceUDMID=-1 - $end 'CloneToOperation' - $begin 'Operation' - OperationType='Rotate' - ID=1681 - ReferenceCoordSystemID=1 - $begin 'RotateParameters' - KernelVersion=4 - TargetID=960 - RotateAxis='Z' - RotateAngle='22.5deg' - $end 'RotateParameters' - ParentPartID=960 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=14 - NumWires=0 - NumLoops=16 - NumCoedges=72 - NumEdges=36 - NumVertices=24 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=0 - NumNewEdges=0 - NumNewVertices=0 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $end 'OperationIdentity' - TranformBaseOperationID=952 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=1821 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=960 - SplitPlane='XY' - WhichSide='PositiveOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=960 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=1822 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=960 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=1 - NumShells=1 - NumFaces=12 - NumWires=0 - NumLoops=12 - NumCoedges=60 - NumEdges=30 - NumVertices=20 - $end 'Topology' - BodyID=-1 - StartFaceID=1823 - StartEdgeID=1825 - StartVertexID=1833 - NumNewFaces=2 - NumNewEdges=8 - NumNewVertices=8 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $begin 'Face' - NormalizedSerialNum=0 - ID=1823 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098792 - FcUVMid(21.9628871847231, 38.1194880755963, 0) - $begin 'FcTolVts' - TolVt(20.7623535161641, 32.270655072827, 0, 0) - TolVt(16.1140541819538, 36.9189544070373, 0, 0) - TolVt(23.1634208532821, 43.9683210783656, 0, 0) - TolVt(27.8117201874924, 39.3200217441553, 0, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $begin 'Face' - NormalizedSerialNum=1 - ID=1824 - $begin 'FaceGeomTopol' - FaceTopol(1, 4, 4, 4) - $begin 'FaceGeometry' - Area=65.5351328098791 - FcUVMid(38.1194880755963, 21.9628871847231, 0) - $begin 'FcTolVts' - TolVt(43.9683210783656, 23.1634208532821, 0, 0) - TolVt(36.9189544070373, 16.1140541819538, 0, 0) - TolVt(32.270655072827, 20.7623535161641, 0, 0) - TolVt(39.3200217441553, 27.8117201874924, 0, 0) - $end 'FcTolVts' - $end 'FaceGeometry' - $end 'FaceGeomTopol' - $end 'Face' - $end 'NewFaces' - $begin 'NewEdges' - $begin 'Edge' - NormalizedSerialNum=0 - ID=1825 - EdgeFaces(205, 1823) - $begin 'EdTolVts' - TolVt(16.1140541819538, 36.9189544070373, 0, 0) - TolVt(20.7623535161641, 32.270655072827, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(18.4382038490589, 34.5948047399322, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=1 - ID=1826 - EdgeFaces(208, 1823) - $begin 'EdTolVts' - TolVt(23.1634208532821, 43.9683210783656, 0, 0) - TolVt(16.1140541819538, 36.9189544070373, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(19.6387375176179, 40.4436377427015, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=2 - ID=1827 - EdgeFaces(207, 1823) - $begin 'EdTolVts' - TolVt(27.8117201874924, 39.3200217441553, 0, 0) - TolVt(23.1634208532821, 43.9683210783656, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(25.4875705203872, 41.6441714112604, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=3 - ID=1828 - EdgeFaces(206, 1823) - $begin 'EdTolVts' - TolVt(20.7623535161641, 32.270655072827, 0, 0) - TolVt(27.8117201874924, 39.3200217441553, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(24.2870368518282, 35.7953384084911, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=4 - ID=1829 - EdgeFaces(200, 1824) - $begin 'EdTolVts' - TolVt(36.9189544070373, 16.1140541819538, 0, 0) - TolVt(43.9683210783656, 23.1634208532821, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(40.4436377427014, 19.6387375176179, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=5 - ID=1830 - EdgeFaces(205, 1824) - $begin 'EdTolVts' - TolVt(32.270655072827, 20.7623535161641, 0, 0) - TolVt(36.9189544070373, 16.1140541819538, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(34.5948047399321, 18.4382038490589, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=6 - ID=1831 - EdgeFaces(199, 1824) - $begin 'EdTolVts' - TolVt(39.3200217441553, 27.8117201874924, 0, 0) - TolVt(32.270655072827, 20.7623535161641, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(35.7953384084912, 24.2870368518282, 0) - $end 'Edge' - $begin 'Edge' - NormalizedSerialNum=7 - ID=1832 - EdgeFaces(207, 1824) - $begin 'EdTolVts' - TolVt(43.9683210783656, 23.1634208532821, 0, 0) - TolVt(39.3200217441553, 27.8117201874924, 0, 0) - $end 'EdTolVts' - EdgeMidPoint(41.6441714112604, 25.4875705203872, 0) - $end 'Edge' - $end 'NewEdges' - $begin 'NewVertices' - $begin 'Vertex' - NormalizedSerialNum=0 - ID=1833 - VtPos(20.7623535161641, 32.270655072827, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=1 - ID=1834 - VtPos(16.1140541819538, 36.9189544070373, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=2 - ID=1835 - VtPos(23.1634208532821, 43.9683210783656, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=3 - ID=1836 - VtPos(27.8117201874924, 39.3200217441553, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=4 - ID=1837 - VtPos(43.9683210783656, 23.1634208532821, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=5 - ID=1838 - VtPos(36.9189544070373, 16.1140541819538, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=6 - ID=1839 - VtPos(32.270655072827, 20.7623535161641, 0) - $end 'Vertex' - $begin 'Vertex' - NormalizedSerialNum=7 - ID=1840 - VtPos(39.3200217441553, 27.8117201874924, 0) - $end 'Vertex' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=1821 - ParentOperation=1681 - $end 'Operation' - $begin 'Operation' - OperationType='Split' - ID=2064 - ReferenceCoordSystemID=1 - $begin 'SplitToParameters' - KernelVersion=4 - SourcePartID=960 - SplitPlane='YZ' - WhichSide='NegativeOnly' - ToolType='PlaneTool' - ToolEntityID=-1 - ToolPartID=-1 - $end 'SplitToParameters' - ParentPartID=960 - ReferenceUDMID=-1 - $end 'Operation' - $begin 'Operation' - OperationType='SplitEdit' - ID=2065 - $begin 'SplitFromParameters' - $end 'SplitFromParameters' - ParentPartID=960 - ReferenceUDMID=-1 - IsSuppressed=false - $begin 'OperationIdentity' - $begin 'Topology' - NumLumps=-1 - NumShells=-1 - NumFaces=-1 - NumWires=-1 - NumLoops=-1 - NumCoedges=-1 - NumEdges=-1 - NumVertices=-1 - $end 'Topology' - BodyID=-1 - StartFaceID=-1 - StartEdgeID=-1 - StartVertexID=-1 - NumNewFaces=-1 - NumNewEdges=-1 - NumNewVertices=-1 - FaceNameAndIDMap() - EdgeNameAndIDMap() - VertexNameAndIDMap() - $begin 'GeomTopolBasedOperationIdentityHelper' - $begin 'NewFaces' - $end 'NewFaces' - $begin 'NewEdges' - $end 'NewEdges' - $begin 'NewVertices' - $end 'NewVertices' - $end 'GeomTopolBasedOperationIdentityHelper' - $end 'OperationIdentity' - SplitFromOperation=-1 - SplitToOperation=2064 - ParentOperation=1822 - $end 'Operation' - $end 'Operations' - $end 'GeometryPart' - $end 'OperandParts' - $begin 'Planes' - $end 'Planes' - $begin 'Points' - $end 'Points' - $begin 'GeometryEntityLists' - $begin 'GeometryEntityListOperation' - OperationType='EntityList' - ID=2109 - $begin 'GeometryEntityListParameters' - EntityType='Face' - EntityList(1906) - $end 'GeometryEntityListParameters' - ParentPartID=-1 - ReferenceUDMID=-1 - $begin 'Attributes' - Name='Facelist1' - $end 'Attributes' - $end 'GeometryEntityListOperation' - $end 'GeometryEntityLists' - $begin 'CachedNames' - $begin 'allobjects' - allobjects(-1) - $end 'allobjects' - $begin 'coil_a' - coil_a(1, 2) - $end 'coil_a' - $begin 'coil_a2_objectfromface' - coil_a2_objectfromface(1) - $end 'coil_a2_objectfromface' - $begin 'coil_b' - coil_b(1, 2) - $end 'coil_b' - $begin 'coil_b1_objectfromface' - coil_b1_objectfromface(1) - $end 'coil_b1_objectfromface' - $begin 'coil_c' - coil_c(1) - $end 'coil_c' - $begin 'coil_c1_objectfromface' - coil_c1_objectfromface(1) - $end 'coil_c1_objectfromface' - $begin 'coil_d' - coil_d(1) - $end 'coil_d' - $begin 'coil_d1_objectfromface' - coil_d1_objectfromface(1) - $end 'coil_d1_objectfromface' - $begin 'facelist' - facelist(1) - $end 'facelist' - $begin 'global' - global(-1) - $end 'global' - $begin 'model' - model(-1) - $end 'model' - $begin 'periodicbc' - periodicbc(1, 2) - $end 'periodicbc' - $begin 'region' - region(-1) - $end 'region' - $begin 'rotor' - rotor(-1) - $end 'rotor' - $begin 'stator' - stator(-1) - $end 'stator' - $end 'CachedNames' - $end 'GeometryOperations' - $begin 'GeometryDependencies' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 5) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1679) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 5) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1698) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1679) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1699) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1700) - DependencyObject('GeometryBodyOperation', 1698) - DependencyObject('GeometryOperation', 1699) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 2024) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2025) - DependencyObject('GeometryBodyOperation', 1700) - DependencyObject('GeometryOperation', 2024) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 158) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 951) - DependencyObject('GeometryBodyOperation', 158) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1680) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 951) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1752) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1753) - DependencyObject('GeometryBodyOperation', 1680) - DependencyObject('GeometryOperation', 1752) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 2044) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2045) - DependencyObject('GeometryBodyOperation', 1753) - DependencyObject('GeometryOperation', 2044) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 993) - DependencyObject('GeometryOperation', 992) - DependencyObject('GeometryBodyOperation', 952) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1683) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 993) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1843) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1844) - DependencyObject('GeometryBodyOperation', 1683) - DependencyObject('GeometryOperation', 1843) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 2066) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2067) - DependencyObject('GeometryBodyOperation', 1844) - DependencyObject('GeometryOperation', 2066) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=0 - DependencyObject('GeometryOperation', 2173) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1069) - DependencyObject('GeometryOperation', 992) - DependencyObject('GeometryBodyOperation', 952) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1684) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1069) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1863) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1864) - DependencyObject('GeometryBodyOperation', 1684) - DependencyObject('GeometryOperation', 1863) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 2077) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2078) - DependencyObject('GeometryBodyOperation', 1864) - DependencyObject('GeometryOperation', 2077) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=0 - DependencyObject('GeometryOperation', 2161) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1145) - DependencyObject('GeometryOperation', 992) - DependencyObject('GeometryBodyOperation', 952) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1685) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1145) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1883) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1884) - DependencyObject('GeometryBodyOperation', 1685) - DependencyObject('GeometryOperation', 1883) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 2079) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2080) - DependencyObject('GeometryBodyOperation', 1884) - DependencyObject('GeometryOperation', 2079) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=0 - DependencyObject('GeometryOperation', 2149) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1221) - DependencyObject('GeometryOperation', 992) - DependencyObject('GeometryBodyOperation', 952) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1686) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1221) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1903) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1904) - DependencyObject('GeometryBodyOperation', 1686) - DependencyObject('GeometryOperation', 1903) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 2081) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2082) - DependencyObject('GeometryBodyOperation', 1904) - DependencyObject('GeometryOperation', 2081) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=0 - DependencyObject('GeometryOperation', 2137) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1297) - DependencyObject('GeometryOperation', 992) - DependencyObject('GeometryBodyOperation', 952) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1687) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 1297) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1923) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1924) - DependencyObject('GeometryBodyOperation', 1687) - DependencyObject('GeometryOperation', 1923) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 2083) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2084) - DependencyObject('GeometryBodyOperation', 1924) - DependencyObject('GeometryOperation', 2083) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 1603) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1997) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1998) - DependencyObject('GeometryOperation', 1997) - DependencyObject('GeometryBodyOperation', 1603) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 2098) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2099) - DependencyObject('GeometryBodyOperation', 1998) - DependencyObject('GeometryOperation', 2098) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 2110) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 2120) - DependencyObject('GeometryBodyOperation', 2110) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 2125) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryBodyOperation', 2135) - DependencyObject('GeometryBodyOperation', 2125) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2138) - DependencyObject('GeometryOperation', 2137) - DependencyObject('GeometryBodyOperation', 2082) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2185) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 2138) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2150) - DependencyObject('GeometryOperation', 2149) - DependencyObject('GeometryBodyOperation', 2080) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2186) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 2150) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2162) - DependencyObject('GeometryOperation', 2161) - DependencyObject('GeometryBodyOperation', 2078) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2187) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 2162) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2174) - DependencyObject('GeometryOperation', 2173) - DependencyObject('GeometryBodyOperation', 2067) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2188) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 2174) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 952) - DependencyObject('GeometryBodyOperation', 951) - DependencyObject('GeometryBodyOperation', 158) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 968) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 992) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1681) - DependencyObject('CoordinateSystem', 1) - DependencyObject('GeometryBodyOperation', 952) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 1821) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 1822) - DependencyObject('GeometryBodyOperation', 1681) - DependencyObject('GeometryOperation', 1821) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=1 - DependencyObject('GeometryOperation', 2064) - DependencyObject('CoordinateSystem', 1) - $end 'DependencyInformation' - $begin 'DependencyInformation' - NumParents=2 - DependencyObject('GeometryBodyOperation', 2065) - DependencyObject('GeometryBodyOperation', 1822) - DependencyObject('GeometryOperation', 2064) - $end 'DependencyInformation' - $end 'GeometryDependencies' - $end 'GeometryCore' - $begin 'AssignedEntities' - AssignedObject[11: 6, 159, 994, 1070, 1146, 1222, 1298, 2139, 2151, 2163, 2175] - $end 'AssignedEntities' - GroupByMaterial=true - GroupSheetByMaterial=true - GroupCompByDefID=true - DoNotOrganizeUnderGroup=false - DoNotOrganizeUnderComponent=false - OrganizeLightweight=false - ShowGroup=true - $begin 'LastUserInputs' - $end 'LastUserInputs' - $begin 'MotionSetupList' - NextUniqueID=0 - MoveBackwards=false - $end 'MotionSetupList' - $end 'ModelSetup' - $begin '3DComponent' - $end '3DComponent' - $begin 'BoundarySetup' - $begin 'GlobalBoundData' - CoreLossObjectIDs[0:] - ConsiderCoreLossEffectOnField=false - MinimumTimeStep='0s' - ExternalCircuitFile[0:] - ExternalCircuitFileExtenstion='' - InductorNames[0:] - SourceNames[0:] - SourceType[0:] - OriginalPath='D:/Documents and Settings/TSambhar/' - OriginalDesign='' - CurrentProbes() - VoltageProbes() - $begin 'ParamValues' - $end 'ParamValues' - ExternalSimulinkCircuitFileExtenstion='' - MaxwellToSimulink[0:] - SimulinkToMaxwell[0:] - SimulinkFile='' - ExternalSimulinkCircuitFile='' - $begin 'EddyEffect' - $end 'EddyEffect' - $begin 'OP_Option' - LinkType='None' - $end 'OP_Option' - $begin 'YConnectionData' - $end 'YConnectionData' - $end 'GlobalBoundData' - $begin 'Boundaries' - NextUniqueID=40 - MoveBackwards=false - $begin 'Terminal_A2_1' - ID=28 - BoundType='Coil Terminal' - IsComponent=false - Objects(2139) - ParentBndID=24 - 'Conductor number'='150' - Winding=24 - 'Point out of terminal'=false - $end 'Terminal_A2_1' - $begin 'Terminal_D1_1' - ID=30 - BoundType='Coil Terminal' - IsComponent=false - Objects(2151) - ParentBndID=27 - 'Conductor number'='150' - Winding=27 - 'Point out of terminal'=false - $end 'Terminal_D1_1' - $begin 'Terminal_C1_1' - ID=32 - BoundType='Coil Terminal' - IsComponent=false - Objects(2163) - ParentBndID=26 - 'Conductor number'='150' - Winding=26 - 'Point out of terminal'=false - $end 'Terminal_C1_1' - $begin 'Terminal_B1_1' - ID=34 - BoundType='Coil Terminal' - IsComponent=false - Objects(2175) - ParentBndID=25 - 'Conductor number'='150' - Winding=25 - 'Point out of terminal'=false - $end 'Terminal_B1_1' - $begin 'Winding1' - ID=24 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=false - Current='0A' - Resistance='2.3ohm' - Inductance='0mH' - Voltage='120V' - ParallelBranchesNum='1' - $end 'Winding1' - $begin 'Winding2' - ID=25 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=false - Current='0A' - Resistance='2.3ohm' - Inductance='0mH' - Voltage='120V' - ParallelBranchesNum='1' - $end 'Winding2' - $begin 'Winding3' - ID=26 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=false - Current='0A' - Resistance='2.3ohm' - Inductance='0mH' - Voltage='120V' - ParallelBranchesNum='1' - $end 'Winding3' - $begin 'Winding4' - ID=27 - BoundType='Winding Group' - IsComponent=false - ParentBndID=-1 - Type='Voltage' - IsSolid=false - Current='0A' - Resistance='2.3ohm' - Inductance='0mH' - Voltage='120V' - ParallelBranchesNum='1' - $end 'Winding4' - $end 'Boundaries' - $begin 'ProductSpecificData' - $end 'ProductSpecificData' - $end 'BoundarySetup' - $begin 'MaxwellParameterSetup' - $begin 'MaxwellParameters' - NextUniqueID=0 - MoveBackwards=false - $end 'MaxwellParameters' - MotionParams() - $end 'MaxwellParameterSetup' - $begin 'MeshSetup' - $begin 'MeshSettings' - $begin 'GlobalSurfApproximation' - CurvedSurfaceApproxChoice='UseSlider' - SliderMeshSettings=5 - $end 'GlobalSurfApproximation' - $begin 'GlobalCurvilinear' - Apply=true - $end 'GlobalCurvilinear' - $begin 'GlobalModelRes' - UseAutoLength=true - $end 'GlobalModelRes' - MeshMethod='Auto' - UseLegacyFaceterForTauVolumeMesh=false - DynamicSurfaceResolution=false - UseFlexMeshingForTAUvolumeMesh=false - UseAlternativeMeshMethodsAsFallBack=true - AllowPhiForLayeredGeometry=false - $end 'MeshSettings' - $begin 'MeshOperations' - NextUniqueID=2 - MoveBackwards=false - $begin 'Length1' - RefineInside=true - ID=0 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(1222, 994, 1298, 1070, 1146) - RestrictElem=true - NumMaxElem='4000' - RestrictLength=false - MaxLength='16.029475184164mm' - $end 'Length1' - $begin 'Length2' - RefineInside=true - ID=1 - Type='LengthBased' - IsComponent=false - Enabled=true - Objects(6, 159) - RestrictElem=true - NumMaxElem='1000' - RestrictLength=false - MaxLength='24mm' - $end 'Length2' - $end 'MeshOperations' - $end 'MeshSetup' - $begin 'AnalysisSetup' - $begin 'SolveSetups' - NextUniqueID=2 - MoveBackwards=false - $begin 'Setup1' - ID=1 - SetupType='Transient' - Enabled=true - $begin 'MeshLink' - ImportMesh=false - $end 'MeshLink' - NonlinearSolverResidual='0.005' - ScalarPotential='Second Order' - SmoothBHCurve=false - StopTime='0.01s' - TimeStep='0.002s' - OutputError=false - OutputPerObjectCoreLoss=false - OutputPerObjectSolidLoss=false - UseControlProgram=false - ControlProgramName=' ' - ControlProgramArg=' ' - CallCtrlProgAfterLastStep=false - FastReachSteadyState=false - AutoDetectSteadyState=false - IsGeneralTransient=true - IsHalfPeriodicTransient=false - SaveFieldsType='None' - UseNonLinearIterNum=false - CacheSaveKind='Count' - NumberSolveSteps=1 - RangeStart='0s' - RangeEnd='0.1s' - $end 'Setup1' - $end 'SolveSetups' - $end 'AnalysisSetup' - $begin 'Optimetrics' - $begin 'OptimetricsSetups' - NextUniqueID=0 - MoveBackwards=false - $end 'OptimetricsSetups' - $end 'Optimetrics' - $begin 'Solutions' - $end 'Solutions' - $begin 'FieldsReporter' - $begin 'FieldsCalculator' - Line_Discretization=1000 - $end 'FieldsCalculator' - $begin 'PlotDefaults' - Default_SolutionId=118 - Default_PlotFolder='Automatic' - Default_Time='-1s' - $end 'PlotDefaults' - $begin 'FieldsPlotManagerID' - NextUniqueID=1 - MoveBackwards=false - NumQuantityType=0 - NumPlots=0 - $end 'FieldsPlotManagerID' - $begin 'Report3dInGeomWnd' - Report3dNum=0 - $end 'Report3dInGeomWnd' - $begin 'Report2dInGeomWnd' - Report2dNum=0 - $end 'Report2dInGeomWnd' - $begin 'AntennaParametersInGeomWnd' - AntennaParametersNum=0 - $end 'AntennaParametersInGeomWnd' - AntennaParametersPlotTablesOrder() - $end 'FieldsReporter' - $begin 'SolutionManager' - $begin 'SimSetup' - TypeName='BaseSetup' - ID=117 - Name='Setup1' - $begin 'Solution' - ID=118 - Name='Transient' - $begin 'SimDataExtractor' - $begin 'QuantityIDs' - NextUniqueID=0 - MoveBackwards=false - IDMap() - $end 'QuantityIDs' - SimValue('Current(Winding1)', 1, 76, false, SimValueID=321, 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - SimValue('Current(Winding2)', 1, 76, false, SimValueID=322, 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - SimValue('Current(Winding3)', 1, 76, false, SimValueID=323, 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - SimValue('Current(Winding4)', 1, 76, false, SimValueID=324, 3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $begin 'Sweeps' - $begin 'PostprocessSweep' - Variable='NormalizedDistance' - RegularSweep=1 - Units='' - Minimum=0 - Maximum=1 - Increment=0.01 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phi' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Theta' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'PostprocessSweep' - Variable='Phase' - RegularSweep=1 - Units='deg' - Minimum=0 - Maximum=6.28318530717959 - Increment=0.0872664625997165 - CreateIndexedSubsweepFlag=false - $end 'PostprocessSweep' - $begin 'Sweep' - Variable='Time' - Column='0.01s' - Units='s' - $end 'Sweep' - $end 'Sweeps' - $end 'SimDataExtractor' - $end 'Solution' - $end 'SimSetup' - $begin 'Version ID Map' - V=318 - $begin 'Setup' - N='Setup1' - V=318 - Soln(N='Transient', V=318) - $end 'Setup' - $end 'Version ID Map' - $begin 'ID Map' - $begin 'Setup' - N='Setup1' - I=117 - Soln(N='Transient', I=118) - $end 'Setup' - $end 'ID Map' - ValidationCacheHeader='' - $end 'SolutionManager' - $begin 'UserDefinedSolutionMgr' - NextUniqueID=1000000 - MoveBackwards=false - $end 'UserDefinedSolutionMgr' - $begin 'DatasetSolutionMgr' - NextUniqueID=2000000 - MoveBackwards=false - $end 'DatasetSolutionMgr' - Notes=$begin_cdata$ " This example is the same as Design1 except using Periodic and Symmetry boundaries. - -" With a 180deg periodicity, we need to define a Sheet object for the 2 periodic boundaries. Because the flux repeats exactly, we use the Hd=Hi periodicity condition. - -" The default boundary condition represents the necessary Symmetry condition (Odd: Flux Tangential). We could optionally explicitly assign the Odd Symmetry boundary condition, and that is recommended when using Multiphysics coupling. - -" Note that it is necessary to use a Symmetry Factor = 4 in this example so that the Voltage source will produce the correct currents (and flux-linkage, back-emf, torque, loss, etc.). You can find this setting in the menu Maxwell 3D > Design Settings, in the Symmetry Multiplier tab). - -" We adjust the current excitations by making sure that the cross-section is within the coil volume, and the periodic condition automatically connects conductors that touch the face, and the symmetry condition accounts for the coils being split. $end_cdata$ - $begin 'AnimationSetups' - $end 'AnimationSetups' - CacheHeaderFile='HDR05433526816897967864.tmp' - $end 'Maxwell3DModel' - $begin 'DataInstances' - DesignEditor='TopLevel' - Refdes('0', 'U1') - Refdes('1', 'U2') - $begin 'CompInstances' - $begin 'Compinst' - ID='1' - Status='Status' - CompName='Maxwell3DDesign2' - GatesInUse() - $begin 'Properties' - TextProp('ID', 'SRID', '', '1') - $end 'Properties' - $begin 'Parameters' - MenuProp('CoSimulator', 'OHD', '', 'DefaultNetlist', 0) - ButtonProp('CosimDefinition', 'OHD', '', '', 'Edit', 40501, ButtonPropClientData()) - $end 'Parameters' - $end 'Compinst' - $end 'CompInstances' - $begin 'Instance' - DesignEditor='Maxwell3DDesign2' - ID='1' - $begin 'MaxwellDesignInstance' - DesignInstanceID=4 - $begin 'WindowPosition' - $begin 'EditorWindow' - Circuit(Editor3d(View('View Orientation Gadget'=1, WindowPos(3, -1, -1, -8, -31, 52, 52, 1701, 334), OrientationMatrix(-0.00269399327225983, -0.00431999983265996, 0.00683051999658346, 0, 0.00808198004961014, -0.00143999990541488, 0.0022768396884203, 0, 0, 0.00719999987632036, 0.00455368030816317, 0, -0.202049493789673, -0.684000015258789, -5.59689426422119, 1, 0, -3.71813726425171, 3.71813726425171, -1, 1, -1.57276153564453, 13.3357601165771), Drawings[16: 'Coil_B1', 'Coil_C1', 'Coil_D1', 'Coil_A2', 'Coil_B2', 'Rotor', 'Stator', 'Region', 'PeriodicBC1', 'PeriodicBC2', 'Coil_A2_ObjectFromFace1', 'Coil_D1_ObjectFromFace1', 'Coil_C1_ObjectFromFace1', 'Coil_B1_ObjectFromFace1', 'Length1', 'Length2'], 'View Data'('Render Mode'=1, 'Show Ruler'=1, 'Coordinate Systems View Mode'=1, 'CS Triad View Mode'=0, 'Render Facets'=1, GridVisible=1, GridAutoAdjust=1, GridAutoExtents=1, GridType='Rect', GridStyle='Line', NumPixels=30, dXForGrid=20, dYForGrid=20, dZForGrid=20, dRForGrid=20, dThetaForGrid=10), 'View Solution Context'('Solution ID'=118, 'View IntrinsicVar'='Time=\'-1s\''), ClipPlanes(ClipPlaneOptions(DisableWhenDrawingNewPlane=true, ForceOpqaueForUnclipped=false, ShowClipped=false, Transparency=0, HandleColor=16776960))))) - $end 'EditorWindow' - $end 'WindowPosition' - $begin 'ReportSetup' - $begin 'ReportManager' - $begin 'Reports' - $begin 'XY Plot 1' - ReportID=3 - ReportName='XY Plot 1' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=3 - SolutionID=118 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=0 - VersionID=3 - Name='Current(Winding1)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Current(Winding1)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=4 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=3 - SolutionID=118 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=1 - VersionID=4 - Name='Current(Winding2)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Current(Winding2)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=4 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=3 - SolutionID=118 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=2 - VersionID=5 - Name='Current(Winding3)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Current(Winding3)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=4 - $end 'TraceDef' - $begin 'TraceDef' - TraceDefinitionType='TraceDefinition' - $begin 'DesignSolnDefn' - $begin 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - DesignID=3 - SolutionID=118 - $begin 'REPORT_TYPE_SIM_VALUE_CONTEXT' - ReportType=3 - SimValueContext(3, 0, 2, 0, false, false, -1, 1, 0, 1, 1, '', 0, 0) - $end 'REPORT_TYPE_SIM_VALUE_CONTEXT' - $end 'DESIGN_SOLUTION_SIM_VALUE_CONTEXT' - $end 'DesignSolnDefn' - ID=4 - VersionID=7 - Name='Current(Winding4)' - TieNameToExpr=true - $begin 'Components' - $begin 'TraceComponentDefinition' - Expr='Time' - $end 'TraceComponentDefinition' - $begin 'TraceComponentDefinition' - Expr='Current(Winding4)' - $end 'TraceComponentDefinition' - $end 'Components' - $begin 'ExtendedTraceInfo' - NumPoints=0 - TraceType=0 - Offset=0 - XLabel='' - SamplingPeriod='0' - SamplingPeriodOffset='0' - AutoDelay=true - DelayValue='0ps' - AutoCompCrossAmplitude=true - CrossingAmplitude='0mV' - YAxis=1 - AutoCompEyeMeasurementPoint=true - EyeMeasurementPoint='0ps' - EyePamLow() - EyePamVRef() - EyePamHigh() - EyePamNames() - EyePamStrictVRef=false - $end 'ExtendedTraceInfo' - $begin 'TraceFamiliesDisplayDefinition' - DisplayFamiliesType='DisplayAll' - $end 'TraceFamiliesDisplayDefinition' - $begin 'PointsetDefinition' - $begin 'SubsweepDefParamsContainer' - $begin '0' - SubsweepType='Special' - SweepVariableName='Time' - HasMinMaxLimit=false - $end '0' - $end 'SubsweepDefParamsContainer' - FamilyBlock() - $end 'PointsetDefinition' - DesignInstanceID=4 - $end 'TraceDef' - $end 'XY Plot 1' - $end 'Reports' - NextUniqueID=5 - MoveBackwards=false - $begin 'NextVersID' - NextUniqueID=8 - MoveBackwards=false - $end 'NextVersID' - $end 'ReportManager' - $begin 'Reports' - $begin 'XY Plot 1' - ReportID=3 - $begin 'Report2D' - name='XY Plot 1' - ReportID=3 - ReportType=3 - DisplayType=1 - Title='' - Domain='' - $begin 'Migration' - MigVersion(1, 0, '2021R1 mig(1.0)') - $end 'Migration' - $begin 'Graph2DsV2' - $begin 'Graph2D' - TraceDefID=0 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=1 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=2 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $begin 'Graph2D' - TraceDefID=4 - Type='Continuous' - Axis='Y1' - $end 'Graph2D' - $end 'Graph2DsV2' - $begin 'PlotDisplayDataManager' - NextUniqueID=59 - MoveBackwards=false - $begin 'PlotHeaderDataSource' - CompanyName='' - ShowDesignName=true - ProjectFileName='' - $end 'PlotHeaderDataSource' - StockNameIDMap(AxisX=1, AxisY1=2, AxisY10=43, AxisY11=44, AxisY12=45, AxisY13=46, AxisY14=47, AxisY15=48, AxisY16=49, AxisY17=50, AxisY18=51, AxisY19=52, AxisY2=8, AxisY20=53, AxisY3=9, AxisY4=10, AxisY5=38, AxisY6=39, AxisY7=40, AxisY8=41, AxisY9=42, Grid=11, Header=0, Legend=5, XYHorizScroller=7) - $begin 'SourceList' - $end 'SourceList' - Version='17.0:20150830' - $begin 'DocAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=128, G=64, B=100) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowCircle' - SymbolColor(R=128, G=0, B=128) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=0, B=200) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalDownTriangle' - SymbolColor(R=192, G=192, B=192) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=255, G=0, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HorizontalLeftTriangle' - SymbolColor(R=0, G=25, B=185) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-19 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-13 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - Height=-11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - Height=-11 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - Height=-12 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DocAttributes' - $begin 'DisplayTypeAttributes' - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=11 - $begin 'CartesianGridDescAttribute' - ShowXMinor=true - ShowYMinor=true - ShowXMajor=true - ShowYMajor=true - ShowBorder=true - $end 'CartesianGridDescAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'CurveCartesianAttribute' - YAxis='Y1' - $end 'CurveCartesianAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=21 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=237, G=28, B=36) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowHorizontalLeftTriangle' - SymbolColor(R=155, G=93, B=112) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=23 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=255, B=0) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='Circle' - SymbolColor(R=128, G=158, B=173) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=25 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=0, G=181, B=255) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='HollowVerticalDownTriangle' - SymbolColor(R=79, G=17, B=25) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=35 - $begin 'CurveRenderAttribute' - $begin 'LineRenderAttribute' - LineStyle='Solid' - LineWidth=3 - LineColor(R=247, G=147, B=30) - $end 'LineRenderAttribute' - TraceType='Continuous' - SymbolType='VerticalEllipse' - SymbolColor(R=125, G=155, B=61) - ShowSymbols=false - SymbolFrequency=15 - ShowArrows=false - $end 'CurveRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=0 - $begin 'HeaderRenderAttribute' - $begin 'TitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=14 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TitleFont' - $begin 'SubtitleFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=10 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'SubtitleFont' - $end 'HeaderRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=5 - $begin 'LegendRenderAttribute' - $begin 'LegendTableAttrib' - $begin 'TableRenderAttribute' - $begin 'TableFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableFontAttrib' - $begin 'TableTitleFontAttrib' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=8 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TableTitleFontAttrib' - TableBorderLineWidth=1 - TableBorderLineColor=0 - TableGridLineWidth=1 - TableGridLineColor=12632256 - TableBackgroundColor=16777215 - TableHeaderBackgroundColor=14408667 - $end 'TableRenderAttribute' - $end 'LegendTableAttrib' - LegendName='' - ShowTraceName=true - ShowSolutionName=true - ShowVariationKey=true - FileNameDisplayModeInVariationKey=0 - DockMode='None' - $end 'LegendRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=1 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=2 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=8 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=9 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=10 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=38 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=39 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=40 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=41 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=42 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=43 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=44 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=45 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=46 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=47 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=48 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=49 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=50 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=51 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=52 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=53 - $begin 'LineAxisRenderAttribute' - DecimalFieldWidth=3 - DecimalFieldPrecision=2 - ManualTitle='' - AxisColor(R=0, G=0, B=0) - MinScale=0 - MaxScale=1 - TickSpacing=1 - ManualUnits=false - Units='mm' - AxisScale='Linear' - NumberFormat='Auto' - $begin 'TextFont' - $begin 'FontAttribute' - $begin 'Font' - HeightInPts=9 - Width=0 - Escapement=0 - Orientation=0 - Weight=400 - Italic=0 - Underline=0 - StrikeOut=0 - CharSet=0 - OutPrecision=7 - ClipPrecision=48 - Quality=6 - PitchAndFamily=0 - FaceName='Arial' - $end 'Font' - Color(R=0, G=0, B=0) - $end 'FontAttribute' - $end 'TextFont' - InfMapMode=false - InfMapValue=1.79769313486232e+306 - AutoRangeMin=true - AutoRangeMax=true - AutoSpacing=true - kNumMinorDivisions=5 - ShowAxisTitle=true - ShowAxisUnits=true - vwm='FullWnd' - viewWndWd=#nan - ActivateMargins=true - MarginPercent=0 - NeverCollapse=false - AxisStripes=true - $end 'LineAxisRenderAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - $end 'DisplayTypeAttributes' - $begin 'DocDefaultAttributes' - $begin 'PlotAttributeStoreMap' - $end 'PlotAttributeStoreMap' - $end 'DocDefaultAttributes' - $begin 'PerViewPlotAttributeStoreMap' - $begin 'MapItem' - ItemID=-1 - $begin 'PlotAttributeStoreMap' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=1000 - Left=1063 - Bottom=9717 - Right=8420 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=12 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=1000 - Left=1063 - Bottom=9717 - Right=8420 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=19 - $begin 'BasicLayoutAttribute' - $begin 'LayoutRect' - Top=75 - Left=75 - Bottom=9925 - Right=737 - $end 'LayoutRect' - $end 'BasicLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=15 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=8420 - Bottom=9925 - Right=9925 - $end 'AxisRect' - $begin 'GridRect' - Top=1000 - Left=1063 - Bottom=9717 - Right=8420 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $begin 'SubMapItem' - DataSourceID=16 - $begin 'CartesianAxisLayoutAttribute' - $begin 'AxisRect' - Top=75 - Left=1063 - Bottom=1000 - Right=8420 - $end 'AxisRect' - $begin 'GridRect' - Top=1000 - Left=1063 - Bottom=9717 - Right=8420 - $end 'GridRect' - AxisCollapsed=false - AxisExpandCollapseByUser=false - $end 'CartesianAxisLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=4 - $begin 'CartesianCurveGroupLayoutAttribute' - X_spc=0.002 - X_fwd=4 - X_fpr=2 - Y1_spc=10 - Y1_fwd=4 - Y1_fpr=2 - $end 'CartesianCurveGroupLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $begin 'MainMapItem' - $begin 'SubMapItem' - DataSourceID=6 - $begin 'DockableOverlayLayoutAttribute' - $begin 'Dock_0' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=7628 - Left=3714 - Bottom=8771 - Right=11214 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=true - $end 'OverlayLayoutAttribute' - $end 'Dock_0' - $begin 'Dock_1' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=8857 - Left=0 - Bottom=10000 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=true - $end 'OverlayLayoutAttribute' - $end 'Dock_1' - $begin 'Dock_2' - $begin 'OverlayLayoutAttribute' - $begin 'BoundingRect' - Top=0 - Left=0 - Bottom=1143 - Right=10000 - $end 'BoundingRect' - ModifySize=false - ModifyPosition=true - $end 'OverlayLayoutAttribute' - $end 'Dock_2' - $end 'DockableOverlayLayoutAttribute' - $end 'SubMapItem' - $end 'MainMapItem' - $end 'PlotAttributeStoreMap' - PlotType=1 - $end 'MapItem' - $end 'PerViewPlotAttributeStoreMap' - IsViewAttribServer=false - ViewID=-1 - $begin 'SourceIDMap' - IDMapItem(0, 0, -1, 21) - IDMapItem(1, 0, -1, 23) - IDMapItem(2, 0, -1, 25) - IDMapItem(4, 0, -1, 35) - $end 'SourceIDMap' - $begin 'TraceCharacteristicsMgr' - $begin 'TraceCharacteristicsDataSource' - ID=27 - $begin 'Parameters' - Name='max' - FunctionName='max' - $begin 'Range' - Type='Full' - Start='0' - End='1' - $end 'Range' - $end 'Parameters' - $end 'TraceCharacteristicsDataSource' - $end 'TraceCharacteristicsMgr' - $begin 'CartesianXMarkerManager' - RefMarkerID=-1 - CurrentMarkerID=-1 - $begin 'ReferenceCurves' - $end 'ReferenceCurves' - $end 'CartesianXMarkerManager' - $begin 'CartesianYMarkerManager' - $end 'CartesianYMarkerManager' - $begin 'ViewRecordExpansion' - ExpMap(21, true, 23, true, 25, true, 35, true) - ViewID=58 - $end 'ViewRecordExpansion' - XAxisStackID=-1 - $begin 'AllTransSrcDwg' - $begin 'PT' - ID=1 - TransSrcDwg(-1, 0, 19, 1, 15, 2, 16, 5, 6, 11, 12, 21, 22, 23, 24, 25, 26, 27, 28, 35, 36) - $end 'PT' - $end 'AllTransSrcDwg' - $begin 'AllPtSVID' - PtID(1, -1, 4) - $end 'AllPtSVID' - $end 'PlotDisplayDataManager' - $end 'Report2D' - $end 'XY Plot 1' - $end 'Reports' - $begin 'ReportsWindowInfoList' - $begin 'XY Plot 1' - ReportID=3 - $begin 'WindowInfoList' - $begin 'Report2D' - $end 'Report2D' - $end 'WindowInfoList' - $end 'XY Plot 1' - $end 'ReportsWindowInfoList' - $end 'ReportSetup' - $begin 'Properties' - $end 'Properties' - $begin 'UserDefinedDocument' - $begin 'Data' - $end 'Data' - $end 'UserDefinedDocument' - $end 'MaxwellDesignInstance' - $end 'Instance' - $begin 'SODInfo' - $begin 'Maxwell3DDesign2' - $begin 'CosimDefinition' - CosimDefName='DefaultNetlist' - $begin 'SODInstanceMap' - $end 'SODInstanceMap' - SODComponentList() - $end 'CosimDefinition' - $end 'Maxwell3DDesign2' - $end 'SODInfo' - $end 'DataInstances' - $begin 'WBSystemIDToDesignInstanceIDMap' - $end 'WBSystemIDToDesignInstanceIDMap' - $begin 'WBSysIDSysDetails' - $end 'WBSysIDSysDetails' - $begin 'WBConnIDConnDetails' - $end 'WBConnIDConnDetails' - $begin 'WBMaterialGuidDetails' - WBMaterialGuidMap() - $end 'WBMaterialGuidDetails' - $begin 'MinervaProjectSettingsBlk' - MinervaRemoteFilePath='' - FolderContainerString='' - $end 'MinervaProjectSettingsBlk' -$end 'AnsoftProject' -$begin 'AllReferencedFilesForProject' -$end 'AllReferencedFilesForProject' -$begin 'ProjectPreview' - IsEncrypted=false - Thumbnail64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCABgAGADASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAooooAKKKKACvz2+IX/BS39nz4aftt/\ -D79g3X9J+JNx8WfiJaeHpLLxbpeh+Grj4W+H9V8Wab4l1Xw14Z8Ua9deMYdSsfEN7aeGnNvDb6PdRud\ -Ys8TbWuWtv0Jr+YP4/8A/BP79vrx98Z/2pP2t/CvgfwfL49s/wBvn9nH4vfA74X30/gyX4ifEX4Y/ss\ -WreB/Afi7wv8AFqX46Wfh/wCHHhm98IeLfFN1feHNe0f+1b59LXz3srgW8E4B/Qrpn7R37POt+K/+EE\ -0b48/BjV/HH/CY+JPh3/whumfFHwPf+K/+FgeDo4pvF/gX/hHbXXHvP+Ex0qKeBtS0zyfttisyNdQRB\ -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' - $begin 'DesignInfo' - DesignName='Maxwell3DDesign2' - Notes='"\ This example is the same as Design1 except using Periodic and Symmetry boundaries.\ -\ -"\ With a 180deg periodicity, we need to define a Sheet object for the 2 periodic boundaries. Because the flux repeats exactly, we use the Hd=Hi periodicity condition.\ -\ -"\ The default boundary condition represents the necessary Symmetry condition (Odd: Flux Tangential). We could optionally explicitly assign the Odd Symmetry boundary condition, and that is recommended when using Multiphysics coupling.\ -\ -"\ Note that it is necessary to use a Symmetry Factor = 4 in this example so that the Voltage source will produce the correct currents (and flux-linkage, back-emf, torque, loss, etc.). You can find this setting in the menu Maxwell 3D > Design Settings, in the Symmetry Multiplier tab).\ -\ -"\ We adjust the current excitations by making sure that the cross-section is within the coil volume, and the periodic condition automatically connects conductors that touch the face, and the symmetry condition accounts for the coils being split.' - Factory='Maxwell 3D' - IsSolved=true - 'Nominal Setups'[1: 'Setup1'] - 'Nominal Setup Types'[1: ''] - 'Optimetrics Setups'[0:] - 'Optimetrics Experiment Types'[0:] - Image64='/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQE\ -BAQICAQECAQEBAgICAgICAgICAQICAgICAgICAgL/2wBDAQEBAQEBAQEBAQECAQEBAgICAgICAgICAg\ -ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAARCADIAMgDASIAAhEBAxEB/\ -8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQR\ -BRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUp\ -TVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5us\ -LDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAA\ -AECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHB\ -CSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ\ -3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4u\ -Pk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD+/iiiigAooooAKKKKACiiigAooooAKKKKACiii\ -gAooooAKKKKACivyK/4LV/Gq2+HX7Gs/wAJLbxp4f8AAHib9rn4i+Cf2ZdM8W+J9b0/QPD/AIT8MfED\ -U1/4Wd4u8S6pql3b2+meE7T4eWOv29/dzzw29sNcheaRVYBvjX9gf9pDwp+zD+zJ/wAFQPgJ8CfiR8P\ -PjXpP7AenfGb49fsyeIrLxfpvxI8DeJPhB4x+HPib4weAtA1DXPBOvoviRNK8d6Vr9l4iNjfWkyXOsN\ -Busp2VgAf0f0V/Px8P/wDgo/8A8FDNIX9gH4wftB/AX9mTQ/2aP24/HvwN+DukL8O/E3xCu/jD4e8af\ -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\ -gAooooAKKKKACiiigAooooAKKKKAP/2Q==' - $end 'DesignInfo' -$end 'ProjectPreview' diff --git a/tests/system/general/test_08_Primitives3D.py b/tests/system/general/test_08_Primitives3D.py index 4f3a71e6d85..250d0c25b13 100644 --- a/tests/system/general/test_08_Primitives3D.py +++ b/tests/system/general/test_08_Primitives3D.py @@ -1347,6 +1347,14 @@ def test_67_assign_material(self): cyl1 = self.aedtapp.modeler.create_cylinder(orientation="X", origin=[50, 0, 0], radius=1, height=20) cyl2 = self.aedtapp.modeler.create_cylinder(orientation="Z", origin=[0, 0, 50], radius=1, height=10) + assert box1.solve_inside + assert box2.solve_inside + assert cyl1.solve_inside + assert cyl2.solve_inside + + box3 = self.aedtapp.modeler.create_box([40, 40, 40], [6, 8, 9], material="pec") + assert not box3.solve_inside + objects_list = [box1, box2, cyl1, cyl2] self.aedtapp.assign_material(objects_list, "copper") assert self.aedtapp.modeler[box1].material_name == "copper" diff --git a/tests/system/general/test_27_Maxwell2D.py b/tests/system/general/test_27_Maxwell2D.py index 7b66f96e10f..fdd9c77259a 100644 --- a/tests/system/general/test_27_Maxwell2D.py +++ b/tests/system/general/test_27_Maxwell2D.py @@ -42,34 +42,52 @@ ctrl_prg = "TimeStepCtrl" ctrl_prg_file = "timestep_only.py" -m2d_fields = "maxwell_e_line_export_field" +m2d_export_fields = "maxwell_e_line_export_field" -class TestClass: +@pytest.fixture() +def aedtapp(add_app): + app = add_app( + project_name=test_name, + design_name=design_name, + application=ansys.aedt.core.Maxwell2d, + subfolder=test_subfolder, + ) + yield app + app.close_project(app.project_name) + + +@pytest.fixture() +def m2d_fields(add_app): + app = add_app(application=ansys.aedt.core.Maxwell2d, project_name=m2d_export_fields, subfolder=test_subfolder) + yield app + app.close_project(app.project_name) + + +@pytest.fixture() +def m2d_ctrl_prg(add_app): + app = add_app(application=ansys.aedt.core.Maxwell2d, project_name=ctrl_prg, subfolder=test_subfolder) + yield app + app.close_project(app.project_name) - def test_assign_initial_mesh_from_slider(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) +@pytest.fixture() +def m2d_app(add_app): + app = add_app(application=ansys.aedt.core.Maxwell2d) + yield app + app.close_project(app.project_name) + + +class TestClass: + + def test_assign_initial_mesh_from_slider(self, aedtapp): assert aedtapp.mesh.assign_initial_mesh_from_slider(4) with pytest.raises(ValueError): aedtapp.mesh.assign_initial_mesh_from_slider(method="dummy") with pytest.raises(ValueError): aedtapp.mesh.assign_initial_mesh(method="dummy") - aedtapp.close_project(aedtapp.project_name) - - def test_assign_winding(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_winding(self, aedtapp): bounds = aedtapp.assign_winding(assignment=["Coil"], current=20e-3) assert bounds o = aedtapp.modeler.create_rectangle([0, 0, 0], [3, 1], name="Rectangle", material="copper") @@ -86,16 +104,8 @@ def test_assign_winding(self, add_app): bounds_name = ansys.aedt.core.generate_unique_name("Coil") bounds = aedtapp.assign_winding(assignment=["Coil"], name=bounds_name) assert bounds_name == bounds.name - aedtapp.close_project(aedtapp.project_name) - - def test_assign_coil(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_coil(self, aedtapp): bound = aedtapp.assign_coil(assignment=["Coil"]) assert bound polarity = "Positive" @@ -107,16 +117,8 @@ def test_assign_coil(self, add_app): bound_name = ansys.aedt.core.generate_unique_name("Coil") bound = aedtapp.assign_coil(assignment=["Coil"], name=bound_name) assert bound_name == bound.name - aedtapp.close_project(aedtapp.project_name) - - def test_create_vector_potential(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_create_vector_potential(self, aedtapp): region = aedtapp.modeler["Region"] edge_object = region.edges[0] bounds = aedtapp.assign_vector_potential(edge_object.id, 3) @@ -129,53 +131,21 @@ def test_create_vector_potential(self, add_app): assert bound2 assert bound2.props["Value"] == "2" assert bound2.update() - aedtapp.close_project(aedtapp.project_name) - - def test_create_setup(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_create_setup(self, aedtapp): mysetup = aedtapp.create_setup() mysetup.props["SaveFields"] = True assert mysetup.update() - aedtapp.close_project(aedtapp.project_name) - - def test_assign_balloon(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_balloon(self, aedtapp): region = aedtapp.modeler["Region"] aedtapp.assign_balloon(region.edges) - aedtapp.close_project(aedtapp.project_name) - - def test_generate_design_data(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_generate_design_data(self, aedtapp): assert aedtapp.generate_design_data() assert aedtapp.read_design_data() - aedtapp.close_project(aedtapp.project_name) - - def test_assign_torque(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_torque(self, aedtapp): torque = aedtapp.assign_torque("Rotor_Section1") assert torque.type == "Torque" assert torque.props["Objects"][0] == "Rotor_Section1" @@ -185,16 +155,8 @@ def test_assign_torque(self, add_app): assert torque.name == "Torque_Test" assert not torque.props["Is Positive"] assert torque.props["Objects"][0] == "Rotor_Section1" - aedtapp.close_project(aedtapp.project_name) - - def test_assign_force(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_force(self, aedtapp): force = aedtapp.assign_force("Magnet2_Section1") assert force.type == "Force" assert force.props["Objects"][0] == "Magnet2_Section1" @@ -202,71 +164,42 @@ def test_assign_force(self, add_app): assert force.delete() force = aedtapp.assign_force(assignment="Magnet2_Section1", force_name="Force_Test") assert force.name == "Force_Test" - aedtapp.close_project(aedtapp.project_name) - - def test_assign_current_source(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_current_source(self, aedtapp): coil = aedtapp.modeler.create_circle( position=[0, 0, 0], radius=5, num_sides="8", is_covered=True, name="Coil", material="Copper" ) assert aedtapp.assign_current([coil]) assert not aedtapp.assign_current([coil.faces[0].id]) - aedtapp.close_project(aedtapp.project_name) - - def test_assign_master_slave(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_master_slave(self, aedtapp): aedtapp.modeler.create_rectangle([1, 1, 1], [3, 1], name="Rectangle1", material="copper") mas, slave = aedtapp.assign_master_slave( aedtapp.modeler["Rectangle1"].edges[0].id, aedtapp.modeler["Rectangle1"].edges[2].id, ) - assert "Independent" in mas.name - assert "Dependent" in slave.name - aedtapp.close_project(aedtapp.project_name) - - def test_check_design_preview_image(self, local_scratch, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, + assert mas.properties["Type"] == "Independent" + assert slave.properties["Type"] == "Dependent" + assert mas.props["Edges"][0] == aedtapp.modeler["Rectangle1"].edges[0].id + assert slave.props["Edges"][0] == aedtapp.modeler["Rectangle1"].edges[2].id + mas, slave = aedtapp.assign_master_slave( + aedtapp.modeler["Rectangle1"].edges[0].id, aedtapp.modeler["Rectangle1"].edges[2].id, boundary="my_bound" + ) + assert mas.name == "my_bound" + assert slave.name == "my_bound_dep" + assert not aedtapp.assign_master_slave( + aedtapp.modeler["Rectangle1"].edges[0].id, + aedtapp.modeler["Rectangle1"].edges[1].id, ) + def test_check_design_preview_image(self, local_scratch, aedtapp): jpg_file = os.path.join(local_scratch.path, "file.jpg") assert aedtapp.export_design_preview_to_jpg(jpg_file) - aedtapp.close_project(aedtapp.project_name) - - def test_model_depth(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_model_depth(self, aedtapp): assert aedtapp.change_design_settings({"ModelDepth": "3mm"}) - aedtapp.close_project(aedtapp.project_name) - - def test_apply_skew(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_apply_skew(self, aedtapp): assert aedtapp.apply_skew() assert not aedtapp.apply_skew(skew_type="Invalid") assert not aedtapp.apply_skew(skew_part="Invalid") @@ -279,16 +212,8 @@ def test_apply_skew(self, add_app): assert aedtapp.apply_skew( skew_type="User Defined", number_of_slices="4", custom_slices_skew_angles=["1", "2", "3", "4"] ) - aedtapp.close_project(aedtapp.project_name) - - def test_assign_movement(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_movement(self, aedtapp): aedtapp.xy_plane = True aedtapp.modeler.create_circle([0, 0, 0], 10, name="Circle_inner") aedtapp.modeler.create_circle([0, 0, 0], 30, name="Circle_outer") @@ -296,41 +221,17 @@ def test_assign_movement(self, add_app): assert bound assert bound.props["PositivePos"] == "300deg" assert bound.props["Objects"][0] == "Circle_outer" - aedtapp.close_project(aedtapp.project_name) - - def test_change_inductance_computation(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_change_inductance_computation(self, aedtapp): assert aedtapp.change_inductance_computation() assert aedtapp.change_inductance_computation(True, False) assert aedtapp.change_inductance_computation(False, False) - aedtapp.close_project(aedtapp.project_name) - - def test_initial_mesh_settings(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_initial_mesh_settings(self, aedtapp): assert aedtapp.mesh.initial_mesh_settings assert aedtapp.mesh.initial_mesh_settings.props - aedtapp.close_project(aedtapp.project_name) - - def test_assign_end_connection(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_end_connection(self, aedtapp): rect = aedtapp.modeler.create_rectangle([0, 0, 0], [5, 5], material="aluminum") rect2 = aedtapp.modeler.create_rectangle([15, 20, 0], [5, 5], material="aluminum") bound = aedtapp.assign_end_connection([rect, rect2]) @@ -341,54 +242,23 @@ def test_assign_end_connection(self, add_app): assert not aedtapp.assign_end_connection([rect]) aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY assert not aedtapp.assign_end_connection([rect, rect2]) - aedtapp.close_project(aedtapp.project_name) - - def test_setup_y_connection(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name="Y_Connections", - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_setup_y_connection(self, aedtapp): + aedtapp.set_active_design("Y_Connections") assert aedtapp.setup_y_connection(["PhaseA", "PhaseB", "PhaseC"]) assert aedtapp.setup_y_connection(["PhaseA", "PhaseB"]) assert aedtapp.setup_y_connection() - aedtapp.close_project(aedtapp.project_name) - - def test_change_symmetry_multiplier(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_change_symmetry_multiplier(self, aedtapp): assert aedtapp.change_symmetry_multiplier(2) - aedtapp.close_project(aedtapp.project_name) - - def test_eddy_effects_on(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_eddy_effects_on(self, aedtapp): assert aedtapp.eddy_effects_on(["Coil_1"], enable_eddy_effects=True) assert aedtapp.oboundary.GetEddyEffect("Coil_1") aedtapp.eddy_effects_on(["Coil_1"], enable_eddy_effects=False) assert not aedtapp.oboundary.GetEddyEffect("Coil_1") - aedtapp.close_project(aedtapp.project_name) - - def test_assign_symmetry(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_symmetry(self, aedtapp): region = [x for x in aedtapp.modeler.object_list if x.name == "Region"] band = [x for x in aedtapp.modeler.object_list if x.name == "Band"] assert aedtapp.assign_symmetry([region[0].edges[0], band[0].edges[0]], "Symmetry_Test_IsOdd") @@ -403,16 +273,8 @@ def test_assign_symmetry(self, add_app): if bound.name == "Symmetry_Test_IsEven": assert bound.type == "Symmetry" assert not bound.props["IsOdd"] - aedtapp.close_project(aedtapp.project_name) - - def test_export_rl_matrix(self, local_scratch, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_export_rl_matrix(self, local_scratch, aedtapp): aedtapp.set_active_design("Sinusoidal") assert not aedtapp.export_rl_matrix("Test1", " ") aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY @@ -432,16 +294,9 @@ def test_export_rl_matrix(self, local_scratch, add_app): export_path_2 = os.path.join(local_scratch.path, "export_rl_matrix_Test2.txt") assert aedtapp.export_rl_matrix("Test2", export_path_2, False, 10, 3, True) assert os.path.exists(export_path_2) - aedtapp.close_project(aedtapp.project_name) - - def test_assign_current_density(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name="Sinusoidal", - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_assign_current_density(self, aedtapp): + aedtapp.set_active_design("Sinusoidal") bound = aedtapp.assign_current_density("Coil", "CurrentDensity_1") assert bound assert bound.props["Objects"] == ["Coil"] @@ -458,59 +313,14 @@ def test_assign_current_density(self, add_app): assert bound_group.props[bound_group.props["items"][0]]["Value"] == "0" assert bound_group.props[bound_group.props["items"][0]]["CoordinateSystem"] == "" assert not aedtapp.assign_current_density("Circle_inner", "CurrentDensity_1") - aedtapp.close_project(aedtapp.project_name) - - def test_add_mesh_link(self, local_scratch, add_app): - aedtapp = add_app( - project_name=test_name, - design_name="Sinusoidal", - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) - - assert aedtapp.setups[0].add_mesh_link(design=design_name) - meshlink_props = aedtapp.setups[0].props["MeshLink"] - assert meshlink_props["Project"] == "This Project*" - assert meshlink_props["PathRelativeTo"] == "TargetProject" - assert meshlink_props["Design"] == design_name - assert meshlink_props["Soln"] == "Setup1 : LastAdaptive" - assert sorted(list(meshlink_props["Params"].keys())) == sorted(aedtapp.available_variations.variables) - assert sorted(list(meshlink_props["Params"].values())) == sorted(aedtapp.available_variations.variables) - assert not aedtapp.setups[0].add_mesh_link(design="") - assert aedtapp.setups[0].add_mesh_link(design=design_name, solution="Setup1 : LastAdaptive") - assert not aedtapp.setups[0].add_mesh_link(design=design_name, solution="Setup_Test : LastAdaptive") - assert aedtapp.setups[0].add_mesh_link( - design=design_name, parameters=aedtapp.available_variations.nominal_w_values_dict - ) - example_project = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, test_name + ".aedt") - example_project_copy = os.path.join(local_scratch.path, test_name + "_copy.aedt") - shutil.copyfile(example_project, example_project_copy) - assert os.path.exists(example_project_copy) - assert aedtapp.setups[0].add_mesh_link(design=design_name, project=example_project_copy) - aedtapp.close_project(aedtapp.project_name) - - def test_set_variable(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_set_variable(self, aedtapp): aedtapp.variable_manager.set_variable("var_test", expression="123") aedtapp["var_test"] = "234" assert "var_test" in aedtapp.variable_manager.design_variable_names assert aedtapp.variable_manager.design_variables["var_test"].expression == "234" - aedtapp.close_project(aedtapp.project_name) - - def test_cylindrical_gap(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_cylindrical_gap(self, aedtapp): assert not aedtapp.mesh.assign_cylindrical_gap("Band") [ x.delete() @@ -526,16 +336,8 @@ def test_cylindrical_gap(self, add_app): if x.type == "Cylindrical Gap Based" or x.type == "CylindricalGap" ] assert aedtapp.mesh.assign_cylindrical_gap("Band", name="cyl_gap_test", band_mapping_angle=2) - aedtapp.close_project(aedtapp.project_name) - - def test_skin_depth(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_skin_depth(self, aedtapp): edge = aedtapp.modeler["Rotor_Section1"].edges[0] mesh = aedtapp.mesh.assign_skin_depth(assignment=edge, skin_depth="0.3mm", layers_number=3) assert mesh @@ -550,16 +352,8 @@ def test_skin_depth(self, add_app): assert mesh.props["Edges"][0] == edge1.id assert mesh.props["SkinDepth"] == "0.3mm" assert mesh.props["NumLayers"] == 3 - aedtapp.close_project(aedtapp.project_name) - - def test_start_continue_from_previous_setup(self, local_scratch, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_start_continue_from_previous_setup(self, local_scratch, aedtapp): assert aedtapp.setups[0].start_continue_from_previous_setup( design="Y_Connections", solution="Setup1 : Transient" ) @@ -580,16 +374,8 @@ def test_start_continue_from_previous_setup(self, local_scratch, add_app): assert aedtapp.setups[1].props["PrevSoln"]["Project"] == example_project_copy assert aedtapp.setups[1].props["PrevSoln"]["Design"] == "Y_Connections" assert aedtapp.setups[1].props["PrevSoln"]["Soln"] == "Setup1 : Transient" - aedtapp.close_project(aedtapp.project_name) - - def test_design_excitations_by_type(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_design_excitations_by_type(self, aedtapp): coils = aedtapp.excitations_by_type["Coil"] assert coils assert len(coils) == len([bound for bound in aedtapp.excitation_objects.values() if bound.type == "Coil"]) @@ -601,16 +387,8 @@ def test_design_excitations_by_type(self, add_app): assert len(wdg_group) == len( [bound for bound in aedtapp.excitation_objects.values() if bound.type == "Winding Group"] ) - aedtapp.close_project(aedtapp.project_name) - - def test_boundaries_by_type(self, add_app): - aedtapp = add_app( - project_name=test_name, - design_name=design_name, - application=ansys.aedt.core.Maxwell2d, - subfolder=test_subfolder, - ) + def test_boundaries_by_type(self, aedtapp): coils = aedtapp.boundaries_by_type["Coil"] assert coils assert len(coils) == len([bound for bound in aedtapp.boundaries if bound.type == "Coil"]) @@ -620,64 +398,82 @@ def test_boundaries_by_type(self, add_app): wdg_group = aedtapp.boundaries_by_type["Winding Group"] assert wdg_group assert len(wdg_group) == len([bound for bound in aedtapp.boundaries if bound.type == "Winding Group"]) - aedtapp.close_project(aedtapp.project_name) - @pytest.mark.skipif(config["NonGraphical"], reason="Test fails on build machine") - def test_import_dxf(self, add_app): - aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, design_name="dxf") + def test_export_field_file(self, local_scratch, m2d_fields): + output_file = os.path.join(local_scratch.path, "e_tang_field.fld") + assert m2d_fields.post.export_field_file( + quantity="E_Line", output_file=output_file, assignment="Poly1", objects_type="Line" + ) + assert os.path.exists(output_file) + def test_control_program(self, m2d_ctrl_prg): + user_ctl_path = "user.ctl" + ctrl_prg_path = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, ctrl_prg_file) + assert m2d_ctrl_prg.setups[0].enable_control_program(control_program_path=ctrl_prg_path) + assert m2d_ctrl_prg.setups[0].enable_control_program( + control_program_path=ctrl_prg_path, control_program_args="3" + ) + assert not m2d_ctrl_prg.setups[0].enable_control_program( + control_program_path=ctrl_prg_path, control_program_args=3 + ) + assert m2d_ctrl_prg.setups[0].enable_control_program( + control_program_path=ctrl_prg_path, call_after_last_step=True + ) + invalid_ctrl_prg_path = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, "invalid.py") + assert not m2d_ctrl_prg.setups[0].enable_control_program(control_program_path=invalid_ctrl_prg_path) + m2d_ctrl_prg.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY + assert not m2d_ctrl_prg.setups[0].enable_control_program(control_program_path=ctrl_prg_path) + if os.path.exists(user_ctl_path): + os.unlink(user_ctl_path) + + @pytest.mark.skipif(config["NonGraphical"], reason="Test fails on build machine") + def test_import_dxf(self, m2d_app): dxf_file = os.path.join(TESTS_GENERAL_PATH, "example_models", "cad", "DXF", "dxf2.dxf") - dxf_layers = aedtapp.get_dxf_layers(dxf_file) + dxf_layers = m2d_app.get_dxf_layers(dxf_file) assert isinstance(dxf_layers, list) - assert aedtapp.import_dxf(dxf_file, dxf_layers) + assert m2d_app.import_dxf(dxf_file, dxf_layers) dxf_layers = ["invalid", "invalid1"] - assert not aedtapp.import_dxf(dxf_file, dxf_layers) - aedtapp.close_project(aedtapp.project_name) - - def test_assign_floating(self, add_app): - aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, design_name="Floating") + assert not m2d_app.import_dxf(dxf_file, dxf_layers) - aedtapp.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticXY - rect = aedtapp.modeler.create_rectangle([0, 0, 0], [3, 1]) - floating = aedtapp.assign_floating(assignment=rect, charge_value=3, name="floating_test") + def test_assign_floating(self, m2d_app): + m2d_app.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticXY + rect = m2d_app.modeler.create_rectangle([0, 0, 0], [3, 1]) + floating = m2d_app.assign_floating(assignment=rect, charge_value=3, name="floating_test") assert floating assert floating.name == "floating_test" assert floating.props["Objects"][0] == rect.name assert floating.props["Value"] == "3" - aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY - floating = aedtapp.assign_floating(assignment=rect, charge_value=3, name="floating_test1") + m2d_app.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY + floating = m2d_app.assign_floating(assignment=rect, charge_value=3, name="floating_test1") assert not floating - aedtapp.close_project(aedtapp.project_name) - def test_matrix(self, add_app): - aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, design_name="Matrix") - - aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY - aedtapp.modeler.create_rectangle([0, 1.5, 0], [8, 3], is_covered=True, name="Coil_1", material="vacuum") - aedtapp.modeler.create_rectangle([8.5, 1.5, 0], [8, 3], is_covered=True, name="Coil_2", material="vacuum") - aedtapp.modeler.create_rectangle([16, 1.5, 0], [8, 3], is_covered=True, name="Coil_3", material="vacuum") - aedtapp.modeler.create_rectangle([32, 1.5, 0], [8, 3], is_covered=True, name="Coil_4", material="vacuum") - aedtapp.assign_current("Coil_1", amplitude=1, swap_direction=False, name="Current1") - aedtapp.assign_current("Coil_2", amplitude=1, swap_direction=True, name="Current2") - aedtapp.assign_current("Coil_3", amplitude=1, swap_direction=True, name="Current3") - aedtapp.assign_current("Coil_4", amplitude=1, swap_direction=True, name="Current4") - matrix = aedtapp.assign_matrix(assignment="Current1") + def test_matrix(self, m2d_app): + m2d_app.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY + m2d_app.modeler.create_rectangle([0, 1.5, 0], [8, 3], is_covered=True, name="Coil_1", material="vacuum") + m2d_app.modeler.create_rectangle([8.5, 1.5, 0], [8, 3], is_covered=True, name="Coil_2", material="vacuum") + m2d_app.modeler.create_rectangle([16, 1.5, 0], [8, 3], is_covered=True, name="Coil_3", material="vacuum") + m2d_app.modeler.create_rectangle([32, 1.5, 0], [8, 3], is_covered=True, name="Coil_4", material="vacuum") + m2d_app.assign_current("Coil_1", amplitude=1, swap_direction=False, name="Current1") + m2d_app.assign_current("Coil_2", amplitude=1, swap_direction=True, name="Current2") + m2d_app.assign_current("Coil_3", amplitude=1, swap_direction=True, name="Current3") + m2d_app.assign_current("Coil_4", amplitude=1, swap_direction=True, name="Current4") + matrix = m2d_app.assign_matrix(assignment="Current1") assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["Source"] == "Current1" assert matrix.delete() - matrix = aedtapp.assign_matrix( + matrix = m2d_app.assign_matrix( assignment=["Current1", "Current2"], matrix_name="Test1", turns=2, return_path="Current3" ) assert len(matrix.props["MatrixEntry"]["MatrixEntry"]) == 2 - matrix = aedtapp.assign_matrix( + matrix = m2d_app.assign_matrix( assignment=["Current1", "Current2"], matrix_name="Test2", turns=[2, 1], return_path=["Current3", "Current4"] ) assert matrix.props["MatrixEntry"]["MatrixEntry"][1]["ReturnPath"] == "Current4" - matrix = aedtapp.assign_matrix( + matrix = m2d_app.assign_matrix( assignment=["Current1", "Current2"], matrix_name="Test3", turns=[2, 1], return_path=["Current1", "Current1"] ) assert not matrix group_sources = {"Group1_Test": ["Current3", "Current2"]} - matrix = aedtapp.assign_matrix( + matrix = m2d_app.assign_matrix( assignment=["Current3", "Current2"], matrix_name="Test4", turns=[2, 1], @@ -686,7 +482,7 @@ def test_matrix(self, add_app): ) assert matrix.name == "Test4" group_sources = {"Group1_Test": ["Current3", "Current2"], "Group2_Test": ["Current1", "Current2"]} - matrix = aedtapp.assign_matrix( + matrix = m2d_app.assign_matrix( assignment=["Current1", "Current2"], matrix_name="Test5", turns=[2, 1], @@ -695,7 +491,7 @@ def test_matrix(self, add_app): ) assert matrix.props["MatrixGroup"]["MatrixGroup"] group_sources = {"Group1_Test": ["Current1", "Current3"], "Group2_Test": ["Current2", "Current4"]} - matrix = aedtapp.assign_matrix( + matrix = m2d_app.assign_matrix( assignment=["Current1", "Current2", "Current3", "Current4"], matrix_name="Test6", turns=2, @@ -704,7 +500,7 @@ def test_matrix(self, add_app): ) assert matrix.props["MatrixGroup"]["MatrixGroup"][0]["GroupName"] == "Group1_Test" group_sources = {"Group1_Test": ["Current1", "Current3"], "Group2_Test": ["Current2", "Current4"]} - matrix = aedtapp.assign_matrix( + matrix = m2d_app.assign_matrix( assignment=["Current1", "Current2", "Current3", "Current4"], matrix_name="Test7", turns=[5, 1], @@ -713,7 +509,7 @@ def test_matrix(self, add_app): ) assert len(matrix.props["MatrixGroup"]["MatrixGroup"]) == 2 group_sources = {"Group1_Test": ["Current1", "Current3", "Current2"], "Group2_Test": ["Current2", "Current4"]} - matrix = aedtapp.assign_matrix( + matrix = m2d_app.assign_matrix( assignment=["Current1", "Current2", "Current3"], matrix_name="Test8", turns=[2, 1, 2, 3], @@ -725,7 +521,7 @@ def test_matrix(self, add_app): matrix.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] = 3 assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] == 3 group_sources = {"Group1_Test": ["Current1", "Current3"], "Group2_Test": ["Current2", "Current4"]} - matrix = aedtapp.assign_matrix( + matrix = m2d_app.assign_matrix( assignment=["Current1", "Current2", "Current3", "Current4"], matrix_name="Test9", turns=[5, 1, 2, 3], @@ -734,110 +530,74 @@ def test_matrix(self, add_app): ) for l in matrix.props["MatrixEntry"]["MatrixEntry"]: assert l["ReturnPath"] == "infinite" - aedtapp.close_project(aedtapp.project_name) - def test_solution_types_setup(self, add_app): - aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, design_name="test_setups") - - aedtapp.solution_type = SOLUTIONS.Maxwell2d.TransientXY - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + def test_solution_types_setup(self, m2d_app): + m2d_app.solution_type = SOLUTIONS.Maxwell2d.TransientXY + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.TransientZ - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.TransientZ + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticZ - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticZ + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentZ - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentZ + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticXY - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticXY + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticZ - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.ElectroStaticZ + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.DCConductionXY - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.DCConductionXY + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.DCConductionZ - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.DCConductionZ + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.ACConductionXY - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.ACConductionXY + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.ACConductionZ - setup = aedtapp.create_setup(setup_type=aedtapp.solution_type) + m2d_app.solution_type = SOLUTIONS.Maxwell2d.ACConductionZ + setup = m2d_app.create_setup(setup_type=m2d_app.solution_type) assert setup setup.delete() - aedtapp.close_project(aedtapp.project_name) - def test_create_external_circuit(self, local_scratch, add_app): - aedtapp = add_app( - application=ansys.aedt.core.Maxwell2d, design_name="external_circuit", solution_type="Transient" - ) - - aedtapp.modeler.create_circle([0, 0, 0], 10, name="Coil1") - aedtapp.modeler.create_circle([20, 0, 0], 10, name="Coil2") + def test_create_external_circuit(self, local_scratch, m2d_app): + m2d_app.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY + m2d_app.modeler.create_circle([0, 0, 0], 10, name="Coil1") + m2d_app.modeler.create_circle([20, 0, 0], 10, name="Coil2") - aedtapp.assign_coil(assignment=["Coil1"]) - aedtapp.assign_coil(assignment=["Coil2"]) + m2d_app.assign_coil(assignment=["Coil1"]) + m2d_app.assign_coil(assignment=["Coil2"]) - aedtapp.assign_winding(assignment=["Coil1"]) - aedtapp.assign_winding(assignment=["Coil2"]) + m2d_app.assign_winding(assignment=["Coil1"]) + m2d_app.assign_winding(assignment=["Coil2"]) - assert aedtapp.create_external_circuit() - assert aedtapp.create_external_circuit(circuit_design="test_cir") - aedtapp.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY - assert not aedtapp.create_external_circuit() - aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY - for w in aedtapp.excitations_by_type["Winding"]: + assert m2d_app.create_external_circuit() + assert m2d_app.create_external_circuit(circuit_design="test_cir") + m2d_app.solution_type = SOLUTIONS.Maxwell2d.MagnetostaticXY + assert not m2d_app.create_external_circuit() + m2d_app.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY + for w in m2d_app.excitations_by_type["Winding"]: w.delete() - aedtapp.save_project() - assert not aedtapp.create_external_circuit() - aedtapp.close_project(aedtapp.project_name) - - def test_export_field_file(self, local_scratch, add_app): - aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, project_name=m2d_fields, subfolder=test_subfolder) - - output_file = os.path.join(local_scratch.path, "e_tang_field.fld") - - assert aedtapp.post.export_field_file( - quantity="E_Line", output_file=output_file, assignment="Poly1", objects_type="Line" - ) - assert os.path.exists(output_file) - aedtapp.close_project(aedtapp.project_name) - - def test_control_program(self, add_app): - aedtapp = add_app(application=ansys.aedt.core.Maxwell2d, project_name=ctrl_prg, subfolder=test_subfolder) - - user_ctl_path = "user.ctl" - ctrl_prg_path = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, ctrl_prg_file) - assert aedtapp.setups[0].enable_control_program(control_program_path=ctrl_prg_path) - assert aedtapp.setups[0].enable_control_program(control_program_path=ctrl_prg_path, control_program_args="3") - assert not aedtapp.setups[0].enable_control_program(control_program_path=ctrl_prg_path, control_program_args=3) - assert aedtapp.setups[0].enable_control_program(control_program_path=ctrl_prg_path, call_after_last_step=True) - invalid_ctrl_prg_path = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, "invalid.py") - assert not aedtapp.setups[0].enable_control_program(control_program_path=invalid_ctrl_prg_path) - aedtapp.solution_type = SOLUTIONS.Maxwell2d.EddyCurrentXY - assert not aedtapp.setups[0].enable_control_program(control_program_path=ctrl_prg_path) - if os.path.exists(user_ctl_path): - os.unlink(user_ctl_path) - aedtapp.close_project(aedtapp.project_name) + m2d_app.save_project() + assert not m2d_app.create_external_circuit() diff --git a/tests/system/general/test_28_Maxwell3D.py b/tests/system/general/test_28_Maxwell3D.py index b50c35dd4f9..3dbe5bb8e98 100644 --- a/tests/system/general/test_28_Maxwell3D.py +++ b/tests/system/general/test_28_Maxwell3D.py @@ -29,11 +29,12 @@ from ansys.aedt.core.generic.constants import SOLUTIONS from ansys.aedt.core.generic.general_methods import generate_unique_name from ansys.aedt.core.generic.general_methods import is_linux +from ansys.aedt.core.modeler.geometry_operators import GeometryOperators import pytest from tests import TESTS_GENERAL_PATH from tests.system.general.conftest import config -from tests.system.general.conftest import desktop_version +from tests.system.solvers.conftest import desktop_version try: from IPython.display import Image @@ -43,203 +44,135 @@ ipython_available = False test_subfolder = "TMaxwell" -test_project_name = "eddy" -if config["desktopVersion"] > "2022.2": - core_loss_file = "PlanarTransformer_231" -else: - core_loss_file = "PlanarTransformer" -transient = "Transient_StrandedWindings" -cyl_gap_name = "Motor3D_cyl_gap" -layout_component_name = "LayoutForce" - - -@pytest.fixture(scope="class") -def aedtapp(add_app): - app = add_app(application=Maxwell3d, solution_type="EddyCurrent") - return app +cyl_gap_name = "Motor3D_cyl_gap" -@pytest.fixture(scope="class") -def m3dtransient(add_app): - app = add_app(application=Maxwell3d, project_name=transient, subfolder=test_subfolder) - return app +layout_component_name = "LayoutForce" -@pytest.fixture(scope="class") -def cyl_gap(add_app): - app = add_app(application=Maxwell3d, project_name=cyl_gap_name, subfolder=test_subfolder) - return app +@pytest.fixture() +def m3d_app(add_app): + app = add_app(application=Maxwell3d) + yield app + app.close_project(app.project_name) -@pytest.fixture(scope="class") +@pytest.fixture() def layout_comp(add_app): - if desktop_version > "2023.1": - app = add_app(application=Maxwell3d, project_name=layout_component_name, subfolder=test_subfolder) - else: - app = None - return app + app = add_app(application=Maxwell3d, project_name=layout_component_name, subfolder=test_subfolder) + yield app + app.close_project(app.project_name) class TestClass: - @pytest.fixture(autouse=True) - def init(self, aedtapp, local_scratch): - self.aedtapp = aedtapp - self.local_scratch = local_scratch - - def test_01_create_primitive(self): - self.aedtapp.modeler.model_units = "mm" - - plate_pos = self.aedtapp.modeler.Position(0, 0, 0) - hole_pos = self.aedtapp.modeler.Position(18, 18, 0) - # Create plate with hole - plate = self.aedtapp.modeler.create_box(plate_pos, [294, 294, 19], name="Plate") # All positions in model units - hole = self.aedtapp.modeler.create_box(hole_pos, [108, 108, 19], name="Hole") # All positions in model units - self.aedtapp.modeler.subtract([plate], [hole]) - plate.material_name = "aluminum" - assert plate.solve_inside - assert plate.material_name == "aluminum" - - self.aedtapp.assign_material(plate, "pec") - assert not plate.solve_inside - self.aedtapp.assign_material(plate, "perfect conductor") - assert not plate.solve_inside @pytest.mark.skipif(config["NonGraphical"], reason="Test is failing on build machine") - def test_01_display(self): - img = self.aedtapp.post.nb_display(show_axis=True, show_grid=True, show_ruler=True) + def test_display(self, m3d_app): + img = m3d_app.post.nb_display(show_axis=True, show_grid=True, show_ruler=True) assert isinstance(img, Image) - def test_01A_litz_wire(self): - cylinder = self.aedtapp.modeler.create_cylinder( - orientation="X", origin=[50, 0, 0], radius=0.8, height=20, name="Wire", material="magnesium" - ) - self.aedtapp.materials["magnesium"].stacking_type = "Litz Wire" - self.aedtapp.materials["magnesium"].wire_type = "Round" - self.aedtapp.materials["magnesium"].strand_number = 3 - self.aedtapp.materials["magnesium"].wire_diameter = "1mm" - assert self.aedtapp.materials["magnesium"].stacking_type == "Litz Wire" - assert self.aedtapp.materials["magnesium"].wire_type == "Round" - assert self.aedtapp.materials["magnesium"].strand_number == 3 - assert self.aedtapp.materials["magnesium"].wire_diameter == "1mm" - - self.aedtapp.materials["magnesium"].wire_type = "Square" - self.aedtapp.materials["magnesium"].wire_width = "2mm" - assert self.aedtapp.materials["magnesium"].wire_type == "Square" - assert self.aedtapp.materials["magnesium"].wire_width == "2mm" - - self.aedtapp.materials["magnesium"].wire_type = "Rectangular" - self.aedtapp.materials["magnesium"].wire_width = "2mm" - self.aedtapp.materials["magnesium"].wire_thickness = "1mm" - self.aedtapp.materials["magnesium"].wire_thickness_direction = "V(2)" - self.aedtapp.materials["magnesium"].wire_width_direction = "V(3)" - assert self.aedtapp.materials["magnesium"].wire_type == "Rectangular" - assert self.aedtapp.materials["magnesium"].wire_width == "2mm" - assert self.aedtapp.materials["magnesium"].wire_thickness == "1mm" - assert self.aedtapp.materials["magnesium"].wire_thickness_direction == "V(2)" - assert self.aedtapp.materials["magnesium"].wire_width_direction == "V(3)" - - def test_01B_lamination(self): - cylinder = self.aedtapp.modeler.create_cylinder( - orientation="X", origin=[2000, 0, 0], radius=0.8, height=20, name="Lamination_model", material="titanium" - ) - self.aedtapp.materials["titanium"].stacking_type = "Lamination" - self.aedtapp.materials["titanium"].stacking_factor = "0.99" - self.aedtapp.materials["titanium"].stacking_direction = "V(3)" - self.aedtapp.materials["titanium"].stacking_direction = "V(2)" - assert self.aedtapp.materials["titanium"].stacking_type == "Lamination" - assert self.aedtapp.materials["titanium"].stacking_factor == "0.99" - assert self.aedtapp.materials["titanium"].stacking_direction == "V(2)" - - def test_02_create_coil(self): - center_hole = self.aedtapp.modeler.Position(119, 25, 49) - center_coil = self.aedtapp.modeler.Position(94, 0, 49) - coil_hole = self.aedtapp.modeler.create_box( - center_hole, [150, 150, 100], name="Coil_Hole" - ) # All positions in model units - coil = self.aedtapp.modeler.create_box( - center_coil, [200, 200, 100], name="Coil" - ) # All positions in model units - self.aedtapp.modeler.subtract([coil], [coil_hole]) - coil.material_name = "Copper" - coil.solve_inside = True - p_coil = self.aedtapp.post.volumetric_loss("Coil") - assert type(p_coil) is str - - def test_03_coordinate_system(self): - assert self.aedtapp.modeler.create_coordinate_system([200, 100, 0], mode="view", view="XY", name="Coil_CS") - - def test_04_coil_terminal(self): - self.aedtapp.modeler.section(["Coil"], self.aedtapp.PLANE.ZX) - self.aedtapp.modeler.separate_bodies(["Coil_Section1"]) - self.aedtapp.modeler.delete("Coil_Section1_Separate1") - assert self.aedtapp.assign_current(["Coil_Section1"], amplitude=2472) - self.aedtapp.solution_type = "Magnetostatic" - volt = self.aedtapp.assign_voltage(self.aedtapp.modeler["Coil_Section1"].faces[0].id, amplitude=1) - current2 = self.aedtapp.assign_current(["Coil_Section1"], amplitude=212) - assert current2 - assert current2.props["IsSolid"] - assert current2.delete() - assert volt - assert volt.delete() - self.aedtapp.solution_type = self.aedtapp.SOLUTIONS.Maxwell3d.TransientAPhiFormulation - current3 = self.aedtapp.assign_current(["Coil_Section1"], amplitude=212) - assert current3 - assert current3.props["IsSolid"] - assert current3.delete() - self.aedtapp.solution_type = "EddyCurrent" - - def test_05_winding(self): - face_id = self.aedtapp.modeler["Coil_Section1"].faces[0].id - assert self.aedtapp.assign_winding(face_id) - bounds = self.aedtapp.assign_winding(assignment=face_id, current=20e-3) - assert bounds - bounds = self.aedtapp.assign_winding(assignment=face_id, current="20e-3A") - assert bounds - bounds = self.aedtapp.assign_winding(assignment=face_id, resistance="1ohm") - assert bounds - bounds = self.aedtapp.assign_winding(assignment=face_id, inductance="1H") - assert bounds - bounds = self.aedtapp.assign_winding(assignment=face_id, voltage="10V") - assert bounds + def test_litz_wire(self, m3d_app): + m3d_app.materials["magnesium"].stacking_type = "Litz Wire" + m3d_app.materials["magnesium"].wire_type = "Round" + m3d_app.materials["magnesium"].strand_number = 3 + m3d_app.materials["magnesium"].wire_diameter = "1mm" + assert m3d_app.materials["magnesium"].stacking_type == "Litz Wire" + assert m3d_app.materials["magnesium"].wire_type == "Round" + assert m3d_app.materials["magnesium"].strand_number == 3 + assert m3d_app.materials["magnesium"].wire_diameter == "1mm" + + m3d_app.materials["magnesium"].wire_type = "Square" + m3d_app.materials["magnesium"].wire_width = "2mm" + assert m3d_app.materials["magnesium"].wire_type == "Square" + assert m3d_app.materials["magnesium"].wire_width == "2mm" + + m3d_app.materials["magnesium"].wire_type = "Rectangular" + m3d_app.materials["magnesium"].wire_width = "2mm" + m3d_app.materials["magnesium"].wire_thickness = "1mm" + m3d_app.materials["magnesium"].wire_thickness_direction = "V(2)" + m3d_app.materials["magnesium"].wire_width_direction = "V(3)" + assert m3d_app.materials["magnesium"].wire_type == "Rectangular" + assert m3d_app.materials["magnesium"].wire_width == "2mm" + assert m3d_app.materials["magnesium"].wire_thickness == "1mm" + assert m3d_app.materials["magnesium"].wire_thickness_direction == "V(2)" + assert m3d_app.materials["magnesium"].wire_width_direction == "V(3)" + + def test_lamination(self, m3d_app): + m3d_app.materials["titanium"].stacking_type = "Lamination" + m3d_app.materials["titanium"].stacking_factor = "0.99" + m3d_app.materials["titanium"].stacking_direction = "V(3)" + m3d_app.materials["titanium"].stacking_direction = "V(2)" + assert m3d_app.materials["titanium"].stacking_type == "Lamination" + assert m3d_app.materials["titanium"].stacking_factor == "0.99" + assert m3d_app.materials["titanium"].stacking_direction == "V(2)" + + def test_assign_winding(self, m3d_app): + coil_hole = m3d_app.modeler.create_box([-50, -50, 0], [100, 100, 100], name="Coil_Hole") + coil = m3d_app.modeler.create_box([-100, -100, 0], [200, 200, 100], name="Coil") + m3d_app.modeler.subtract([coil], [coil_hole]) + + m3d_app.modeler.section(["Coil"], m3d_app.PLANE.ZX) + m3d_app.modeler.separate_bodies(["Coil_Section1"]) + face_id = m3d_app.modeler["Coil_Section1"].faces[0].id + assert m3d_app.assign_winding(face_id) + bounds = m3d_app.assign_winding(assignment=face_id, current=20e-3) + assert bounds.props["Current"] == "0.02A" + bounds = m3d_app.assign_winding(assignment=face_id, current="20e-3A") + assert bounds.props["Current"] == "20e-3A" + bounds = m3d_app.assign_winding(assignment=face_id, resistance="1ohm") + assert bounds.props["Resistance"] == "1ohm" + bounds = m3d_app.assign_winding(assignment=face_id, inductance="1H") + assert bounds.props["Inductance"] == "1H" + bounds = m3d_app.assign_winding(assignment=face_id, voltage="10V") + assert bounds.props["Voltage"] == "10V" bounds_name = generate_unique_name("Winding") - bounds = self.aedtapp.assign_winding(assignment=face_id, name=bounds_name) + bounds = m3d_app.assign_winding(assignment=face_id, name=bounds_name) assert bounds_name == bounds.name - def test_05a_assign_coil(self): - face_id = self.aedtapp.modeler["Coil_Section1"].faces[0].id - bound = self.aedtapp.assign_coil(assignment=face_id) - assert bound - polarity = "Positive" - bound = self.aedtapp.assign_coil(assignment=face_id, polarity=polarity) + def test_assign_coil(self, m3d_app): + coil_hole = m3d_app.modeler.create_box([-50, -50, 0], [100, 100, 100], name="Coil_Hole") + coil = m3d_app.modeler.create_box([-100, -100, 0], [200, 200, 100], name="Coil") + m3d_app.modeler.subtract([coil], [coil_hole]) + m3d_app.modeler.section(["Coil"], m3d_app.PLANE.ZX) + m3d_app.modeler.separate_bodies(["Coil_Section1"]) + face_id = m3d_app.modeler["Coil_Section1"].faces[0].id + bound = m3d_app.assign_coil(assignment=face_id) + assert bound.props["Conductor number"] == "1" assert not bound.props["Point out of terminal"] - polarity = "Negative" - bound = self.aedtapp.assign_coil(assignment=face_id, polarity=polarity) + bound = m3d_app.assign_coil(assignment=face_id, polarity="Positive") + assert bound.props["Conductor number"] == "1" + assert not bound.props["Point out of terminal"] + bound = m3d_app.assign_coil(assignment=face_id, polarity="Negative") + assert bound.props["Conductor number"] == "1" assert bound.props["Point out of terminal"] bound_name = generate_unique_name("Coil") - bound = self.aedtapp.assign_coil(assignment=face_id, name=bound_name) + bound = m3d_app.assign_coil(assignment=face_id, name=bound_name) assert bound_name == bound.name - def test_05_draw_region(self): - assert self.aedtapp.modeler.create_air_region(*[300] * 6) - - @pytest.mark.skipif(desktop_version == "2024.2", reason="GetDisplacementCurrent not working in 2024.2") - def test_06_eddycurrent(self): - assert self.aedtapp.eddy_effects_on(["Plate"], enable_eddy_effects=True) - oModule = self.aedtapp.odesign.GetModule("BoundarySetup") - assert oModule.GetEddyEffect("Plate") - assert oModule.GetDisplacementCurrent("Plate") - self.aedtapp.eddy_effects_on(["Plate"], enable_eddy_effects=False) - assert not oModule.GetEddyEffect("Plate") - assert not oModule.GetDisplacementCurrent("Plate") - - def test_07a_setup(self): - adaptive_frequency = "200Hz" - setup = self.aedtapp.create_setup() + def test_create_air_region(self, m3d_app): + region = m3d_app.modeler.create_air_region(*[300] * 6) + assert region.material_name == "air" + + def test_eddy_effects_on(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + plate_vacuum = m3d_app.modeler.create_box([-3, -3, 0], [1.5, 1.5, 0.4], name="Plate_vaccum") + assert not m3d_app.eddy_effects_on(plate_vacuum, enable_eddy_effects=True) + plate = m3d_app.modeler.create_box([-1, -1, 0], [1.5, 1.5, 0.4], name="Plate", material="copper") + assert m3d_app.eddy_effects_on(plate, enable_eddy_effects=True) + assert m3d_app.oboundary.GetEddyEffect("Plate") + assert m3d_app.oboundary.GetDisplacementCurrent("Plate") + m3d_app.eddy_effects_on(["Plate"], enable_eddy_effects=False) + assert not m3d_app.oboundary.GetEddyEffect("Plate") + assert not m3d_app.oboundary.GetDisplacementCurrent("Plate") + + def test_create_setup(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + setup = m3d_app.create_setup() setup.props["MaximumPasses"] = 12 setup.props["MinimumPasses"] = 2 setup.props["MinimumConvergedPasses"] = 1 setup.props["PercentRefinement"] = 30 - setup.props["Frequency"] = adaptive_frequency + setup.props["Frequency"] = "200Hz" dc_freq = 0.1 stop_freq = 10 count = 1 @@ -255,102 +188,110 @@ def test_07a_setup(self): assert setup.disable() assert setup.enable() - def test_07b_create_parametrics(self): - self.aedtapp["w1"] = "10mm" - self.aedtapp["w2"] = "2mm" - setup1 = self.aedtapp.parametrics.add("w1", 0.1, 20, 0.2, "LinearStep") - assert setup1 - expression = "re(FluxLinkage(" + self.aedtapp.excitations[2] + "))" - assert setup1.add_calculation( - calculation=expression, - ranges={"Freq": "200Hz"}, - report_type="EddyCurrent", - solution=self.aedtapp.existing_analysis_sweeps[0], + def test_create_parametrics(self, m3d_app): + m3d_app.create_setup() + m3d_app["w1"] = "10mm" + m3d_app["w2"] = "2mm" + setup_parametrics = m3d_app.parametrics.add("w1", 0.1, 20, 0.2, "LinearStep") + assert setup_parametrics.props["Sweeps"]["SweepDefinition"]["Variable"] == "w1" + assert setup_parametrics.props["Sweeps"]["SweepDefinition"]["Data"] == "LIN 0.1mm 20mm 0.2mm" + assert setup_parametrics.add_calculation( + calculation="SolidLoss", + ranges={}, + report_type="Magnetostatic", + solution=m3d_app.existing_analysis_sweeps[0], ) @pytest.mark.skipif(is_linux, reason="Crashing on Linux") - def test_08_setup_ctrlprog_with_file(self): - transient_setup = self.aedtapp.create_setup() - transient_setup.props["MaximumPasses"] = 12 - transient_setup.props["MinimumPasses"] = 2 - transient_setup.props["MinimumConvergedPasses"] = 1 - transient_setup.props["PercentRefinement"] = 30 - transient_setup.props["Frequency"] = "200Hz" - transient_setup.update() - transient_setup.enable_expression_cache(["CoreLoss"], "Fields", "Phase='0deg' ", True) - - def test_22_create_length_mesh(self): - assert self.aedtapp.mesh.assign_length_mesh(["Plate"]) - - def test_23_create_skin_depth(self): - mesh = self.aedtapp.mesh.assign_skin_depth(["Plate"], "1mm") + def test_expression_cache(self, m3d_app): + setup = m3d_app.create_setup() + setup.props["MaximumPasses"] = 12 + setup.props["MinimumPasses"] = 2 + setup.props["MinimumConvergedPasses"] = 1 + setup.props["PercentRefinement"] = 30 + setup.props["Frequency"] = "200Hz" + setup.update() + assert setup.enable_expression_cache(["CoreLoss"], "Fields", "Phase='0deg' ", True) + + def test_assign_length_mesh(self, m3d_app): + plate = m3d_app.modeler.create_box([0, 0, 0], [1.5, 1.5, 0.5], name="Plate") + assert m3d_app.mesh.assign_length_mesh(plate) + assert m3d_app.mesh.assign_length_mesh(plate, maximum_length=1, maximum_elements=1200) + assert m3d_app.mesh.assign_length_mesh(plate, name="test_mesh") + assert m3d_app.mesh.assign_length_mesh(plate, name="test_mesh") + + def test_assign_skin_depth(self, m3d_app): + plate = m3d_app.modeler.create_box([0, 0, 0], [1.5, 1.5, 0.5], name="Plate") + mesh = m3d_app.mesh.assign_skin_depth(plate, "1mm") assert mesh mesh.delete() - mesh = self.aedtapp.mesh.assign_skin_depth(["Plate"], "1mm", 1000) + mesh = m3d_app.mesh.assign_skin_depth(plate, "1mm", 1000) assert mesh mesh.delete() - mesh = self.aedtapp.mesh.assign_skin_depth(self.aedtapp.modeler["Plate"].faces[0].id, "1mm") + mesh = m3d_app.mesh.assign_skin_depth(plate.faces[0].id, "1mm") assert mesh mesh.delete() - mesh = self.aedtapp.mesh.assign_skin_depth(self.aedtapp.modeler["Plate"], "1mm") + mesh = m3d_app.mesh.assign_skin_depth(plate, "1mm") assert mesh - def test_24_create_curvilinear(self): - assert self.aedtapp.mesh.assign_curvilinear_elements(["Coil"], "1mm") - - def test_24_create_edge_cut(self): - assert self.aedtapp.mesh.assign_edge_cut(["Coil"]) - - def test_24a_density_control(self): - assert self.aedtapp.mesh.assign_density_control(["Coil"], maximum_element_length="2mm", layers_number="3") + def test_assign_curvilinear_elements(self, m3d_app): + box = m3d_app.modeler.create_box([30, 0, 0], [40, 10, 5]) + assert m3d_app.mesh.assign_curvilinear_elements(box, "1mm") + assert m3d_app.mesh.assign_curvilinear_elements(box, "1mm", name="test") + assert m3d_app.mesh.assign_curvilinear_elements(box, "1mm", name="test") + + def test_assign_edge_cut(self, m3d_app): + box = m3d_app.modeler.create_box([30, 0, 0], [40, 10, 5]) + assert m3d_app.mesh.assign_edge_cut(box) + assert m3d_app.mesh.assign_edge_cut(box, name="edge_cute") + assert m3d_app.mesh.assign_edge_cut(box, name="edge_cute") + + def test_assign_density_control(self, m3d_app): + box = m3d_app.modeler.create_box([30, 0, 0], [40, 10, 5]) + assert m3d_app.mesh.assign_density_control(box, maximum_element_length="2mm", layers_number="3") + assert m3d_app.mesh.assign_density_control( + box, maximum_element_length="2mm", layers_number="3", name="density_ctrl" + ) + assert m3d_app.mesh.assign_density_control( + box, maximum_element_length="2mm", layers_number="3", name="density_ctrl" + ) - def test_24b_density_control(self): - assert self.aedtapp.mesh.assign_rotational_layer(["Coil"]) + def test_assign_rotational_layer(self, m3d_app): + box = m3d_app.modeler.create_box([30, 0, 0], [40, 10, 5]) + assert m3d_app.mesh.assign_rotational_layer(box) + assert m3d_app.mesh.assign_rotational_layer(box, name="my_rotational") + assert m3d_app.mesh.assign_rotational_layer(box, name="my_rotational") - def test_25a_assign_initial_mesh(self): - assert self.aedtapp.mesh.assign_initial_mesh_from_slider(4) + def test_assign_initial_mesh_slider(self, m3d_app): + assert m3d_app.mesh.assign_initial_mesh_from_slider(4) - def test_25b_assign_initial_mesh(self): - assert self.aedtapp.mesh.assign_initial_mesh(surface_deviation="2mm") + def test_assign_initial_mesh(self, m3d_app): + assert m3d_app.mesh.assign_initial_mesh(surface_deviation="2mm") @pytest.mark.skipif(is_linux, reason="Crashing on Linux") - def test_26_create_udp(self): - my_udpPairs = [] - mypair = ["DiaGap", "102mm"] - my_udpPairs.append(mypair) - mypair = ["Length", "100mm"] - my_udpPairs.append(mypair) - mypair = ["Poles", "8"] - my_udpPairs.append(mypair) - mypair = ["EmbraceTip", "0.29999999999999999"] - my_udpPairs.append(mypair) - mypair = ["EmbraceRoot", "1.2"] - my_udpPairs.append(mypair) - mypair = ["ThickTip", "5mm"] - my_udpPairs.append(mypair) - mypair = ["ThickRoot", "10mm"] - my_udpPairs.append(mypair) - mypair = ["ThickShoe", "8mm"] - my_udpPairs.append(mypair) - mypair = ["DepthSlot", "12mm"] - my_udpPairs.append(mypair) - mypair = ["ThickYoke", "10mm"] - my_udpPairs.append(mypair) - mypair = ["LengthPole", "90mm"] - my_udpPairs.append(mypair) - mypair = ["LengthMag", "0mm"] - my_udpPairs.append(mypair) - mypair = ["SegAngle", "5deg"] - my_udpPairs.append(mypair) - mypair = ["LenRegion", "200mm"] - my_udpPairs.append(mypair) - mypair = ["InfoCore", "0"] - my_udpPairs.append(mypair) + def test_create_udp(self, m3d_app): + my_udp = [ + ["DiaGap", "102mm"], + ["Length", "100mm"], + ["Poles", "8"], + ["EmbraceTip", "0.29999999999999999"], + ["EmbraceRoot", "1.2"], + ["ThickTip", "5mm"], + ["ThickRoot", "10mm"], + ["ThickShoe", "8mm"], + ["DepthSlot", "12mm"], + ["ThickYoke", "10mm"], + ["LengthPole", "90mm"], + ["LengthMag", "0mm"], + ["SegAngle", "5deg"], + ["LenRegion", "200mm"], + ["InfoCore", "0"], + ] # Test udp with a custom name. my_udpName = "MyClawPoleCore" - udp = self.aedtapp.modeler.create_udp( - dll="RMxprt/ClawPoleCore", parameters=my_udpPairs, library="syslib", name=my_udpName + udp = m3d_app.modeler.create_udp( + dll="RMxprt/ClawPoleCore", parameters=my_udp, library="syslib", name=my_udpName ) assert udp @@ -359,7 +300,7 @@ def test_26_create_udp(self): assert int(udp.bounding_dimension[2]) == 100 # Modify one of the 'MyClawPoleCore' udp properties. - assert self.aedtapp.modeler.update_udp( + assert m3d_app.modeler.update_udp( assignment="MyClawPoleCore", operation="CreateUserDefinedPart", parameters=[["Length", "110mm"]] ) @@ -368,16 +309,14 @@ def test_26_create_udp(self): assert int(udp.bounding_dimension[2]) == 110 # Test udp with default name -None-. - second_udp = self.aedtapp.modeler.create_udp( - dll="RMxprt/ClawPoleCore", parameters=my_udpPairs, library="syslib" - ) + second_udp = m3d_app.modeler.create_udp(dll="RMxprt/ClawPoleCore", parameters=my_udp, library="syslib") assert second_udp assert second_udp.name == "ClawPoleCore" assert "ClawPoleCore" in udp._primitives.object_names # Modify two of the 'MyClawPoleCore' udp properties. - assert self.aedtapp.modeler.update_udp( + assert m3d_app.modeler.update_udp( assignment="ClawPoleCore", operation="CreateUserDefinedPart", parameters=[["Length", "110mm"], ["DiaGap", "125mm"]], @@ -389,22 +328,21 @@ def test_26_create_udp(self): # Create an udp from a *.py file. python_udp_parameters = [] - mypair = ["Xpos", "0mm"] - python_udp_parameters.append(mypair) - mypair = ["Ypos", "0mm"] - python_udp_parameters.append(mypair) - mypair = ["Dist", "5mm"] - python_udp_parameters.append(mypair) - mypair = ["Turns", "2"] - # mypair = ["Turns", "2", "IntParam"] - python_udp_parameters.append(mypair) - mypair = ["Width", "2mm"] - python_udp_parameters.append(mypair) - mypair = ["Thickness", "1mm"] - python_udp_parameters.append(mypair) - python_udp_parameters.append(mypair) - - udp_from_python = self.aedtapp.modeler.create_udp( + udp_data = ["Xpos", "0mm"] + python_udp_parameters.append(udp_data) + udp_data = ["Ypos", "0mm"] + python_udp_parameters.append(udp_data) + udp_data = ["Dist", "5mm"] + python_udp_parameters.append(udp_data) + udp_data = ["Turns", "2"] + python_udp_parameters.append(udp_data) + udp_data = ["Width", "2mm"] + python_udp_parameters.append(udp_data) + udp_data = ["Thickness", "1mm"] + python_udp_parameters.append(udp_data) + python_udp_parameters.append(udp_data) + + udp_from_python = m3d_app.modeler.create_udp( dll="Examples/RectangularSpiral.py", parameters=python_udp_parameters, name="PythonSpiral" ) @@ -415,308 +353,286 @@ def test_26_create_udp(self): assert int(udp_from_python.bounding_dimension[1]) == 22.0 @pytest.mark.skipif(is_linux, reason="Feature not supported in Linux") - def test_27_create_udm(self): - my_udmPairs = [] - mypair = ["ILD Thickness (ILD)", "0.006mm"] - my_udmPairs.append(mypair) - mypair = ["Line Spacing (LS)", "0.004mm"] - my_udmPairs.append(mypair) - mypair = ["Line Thickness (LT)", "0.005mm"] - my_udmPairs.append(mypair) - mypair = ["Line Width (LW)", "0.004mm"] - my_udmPairs.append(mypair) - mypair = ["No. of Turns (N)", 2] - my_udmPairs.append(mypair) - mypair = ["Outer Diameter (OD)", "0.15mm"] - my_udmPairs.append(mypair) - mypair = ["Substrate Thickness", "0.2mm"] - my_udmPairs.append(mypair) - mypair = [ - "Inductor Type", - '"Square,Square,Octagonal,Circular,Square-Differential,Octagonal-Differential,Circular-Differential"', + def test_create_udm(self, m3d_app): + my_udm = [ + ["ILD Thickness (ILD)", "0.006mm"], + ["Line Spacing (LS)", "0.004mm"], + ["Line Thickness (LT)", "0.005mm"], + ["Line Width (LW)", "0.004mm"], + ["No. of Turns (N)", 2], + ["Outer Diameter (OD)", "0.15mm"], + ["Substrate Thickness", "0.2mm"], + [ + "Inductor Type", + '"Square,Square,Octagonal,Circular,Square-Differential,Octagonal-Differential,Circular-Differential"', + ], + ["Underpass Thickness (UT)", "0.001mm"], + ["Via Thickness (VT)", "0.001mm"], ] - my_udmPairs.append(mypair) - mypair = ["Underpass Thickness (UT)", "0.001mm"] - my_udmPairs.append(mypair) - mypair = ["Via Thickness (VT)", "0.001mm"] - my_udmPairs.append(mypair) - - assert self.aedtapp.modeler.create_udm( - udm_full_name="Maxwell3D/OnDieSpiralInductor.py", parameters=my_udmPairs, library="syslib" + + assert m3d_app.modeler.create_udm( + udm_full_name="Maxwell3D/OnDieSpiralInductor.py", parameters=my_udm, library="syslib" ) - def test_28_assign_torque(self): - T = self.aedtapp.assign_torque("Coil") - assert T.type == "Torque" - assert T.props["Objects"][0] == "Coil" - assert T.props["Is Positive"] - assert T.props["Is Virtual"] - assert T.props["Coordinate System"] == "Global" - assert T.props["Axis"] == "Z" - assert T.delete() - T = self.aedtapp.assign_torque(assignment="Coil", is_positive=False, torque_name="Torque_Test") - assert not T.props["Is Positive"] - assert T.name == "Torque_Test" - - def test_29_assign_force(self): - F = self.aedtapp.assign_force("Coil") - assert F.type == "Force" - assert F.props["Objects"][0] == "Coil" - assert F.props["Reference CS"] == "Global" - assert F.props["Is Virtual"] - assert F.delete() - F = self.aedtapp.assign_force(assignment="Coil", is_virtual=False, force_name="Force_Test") - assert F.name == "Force_Test" - assert not F.props["Is Virtual"] - - def test_30_assign_movement(self): - self.aedtapp.insert_design("Motion") - self.aedtapp.solution_type = SOLUTIONS.Maxwell3d.Transient - self.aedtapp.modeler.create_box([0, 0, 0], [10, 10, 10], name="Inner_Box") - self.aedtapp.modeler.create_box([0, 0, 0], [30, 20, 20], name="Outer_Box") - bound = self.aedtapp.assign_translate_motion("Outer_Box", velocity=1, mechanical_transient=True) + def test_assign_torque(self, m3d_app): + coil = m3d_app.modeler.create_box([-100, -100, 0], [200, 200, 100], name="Coil") + torque = m3d_app.assign_torque(coil) + assert torque.type == "Torque" + assert torque.props["Objects"][0] == "Coil" + assert torque.props["Is Positive"] + assert torque.props["Is Virtual"] + assert torque.props["Coordinate System"] == "Global" + assert torque.props["Axis"] == "Z" + assert torque.delete() + torque = m3d_app.assign_torque(assignment="Coil", is_positive=False, torque_name="Torque_Test") + assert not torque.props["Is Positive"] + assert torque.name == "Torque_Test" + + def test_assign_force(self, m3d_app): + coil = m3d_app.modeler.create_box([-100, -100, 0], [200, 200, 100], name="Coil") + force = m3d_app.assign_force(coil) + assert force.type == "Force" + assert force.props["Objects"][0] == "Coil" + assert force.props["Reference CS"] == "Global" + assert force.props["Is Virtual"] + assert force.delete() + force = m3d_app.assign_force(assignment="Coil", is_virtual=False, force_name="Force_Test") + assert force.name == "Force_Test" + assert not force.props["Is Virtual"] + + def test_assign_translate_motion(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.Transient + m3d_app.modeler.create_box([0, 0, 0], [10, 10, 10], name="Inner_Box") + m3d_app.modeler.create_box([0, 0, 0], [30, 20, 20], name="Outer_Box") + bound = m3d_app.assign_translate_motion("Outer_Box", velocity=1, mechanical_transient=True) assert bound assert bound.props["Velocity"] == "1m_per_sec" - def test_31_core_losses(self, add_app): - m3d1 = add_app(application=Maxwell3d, project_name=core_loss_file, subfolder=test_subfolder) - assert m3d1.set_core_losses(["PQ_Core_Bottom", "PQ_Core_Top"]) - assert m3d1.set_core_losses(["PQ_Core_Bottom"], True) - self.aedtapp.close_project(m3d1.project_name, False) - - def test_32_matrix(self, add_app): - m3d = add_app(application=Maxwell3d, design_name="Matrix1") - m3d.solution_type = SOLUTIONS.Maxwell3d.ElectroStatic - m3d.modeler.create_box([0, 1.5, 0], [1, 2.5, 5], name="Coil_1", material="aluminum") - m3d.modeler.create_box([8.5, 1.5, 0], [1, 2.5, 5], name="Coil_2", material="aluminum") - m3d.modeler.create_box([16, 1.5, 0], [1, 2.5, 5], name="Coil_3", material="aluminum") - m3d.modeler.create_box([32, 1.5, 0], [1, 2.5, 5], name="Coil_4", material="aluminum") - - rectangle1 = m3d.modeler.create_rectangle(0, [0.5, 1.5, 0], [2.5, 5], name="Sheet1") - rectangle2 = m3d.modeler.create_rectangle(0, [9, 1.5, 0], [2.5, 5], name="Sheet2") - rectangle3 = m3d.modeler.create_rectangle(0, [16.5, 1.5, 0], [2.5, 5], name="Sheet3") - rectangle4 = m3d.modeler.create_rectangle(0, [32.5, 1.5, 0], [2.5, 5], name="Sheet4") - box1 = m3d.modeler.create_box([0, 0, 0], [10, 10, 5], "MyBox1") - box2 = m3d.modeler.create_box([10, 10, 10], [10, 10, 5], "MyBox2") - - m3d.assign_voltage(rectangle1.faces[0], amplitude=1, name="Voltage1") - m3d.assign_voltage("Sheet1", amplitude=1, name="Voltage5") - m3d.assign_voltage(rectangle2.faces[0], amplitude=1, name="Voltage2") - m3d.assign_voltage(rectangle3.faces[0], amplitude=1, name="Voltage3") - m3d.assign_voltage(rectangle4.faces[0], amplitude=1, name="Voltage4") - m3d.assign_voltage(box1.faces, amplitude=1, name="Voltage6") - m3d.assign_voltage(box2, amplitude=1, name="Voltage7") - - setup = m3d.create_setup(MaximumPasses=2) - m3d.analyze(setup=setup.name) - - L = m3d.assign_matrix(assignment="Voltage1") - assert L.props["MatrixEntry"]["MatrixEntry"][0]["Source"] == "Voltage1" - cat = m3d.post.available_quantities_categories(context=L.name) + def test_set_core_losses(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + m3d_app.modeler.create_box([0, 0, 0], [10, 10, 10], name="my_box", material="Material_3F3") + assert m3d_app.set_core_losses(["my_box"]) + assert m3d_app.set_core_losses(["my_box"], True) + + def test_assign_matrix(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.ElectroStatic + + rectangle1 = m3d_app.modeler.create_rectangle(0, [0.5, 1.5, 0], [2.5, 5], name="Sheet1") + rectangle2 = m3d_app.modeler.create_rectangle(0, [9, 1.5, 0], [2.5, 5], name="Sheet2") + rectangle3 = m3d_app.modeler.create_rectangle(0, [16.5, 1.5, 0], [2.5, 5], name="Sheet3") + + m3d_app.assign_voltage(rectangle1.faces[0], amplitude=1, name="Voltage1") + m3d_app.assign_voltage(rectangle2.faces[0], amplitude=1, name="Voltage2") + m3d_app.assign_voltage(rectangle3.faces[0], amplitude=1, name="Voltage3") + + setup = m3d_app.create_setup(MaximumPasses=2) + m3d_app.analyze(setup=setup.name) + + matrix = m3d_app.assign_matrix(assignment="Voltage1") + assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["Source"] == "Voltage1" + assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] == "1" + matrix = m3d_app.assign_matrix( + assignment=["Voltage1", "Voltage3"], matrix_name="Test1", group_sources="Voltage2" + ) + assert matrix.props["MatrixEntry"]["MatrixEntry"][1]["Source"] == "Voltage3" + assert matrix.props["MatrixEntry"]["MatrixEntry"][1]["NumberOfTurns"] == "1" + m3d_app.solution_type = SOLUTIONS.Maxwell3d.Transient + m3d_app.assign_winding("Sheet1", name="Current1") + matrix = m3d_app.assign_matrix(assignment="Current1") + assert not matrix + + def test_available_quantities_categories(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.ElectroStatic + + rectangle1 = m3d_app.modeler.create_rectangle(0, [0.5, 1.5, 0], [2.5, 5], name="Sheet1") + + m3d_app.assign_voltage(rectangle1.faces[0], amplitude=1, name="Voltage1") + + setup = m3d_app.create_setup(MaximumPasses=2) + m3d_app.analyze(setup=setup.name) + + matrix = m3d_app.assign_matrix(assignment="Voltage1") + assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["Source"] == "Voltage1" + assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] == "1" + cat = m3d_app.post.available_quantities_categories(context=matrix.name) assert isinstance(cat, list) assert "C" in cat - quantities = m3d.post.available_report_quantities( - display_type="Data Table", quantities_category="C", context=L.name + + def test_available_report_quantities(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.ElectroStatic + + rectangle1 = m3d_app.modeler.create_rectangle(0, [0.5, 1.5, 0], [2.5, 5], name="Sheet1") + + m3d_app.assign_voltage(rectangle1.faces[0], amplitude=1, name="Voltage1") + + setup = m3d_app.create_setup(MaximumPasses=2) + m3d_app.analyze(setup=setup.name) + + matrix = m3d_app.assign_matrix(assignment="Voltage1") + assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["Source"] == "Voltage1" + assert matrix.props["MatrixEntry"]["MatrixEntry"][0]["NumberOfTurns"] == "1" + quantities = m3d_app.post.available_report_quantities( + display_type="Data Table", quantities_category="C", context=matrix.name ) assert isinstance(quantities, list) - report = m3d.post.create_report( + report = m3d_app.post.create_report( expressions=quantities, plot_type="Data Table", - context=L.name, + context=matrix.name, primary_sweep_variable="X", variations={"X": "All"}, ) assert quantities == report.expressions - assert report.matrix == L.name - assert L.delete() - group_sources = "Voltage2" - L = m3d.assign_matrix(assignment=["Voltage1", "Voltage3"], matrix_name="Test1", group_sources=group_sources) - assert L.props["MatrixEntry"]["MatrixEntry"][1]["Source"] == "Voltage3" - m3d.solution_type = SOLUTIONS.Maxwell3d.Transient - winding1 = m3d.assign_winding("Sheet1", name="Current1") - winding2 = m3d.assign_winding("Sheet2", name="Current2") - winding3 = m3d.assign_winding("Sheet3", name="Current3") - winding4 = m3d.assign_winding("Sheet4", name="Current4") - L = m3d.assign_matrix(assignment="Current1") - assert not L - - def test_32a_matrix(self, add_app): - m3d = add_app(application=Maxwell3d, design_name="Matrix2") - m3d.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent - m3d.modeler.create_box([0, 1.5, 0], [1, 2.5, 5], name="Coil_1", material="aluminum") - m3d.modeler.create_box([8.5, 1.5, 0], [1, 2.5, 5], name="Coil_2", material="aluminum") - m3d.modeler.create_box([16, 1.5, 0], [1, 2.5, 5], name="Coil_3", material="aluminum") - m3d.modeler.create_box([32, 1.5, 0], [1, 2.5, 5], name="Coil_4", material="aluminum") - - rectangle1 = m3d.modeler.create_rectangle(0, [0.5, 1.5, 0], [2.5, 5], name="Sheet1") - rectangle2 = m3d.modeler.create_rectangle(0, [9, 1.5, 0], [2.5, 5], name="Sheet2") - rectangle3 = m3d.modeler.create_rectangle(0, [16.5, 1.5, 0], [2.5, 5], name="Sheet3") - rectangle4 = m3d.modeler.create_rectangle(0, [32.5, 1.5, 0], [2.5, 5], name="Sheet4") - - m3d.modeler.create_polyline(points=[[1, 2.75, 2.5], [8.5, 2.75, 2.5]], name="line_test") - - m3d.assign_current(rectangle1.faces[0], amplitude=1, name="Cur1") - m3d.assign_current(rectangle2.faces[0], amplitude=1, name="Cur2") - m3d.assign_current(rectangle3.faces[0], amplitude=1, name="Cur3") - m3d.assign_current(rectangle4.faces[0], amplitude=1, name="Cur4") - - L = m3d.assign_matrix(assignment=["Cur1", "Cur2", "Cur3"], matrix_name="Matrix1") - assert not L.reduced_matrices - m3d.solution_type = SOLUTIONS.Maxwell3d.Magnetostatic - out = L.join_series(sources=["Cur1", "Cur2"], matrix_name="ReducedMatrix3") + assert report.matrix == matrix.name + assert matrix.delete() + + def test_reduced_matrix(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + + m3d_app.modeler.create_box([0, 1.5, 0], [1, 2.5, 5], name="Coil_1", material="aluminum") + m3d_app.modeler.create_box([8.5, 1.5, 0], [1, 2.5, 5], name="Coil_2", material="aluminum") + m3d_app.modeler.create_box([16, 1.5, 0], [1, 2.5, 5], name="Coil_3", material="aluminum") + m3d_app.modeler.create_box([32, 1.5, 0], [1, 2.5, 5], name="Coil_4", material="aluminum") + + rectangle1 = m3d_app.modeler.create_rectangle(0, [0.5, 1.5, 0], [2.5, 5], name="Sheet1") + rectangle2 = m3d_app.modeler.create_rectangle(0, [9, 1.5, 0], [2.5, 5], name="Sheet2") + rectangle3 = m3d_app.modeler.create_rectangle(0, [16.5, 1.5, 0], [2.5, 5], name="Sheet3") + + m3d_app.assign_current(rectangle1.faces[0], amplitude=1, name="Cur1") + m3d_app.assign_current(rectangle2.faces[0], amplitude=1, name="Cur2") + m3d_app.assign_current(rectangle3.faces[0], amplitude=1, name="Cur3") + + matrix = m3d_app.assign_matrix(assignment=["Cur1", "Cur2", "Cur3"], matrix_name="Matrix1") + assert not matrix.reduced_matrices + m3d_app.solution_type = SOLUTIONS.Maxwell3d.Magnetostatic + out = matrix.join_series(sources=["Cur1", "Cur2"], matrix_name="ReducedMatrix3") assert not out[0] assert not out[1] - m3d.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent - out = L.join_series(sources=["Cur1", "Cur2"], matrix_name="ReducedMatrix1") - assert L.reduced_matrices - assert isinstance(out[0], str) - assert isinstance(out[1], str) - out = L.join_parallel(["Cur1", "Cur3"], matrix_name="ReducedMatrix2") - assert isinstance(out[0], str) - assert isinstance(out[1], str) - out = L.join_parallel(["Cur5"]) - assert not out[0] - - def test_32b_reduced_matrix(self): - self.aedtapp.set_active_design("Matrix2") - parent_matrix = [m for m in self.aedtapp.boundaries if m.type == "Matrix"][0] - assert parent_matrix.reduced_matrices - reduced_matrix_1 = parent_matrix.reduced_matrices[0] - assert reduced_matrix_1.name == "ReducedMatrix1" - assert reduced_matrix_1.parent_matrix == parent_matrix.name + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + out = matrix.join_series(sources=["Cur1", "Cur2"], matrix_name="ReducedMatrix1") + assert matrix.reduced_matrices + assert matrix.reduced_matrices[0].name == "ReducedMatrix1" + assert matrix.reduced_matrices[0].parent_matrix == "Matrix1" + assert out[1] in matrix.reduced_matrices[0].sources.keys() + out = matrix.join_parallel(["Cur1", "Cur3"], matrix_name="ReducedMatrix2") + assert matrix.reduced_matrices[1].name == "ReducedMatrix2" + assert matrix.reduced_matrices[1].parent_matrix == "Matrix1" + assert out[1] in matrix.reduced_matrices[1].sources.keys() + reduced_matrix_1 = matrix.reduced_matrices[0] + assert reduced_matrix_1.parent_matrix == matrix.name source_name = list(reduced_matrix_1.sources.keys())[0] assert reduced_matrix_1.update(old_source=source_name, source_type="series", new_source="new_series") assert list(reduced_matrix_1.sources.keys())[0] == "new_series" - assert reduced_matrix_1.sources["new_series"] == "Cur1, Cur2" assert reduced_matrix_1.update(old_source="new_series", source_type="series", new_excitations="Cur2, Cur3") assert list(reduced_matrix_1.sources.keys())[0] == "new_series" - assert reduced_matrix_1.sources["new_series"] == "Cur2, Cur3" assert not reduced_matrix_1.update(old_source="invalid", source_type="series", new_excitations="Cur2, Cur3") assert not reduced_matrix_1.update(old_source="new_series", source_type="invalid", new_excitations="Cur2, Cur3") assert not reduced_matrix_1.delete(source="invalid") assert reduced_matrix_1.delete(source="new_series") - assert len(parent_matrix.reduced_matrices) == 1 + assert len(matrix.reduced_matrices) == 1 + out = matrix.join_parallel(["Cur5"]) + assert not out[0] + + def test_export_rl_matrix(self, local_scratch, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + + m3d_app.modeler.create_box([0, 1.5, 0], [1, 2.5, 5], name="Coil_1", material="aluminum") + m3d_app.modeler.create_box([8.5, 1.5, 0], [1, 2.5, 5], name="Coil_2", material="aluminum") + m3d_app.modeler.create_box([16, 1.5, 0], [1, 2.5, 5], name="Coil_3", material="aluminum") + m3d_app.modeler.create_box([32, 1.5, 0], [1, 2.5, 5], name="Coil_4", material="aluminum") - def test_32c_export_rl_matrix(self): - self.aedtapp.set_active_design("Matrix2") - L = self.aedtapp.assign_matrix(assignment=["Cur1", "Cur2", "Cur3"], matrix_name="matrix_export_test") - L.join_series(["Cur1", "Cur2"], matrix_name="reduced_matrix_export_test") + rectangle1 = m3d_app.modeler.create_rectangle(0, [0.5, 1.5, 0], [2.5, 5], name="Sheet1") + rectangle2 = m3d_app.modeler.create_rectangle(0, [9, 1.5, 0], [2.5, 5], name="Sheet2") + rectangle3 = m3d_app.modeler.create_rectangle(0, [16.5, 1.5, 0], [2.5, 5], name="Sheet3") + + m3d_app.assign_current(rectangle1.faces[0], amplitude=1, name="Cur1") + m3d_app.assign_current(rectangle2.faces[0], amplitude=1, name="Cur2") + m3d_app.assign_current(rectangle3.faces[0], amplitude=1, name="Cur3") + + matrix = m3d_app.assign_matrix(assignment=["Cur1", "Cur2", "Cur3"], matrix_name="matrix_export_test") + matrix.join_series(["Cur1", "Cur2"], matrix_name="reduced_matrix_export_test") setup_name = "setupTestMatrixRL" - setup = self.aedtapp.create_setup(name=setup_name) + setup = m3d_app.create_setup(name=setup_name) setup.props["MaximumPasses"] = 2 - export_path_1 = os.path.join(self.local_scratch.path, "export_rl_matrix_Test1.txt") - assert not self.aedtapp.export_rl_matrix("matrix_export_test", export_path_1) - assert not self.aedtapp.export_rl_matrix("matrix_export_test", export_path_1, False, 10, 3, True) - self.aedtapp.validate_simple() - self.aedtapp.analyze_setup(setup_name, cores=1) - assert self.aedtapp.export_rl_matrix("matrix_export_test", export_path_1) - assert not self.aedtapp.export_rl_matrix("abcabc", export_path_1) + export_path_1 = os.path.join(local_scratch.path, "export_rl_matrix_Test1.txt") + assert not m3d_app.export_rl_matrix("matrix_export_test", export_path_1) + assert not m3d_app.export_rl_matrix("matrix_export_test", export_path_1, False, 10, 3, True) + m3d_app.validate_simple() + m3d_app.analyze_setup(setup_name, cores=1) + assert m3d_app.export_rl_matrix("matrix_export_test", export_path_1) + assert not m3d_app.export_rl_matrix("abcabc", export_path_1) assert os.path.exists(export_path_1) - export_path_2 = os.path.join(self.local_scratch.path, "export_rl_matrix_Test2.txt") - assert self.aedtapp.export_rl_matrix("matrix_export_test", export_path_2, False, 10, 3, True) + export_path_2 = os.path.join(local_scratch.path, "export_rl_matrix_Test2.txt") + assert m3d_app.export_rl_matrix("matrix_export_test", export_path_2, False, 10, 3, True) assert os.path.exists(export_path_2) - def test_32d_post_processing(self): - expressions = self.aedtapp.post.available_report_quantities( - report_category="EddyCurrent", display_type="Data Table", context={"Matrix1": "ReducedMatrix1"} - ) - assert isinstance(expressions, list) - categories = self.aedtapp.post.available_quantities_categories( + @pytest.mark.skipif(is_linux, reason="Failing in Ubuntu 22.") + def test_get_solution_data(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + + m3d_app.modeler.create_box([0, 1.5, 0], [1, 2.5, 5], name="Coil_1", material="aluminum") + m3d_app.modeler.create_box([8.5, 1.5, 0], [1, 2.5, 5], name="Coil_2", material="aluminum") + m3d_app.modeler.create_box([16, 1.5, 0], [1, 2.5, 5], name="Coil_3", material="aluminum") + m3d_app.modeler.create_box([32, 1.5, 0], [1, 2.5, 5], name="Coil_4", material="aluminum") + + rectangle1 = m3d_app.modeler.create_rectangle(0, [0.5, 1.5, 0], [2.5, 5], name="Sheet1") + rectangle2 = m3d_app.modeler.create_rectangle(0, [9, 1.5, 0], [2.5, 5], name="Sheet2") + rectangle3 = m3d_app.modeler.create_rectangle(0, [16.5, 1.5, 0], [2.5, 5], name="Sheet3") + + m3d_app.assign_current(rectangle1.faces[0], amplitude=1, name="Cur1") + m3d_app.assign_current(rectangle2.faces[0], amplitude=1, name="Cur2") + m3d_app.assign_current(rectangle3.faces[0], amplitude=1, name="Cur3") + + matrix = m3d_app.assign_matrix(assignment=["Cur1", "Cur2", "Cur3"], matrix_name="Matrix1") + matrix.join_series(sources=["Cur1", "Cur2"], matrix_name="ReducedMatrix1") + + setup = m3d_app.create_setup(MaximumPasses=2) + m3d_app.analyze(setup=setup.name) + + expressions = m3d_app.post.available_report_quantities( report_category="EddyCurrent", display_type="Data Table", context={"Matrix1": "ReducedMatrix1"} ) - assert isinstance(categories, list) - assert "R" in categories - assert "L" in categories - categories = self.aedtapp.post.available_quantities_categories( - report_category="EddyCurrent", display_type="Data Table", context="Matrix1" - ) - assert isinstance(categories, list) - assert "R" in categories - assert "L" in categories - assert "Z" in categories - categories = self.aedtapp.post.available_quantities_categories( - report_category="EddyCurrent", display_type="Data Table" - ) - assert isinstance(categories, list) - assert "R" in categories - assert "L" in categories - assert "Z" in categories - report = self.aedtapp.post.create_report( - expressions=expressions, - context={"Matrix1": "ReducedMatrix1"}, - plot_type="Data Table", - plot_name="reduced_matrix", - ) - assert report.expressions == expressions - assert report.matrix == "Matrix1" - assert report.reduced_matrix == "ReducedMatrix1" - data = self.aedtapp.post.get_solution_data(expressions=expressions, context={"Matrix1": "ReducedMatrix1"}) + data = m3d_app.post.get_solution_data(expressions=expressions, context={"Matrix1": "ReducedMatrix1"}) assert data - expressions = self.aedtapp.post.available_report_quantities( - report_category="EddyCurrent", display_type="Data Table" - ) + + expressions = m3d_app.post.available_report_quantities(report_category="EddyCurrent", display_type="Data Table") assert isinstance(expressions, list) - expressions = self.aedtapp.post.available_report_quantities( + expressions = m3d_app.post.available_report_quantities( report_category="EddyCurrent", display_type="Data Table", context="Matrix1" ) - assert isinstance(expressions, list) - report = self.aedtapp.post.create_report( - expressions=expressions, - context="Matrix1", - plot_type="Data Table", - plot_name="reduced_matrix", - ) - assert report.expressions == expressions - assert report.matrix == "Matrix1" - assert not report.reduced_matrix - data = self.aedtapp.post.get_solution_data(expressions=expressions, context="Matrix1") + data = m3d_app.post.get_solution_data(expressions=expressions, context="Matrix1") assert data - report = self.aedtapp.post.create_report( - expressions="Mag_H", context="line_test", primary_sweep_variable="Distance", report_category="Fields" - ) - assert report.expressions == ["Mag_H"] - assert report.polyline == "line_test" - data = self.aedtapp.post.get_solution_data( - expressions=["Mag_H"], - context="line_test", - report_category="Fields", - primary_sweep_variable="Distance", - ) - assert data - - def test_33_mesh_settings(self): - assert self.aedtapp.mesh.initial_mesh_settings - assert self.aedtapp.mesh.initial_mesh_settings.props - - def test_34_assign_voltage_drop(self): - circle = self.aedtapp.modeler.create_circle(position=[10, 10, 0], radius=5, cs_plane="XY") - self.aedtapp.solution_type = "Magnetostatic" - assert self.aedtapp.assign_voltage_drop([circle.faces[0]]) - - def test_35_assign_symmetry(self): - self.aedtapp.set_active_design("Motion") - outer_box = [x for x in self.aedtapp.modeler.object_list if x.name == "Outer_Box"] - inner_box = [x for x in self.aedtapp.modeler.object_list if x.name == "Inner_Box"] - assert self.aedtapp.assign_symmetry([outer_box[0].faces[0], inner_box[0].faces[0]], "Symmetry_Test_IsOdd") - assert self.aedtapp.assign_symmetry([outer_box[0].faces[0], inner_box[0].faces[0]]) - assert self.aedtapp.assign_symmetry( - [outer_box[0].faces[0], inner_box[0].faces[0]], "Symmetry_Test_IsEven", False - ) - assert self.aedtapp.assign_symmetry([35, 7]) - assert not self.aedtapp.assign_symmetry([]) - for bound in self.aedtapp.boundaries: - if bound.name == "Symmetry_Test_IsOdd": - assert bound.type == "Symmetry" - assert bound.props["IsOdd"] - if bound.name == "Symmetry_Test_IsEven": - assert bound.type == "Symmetry" - assert not bound.props["IsOdd"] - - def test_36_set_bp_curve_loss(self): - bp_curve_box = self.aedtapp.modeler.create_box([0, 0, 0], [10, 10, 10], name="bp_curve_box") + def test_initial_mesh_settings(self, m3d_app): + assert m3d_app.mesh.initial_mesh_settings + assert m3d_app.mesh.initial_mesh_settings.props + + def test_assign_voltage_drop(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.Magnetostatic + + circle = m3d_app.modeler.create_circle(position=[10, 10, 0], radius=5, cs_plane="XY") + v_drop = m3d_app.assign_voltage_drop([circle.faces[0]]) + assert v_drop.props["Faces"][0] == circle.faces[0].id + assert v_drop.props["Voltage Drop"] == "1mV" + + def test_assign_symmetry(self, m3d_app): + box = m3d_app.modeler.create_box([0, 1.5, 0], [1, 2.5, 5], name="Coil_1", material="aluminum") + symmetry = m3d_app.assign_symmetry([box.faces[0]], "symmetry_test") + assert symmetry + assert symmetry.props["Faces"][0] == box.faces[0].id + assert symmetry.props["Name"] == "symmetry_test" + assert symmetry.props["IsOdd"] + symmetry_1 = m3d_app.assign_symmetry([box.faces[1]], "symmetry_test_1", False) + assert symmetry_1 + assert symmetry_1.props["Faces"][0] == box.faces[1].id + assert symmetry_1.props["Name"] == "symmetry_test_1" + assert not symmetry_1.props["IsOdd"] + assert all([bound.type == "Symmetry" for bound in m3d_app.boundaries]) + + def test_set_bp_curve_loss(self, m3d_app): + bp_curve_box = m3d_app.modeler.create_box([0, 0, 0], [10, 10, 10], name="bp_curve_box") bp_curve_box.material = "magnesium" - assert self.aedtapp.materials["magnesium"].set_bp_curve_coreloss( + assert m3d_app.materials["magnesium"].set_bp_curve_coreloss( [[0, 0], [0.6, 1.57], [1.0, 4.44], [1.5, 20.562], [2.1, 44.23]], kdc=0.002, cut_depth=0.0009, @@ -726,77 +642,71 @@ def test_36_set_bp_curve_loss(self): thickness="0.5mm", ) - def test_37_assign_insulating(self): - insulated_box = self.aedtapp.modeler.create_box([50, 0, 50], [294, 294, 19], name="insulated_box") - insulating_assignment = self.aedtapp.assign_insulating(insulated_box.name, "InsulatingExample") - assert insulating_assignment.name == "InsulatingExample" - insulating_assignment.name = "InsulatingExampleModified" + def test_assign_insulating(self, m3d_app): + box = m3d_app.modeler.create_box([50, 0, 50], [294, 294, 19], name="box") + insulating_assignment = m3d_app.assign_insulating(box.name, "insulating") + assert insulating_assignment.name == "insulating" + insulating_assignment.name = "insulating_update" assert insulating_assignment.update() - insulating_assignment_face = self.aedtapp.assign_insulating(insulated_box.faces[0], "InsulatingExample2") - assert insulating_assignment_face.name == "InsulatingExample2" - insulating_assignment_comb = self.aedtapp.assign_insulating( - [insulated_box.name, insulated_box.faces[0]], "InsulatingExample3" - ) - assert insulating_assignment_comb.name == "InsulatingExample3" - - def test_38_assign_current_density(self): - design_to_activate = [x for x in self.aedtapp.design_list if x.startswith("Maxwell")] - self.aedtapp.set_active_design(design_to_activate[0]) - current_box = self.aedtapp.modeler.create_box([50, 0, 50], [294, 294, 19], name="current_box") - current_box2 = self.aedtapp.modeler.create_box([50, 0, 50], [294, 294, 19], name="current_box2") - assert self.aedtapp.assign_current_density("current_box", "CurrentDensity_1") - assert self.aedtapp.assign_current_density( - "current_box", "CurrentDensity_2", "40deg", current_density_x="3", current_density_y="4" + assert insulating_assignment.name == "insulating_update" + insulating_assignment_face = m3d_app.assign_insulating(box.faces[0], "insulating_2") + assert insulating_assignment_face.name == "insulating_2" + insulating_assignment_comb = m3d_app.assign_insulating([box.name, box.faces[0]], "insulating_3") + assert insulating_assignment_comb.name == "insulating_3" + + def test_assign_current_density(self, m3d_app): + box = m3d_app.modeler.create_box([50, 0, 50], [294, 294, 19], name="box") + box1 = m3d_app.modeler.create_box([50, 0, 50], [294, 294, 19], name="box1") + + bound = m3d_app.assign_current_density(box.name, "current_density") + assert bound + assert bound.props["Objects"] == [box.name] + assert bound.props["CurrentDensityX"] == "0" + assert bound.props["CurrentDensityY"] == "0" + assert bound.props["CurrentDensityZ"] == "0" + assert bound.props["CoordinateSystem Name"] == "Global" + assert bound.props["CoordinateSystem Type"] == "Cartesian" + + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + bound = m3d_app.assign_current_density( + box.name, "current_density_1", "40deg", current_density_x="3", current_density_y="4" ) - assert self.aedtapp.assign_current_density(["current_box", "current_box2"], "CurrentDensity_3") - assert not self.aedtapp.assign_current_density("current_box", "CurrentDensity_4", coordinate_system_type="test") - assert not self.aedtapp.assign_current_density("current_box", "CurrentDensity_5", phase="5ang") - for bound in self.aedtapp.boundaries: - if bound.type == "CurrentDensity": - if bound.name == "CurrentDensity_1": - assert bound.props["Objects"] == ["current_box"] - assert bound.props["Phase"] == "0deg" - assert bound.props["CurrentDensityX"] == "0" - assert bound.props["CurrentDensityY"] == "0" - assert bound.props["CurrentDensityZ"] == "0" - assert bound.props["CoordinateSystem Name"] == "Global" - assert bound.props["CoordinateSystem Type"] == "Cartesian" - if bound.name == "CurrentDensity_2": - assert bound.props["Objects"] == ["current_box"] - assert bound.props["Phase"] == "40deg" - assert bound.props["CurrentDensityX"] == "3" - assert bound.props["CurrentDensityY"] == "4" - assert bound.props["CurrentDensityZ"] == "0" - assert bound.props["CoordinateSystem Name"] == "Global" - assert bound.props["CoordinateSystem Type"] == "Cartesian" - if bound.name == "CurrentDensity_3": - assert bound.props["Objects"] == ["current_box", "current_box2"] - assert bound.props["Phase"] == "0deg" - assert bound.props["CurrentDensityX"] == "0" - assert bound.props["CurrentDensityY"] == "0" - assert bound.props["CurrentDensityZ"] == "0" - assert bound.props["CoordinateSystem Name"] == "Global" - assert bound.props["CoordinateSystem Name"] == "Cartesian" - self.aedtapp.set_active_design("Motion") - assert not self.aedtapp.assign_current_density("Circle_inner", "CurrentDensity_1") - - def test_39_assign_current_density_terminal(self): - design_to_activate = [x for x in self.aedtapp.design_list if x.startswith("Maxwell")] - self.aedtapp.set_active_design(design_to_activate[0]) - assert self.aedtapp.assign_current_density_terminal("Coil_Section1", "CurrentDensityTerminal_1") - assert not self.aedtapp.assign_current_density_terminal("Coil_Section1", "CurrentDensityTerminal_1") - self.aedtapp.set_active_design("Matrix2") - assert self.aedtapp.assign_current_density_terminal(["Sheet1", "Sheet2"], "CurrentDensityTerminalGroup_1") - assert not self.aedtapp.assign_current_density_terminal(["Coil_1", "Coil_2"], "CurrentDensityTerminalGroup_2") - self.aedtapp.set_active_design("Motion") - assert not self.aedtapp.assign_current_density_terminal("Inner_Box", "CurrentDensityTerminal_1") - - def test_40_assign_impedance(self): - impedance_box = self.aedtapp.modeler.create_box([-50, -50, -50], [294, 294, 19], name="impedance_box") - impedance_faces = self.aedtapp.modeler.select_allfaces_fromobjects([impedance_box.name]) - assert self.aedtapp.assign_impedance(impedance_faces, "copper") - assert self.aedtapp.assign_impedance(impedance_box, "copper") - impedance_assignment = self.aedtapp.assign_impedance( + assert bound + assert bound.props["Objects"] == [box.name] + assert bound.props["Phase"] == "40deg" + assert bound.props["CurrentDensityX"] == "3" + assert bound.props["CurrentDensityY"] == "4" + assert bound.props["CurrentDensityZ"] == "0" + assert bound.props["CoordinateSystem Name"] == "Global" + assert bound.props["CoordinateSystem Type"] == "Cartesian" + + bound = m3d_app.assign_current_density([box.name, box1.name], "current_density_2") + assert bound + assert bound.props[bound.name]["Objects"] == [box.name, box1.name] + assert bound.props[bound.name]["Phase"] == "0deg" + assert bound.props[bound.name]["CurrentDensityX"] == "0" + assert bound.props[bound.name]["CurrentDensityY"] == "0" + assert bound.props[bound.name]["CurrentDensityZ"] == "0" + assert bound.props[bound.name]["CoordinateSystem Name"] == "Global" + + assert not m3d_app.assign_current_density(box.name, "current_density_3", coordinate_system_type="test") + assert not m3d_app.assign_current_density(box.name, "current_density_4", phase="5ang") + + def test_assign_current_density_terminal(self, m3d_app): + box = m3d_app.modeler.create_box([50, 0, 50], [294, 294, 19], name="box") + assert m3d_app.assign_current_density_terminal(box.faces[0], "current_density_t_1") + assert not m3d_app.assign_current_density_terminal(box.faces[0], "current_density_t_1") + assert m3d_app.assign_current_density_terminal([box.faces[0], box.faces[1]], "current_density_t_2") + m3d_app.solution_type = SOLUTIONS.Maxwell3d.Transient + assert not m3d_app.assign_current_density_terminal(box.faces[0], "current_density_t_3") + + def test_assign_impedance(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.Transient + + impedance_box = m3d_app.modeler.create_box([-50, -50, -50], [294, 294, 19], name="impedance_box") + assert m3d_app.assign_impedance(impedance_box.faces, "copper") + assert m3d_app.assign_impedance(impedance_box, "copper") + impedance_assignment = m3d_app.assign_impedance( impedance_box.name, permeability=1.3, conductivity=42000000, impedance="ImpedanceExample" ) assert impedance_assignment.name == "ImpedanceExample" @@ -804,10 +714,8 @@ def test_40_assign_impedance(self): assert impedance_assignment.update() # Add an impedance using an existing material. - impedance_box_copper = self.aedtapp.modeler.create_box( - [-50, -300, -50], [294, 294, 19], name="impedance_box_copper" - ) - impedance_assignment_copper = self.aedtapp.assign_impedance( + impedance_box_copper = m3d_app.modeler.create_box([-50, -300, -50], [294, 294, 19], name="impedance_box_copper") + impedance_assignment_copper = m3d_app.assign_impedance( impedance_box_copper.name, material_name="copper", impedance="ImpedanceExampleCopper" ) assert impedance_assignment_copper.name == "ImpedanceExampleCopper" @@ -816,11 +724,11 @@ def test_40_assign_impedance(self): # Add an impedance using an existing material with non-linear permeability and # modifying its conductivity. - impedance_box_copper_non_liear = self.aedtapp.modeler.create_box( + impedance_box_copper_non_liear = m3d_app.modeler.create_box( [-50, -600, -50], [294, 294, 19], name="impedance_box_copper_non_liear" ) - impedance_assignment_copper = self.aedtapp.assign_impedance( - impedance_box_copper.name, + impedance_assignment_copper = m3d_app.assign_impedance( + impedance_box_copper_non_liear.name, material_name="copper", conductivity=47000000, non_linear_permeability=True, @@ -831,322 +739,310 @@ def test_40_assign_impedance(self): assert impedance_assignment_copper.update() @pytest.mark.skipif(desktop_version < "2023.1", reason="Method implemented in AEDT 2023R1") - def test_41_conduction_paths(self): - self.aedtapp.insert_design("conduction") - box1 = self.aedtapp.modeler.create_box([0, 0, 0], [10, 10, 1], material="copper") - box1 = self.aedtapp.modeler.create_box([0, 0, 0], [-10, 10, 1], material="copper") - box3 = self.aedtapp.modeler.create_box([-50, -50, -50], [1, 1, 1], material="copper") - assert len(self.aedtapp.get_conduction_paths()) == 2 - - def test_43_eddy_effect_transient(self, m3dtransient): - assert m3dtransient.eddy_effects_on(["Rotor"], enable_eddy_effects=True) - - def test_44_assign_master_slave(self, m3dtransient): - faces = [ - x.faces for x in m3dtransient.modeler.object_list if x.name == "PeriodicBC1" or x.name == "PeriodicBC2" - ] - assert m3dtransient.assign_master_slave( - master_entity=faces[0], - slave_entity=faces[1], + def test_conduction_paths(self, m3d_app): + m3d_app.modeler.create_box([0, 0, 0], [10, 10, 1], material="copper") + m3d_app.modeler.create_box([0, 0, 0], [-10, 10, 1], material="copper") + m3d_app.modeler.create_box([-50, -50, -50], [1, 1, 1], material="copper") + assert len(m3d_app.get_conduction_paths()) == 2 + + def test_assign_independent_dependent(self, m3d_app): + box = m3d_app.modeler.create_box([0, 0, 0], [10, 10, 1], material="copper") + independent, dependent = m3d_app.assign_master_slave( + master_entity=box.faces[1], + slave_entity=box.faces[5], u_vector_origin_coordinates_master=["0mm", "0mm", "0mm"], - u_vector_pos_coordinates_master=["0mm", "100mm", "0mm"], - u_vector_origin_coordinates_slave=["0mm", "0mm", "0mm"], - u_vector_pos_coordinates_slave=["0mm", "-100mm", "0mm"], + u_vector_pos_coordinates_master=["10mm", "0mm", "0mm"], + u_vector_origin_coordinates_slave=["10mm", "0mm", "0mm"], + u_vector_pos_coordinates_slave=["10mm", "10mm", "0mm"], + ) + assert independent + assert dependent + assert not m3d_app.assign_master_slave( + master_entity=box.faces[1], + slave_entity=box.faces[5], + u_vector_origin_coordinates_master=[0, "0mm", "0mm"], + u_vector_pos_coordinates_master=["10mm", "0mm", "0mm"], + u_vector_origin_coordinates_slave=["10mm", "0mm", "0mm"], + u_vector_pos_coordinates_slave=["10mm", "10mm", "0mm"], ) - assert m3dtransient.assign_master_slave( - master_entity=faces[0], - slave_entity=faces[1], + assert not m3d_app.assign_master_slave( + master_entity=box.faces[1], + slave_entity=box.faces[5], u_vector_origin_coordinates_master=["0mm", "0mm", "0mm"], - u_vector_pos_coordinates_master=["0mm", "100mm", "0mm"], - u_vector_origin_coordinates_slave=["0mm", "0mm", "0mm"], - u_vector_pos_coordinates_slave=["0mm", "-100mm", "0mm"], - bound_name="test", + u_vector_pos_coordinates_master=[10, "0mm", "0mm"], + u_vector_origin_coordinates_slave=["10mm", "0mm", "0mm"], + u_vector_pos_coordinates_slave=["10mm", "10mm", "0mm"], ) - assert m3dtransient.assign_master_slave( - master_entity=faces[0], - slave_entity=faces[1], - u_vector_origin_coordinates_master="0mm", - u_vector_pos_coordinates_master=["0mm", "100mm", "0mm"], - u_vector_origin_coordinates_slave=["0mm", "0mm", "0mm"], - u_vector_pos_coordinates_slave=["0mm", "-100mm", "0mm"], - ) == (False, False) - assert m3dtransient.assign_master_slave( - master_entity=faces[0], - slave_entity=faces[1], + assert not m3d_app.assign_master_slave( + master_entity=box.faces[1], + slave_entity=box.faces[5], u_vector_origin_coordinates_master=["0mm", "0mm", "0mm"], - u_vector_pos_coordinates_master=[0, "100mm", "0mm"], - u_vector_origin_coordinates_slave=["0mm", "0mm", "0mm"], - u_vector_pos_coordinates_slave=["0mm", "-100mm", "0mm"], - ) == (False, False) - assert m3dtransient.assign_master_slave( - master_entity=faces[0], - slave_entity=faces[1], + u_vector_pos_coordinates_master=["10mm", "0mm", "0mm"], + u_vector_origin_coordinates_slave=[10, "0mm", "0mm"], + u_vector_pos_coordinates_slave=["10mm", "10mm", "0mm"], + ) + assert not m3d_app.assign_master_slave( + master_entity=box.faces[1], + slave_entity=box.faces[5], u_vector_origin_coordinates_master=["0mm", "0mm", "0mm"], - u_vector_pos_coordinates_master=[0, "100mm", "0mm"], - u_vector_origin_coordinates_slave=["0mm", "0mm"], - u_vector_pos_coordinates_slave=["0mm", "-100mm", "0mm"], - ) == (False, False) - - def test_45_add_mesh_link(self, m3dtransient): - m3dtransient.duplicate_design(m3dtransient.design_name) - m3dtransient.set_active_design(m3dtransient.design_list[1]) - assert m3dtransient.setups[0].add_mesh_link(design=m3dtransient.design_list[0]) - meshlink_props = m3dtransient.setups[0].props["MeshLink"] - assert meshlink_props["Project"] == "This Project*" - assert meshlink_props["PathRelativeTo"] == "TargetProject" - assert meshlink_props["Design"] == m3dtransient.design_list[0] - assert meshlink_props["Soln"] == "Setup1 : LastAdaptive" - assert not m3dtransient.setups[0].add_mesh_link(design="") - assert m3dtransient.setups[0].add_mesh_link( - design=m3dtransient.design_list[0], solution="Setup1 : LastAdaptive" + u_vector_pos_coordinates_master=["10mm", "0mm", "0mm"], + u_vector_origin_coordinates_slave=["10mm", "0mm", "0mm"], + u_vector_pos_coordinates_slave=[10, "10mm", "0mm"], ) - assert not m3dtransient.setups[0].add_mesh_link( - design=m3dtransient.design_list[0], solution="Setup_Test : LastAdaptive" + assert not m3d_app.assign_master_slave( + master_entity=box.faces[1], + slave_entity=box.faces[5], + u_vector_origin_coordinates_master="0mm", + u_vector_pos_coordinates_master=["10mm", "0mm", "0mm"], + u_vector_origin_coordinates_slave=["10mm", "0mm", "0mm"], + u_vector_pos_coordinates_slave=["10mm", "10mm", "0mm"], ) - assert m3dtransient.setups[0].add_mesh_link( - design=m3dtransient.design_list[0], parameters=m3dtransient.available_variations.nominal_w_values_dict + + def test_add_mesh_link(self, m3d_app, local_scratch): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.Transient + m3d_app.create_setup() + m3d_app.duplicate_design(m3d_app.design_name) + m3d_app.set_active_design(m3d_app.design_list[1]) + m3d_app["test"] = "2deg" + assert m3d_app.setups[0].add_mesh_link(design=m3d_app.design_list[0]) + meshlink_props = m3d_app.setups[0].props["MeshLink"] + assert meshlink_props["Project"] == "This Project*" + assert meshlink_props["PathRelativeTo"] == "TargetProject" + assert meshlink_props["Design"] == m3d_app.design_list[0] + assert meshlink_props["Soln"] == m3d_app.nominal_adaptive + assert not m3d_app.setups[0].add_mesh_link(design="invalid") + assert not m3d_app.setups[0].add_mesh_link(design=m3d_app.design_list[0], solution="invalid") + assert m3d_app.setups[0].add_mesh_link( + design=m3d_app.design_list[0], parameters=m3d_app.available_variations.nominal_w_values_dict ) - example_project = os.path.join(TESTS_GENERAL_PATH, "example_models", test_subfolder, transient + ".aedt") - example_project_copy = os.path.join(self.local_scratch.path, transient + "_copy.aedt") + example_project = os.path.join(local_scratch.path, "test.aedt") + m3d_app.save_project(example_project) + example_project_copy = os.path.join(local_scratch.path, "test_copy.aedt") shutil.copyfile(example_project, example_project_copy) - assert m3dtransient.setups[0].add_mesh_link(design=m3dtransient.design_list[0], project=example_project_copy) - - def test_46_set_variable(self): - self.aedtapp.variable_manager.set_variable("var_test", expression="123") - self.aedtapp["var_test"] = "234" - assert "var_test" in self.aedtapp.variable_manager.design_variable_names - assert self.aedtapp.variable_manager.design_variables["var_test"].expression == "234" - - def test_49_cylindrical_gap(self, cyl_gap): - [ - x.delete() - for x in cyl_gap.mesh.meshoperations[:] - if x.type == "Cylindrical Gap Based" or x.type == "CylindricalGap" - ] - assert cyl_gap.mesh.assign_cylindrical_gap("Band", name="cyl_gap_test") - assert not cyl_gap.mesh.assign_cylindrical_gap(["Band", "Inner_Band"]) - assert not cyl_gap.mesh.assign_cylindrical_gap("Band") - [ - x.delete() - for x in cyl_gap.mesh.meshoperations[:] - if x.type == "Cylindrical Gap Based" or x.type == "CylindricalGap" - ] - assert cyl_gap.mesh.assign_cylindrical_gap("Band", name="cyl_gap_test", band_mapping_angle=1, clone_mesh=True) + assert m3d_app.setups[0].add_mesh_link(design=m3d_app.design_list[0], project=example_project_copy) + + def test_set_variable(self, m3d_app): + m3d_app.variable_manager.set_variable("var_test", expression="123") + m3d_app["var_test"] = "234" + assert "var_test" in m3d_app.variable_manager.design_variable_names + assert m3d_app.variable_manager.design_variables["var_test"].expression == "234" + + def test_cylindrical_gap(self, m3d_app): + inner_cylinder = m3d_app.modeler.create_cylinder(m3d_app.AXIS.Z, [0, 0, 0], 5, 10, 0, "inner") + outer_cylinder = m3d_app.modeler.create_cylinder(m3d_app.AXIS.Z, [0, 0, 0], 7, 12, 0, "outer") + assert m3d_app.mesh.assign_cylindrical_gap(outer_cylinder.name, name="cyl_gap_test") + assert not m3d_app.mesh.assign_cylindrical_gap([inner_cylinder.name, outer_cylinder.name]) + assert not m3d_app.mesh.assign_cylindrical_gap(outer_cylinder.name) [ x.delete() - for x in cyl_gap.mesh.meshoperations[:] + for x in m3d_app.mesh.meshoperations[:] if x.type == "Cylindrical Gap Based" or x.type == "CylindricalGap" ] - assert cyl_gap.mesh.assign_cylindrical_gap("Band", name="cyl_gap_test", clone_mesh=False) + assert m3d_app.mesh.assign_cylindrical_gap(outer_cylinder.name, name="cyl_gap_test", clone_mesh=True) [ x.delete() - for x in cyl_gap.mesh.meshoperations[:] + for x in m3d_app.mesh.meshoperations[:] if x.type == "Cylindrical Gap Based" or x.type == "CylindricalGap" ] - assert cyl_gap.mesh.assign_cylindrical_gap("Band") - assert not cyl_gap.mesh.assign_cylindrical_gap( - "Band", name="cyl_gap_test", band_mapping_angle=7, clone_mesh=True + assert not m3d_app.mesh.assign_cylindrical_gap( + outer_cylinder.name, name="cyl_gap_test", band_mapping_angle=5, clone_mesh=True ) - assert not cyl_gap.mesh.assign_cylindrical_gap( - "Band", name="cyl_gap_test", band_mapping_angle=2, clone_mesh=True, moving_side_layers=0 + assert not m3d_app.mesh.assign_cylindrical_gap( + outer_cylinder.name, name="cyl_gap_test", band_mapping_angle=2, clone_mesh=True, moving_side_layers=0 ) - assert not cyl_gap.mesh.assign_cylindrical_gap( - "Band", name="cyl_gap_test", band_mapping_angle=2, clone_mesh=True, static_side_layers=0 + assert not m3d_app.mesh.assign_cylindrical_gap( + outer_cylinder.name, name="cyl_gap_test", band_mapping_angle=2, clone_mesh=True, static_side_layers=0 ) - def test_50_objects_segmentation(self, cyl_gap): + def test_objects_segmentation(self, m3d_app): + cylinder = m3d_app.modeler.create_cylinder(m3d_app.AXIS.Z, [0, 0, 0], 5, 10, 0, "cyl") segments_number = 5 - object_name = "PM_I1" - sheets = cyl_gap.modeler.objects_segmentation( - assignment=object_name, segments=segments_number, apply_mesh_sheets=True + sheets = m3d_app.modeler.objects_segmentation( + assignment=cylinder, segments=segments_number, apply_mesh_sheets=True ) assert isinstance(sheets, tuple) assert isinstance(sheets[0], dict) assert isinstance(sheets[1], dict) - assert isinstance(sheets[0][object_name], list) - assert len(sheets[0][object_name]) == segments_number - 1 + assert isinstance(sheets[0][cylinder.name], list) + assert len(sheets[0][cylinder.name]) == segments_number - 1 + + cylinder = m3d_app.modeler.create_cylinder(m3d_app.AXIS.Z, [1, 0, 0], 5, 10, 0, "cyl") segments_number = 4 mesh_sheets_number = 3 - object_name = "PM_I1_1" - magnet_id = [obj.id for obj in cyl_gap.modeler.object_list if obj.name == object_name][0] - sheets = cyl_gap.modeler.objects_segmentation( - magnet_id, segments=segments_number, apply_mesh_sheets=True, mesh_sheets=mesh_sheets_number + sheets = m3d_app.modeler.objects_segmentation( + cylinder.id, segments=segments_number, apply_mesh_sheets=True, mesh_sheets=mesh_sheets_number ) assert isinstance(sheets, tuple) - assert isinstance(sheets[0][object_name], list) - assert len(sheets[0][object_name]) == segments_number - 1 - assert isinstance(sheets[1][object_name], list) - assert len(sheets[1][object_name]) == mesh_sheets_number + assert isinstance(sheets[0][cylinder.name], list) + assert len(sheets[0][cylinder.name]) == segments_number - 1 + assert isinstance(sheets[1][cylinder.name], list) + assert len(sheets[1][cylinder.name]) == mesh_sheets_number + + cylinder = m3d_app.modeler.create_cylinder(m3d_app.AXIS.Z, [2, 0, 0], 5, 10, 0, "cyl") segmentation_thickness = 1 - object_name = "PM_O1" - magnet = [obj for obj in cyl_gap.modeler.object_list if obj.name == object_name][0] - sheets = cyl_gap.modeler.objects_segmentation( - magnet, segmentation_thickness=segmentation_thickness, apply_mesh_sheets=True + sheets = m3d_app.modeler.objects_segmentation( + cylinder, segmentation_thickness=segmentation_thickness, apply_mesh_sheets=True ) assert isinstance(sheets, tuple) - assert isinstance(sheets[0][object_name], list) - segments_number = round(magnet.top_edge_y.length / segmentation_thickness) - assert len(sheets[0][object_name]) == segments_number - 1 - assert not cyl_gap.modeler.objects_segmentation(object_name) - assert not cyl_gap.modeler.objects_segmentation( - object_name, segmentation_thickness=segmentation_thickness, segments=segments_number + assert isinstance(sheets[0][cylinder.name], list) + segments_number = round( + GeometryOperators.points_distance(cylinder.top_face_z.center, cylinder.bottom_face_z.center) + / segmentation_thickness + ) + assert len(sheets[0][cylinder.name]) == segments_number - 1 + assert not m3d_app.modeler.objects_segmentation(cylinder.name) + assert not m3d_app.modeler.objects_segmentation( + cylinder.name, segmentation_thickness=segmentation_thickness, segments=segments_number ) - object_name = "PM_O1_1" + + cylinder = m3d_app.modeler.create_cylinder(m3d_app.AXIS.Z, [3, 0, 0], 5, 10, 0, "cyl") segments_number = 10 - sheets = cyl_gap.modeler.objects_segmentation(object_name, segments=segments_number) + sheets = m3d_app.modeler.objects_segmentation(cylinder.name, segments=segments_number) assert isinstance(sheets, dict) - assert isinstance(sheets[object_name], list) - assert len(sheets[object_name]) == segments_number - 1 + assert isinstance(sheets[cylinder.name], list) + assert len(sheets[cylinder.name]) == segments_number - 1 - @pytest.mark.skipif(config["NonGraphical"], reason="Test fails on build machine") - def test_51_import_dxf(self): - self.aedtapp.insert_design("dxf") + def test_import_dxf(self, m3d_app): dxf_file = os.path.join(TESTS_GENERAL_PATH, "example_models", "cad", "DXF", "dxf2.dxf") - dxf_layers = self.aedtapp.get_dxf_layers(dxf_file) + dxf_layers = m3d_app.get_dxf_layers(dxf_file) assert isinstance(dxf_layers, list) - assert self.aedtapp.import_dxf(dxf_file, dxf_layers) - - def test_52_assign_flux_tangential(self): - self.aedtapp.insert_design("flux_tangential") - box = self.aedtapp.modeler.create_box([50, 0, 50], [294, 294, 19], name="Box") - assert not self.aedtapp.assign_flux_tangential(box.faces[0]) - self.aedtapp.solution_type = "TransientAPhiFormulation" - assert self.aedtapp.assign_flux_tangential(box.faces[0], "FluxExample") - assert self.aedtapp.assign_flux_tangential(box.faces[0].id, "FluxExample") - - @pytest.mark.skipif(not config["use_grpc"], reason="Not running in COM mode") - @pytest.mark.skipif(desktop_version < "2023.2", reason="Method available in beta from 2023.2") - def test_53_assign_layout_force(self, layout_comp): - nets_layers = { - "": ["", "TOP", "UNNAMED_000", "UNNAMED_002"], - "GND": ["BOTTOM", "Region", "UNNAMED_010", "UNNAMED_012"], - "V3P3_S5": ["LYR_1", "LYR_2", "UNNAMED_006", "UNNAMED_008"], - } - assert layout_comp.assign_layout_force(nets_layers, "LC1_1") - assert not layout_comp.assign_layout_force(nets_layers, "LC1_3") - nets_layers = {"1V0": "Bottom Solder"} - assert layout_comp.assign_layout_force(nets_layers, "LC1_1") - - @pytest.mark.skipif( - desktop_version < "2023.2" or is_linux, reason="Method is available in beta in 2023.2 and later." - ) - @pytest.mark.skipif(is_linux, reason="EDB object is not loaded.") - def test_54_enable_harmonic_force_layout(self, layout_comp): - comp = layout_comp.modeler.user_defined_components["LC1_1"] - layers = list(comp.layout_component.layers.keys()) - nets = list(comp.layout_component.nets.keys()) - layout_comp.enable_harmonic_force_on_layout_component( - comp.name, - {nets[0]: layers[1::2], nets[1]: layers[1::2]}, - force_type=2, - window_function="Rectangular", - use_number_of_last_cycles=True, - last_cycles_number=1, - calculate_force="Harmonic", - start_time="10us", - stop_time="20us", - use_number_of_cycles_for_stop_time=True, - number_of_cycles_for_stop_time=1, - ) - layout_comp.solution_type = "Magnetostatic" - assert not layout_comp.enable_harmonic_force_on_layout_component( - comp.name, {nets[0]: layers[1::2], nets[1]: layers[1::2]} - ) - - def test_55_tangential_h_field(self, add_app): - m3d = add_app(application=Maxwell3d, solution_type="EddyCurrent") - box = m3d.modeler.create_box([0, 0, 0], [10, 10, 10]) - assert m3d.assign_tangential_h_field(box.bottom_face_x, 1, 0, 2, 0) - - def test_56_zero_tangential_h_field(self, add_app): - m3d = add_app(application=Maxwell3d, solution_type="EddyCurrent") - box = m3d.modeler.create_box([0, 0, 0], [10, 10, 10]) - assert m3d.assign_zero_tangential_h_field(box.top_face_z) - - def test_57_radiation(self): - self.aedtapp.insert_design("Radiation") - self.aedtapp.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent - rect = self.aedtapp.modeler.create_rectangle(0, [0, 0, 0], [5, 5], material="aluminum") - rect2 = self.aedtapp.modeler.create_rectangle(0, [15, 20, 0], [5, 5], material="aluminum") - box = self.aedtapp.modeler.create_box([15, 20, 0], [5, 5, 5], material="aluminum") - box2 = self.aedtapp.modeler.create_box([150, 20, 0], [50, 5, 10], material="aluminum") - bound = self.aedtapp.assign_radiation([rect, rect2, box, box2.faces[0]]) + assert m3d_app.import_dxf(dxf_file, dxf_layers) + assert m3d_app.import_dxf(dxf_file, dxf_layers, self_stitch_tolerance=0.2) + + def test_assign_flux_tangential(self, m3d_app): + box = m3d_app.modeler.create_box([50, 0, 50], [294, 294, 19], name="Box") + assert not m3d_app.assign_flux_tangential(box.faces[0]) + m3d_app.solution_type = "TransientAPhiFormulation" + assert m3d_app.assign_flux_tangential(box.faces[0], "FluxExample") + assert m3d_app.assign_flux_tangential(box.faces[0].id, "FluxExample") + + def test_assign_tangential_h_field(self, m3d_app): + box = m3d_app.modeler.create_box([0, 0, 0], [10, 10, 10]) + assert m3d_app.assign_tangential_h_field(box.bottom_face_x, 1, 0, 2, 0) + rect = m3d_app.modeler.create_rectangle(2, [0, 0, 0], [5, 5]) + assert m3d_app.assign_tangential_h_field(rect.name, 1, 0, 1, 0, u_pos=["5mm", "0mm", "0mm"]) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + assert m3d_app.assign_tangential_h_field(box.bottom_face_x, 1, 0, 2, 0) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.Transient + assert not m3d_app.assign_tangential_h_field(box.bottom_face_x, 1, 0, 2, 0) + + def test_assign_zero_tangential_h_field(self, m3d_app): + box = m3d_app.modeler.create_box([0, 0, 0], [10, 10, 10]) + assert not m3d_app.assign_zero_tangential_h_field(box.top_face_z) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + assert m3d_app.assign_zero_tangential_h_field(box.top_face_z) + + def test_assign_radiation(self, m3d_app): + rect = m3d_app.modeler.create_rectangle(0, [0, 0, 0], [5, 5], material="aluminum") + rect2 = m3d_app.modeler.create_rectangle(0, [15, 20, 0], [5, 5], material="aluminum") + box = m3d_app.modeler.create_box([15, 20, 0], [5, 5, 5], material="aluminum") + box2 = m3d_app.modeler.create_box([150, 20, 0], [50, 5, 10], material="aluminum") + assert not m3d_app.assign_radiation([rect, rect2, box, box2.faces[0]]) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + bound = m3d_app.assign_radiation([rect, rect2, box, box2.faces[0]]) assert bound - bound2 = self.aedtapp.assign_radiation([rect, rect2, box, box2.faces[0]], "my_rad") + bound2 = m3d_app.assign_radiation([rect, rect2, box, box2.faces[0]], "my_rad") assert bound2 - bound3 = self.aedtapp.assign_radiation([rect, rect2, box, box2.faces[0]], "my_rad") + bound3 = m3d_app.assign_radiation([rect, rect2, box, box2.faces[0]], "my_rad") assert bound2.name != bound3.name - self.aedtapp.solution_type = SOLUTIONS.Maxwell3d.Transient - assert not self.aedtapp.assign_radiation([rect, rect2, box, box2.faces[0]]) - def test_58_solution_types_setup(self, add_app): - m3d = add_app(application=Maxwell3d, design_name="test_setups") - setup = m3d.create_setup(setup_type=m3d.solution_type) + def test_solution_types_setup(self, m3d_app): + setup = m3d_app.create_setup(setup_type=m3d_app.solution_type) assert setup setup.delete() - m3d.solution_type = SOLUTIONS.Maxwell3d.Transient - setup = m3d.create_setup(setup_type=m3d.solution_type) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.Transient + setup = m3d_app.create_setup(setup_type=m3d_app.solution_type) assert setup setup.delete() - m3d.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent - setup = m3d.create_setup(setup_type=m3d.solution_type) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + setup = m3d_app.create_setup(setup_type=m3d_app.solution_type) assert setup setup.delete() - m3d.solution_type = SOLUTIONS.Maxwell3d.ElectroStatic - setup = m3d.create_setup(setup_type=m3d.solution_type) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.ElectroStatic + setup = m3d_app.create_setup(setup_type=m3d_app.solution_type) assert setup setup.delete() - m3d.solution_type = SOLUTIONS.Maxwell3d.DCConduction - setup = m3d.create_setup(setup_type=m3d.solution_type) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.DCConduction + setup = m3d_app.create_setup(setup_type=m3d_app.solution_type) assert setup setup.delete() - m3d.solution_type = SOLUTIONS.Maxwell3d.ACConduction - setup = m3d.create_setup(setup_type=m3d.solution_type) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.ACConduction + setup = m3d_app.create_setup(setup_type=m3d_app.solution_type) assert setup setup.delete() - m3d.solution_type = SOLUTIONS.Maxwell3d.ElectroDCConduction - setup = m3d.create_setup(setup_type=m3d.solution_type) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.ElectroDCConduction + setup = m3d_app.create_setup(setup_type=m3d_app.solution_type) assert setup setup.delete() - m3d.solution_type = SOLUTIONS.Maxwell3d.ElectricTransient - setup = m3d.create_setup(setup_type=m3d.solution_type) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.ElectricTransient + setup = m3d_app.create_setup(setup_type=m3d_app.solution_type) assert setup setup.delete() - m3d.solution_type = SOLUTIONS.Maxwell3d.TransientAPhiFormulation - setup = m3d.create_setup(setup_type=m3d.solution_type) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.TransientAPhiFormulation + setup = m3d_app.create_setup(setup_type=m3d_app.solution_type) assert setup setup.delete() - def test_59_assign_floating(self): - self.aedtapp.insert_design("Floating") - self.aedtapp.solution_type = SOLUTIONS.Maxwell3d.ElectroStatic - box = self.aedtapp.modeler.create_box([0, 0, 0], [10, 10, 10], name="Box1") - floating = self.aedtapp.assign_floating(assignment=box, charge_value=3) + def test_assign_floating(self, m3d_app): + box = m3d_app.modeler.create_box([0, 0, 0], [10, 10, 10], name="Box1") + floating = m3d_app.assign_floating(assignment=box, charge_value=3) + assert not floating + m3d_app.solution_type = SOLUTIONS.Maxwell3d.ElectroStatic + floating = m3d_app.assign_floating(assignment=box, charge_value=3) assert floating assert floating.props["Objects"][0] == box.name assert floating.props["Value"] == "3" - floating1 = self.aedtapp.assign_floating(assignment=[box.faces[0], box.faces[1]], charge_value=3) + floating1 = m3d_app.assign_floating(assignment=[box.faces[0], box.faces[1]], charge_value=3) assert floating1 - self.aedtapp.solution_type = SOLUTIONS.Maxwell3d.Magnetostatic - floating = self.aedtapp.assign_floating(assignment=box, charge_value=3) - assert not floating - def test_60_resistive_sheet(self): - self.aedtapp.insert_design("ResistiveSheet") - self.aedtapp.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent - self.aedtapp.modeler.create_box(origin=[0, 0, 0], sizes=[0.4, -1, 0.8], name="my_box", material="copper") - my_rectangle = self.aedtapp.modeler.create_rectangle( + def test_assign_resistive_sheet(self, m3d_app): + m3d_app.solution_type = SOLUTIONS.Maxwell3d.EddyCurrent + m3d_app.modeler.create_box(origin=[0, 0, 0], sizes=[0.4, -1, 0.8], name="my_box", material="copper") + my_rectangle = m3d_app.modeler.create_rectangle( orientation=1, origin=[0, 0, 0.8], sizes=[-1, 0.4], name="my_rect" ) - # From 2025.1, this boundary can only be assigned to Sheets that touch conductor Solids. - bound = self.aedtapp.assign_resistive_sheet(assignment=my_rectangle.faces[0], resistance="3ohm") + bound = m3d_app.assign_resistive_sheet(assignment=my_rectangle.faces[0], resistance="3ohm") assert bound assert bound.props["Faces"][0] == my_rectangle.faces[0].id assert bound.props["Resistance"] == "3ohm" - self.aedtapp.solution_type = SOLUTIONS.Maxwell3d.Magnetostatic - bound = self.aedtapp.assign_resistive_sheet(assignment=my_rectangle.name, non_linear=True) + m3d_app.solution_type = SOLUTIONS.Maxwell3d.Magnetostatic + bound = m3d_app.assign_resistive_sheet(assignment=my_rectangle.name, non_linear=True) assert bound.props["Nonlinear"] assert bound.props["Objects"][0] == my_rectangle.name - self.aedtapp.solution_type = SOLUTIONS.Maxwell3d.ACConduction - assert not self.aedtapp.assign_resistive_sheet(assignment=my_rectangle, resistance="3ohm") + m3d_app.solution_type = SOLUTIONS.Maxwell3d.ACConduction + assert not m3d_app.assign_resistive_sheet(assignment=my_rectangle, resistance="3ohm") + + def test_assign_layout_force(self, layout_comp): + nets_layers = { + "": ["", "TOP", "UNNAMED_000", "UNNAMED_002"], + "GND": ["BOTTOM", "Region", "UNNAMED_010", "UNNAMED_012"], + "V3P3_S5": ["LYR_1", "LYR_2", "UNNAMED_006", "UNNAMED_008"], + } + assert layout_comp.assign_layout_force(nets_layers, "LC1_1") + assert not layout_comp.assign_layout_force(nets_layers, "LC1_3") + nets_layers = {"1V0": "Bottom Solder"} + assert layout_comp.assign_layout_force(nets_layers, "LC1_1") + + @pytest.mark.skipif(is_linux, reason="EDB object is not loaded.") + def test_enable_harmonic_force_layout(self, layout_comp): + comp = layout_comp.modeler.user_defined_components["LC1_1"] + layers = list(comp.layout_component.layers.keys()) + nets = list(comp.layout_component.nets.keys()) + layout_comp.enable_harmonic_force_on_layout_component( + comp.name, + {nets[0]: layers[1::2], nets[1]: layers[1::2]}, + force_type=2, + window_function="Rectangular", + use_number_of_last_cycles=True, + last_cycles_number=1, + calculate_force="Harmonic", + start_time="10us", + stop_time="20us", + use_number_of_cycles_for_stop_time=True, + number_of_cycles_for_stop_time=1, + ) + layout_comp.solution_type = "Magnetostatic" + assert not layout_comp.enable_harmonic_force_on_layout_component( + comp.name, {nets[0]: layers[1::2], nets[1]: layers[1::2]} + ) diff --git a/tests/system/general/test_29_Mechanical.py b/tests/system/general/test_29_Mechanical.py index dc2680b060a..ebb37e3f59c 100644 --- a/tests/system/general/test_29_Mechanical.py +++ b/tests/system/general/test_29_Mechanical.py @@ -143,7 +143,7 @@ def test_11_add_mesh_link(self): assert meshlink_props["Project"] == "This Project*" assert meshlink_props["PathRelativeTo"] == "TargetProject" assert meshlink_props["Design"] == "MechanicalDesign2" - assert meshlink_props["Soln"] == "MySetupAuto : LastAdaptive" + assert meshlink_props["Soln"] == self.aedtapp.nominal_adaptive assert meshlink_props["Params"] == self.aedtapp.available_variations.nominal_w_values_dict assert not self.aedtapp.setups[0].add_mesh_link(design="") assert not self.aedtapp.setups[0].add_mesh_link( diff --git a/tests/unit/test_maxwell_3d.py b/tests/unit/test_maxwell_3d.py index dbd014dba77..b04fd31051e 100644 --- a/tests/unit/test_maxwell_3d.py +++ b/tests/unit/test_maxwell_3d.py @@ -36,5 +36,6 @@ def test_maxwell_3d_assign_resistive_sheet_failure(mock_boundary_object, maxwell mock_boundary_object.return_value = boundary_object maxwell = Maxwell3d() maxwell._modeler = MagicMock() + maxwell._logger = MagicMock() assert not maxwell.assign_resistive_sheet(None, None)