diff --git a/.gitignore b/.gitignore index 59445f9..23f62be 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ venv/ -curva.csv \ No newline at end of file +*.mdb \ No newline at end of file diff --git a/curva.mdb b/curva.mdb deleted file mode 100644 index 227d0f0..0000000 --- a/curva.mdb +++ /dev/null @@ -1,72 +0,0 @@ -[PLACOND] -Type=Fixed_Solid -Solid Type=Steel -Thermal Conductivity=28 -Specific Heat=460 -Density=7800 -Notes= -ElectricalResistivity=5.2E-7 -TempCoefElectricalResistivity=0 -PoissonsRatio=0 -YoungsCoefficient=0 -YieldStress=0 -BValue[0]=1.0 -HValue[0]=0 -BValue[1]=1.001256637061436 -HValue[1]=1000 -BValue[2]=1.002513274122872 -HValue[2]=2000 -BValue[3]=1.0037699111843077 -HValue[3]=3000 -BValue[4]=1.0050265482457437 -HValue[4]=4000 -BValue[5]=1.0062831853071796 -HValue[5]=5000 -BValue[6]=1.0075398223686156 -HValue[6]=6000 -BValue[7]=1.0087964594300514 -HValue[7]=7000 -BValue[8]=1.0100530964914873 -HValue[8]=8000 -BValue[9]=1.0113097335529233 -HValue[9]=9000 -BValue[10]=1.0125663706143593 -HValue[10]=10000 -BValue[11]=1.013823007675795 -HValue[11]=11000 -BValue[12]=1.015079644737231 -HValue[12]=12000 -BValue[13]=1.016336281798667 -HValue[13]=13000 -BValue[14]=1.017592918860103 -HValue[14]=14000 -BValue[15]=1.0188495559215387 -HValue[15]=15000 -BValue[16]=1.0201061929829747 -HValue[16]=16000 -BValue[17]=1.0213628300444106 -HValue[17]=17000 -BValue[18]=1.0226194671058466 -HValue[18]=18000 -BValue[19]=1.0238761041672824 -HValue[19]=19000 -BValue[20]=1.0251327412287183 -HValue[20]=20000 -BValue[21]=1.0263893782901543 -HValue[21]=21000 -BValue[22]=1.0276460153515903 -HValue[22]=22000 -BValue[23]=1.028902652413026 -HValue[23]=23000 -BValue[24]=1.030159289474462 -HValue[24]=24000 -BValue[25]=1.031415926535898 -HValue[25]=25000 -BValue[26]=1.032672563597334 -HValue[26]=26000 -BValue[27]=1.0339292006587697 -HValue[27]=27000 -BValue[28]=1.0351858377202057 -HValue[28]=28000 -BValue[29]=1.0364424747816416 -HValue[29]=29000 diff --git a/genCurvas.py b/genCurvas.py index 85b839f..97a9465 100644 --- a/genCurvas.py +++ b/genCurvas.py @@ -76,7 +76,7 @@ if __name__ == '__main__': ''' directorio = '' - nombre = "curva.mdb" + nombre = "PLACond.mdb" ruta = f'{directorio}{nombre}' diff --git a/motorcad.py b/motorcad.py index f6aa035..041c34b 100644 --- a/motorcad.py +++ b/motorcad.py @@ -1,36 +1,46 @@ import ansys.motorcad.core as MCAD import os +def simularMCAD(mdbName, iteration) + working_folder = os.getcwd() -mcad = MCAD.MotorCAD() + mcad = MCAD.MotorCAD() + + motPath = os.path.join(working_folder, "motores", f"{mdbName}.mot") + mcad.set_variable("MessageDisplayState", 2) + mcad.set_visible(True) + mcad.load_from_file(motPath) + print("Motor file loaded:", motPath) -if not mcad.is_alive(): - mcad.start() + # Simulation config + mcad.set_variable("MagneticThermalCoupling", 0) + mcad.set_variable("CurrentDefinition", 1) + mcad.set_variable("BackEMFCalculation", False) + mcad.set_variable("CoggingTorqueCalculation", False) + mcad.set_variable("ElectromagneticForcesCalc_OC", False) + mcad.set_variable("TorqueSpeedCalculation", False) + mcad.set_variable("DemagnetizationCalc", False) + mcad.set_variable("ElectromagneticForcesCalc_Load", False) + mcad.set_variable("InductanceCalc", False) + mcad.set_variable("BPMShortCircuitCalc", False) + mcad.set_variable("TorqueCalculation", True) -# --- 1. IMPORTAR MATERIAL PERSONALIZADO DESDE UNA CURVA --- + # Operation point + mcad.set_variable("ShaftSpeed", 1000) + mcad.set_variable("RMSCurrent", 0.95) + mcad.set_variable("DCBusVoltage", 400) + mcad.set_variable("PhaseAdvance", 0) + + # Material + mcad.import_solid_material("C:\\Users\\promerogomb\\Desktop\\fluxcontrol\PLACond.mdb", "PLACond") + mcad.set_component_material("Rotor Lam (Back Iron)", "PLACond") -material_curve_path = "PATH" -material_name = "PLACond" + # Ejecución + mcad.do_magnetic_calculation() -mcad.set_variable("ImportMaterialFile", material_curve_path) -mcad.set_variable("ImportMaterialName", material_name) -mcad.evaluate("ImportMaterial") - -print(f"Material '{material_name}' importado correctamente.") - -mcad.set_variable("RotorMaterial", material_name) - -# --- 2. CONFIGURAR Y CORRER SIMULACIÓN ELECTROMAGNÉTICA --- - -mcad.set_variable("SimulationType", "EMagnetic") - -mcad.set_variable("DriveSpeed", 1700) # rpm -mcad.set_variable("RatedCurrent", 2) # A - -mcad.evaluate("DoEmsolve") - -print("Simulación electromagnética completada.") - -torque_avg = mcad.get_variable("TorqueAvg") -print(f"Par promedio: {torque_avg:.2f} Nm") - -mcad.quit() \ No newline at end of file + # Resultados + resultsPath = os.path.join(working_folder, "results", f"results_{iteration}.txt") + try: + mcad.export_results("EMagnetic", resultsPath) + print("Results successfully exported.") + except mcad.MotorCADError: + print("Results failed to export.") \ No newline at end of file diff --git a/motores/PLACond.mot b/motores/PLACond.mot new file mode 100644 index 0000000..c466697 --- /dev/null +++ b/motores/PLACond.mot @@ -0,0 +1,13699 @@ +[Header] +Program_Name=Motor-CAD +Program_Module=BPM-Therm +Program_Version=2024.1.3.1 +Licence_Name_Line1=1055@lic-server19.unav.es +User=promerogomb +Licence_System=Ansys +File_Date=27/03/2025 13:46:56 +Partial_file=False +Main_Title=Default Motor +Title=Default Motor + +[File_History] +Initial_Version=btratt 1055@lic-server19.unav.es 2023.1.2.1 11/09/2023 17:50:30 +Previous_Version[1]=btratt 1055@lic-server19.unav.es 2023.1.2.1 11/09/2023 17:50:30 +Previous_Version[2]=promerogomb 1055@lic-server19.unav.es 2023.1.2.1 14/09/2023 13:44:32 +Previous_Version[3]=promerogomb 1055@lic-server19.unav.es 2023.1.2.1 14/09/2023 19:24:11 +Previous_Version[4]=promerogomb 1055@lic-server19.unav.es 2023.1.2.1 15/09/2023 13:22:11 +Previous_Version[5]=promerogomb 1055@lic-server19.unav.es 2023.1.2.1 20/09/2023 19:20:07 +Previous_Version[6]=promerogomb 1055@lic-server19.unav.es 2023.1.2.1 08/11/2023 19:59:20 +Previous_Version[7]=promerogomb 1055@lic-server19.unav.es 2023.1.2.1 21/11/2023 15:51:09 + +[File_Notes] +DataFile_Notes=Input user notes to be stored in datafile here +Data_File_Notes[1]=Input user notes to be stored in datafile here + +[Units] +Units_Length=mm +Units_Conductivity=W/m/C +Units_Density=kg/m3 +Units_Cp=J/kg/C +Units_Dynamic_Viscosity=kg/m/s +Units_Kinematic_Viscosity=m2/s +Units_Weight=kg +Units_Temperature=C +Units_Heat_Transfer_Coefficient=W/m2/C +Units_Thermal_Resistance=C/W +Units_Thermal_Capacitance=J/C +Units_Torque=Nm +Units_Reversible_Temperature_Coefficient_of_Br_and_HcJ=%/C +Units_Velocity=m/s +Units_Time=secs +Units_Speed=rpm +Units_Resistance=ohms +Units_Loss=Watts +Units_Current=Amps +Units_Volume_Flow_Rate=l/min +Units_Altitude=m +Units_Pressure=Pa +Units_Flux_Density=Tesla +Units_Current_Density=Amps/mm2 +Units_Magnetic_Field=A/m +Units_Electrical_Resistivity=Ohm.m +Units_Electrical_Loading=Amps/m +Units_Back_EMF_Constant_Ke=Vs/rad +Units_Force=kN +Units_Force_Density=N/m2 +Units_Stress=MPa +Units_Inertia=kg.m2 +Units_Area_Moment_Inertia=mm4 +Units_Stiffness=MN/m +Units_Vehicle_Speed=km/h +Units_Acceleration=m/s2 +Units_Sound_Pressure=dB + +[Calc_Options] +Motor_Type=BPM +Cooling_Type=TENV +Include_Radiation=Radiation_Included +Include_Internal_Radiation=Radiation_Not_Included +Axle_Mounting=Not_Mounted_BPMOR +Rotor_Mounting=Open +Motor_Orientation=Horizontal_Mount +EndWdg_Specification=Winding_Expansion +EndCap_Specification=EndCap_Thickness +Stall_Copper_Loss_Dist=All_Equal +Endcap_Vents_Front=Endcap_Vents_Closed +Endcap_Vents_Rear=Endcap_Vents_Closed +Filled_Rotor_Pole_Space=Not_Filled +BPM_Fault_Type=BPM_Multi_Phase_OC +SRM_Fault_Type=SRM_Multi_Phase_OC +Brush_Holder=Not_In_Model +Full_Winding_Circuit_View=False +TransientGraphUpdateDisabled=False +EditingCircuitComponentPosition=False +CircuitEditing=False +CircuitFlowEditing=False +ShowWatermarks=True +StatorForceNodes_PerTooth=1 +RotorForceNodes_PerPole=1 +RotorForceNodes_PerBar=1 +AirgapHTCMethod=1 +AirgapLaminarVorticesMethod=0 +AirgapTurbulentVorticesMethod=0 +AirgapTurbulentMethod=0 +AirgapTempForEmagCalc=1 +RectangularDuctCSAMethod=1 +ConductorPlacement=0 +WindingBitmapSizeFactor=1 +ConductorPositions=0 +ConductorCols_Left=5 +ConductorCols_Right=5 +PlacementRotationAngle_L=0 +PlacementRotationAngle_R=0 +XCoord_L=-6,49922212908759 +YCoord_L=63,4932337868909 +XCoord_R=6,49922212908759 +YCoord_R=63,4932337868909 +ConductionPositionStep=1 +FirstSetConductors=125 +SecondSetConductors=125 +UseSeparateEndRingNodes=True +UseSeparateRotorEndNodes=True +RotorEWdg_Roughness_F=1 +RotorEWdg_Roughness_R=1 +HousingWJFluidWeightCalc=1 +MaxWindingCalibration=1 +AvWindingCalibration=1 +FEShading_Thermal=1 +FEShading_Magnetic=1 +FEShading_Mechanical=1 +FEShading_MagneticLosses=1 +FEShadingRegion_Magnetic=0 +FEShadingRegionString_Magnetic=All +FEShadingFunctionString_Magnetic=All +FEShadingRegion_Thermal=0 +FEShadingRegionString_Thermal=All +FEShadingFunctionString_Thermal=All +FEShadingRegion_Mechanical=0 +FEShadingRegionString_Mechanical=All +FEShadingFunctionString_Mechanical=All +FEShadingFunction_Magnetic= +FEShadingFunction_Thermal= +FEShadingFunction_Mechanical= +EWdg_Overhang_Specification=0 +SlotType=0 +Slot_Area_Calculation=1 +Sync_Parallel_Tooth_Radial_Depth=0 +Sync_Rotor_Parameterisation=0 +MountingType=0 +IMLookupResetMethod=2 +SkewDefinition=0 +IMLookupPoints_Saturation=20 +IMCageSize=0 +IMRotorWindingModel=1 +LockedRotorFrequencyPoints=3 +LockedRotorFrequencyProp[0]=1 +LockedRotorFrequencyProp[1]=0,5 +LockedRotorFrequencyProp[2]=0,1 +StatorIronStrayLoadLossesVaryWithTemp=False +StatorIronStrayLoadTempAtWhichLossInput=20 +RotorIronStrayLoadLossesVaryWithTemp=False +RotorIronStrayLoadTempAtWhichLossInput=20 +StatorCopperStrayLoadLossesVaryWithTemp=False +StatorCopperStrayLoadTempAtWhichLossInput=20 +RotorCopperStrayLoadLossesVaryWithTemp=False +RotorCopperStrayLoadTempAtWhichLossInput=20 +FEA_ThermalSlot_LossDistribution=0 +DistributedLossAreaSelection=0 +CustomMaterialLossMethod=1 +NonSteelWedgeLossModel=1 +TotalLossCalculationMethod=1 +ShaftTorqueCalculationMethod=1 +HysIronLossMethod=4 +InteriorVUMagnetResistanceCalc=1 +SurfaceBreadloafAreaCalc=1 +VSimple_Positioning_Method=1 +RMSPhaseCurrentMethod=1 +SCPhaseCurrentMethod=1 +CalculateInductanceDerivative=False +SquareWaveInductanceCalc=0 +CalculatedCurrentsInductanceMethod=1 +CalculatedCurrentsBackEMFMethod=0 +EnableAdvancedUI_Drive=False +ShowAllMMFPlots=False +ShowMMFSumPlot=True +PhasorGraphValues=0 +UseMagnetTempLinkMethod_Lab=1 +RatioSetting_SleeveBanding=1 +SleeveBandingRatioSetting=1 +RatioSetting_MagnetReduction=1 +RatioSetting_SyncPoleSurfaceOffset=1 +RatioSetting_SyncCoilOverlap=0 +RotorCopperLossesVaryWithTemp=False +IM_TopBar_TipAngle_DrawMethod=1 +IM_BottomBar_TipAngle_DrawMethod=1 +TransientRelativeError=0,01 +TransientErrorWeightingMethod=1 +TransientMinCapMethod=1 +TransientErrorWeighting=0,01 +TransientMaxIterations=50000 +CancelTransientOnMaxEvaluations=True +SteadyStateMinIterations=1 +Steady_State_Max_Iterations=1000 +Steady_State_Max_Convergence_Error_dT=0,5 +SteadyStateConvergenceMethod=0 +ThermalPowerFlowCalc=1 +IncludeCoilDividerNode=False +ConductorPositionLevel=4 +PortunusExportScaling=4 +AirDividerFluidCalc=1 +ComponentColours=0 +EWdgAreaCalculation=1 +SyncRotorEWdgMLTCalc=1 +SyncLinerAreaCalculation=1 +SyncLinerAreaWeightCalculations=1 +SyncRotorCuboidalWindingModel=0 +SyncRotorCircuit=1 +SyncRotorWindingTempCalc=1 +WindingToLamCalculation=1 +LinerToothSideRtCalc=1 +UpdateCircuitDuringSolving=False +AxialSliceDefinition=0 +RampSteps=100 +IterationAverageCycles=1 +CyclesAtEachAverage=10 +AverageCyclesMinPoint=250 +SteadyAveragingMethod=0 +EndSpaceChangeRate=1000 +EndCapVentCalculation=0 +CirculatingFlowFluidPaths=True +InitialTransientTemperatureOption=0 +Initial_Machine_Temperature=40 +InitialHousingTemperature=40 +InitialStatorTemperature=40 +InitialWindingTemperature=40 +InitialRotorTemperature=40 +InitialMagnetTemperature=40 +InitialRotorCopperTemperature=40 +InitialFlangeTemperature=40 +InitialTransientMagTempMethod=1 +Radiaton_View_Factor_Editable=False +Windage_Loss_Definition=0 +Windage_Loss_Multiplier=1 +WindageGraph_MaxSpeed=6000 +Bearing_Loss_Definition=0 +EndWindingLossSplitDefinition=1 +WetRotor_RotorWJ_Connection=False +ShaftSG_SlotWJ_Connection=False +HousingWJ_RotorWJ_Connection=False +HousingWJ_SprayCooling_Connection=False +WetRotor_SlotWJ_Connection=False +WetRotor_SlotWJ_FlowSplit=0,5 +TVent_SlotWJ_Connection=False +TVent_SlotWJ_Connection_Method=1 +TVent_SlotWJ_FlowSplit=0,5 +TVent_HousingWJ_Connection=False +ACLossTemperatureScalingMethod=1 +UserStrayLoadLossRatio_StatorIron=0,75 +UserStrayLoadLossRatio_RotorIron=0,25 +UserStrayLoadLossRatio_StatorCopper=0 +UserStrayLoadLossRatio_RotorCopper=0 +ConductorSeparationControl=True +PeriodsPerGraphUpdate=20 +TransientPointsToPlot=1 +TransientDataLogging=False +HousingWJFlowRemoved=False +HousingWJCircularDuctCalc=1 +HousingWJRectangularDuctCalc=1 +HousingWJDuctWallThicknessCalc=1 +HousingWJLengthL2Calc=1 +CircularDuctsFlowCalc=1 +BearingLossSource=0 +NumberBearingLossPoints=20 +BearingLossVisualisationSpeed=2000 +BearingLossMultiplier=1 +BearingTempForEmagCalc=1 +RadialFlowVisualisation=True +FlowVisualisationTailWidth=2 +FlowVisualisationHeadWidth=8 +FlowVisualisationArrowScaling=1 +FlowVisualisationMinArrowLength=20 +FlowVisualisationArrowSpacingFactor=0,1 +IncludeExternalShaftForcedConvection=1 +IronLossFactorWithLossVariationTempLoad=False +InsulationLifetimeMethod=0 +InsulationLifetimeAtTempRef1=20000 +InsulationLifetimeAtTempRef2=10000 +InsulationLifeRefTemp1=180 +InsulationLifeRefTemp2=190 +RotorCageLossSplit=0 +UserCopperLossRatio_Active=0,7 +UserCopperLossRatio_EndRing_F=0,15 +UserCopperLossRatio_EndRing_R=0,15 +SpeedDesignType=0 +WindingModelType=1 +CuboidalkValueDefinition=0 +HairpinActiveKValueCalc=1 +HairpinWedgePathRtCalc=1 +ConductorToothSeparationCalc=1 +FlowBetweenRectangularConductorsAreaCalc=1 +StatorConductivityModel=0 +FlowBetweenConductorsCuboidModel=1 +IM1PH_ImpregAreaRatiosCalculation=1 +CuboidConductorOnlyModelCalc=1 +FormWoundRtCalc=1 +WedgeDividerRtCalc=1 +MagnetRadialRtCalc=1 +WindingSize=2 +CuboidHeightMethod=1 +CuboidHeightMethod_SlotWJ=1 +WireInsulationWeightsMethod=1 +RectangularWireCSA_Calc=1 +HeavyBuildCopperDiameterMethod=1 +HybridACLossMethod=0 +ACLossHighFrequencyScaling_Method=1 +WindingCuboidPositionDefinition=0 +OuterWindingWidth=0 +OuterWindingHeight=0 +InnerWindingWidth=0 +InnerWindingHeight=0 +CuboidEWdgConnection=1 +CuboidLengthCalc=1 +CuboidEWdgLengthCalc=1 +SyncRotorCuboidEWdgLengthCalc=1 +ReducedCircuitState=0 +FixedTemperatureMethod=1 +SteadyStateAveraging=0 +TransientSolver=1 +FEAPoleFixedTemperature=0 +FEASlotFixedTemperature=0 +MagnetModelType=0 +StatorCopperLossSplit=0 +UserStatorCopperLossRatio_Active=0,5 +UserStatorCopperLossRatio_EndWdg_F=0,25 +UserStatorCopperLossRatio_EndWdg_R=0,25 +TorqueNumberCycles=1 +TorquePointsPerCycle=30 +BackEMFNumberCycles=1 +BackEMFPointsPerCycle=30 +CoggingNumberCycles=2 +CoggingPointsPerCycle=10 +InductanceNumberCycles=1 +InductancePointsPerCycle=5 +InductanceCalcMethod_BPM=0 +InductanceSolver_BPM=1 +LockedRotorNumberCycles=2 +LockedRotorPointsPerCycle=30 +CoreLossNumberCycles=1 +CoreLossPointsPerCycle=10 +IMSingleLoadConvergenceMethod_NonRotating=0 +IMSingleLoadMaximumCycles_NonRotating=20 +IMSingleLoadTolerance_NonRotating=0,1 +IMSingleLoadPointsPerCycle_NonRotating=30 +IMSingleLoadPointsPerCycle=30 +IMSingleLoadPointsPerCycle_Rotating=30 +IMSingleLoadNumberCycles_NonRotating=2 +IMSingleLoadNumberCycles=2 +IMSingleLoadNumberCycles_Rotating=2 +IMLookupPoints_Loss=20 +IMLookupPoints_Analytic=20 +StrayLoadLossCalculationType=0 +MagneticGraphDrawing=0 +MagneticGraphLegendLocation=0 +MagneticGraphPenWidth=1 +WindingPatternPenWidth=2 +EMFGraphValues=1 +TerminalGraphValues=1 +CurrentGraphValues=0 +ShowDQCurrents=False +FEAverageGraph=False +VirtualWorkGraph=True +MaxwellStressGraph=False +FluxLinkageGraph=False +AlignmentGraph=False +ReluctanceGraph=False +CoggingGraph=False +CoggingTorqueGraph_VW=True +CoggingTorqueGraph_CE=True +TorqueSpeedCalcs=7 +TorqueSpeedPhaseAdv_Upper=60 +TorqueSpeedPhaseAdv_Lower=0 +DrawPoints_TorqueSpeed=True +MaxHarmonicOrder=200 +HarmonicAmplitude=0 +MaxWindingHarmonicOrder=200 +WindingHarmonicAmplitude=0 +WindingPatternDisplay=0 +PlotAllInductancePhases=False +PlotSmallSignalBiasCurrents=False +CoggingHarmonicBaseFrequency=2 +TorqueHarmonicGraph_BaseType=0 +LimitToAirgapHToConduction=0 +CalculationRotatingDuct=0 +RotorWJHeatTransferCalc=1 +RotorWJNodeConnection_Method=1 +RotorWJCentralInletCalc=1 +CalculationDevelopingFlow=0 +NumberOfCuboids=2 +MinimumTemperatureTolerance=100 +StatorCopperLossVariation=0 +VaryingArmatureCopperLoss_Calc=1 +StatorBackIronUnevenLossAddition=1 +MagneticSolverMethod=0 +ConductorMeshControl=True +TransientGraphColours=1 +ExternalApplicationCoupling=0 +MaxwellFileName= +MaxwellProject=ipm_1 +MaxwellAnalysis=Setup1 +MaxwellDesign=RMxprtDesign1 +SpeedFileName= +RemoveMotorCADCircuit=0 +RemoveMotorCADCircuit_Flow=0 +TorqueGraphScale=0 +iTorqueGraphScale=0 +FormWoundConductorSeparation=1 +LamHousingCoolingNodes=0 +FluidPathsCompensationFactor=0,8 +FluidPathsScaleFactor=1 +FluidPathsCompensationEnabled=0 +FluxDensitySkewMethod=1 +FluxDensitySkewMethod_Iron=0 +IMSkewingMethod=0 +IMSkewingCalc_Compatibility=1 +IMTorqueMethod=1 +IMLockedRotorInductanceMethod=2 +IMSingleLoadPointRotorInductanceMethod=1 +IMSkinEffectMethod=1 +KEndringCalculationMethod=1 +IMRadialDuctMethod=1 +IMLossSumMethod=1 +IMStatorCopperLossesMethod=1 +AutomaticStrayLoadLossMethod=1 +EndringInductanceMethod=0 +IMEndringExtensionCorrectionMethod=1 +IMFEABarResistivityCorrectionMethod=1 +RotorBarEndRingCorrectionMethod=1 +SlotLeakageInductanceMethod_Stator=1 +SlotLeakageInductanceMethod=1 +SlotLeakageInductanceMethod_Rotor=1 +StatorLeakageInductanceMethod=1 +IncludeSteadyStatorPowerFlowError=False +FlowSolverMethod=1 +DuctContraction_FlowSolverMethod=1 +BidirectionalSolveMethod=0 +RotorRotation=0 +StatorRotation=0 +IMAccelerationGraph=0 +IMEfficiencyGraph=0 +BPMShortCircuitGraph=0 +TorqueSpeedGraph=0 +TorqueCharacteristicPlotSelect=0 +IMRotorThermalCircuitMethod=1 +ImprovedFormWoundEWdgDrawing=True +MaxCurrent_MagnetisationCurves=5 +PositionPoints_MagnetisationCurves=5 +CurrentPoints_MagnetisationCurves=5 +EWdgInductanceCalc=0 +EWdgInductanceCalc_IM1PH=2 +EndWindingLengthMethod=2 +FieldWindingLengthMethod=1 +ForceRadialGraph=True +ForceTangentialGraph=True +ForceXGraph=False +ForceYGraph=False +ForceLocation=0 +ForceHarmonics=0 +TemporalForceHarmonic_Node=0 +SpatialForceHarmonic_TimeStep=0 +FlowResistanceTolerance=1E99 +TVentShaftCooling=0 +OpenCircuitCalc=0 +AmbientTemperatureSetting=0 +TransientMinimumCapacitanceEnabled=0 +TransientMinimumCapacitance=1E-5 +EmbeddedMagnetPoleRadius_Method=1 +Sensitivity_ExportMatrices=False +FEALossCalcType=1 +CustomMaterial_IronLossMethod=1 +StackingFactorIronLossMethod=0 +SprayCoolingCircuit=1 +SprayCoolingCoverageCalc=1 +SprayCoolingSyncEWdgCalc=1 +SprayCoolingCorrelation=1 +SprayCoolingNozzleDefinition=0 +SprayCoolingSubmerged=1 +SprayCoolingRotorTargetLengthCalc=1 +SprayCoolingHairpinFrontRInternalFlowCalc=1 +RadialHousing_RotationalHTCCalc=1 +RadialHousingSprayCoolingWithSleeve=1 +CoupledSprayCoolingFlowRateCalc=1 +ShaftSG_RotorWJ_Connection=False +RotorWJ_SprayCooling_Connection=False +FlangePlateAreaCalc=1 +EndcapFlangeCalc=1 +SlotWJ_HousingWJ_Connection=False +HousingWJ_SlotWJ_Connection=False +ShaftSolve=1 +CommutatorCircuitCalc=1 +SlotWJCircuit=1 +SlotWJSeparateDuctsRtCalc=1 +SlotWJCentreDuctsFlowRtCalc=1 +SlotWJWallRoughnessHTCCalc=1 +SlotWJDuctkWallFrictionCalc=2 +SlotWJDuctDrawingMethod=1 +SlotDividerLinerDrawingMethod=1 +SlotOpeningWidthSetting=1 +ShaftSpiralGrooveHTCCalc=1 +ESpaceRotorHTCCalc=1 +ShaftSpiralGrooveFrictionCalc=1 +ShaftSpiralGrooveDimensionsCalc=1 +ShaftSpiralGrooveSprayCoolingCalc=1 +Sleeve2D3DFactorCalc=3 +SleeveLengthCalc=1 +Banding2D3DFactorCalc=1 +K_Radial_User_A=0,25 +K_Radial_User=0,25 +K_Tangential_User_A=0,25 +K_Tangential_User=0,25 +K_Axial_User_A=386 +K_Axial_User=386 +K_Radial_User_F=0,25 +K_RadialEWdg_User=0,25 +K_Tangential_User_F=0,25 +K_TangentialEWdg_User=0,25 +K_Axial_User_F=386 +K_AxialEWdg_User=386 +K_Radial_User_R=0,25 +K_Tangential_User_R=0,25 +K_Axial_User_R=386 +RtAirgapSlicesCalc=1 +MagneticHousingSetting=0 +IncludeDucts_Magnetic=0 +HairpinConductors_FEA=0 +EndcapCapacitanceCalc=1 +PottingCapacitanceCalc=1 +BPMORWdgExtPottingRtCalc=1 +InnerWindingESpaceAreaCalc=1 +FlowAreaWindingIncludeSleeve=1 +TVentEWdgOuterVelocityCalc=1 +TVentBiDirectionDuctFlowRtCalc=1 +TVentRotorDuctFlowCalc=1 +TVent_FrontRear_OutletFlowPath=1 +TVentCirculatingAirgapFlowPath=1 +TVentSyncSalientPoleFlowAreaCalc=1 +TVent_PMDC_WFC_Calculation=1 +RotorThermalCircuit=0 +CuboidAvgAirCondCalc=1 +ToothCapacitanceSlicesCalc=1 +ToothAxialRtCalc=1 +BPMORToothRtCalc=1 +URotorPocketCondCalc=1 +UMagnetAirCondCalc=1 +URotorAreaSpokeSpiderCalc=1 +URotorRadialDuctWeightCalc=1 +URotorMagnetPoleCentreCalc=1 +URotorMagnetPoleInnerRadiusCalc=1 +RectStatorDuctSurfaceAreaCalc=1 +RadialDuctAxialLengthCalc=1 +ActiveHousingAxialLengthCalc=1 +TVentRadialDuctResistanceCalc=1 +HousingDiameterCalc=1 +Export3DGeometryFileName= +BPMOR_MagnetWeightDef=1 +RtRotorAxialCalc=1 +ForceAnimationFileName=.gif +ForceAnimationExportRepeat=0 +ForceAnimationExportSpeed=3 +ForceAnimationCaption=0 +ForceAnimationRepeat=0 +NodeAveragingAnimation=0 +ForceAnimationNormalisation=0 +GIFExport_Width=500 +GIFExport_Height=500 +ForceAnimations_SelectedAnimationsLength=1 +ForceAnimations_SelectedAnimations[0]=0 +ReportWriter_EMagModule=True +ReportWriter_ThermalModule=True +ReportWriter_LabModule=True +ReportWriter_MechModule=True +ReportWriter_ScreenShots=True +ReportWriter_Images=True +ReportWriter_Tables=True +ReportWriter_Graphs=True +ReportWriter_Date=False +ReportWriter_Time=False +ReportWriter_FullFilePath=False +ReportWriter_Notes=False +RotorCopperAreaMethod=1 +PlateInterfaceAreaCalc=1 +TransientPowerInjectionCalc=1 +ExternalPowerDistributionCalc=1 +FluidNodesExternalPowerInjectionCalc=1 +ShaftAxialResistanceCalc=1 +BearingsResistanceCalc=1 +InteriorFlatAreaCalc=1 +EmbeddedMagnetCapacitanceMethod=1 +RotatingBlownOverVelocityCalc=1 +ShaftRearWeightCalc=1 +StatorLamWeightCalc=1 +HairpinEWdgWeightCalc=1 +FieldWdgSeparatorMechCalc=1 +SyncMotorStressCalc=1 +ForcesView_TimeDomain=0 +ForcesView_FrequencyDomain=0 +SpaceTimeContours=0 +SpaceTimeForceFFTType=0 +SpaceTimeForceSlice=0 +SpaceTimeHarmonicsForceSlice=0 +FreqDomain_MinAmplitude_PointForce=0,1 +ForceDataType=0 +ForceHarmonicOrder_Plot=0 +ForceMaxOrder_Time_OL=50 +ForceMaxOrder_Time=50 +ForceMaxOrder_Time_OC=50 +ForceMaxOrder_Space_Stator_OL=50 +ForceMaxOrder_Space=50 +ForceMaxOrder_Space_Stator_OC=50 +ForceMaxOrder_Space_Rotor_OL=50 +ForceMaxOrder_Space_Rotor_OC=50 +ForcesInputType=1 +AnsysHairpinUDP=0 +AnsysHairpinCoilTips=0 +AnsysRotationDirection=0 +AnsysMeshSlider=5 +AnsysUDPSegAngle=0 +Magnetic3DView=0 +SyncRotorWindingModelType=1 +CuboidalkValueDefinition_SyncRotor=0 +K_SyncRotorRadial_User_A=0,25 +K_SyncRotorRadial_User=0,25 +K_SyncRotorTangential_User_A=0,25 +K_SyncRotorTangential_User=0,25 +K_SyncRotorAxial_User_A=386 +K_SyncRotorAxial_User=386 +K_SyncRotorRadial_User_F=0,25 +K_SyncRotorTangential_User_F=0,25 +K_SyncRotorAxial_User_F=386 +K_SyncRotorRadial_User_R=0,25 +K_SyncRotorTangential_User_R=0,25 +K_SyncRotorAxial_User_R=386 +SyncWindingSize=0 +SyncWindingWidth=0 +SyncWindingHeight=0 +SyncRotorCuboidHalfSlotMult=0 +SyncRotorCuboidAreaMult=0 +SyncRotorVolumeCalc=1 +SyncFieldWdgAreasCalc=1 +RtImpregSingleConductorColumnCalc=1 +RtHousing_A_RadialCalc=1 +RtHousing_OHang_AxialCalc=1 +EndWdgEnamelModel=1 +HairpinEnamelThicknessCalc=1 +HairpinWindingPatternMethod=1 +SlotWJAxialLengthCalc=1 +AnsysArcSegmentMethod=0 +AnsysArcSegmentDegrees=2 +FEASlotAreaCalculation=1 +TransientTempOffset=100 +Bearing_Loss_Values_Speed[0]=0 +Bearing_Loss_Values_Speed[1]=0 +Bearing_Loss_Values_Speed[2]=0 +Bearing_Loss_Values_Speed[3]=0 +Bearing_Loss_Values_Speed[4]=0 +Bearing_Loss_Values_Speed[5]=1000 +Bearing_Loss_Values_Speed[6]=1000 +Bearing_Loss_Values_Speed[7]=1000 +Bearing_Loss_Values_Speed[8]=1000 +Bearing_Loss_Values_Speed[9]=1000 +Bearing_Loss_Values_Speed[10]=5000 +Bearing_Loss_Values_Speed[11]=5000 +Bearing_Loss_Values_Speed[12]=5000 +Bearing_Loss_Values_Speed[13]=5000 +Bearing_Loss_Values_Speed[14]=5000 +Bearing_Loss_Values_Speed[15]=10000 +Bearing_Loss_Values_Speed[16]=10000 +Bearing_Loss_Values_Speed[17]=10000 +Bearing_Loss_Values_Speed[18]=10000 +Bearing_Loss_Values_Speed[19]=10000 +Bearing_Loss_Values_Temp[0]=20 +Bearing_Loss_Values_Temp[1]=40 +Bearing_Loss_Values_Temp[2]=80 +Bearing_Loss_Values_Temp[3]=140 +Bearing_Loss_Values_Temp[4]=200 +Bearing_Loss_Values_Temp[5]=20 +Bearing_Loss_Values_Temp[6]=40 +Bearing_Loss_Values_Temp[7]=80 +Bearing_Loss_Values_Temp[8]=140 +Bearing_Loss_Values_Temp[9]=200 +Bearing_Loss_Values_Temp[10]=20 +Bearing_Loss_Values_Temp[11]=40 +Bearing_Loss_Values_Temp[12]=80 +Bearing_Loss_Values_Temp[13]=140 +Bearing_Loss_Values_Temp[14]=200 +Bearing_Loss_Values_Temp[15]=20 +Bearing_Loss_Values_Temp[16]=40 +Bearing_Loss_Values_Temp[17]=80 +Bearing_Loss_Values_Temp[18]=140 +Bearing_Loss_Values_Temp[19]=200 +Bearing_Loss_Values_Loss[0]=0 +Bearing_Loss_Values_Loss[1]=0 +Bearing_Loss_Values_Loss[2]=0 +Bearing_Loss_Values_Loss[3]=0 +Bearing_Loss_Values_Loss[4]=0 +Bearing_Loss_Values_Loss[5]=0,8 +Bearing_Loss_Values_Loss[6]=0,6 +Bearing_Loss_Values_Loss[7]=0,5 +Bearing_Loss_Values_Loss[8]=0,4 +Bearing_Loss_Values_Loss[9]=0,3 +Bearing_Loss_Values_Loss[10]=10 +Bearing_Loss_Values_Loss[11]=6,5 +Bearing_Loss_Values_Loss[12]=4 +Bearing_Loss_Values_Loss[13]=3 +Bearing_Loss_Values_Loss[14]=2,5 +Bearing_Loss_Values_Loss[15]=25,5 +Bearing_Loss_Values_Loss[16]=17,5 +Bearing_Loss_Values_Loss[17]=9,5 +Bearing_Loss_Values_Loss[18]=6 +Bearing_Loss_Values_Loss[19]=5 +Improved_RotorLam_Axial_Resistances=1 +HairpinACLossLocationMethod=1 +FinInputOptions=0 +AirgapModel=1 +Include_Rt_Endcap_Radial=True +Include_Rt_Endcap_Axial=True +IncludeFinEfficiency=True +Default_EndSpace_Correlation=0 +Wet_Rotor=False +Housing_Water_Jacket=False +ThroughVentilation=False +Through_Ventilation=False +Shaft_Spiral_Groove=False +Rotor_Water_Jacket=False +Slot_Water_Jacket=False +Spray_Cooling=False +Fixed_Plate_Temperature=False +Fixed_Base_Temperature=False +Fixed_Shaft_F_Temperature=False +Fixed_Shaft[F]_Temperature=False +Fixed_Shaft_R_Temperature=False +Fixed_Shaft[R]_Temperature=False +Fixed_Axle_F_Temperature=False +Fixed_Axle[F]_Temperature=False +Fixed_Axle_R_Temperature=False +Fixed_Axle[R]_Temperature=False +Fixed_Endcap_F_Temperature=False +Fixed_Endcap[F]_Temperature=False +Fixed_Endcap_R_Temperature=False +Fixed_Endcap[R]_Temperature=False +Loss_Function_Speed=True +Speed_Dependant_Losses=True +Constant_Speed_Fan=True +Slot_Type=Parallel_Tooth +Mounting_Type=Not_Mounted +WindingModel=1 +SyncRotorWindingModel=1 +NumberForcePoints=0 +NumberForceNodes_PerTooth=1 +NumberForcePoints_PerNode=10 +Include_Fin_Efficiency=Fin_Efficiency_Included +Airgap_Model=Conduction_And_Convection +Default_End_Space_Correlation=Scubert_EW +Fin_Input_Options=Fin_Pitch_Thickness +MagneticSolver=0 +Steady_State_Convergence=dT_Percent + +[Design_Options] +Sync_Rotor=Sync_Salient_Pole +HousingType=1 +BPMRotor=0 +Winding_Separator_Type=0 +Top_Bar_Type=2 +Bottom_Bar_Type=0 +SyncCommutator=0 +OpenGL_Quality=8 +OpenGL_NumRadialDuctArrows=8 +SolidListFilter=0 +MessageWindowPosition=2 +Leakage_Display=1 +Scale_Display=1 +ExportTextSeparator=; +AirgapDefinition=0 +ACLosses_IncludeBundleEffect=True +BPMRotor_MagnetDrawing=1 +BPMOR_MagnetGapClosureDrawing=2 +Rotor_VWebDrawing=1 +Rotor_VWebLengthDrawingOption=1 +Rotor_VPostDrawingOption=1 +FlatWeb_MagnetGapLayer_DrawingOption=1 +RtInteriorWeb_Calc=1 +SyncRotorParallelToothDrawing=1 +SyncRotorParallelSlotDrawing=1 +DrawDatumLine=True +DrawDQAxes=False +CornerRounding_Rotor=0 +CornerRounding_Magnets=0 +Rotor_UMagnet_CornerRounding_Option=1 +Rotor_UMagnet_OuterMagnetPosition_Option=1 +EndRingExtOuterRadiusMethod=1 +SRM_StatorPole_MaxFilletRadius_Option=1 +Rotor_VSimple_MagnetDrawing_Option=1 +DuctValidityCheckMethod=0 +BPMOR_Rotor_Type=0 +Housing_Type=Square_H +BPM_Rotor=Surface_Radial +Feedback_Type=Not_Fitted + +[Winding_Design] +Wedge_Model=Air_Wedge +Slot_Fill=0,305290295116007 +Mat_[Liner-Lam]=Air +ConductorsSlotBase=0,05 +ConductorsSlotTooth=0,05 +ConductorsVertical=0,1 +ConductorsHorizontal=0,1 +ConductorSeparation=0,1 +Slot_Depth_Reduction/Slot[0]=0 +Slot_Depth_Reduction/Slot[1]=0 +Slot_Depth_Reduction/Slot[2]=0 +Slot_Depth_Reduction/Slot[3]=2 +Slot_Depth_Reduction/Slot[4]=4 +Slot_Depth_Reduction/Slot[5]=0 +Slot_Depth_Reduction/Slot[6]=0 +Slot_Depth_Reduction/Slot[7]=0 +Slot_Depth_Reduction/Slot[8]=0 +Slot_Depth_Reduction/Slot[9]=0 +Slot_Depth_Reduction/Slot[10]=0 +Slot_Depth_Reduction/Slot[11]=0 +Slot_Depth_Reduction/Slot[12]=0 +Slot_Depth_Reduction/Slot[13]=0 +Slot_Depth_Reduction/Slot[14]=0 +Slot_Depth_Reduction/Slot[15]=0 +Slot_Depth_Reduction/Slot[16]=0 +Slot_Depth_Reduction/Slot[17]=0 +Slot_Depth_Reduction/Slot[18]=0 +Slot_Depth_Reduction/Slot[19]=0 +Slot_Depth_Reduction/Slot[20]=0 +Slot_Depth_Reduction/Slot[21]=0 +Slot_Depth_Reduction/Slot[22]=0 +Slot_Depth_Reduction/Slot[23]=0 +Slot_Depth_Reduction/Slot[24]=0 +Slot_Depth_Reduction/Slot[25]=0 +Slot_Depth_Reduction/Slot[26]=0 +Slot_Depth_Reduction/Slot[27]=0 +Slot_Depth_Reduction/Slot[28]=0 +Slot_Depth_Reduction/Slot[29]=0 +Slot_Depth_Reduction/Slot[30]=0 +Slot_Depth_Reduction/Slot[31]=0 +Slot_Depth_Reduction/Slot[32]=0 +Slot_Depth_Reduction/Slot[33]=0 +Slot_Depth_Reduction/Slot[34]=0 +Slot_Depth_Reduction/Slot[35]=0 +StatorPottedEWdg=0 +Rotor_Copper_Width=1 +Rotor_Copper_Height=1 +Rotor_Insulation_Thickness=0,1 +Rotor_Copper_Corner_Radius=0,1 +Rt_FormWoundCoilBackIron_Multiplier=1 +Rt_FormWoundOuterCoilTooth_Multiplier=1 +iRt_FormWoundOuterCoilTooth_Multiplier=1 +Rt_FormWoundInnerCoilTooth_Multiplier=1 +iRt_FormWoundInnerCoilTooth_Multiplier=1 +NumberOfWireSizes=1 +Copper_Width=1 +ConductorWidth_Array[0]=0 +ConductorWidth_Array[1]=0 +ConductorWidth_Array[2]=0 +ConductorWidth_Array[3]=0 +ConductorWidth_Array[4]=0 +ConductorWidth_Array[5]=0 +ConductorWidth_Array[6]=0 +ConductorWidth_Array[7]=0 +ConductorWidth_Array[8]=0 +ConductorWidth_Array[9]=0 +ConductorWidth_Array[10]=0 +ConductorWidth_Array[11]=0 +ConductorHeight_Array[0]=0 +ConductorHeight_Array[1]=0 +ConductorHeight_Array[2]=0 +ConductorHeight_Array[3]=0 +ConductorHeight_Array[4]=0 +ConductorHeight_Array[5]=0 +ConductorHeight_Array[6]=0 +ConductorHeight_Array[7]=0 +ConductorHeight_Array[8]=0 +ConductorHeight_Array[9]=0 +ConductorHeight_Array[10]=0 +ConductorHeight_Array[11]=0 +ConductorHeightRatio_Array[0]=0 +ConductorHeightRatio_Array[1]=0 +ConductorHeightRatio_Array[2]=0 +ConductorHeightRatio_Array[3]=0 +ConductorHeightRatio_Array[4]=0 +ConductorHeightRatio_Array[5]=0 +ConductorHeightRatio_Array[6]=0 +ConductorHeightRatio_Array[7]=0 +ConductorHeightRatio_Array[8]=0 +ConductorHeightRatio_Array[9]=0 +ConductorHeightRatio_Array[10]=0 +ConductorHeightRatio_Array[11]=0 +Liner_Wire_Gap_Array[0]=0 +Liner_Wire_Gap_Array[1]=0 +Liner_Wire_Gap_Array[2]=0 +Liner_Wire_Gap_Array[3]=0 +Liner_Wire_Gap_Array[4]=0 +Liner_Wire_Gap_Array[5]=0 +Liner_Wire_Gap_Array[6]=0 +Liner_Wire_Gap_Array[7]=0 +Liner_Wire_Gap_Array[8]=0 +Liner_Wire_Gap_Array[9]=0 +Liner_Wire_Gap_Array[10]=0 +Liner_Wire_Gap_Array[11]=0 +Copper_Width_2=1 +Copper_Width_3=1 +Copper_Height=1 +Copper_Height_2=1 +Copper_Height_3=1 +Liner_Wire_Gap=0,1 +ConductorHeightRatio=0,1 +Insulation_Thickness=0,1 +Insulation_Thickness_2=0,1 +Insulation_Thickness_3=0,1 +Copper_Corner_Radius=0,1 +Copper_Corner_Radius_2=0,1 +Copper_Corner_Radius_3=0,1 +MinEWdgSeparation=0 +EWdgLayerLength_F_Adj[0]=1 +EWdgLayerLength_F_Adj[1]=1 +EWdgLayerLength_R_Adj[0]=1 +EWdgLayerLength_R_Adj[1]=1 +LitzWireWidth=0,55 +LitzWireHeight=1,4 +LitzWireInsulationThickness=0,01 +LitzWireSubConductors=8 +LitzSubConductor_WireDiameter=0 +LitzSubConductor_CopperDiameter=0 +AllowSingleColumnCentring=True +ConductorCentre_L_x[0][0]=-6,49922212908759 +ConductorCentre_L_x[0][1]=-6,38635081360408 +ConductorCentre_L_x[0][2]=-6,27347949812058 +ConductorCentre_L_x[0][3]=-6,16060818263708 +ConductorCentre_L_x[0][4]=-6,04773686715357 +ConductorCentre_L_x[0][5]=-5,93486555167007 +ConductorCentre_L_x[0][6]=-5,82199423618657 +ConductorCentre_L_x[0][7]=-5,70912292070306 +ConductorCentre_L_x[0][8]=-5,59625160521956 +ConductorCentre_L_x[0][9]=-5,48338028973605 +ConductorCentre_L_x[0][10]=-5,37050897425255 +ConductorCentre_L_x[0][11]=-5,25763765876905 +ConductorCentre_L_x[0][12]=-5,14476634328554 +ConductorCentre_L_x[0][13]=-5,03189502780204 +ConductorCentre_L_x[0][14]=-4,91902371231853 +ConductorCentre_L_x[0][15]=-4,80615239683503 +ConductorCentre_L_x[0][16]=-4,69328108135153 +ConductorCentre_L_x[0][17]=-4,58040976586802 +ConductorCentre_L_x[0][18]=-4,46753845038452 +ConductorCentre_L_x[0][19]=-4,35466713490101 +ConductorCentre_L_x[0][20]=-4,24179581941751 +ConductorCentre_L_x[0][21]=-4,12892450393401 +ConductorCentre_L_x[0][22]=-4,0160531884505 +ConductorCentre_L_x[0][23]=-3,903181872967 +ConductorCentre_L_x[0][24]=-3,79031055748349 +ConductorCentre_L_x[0][25]=-3,67743924199999 +ConductorCentre_L_x[0][26]=-3,56456792651649 +ConductorCentre_L_x[0][27]=0 +ConductorCentre_L_x[1][0]=0 +ConductorCentre_L_x[1][1]=-5,88842192557675 +ConductorCentre_L_x[1][2]=-5,77555061009325 +ConductorCentre_L_x[1][3]=-5,66267929460974 +ConductorCentre_L_x[1][4]=-5,54980797912624 +ConductorCentre_L_x[1][5]=-5,43693666364273 +ConductorCentre_L_x[1][6]=-5,32406534815923 +ConductorCentre_L_x[1][7]=-5,21119403267572 +ConductorCentre_L_x[1][8]=-5,09832271719222 +ConductorCentre_L_x[1][9]=-4,98545140170872 +ConductorCentre_L_x[1][10]=-4,87258008622521 +ConductorCentre_L_x[1][11]=-4,75970877074171 +ConductorCentre_L_x[1][12]=-4,64683745525821 +ConductorCentre_L_x[1][13]=-4,5339661397747 +ConductorCentre_L_x[1][14]=-4,4210948242912 +ConductorCentre_L_x[1][15]=-4,30822350880769 +ConductorCentre_L_x[1][16]=-4,19535219332419 +ConductorCentre_L_x[1][17]=-4,08248087784069 +ConductorCentre_L_x[1][18]=-3,96960956235718 +ConductorCentre_L_x[1][19]=-3,85673824687368 +ConductorCentre_L_x[1][20]=-3,74386693139017 +ConductorCentre_L_x[1][21]=-3,63099561590667 +ConductorCentre_L_x[1][22]=-3,51812430042317 +ConductorCentre_L_x[1][23]=-3,40525298493966 +ConductorCentre_L_x[1][24]=-3,29238166945616 +ConductorCentre_L_x[1][25]=-3,17951035397265 +ConductorCentre_L_x[1][26]=-3,06663903848915 +ConductorCentre_L_x[1][27]=-2,95376772300565 +ConductorCentre_L_x[2][0]=-5,39049303754941 +ConductorCentre_L_x[2][1]=-5,27762172206591 +ConductorCentre_L_x[2][2]=-5,16475040658241 +ConductorCentre_L_x[2][3]=-5,0518790910989 +ConductorCentre_L_x[2][4]=-4,9390077756154 +ConductorCentre_L_x[2][5]=-4,82613646013189 +ConductorCentre_L_x[2][6]=-4,71326514464839 +ConductorCentre_L_x[2][7]=-4,60039382916488 +ConductorCentre_L_x[2][8]=-4,48752251368138 +ConductorCentre_L_x[2][9]=-4,37465119819788 +ConductorCentre_L_x[2][10]=-4,26177988271437 +ConductorCentre_L_x[2][11]=-4,14890856723087 +ConductorCentre_L_x[2][12]=-4,03603725174737 +ConductorCentre_L_x[2][13]=-3,92316593626386 +ConductorCentre_L_x[2][14]=-3,81029462078036 +ConductorCentre_L_x[2][15]=-3,69742330529685 +ConductorCentre_L_x[2][16]=-3,58455198981335 +ConductorCentre_L_x[2][17]=-3,47168067432985 +ConductorCentre_L_x[2][18]=-3,35880935884634 +ConductorCentre_L_x[2][19]=-3,24593804336284 +ConductorCentre_L_x[2][20]=-3,13306672787933 +ConductorCentre_L_x[2][21]=-3,02019541239583 +ConductorCentre_L_x[2][22]=-2,90732409691233 +ConductorCentre_L_x[2][23]=-2,79445278142882 +ConductorCentre_L_x[2][24]=-2,68158146594532 +ConductorCentre_L_x[2][25]=-2,56871015046181 +ConductorCentre_L_x[2][26]=-2,45583883497831 +ConductorCentre_L_x[2][27]=-2,34296751949481 +ConductorCentre_L_x[3][0]=0 +ConductorCentre_L_x[3][1]=-4,77969283403857 +ConductorCentre_L_x[3][2]=-4,66682151855507 +ConductorCentre_L_x[3][3]=-4,55395020307156 +ConductorCentre_L_x[3][4]=-4,44107888758806 +ConductorCentre_L_x[3][5]=-4,32820757210456 +ConductorCentre_L_x[3][6]=-4,21533625662105 +ConductorCentre_L_x[3][7]=-4,10246494113755 +ConductorCentre_L_x[3][8]=-3,98959362565405 +ConductorCentre_L_x[3][9]=-3,87672231017054 +ConductorCentre_L_x[3][10]=-3,76385099468704 +ConductorCentre_L_x[3][11]=-3,65097967920353 +ConductorCentre_L_x[3][12]=-3,53810836372003 +ConductorCentre_L_x[3][13]=-3,42523704823652 +ConductorCentre_L_x[3][14]=-3,31236573275302 +ConductorCentre_L_x[3][15]=-3,19949441726952 +ConductorCentre_L_x[3][16]=-3,08662310178601 +ConductorCentre_L_x[3][17]=-2,97375178630251 +ConductorCentre_L_x[3][18]=-2,86088047081901 +ConductorCentre_L_x[3][19]=-2,7480091553355 +ConductorCentre_L_x[3][20]=-2,635137839852 +ConductorCentre_L_x[3][21]=-2,52226652436849 +ConductorCentre_L_x[3][22]=-2,40939520888499 +ConductorCentre_L_x[3][23]=-2,29652389340149 +ConductorCentre_L_x[3][24]=-2,18365257791798 +ConductorCentre_L_x[3][25]=-2,07078126243448 +ConductorCentre_L_x[3][26]=-1,95790994695097 +ConductorCentre_L_x[3][27]=-1,84503863146747 +ConductorCentre_L_x[4][0]=0 +ConductorCentre_L_x[4][1]=-4,16889263052773 +ConductorCentre_L_x[4][2]=-4,05602131504423 +ConductorCentre_L_x[4][3]=-3,94314999956072 +ConductorCentre_L_x[4][4]=-3,83027868407722 +ConductorCentre_L_x[4][5]=-3,71740736859372 +ConductorCentre_L_x[4][6]=-3,60453605311021 +ConductorCentre_L_x[4][7]=-3,49166473762671 +ConductorCentre_L_x[4][8]=-3,3787934221432 +ConductorCentre_L_x[4][9]=-3,2659221066597 +ConductorCentre_L_x[4][10]=-3,1530507911762 +ConductorCentre_L_x[4][11]=-3,04017947569269 +ConductorCentre_L_x[4][12]=-2,92730816020919 +ConductorCentre_L_x[4][13]=-2,81443684472568 +ConductorCentre_L_x[4][14]=-2,70156552924218 +ConductorCentre_L_x[4][15]=-2,58869421375868 +ConductorCentre_L_x[4][16]=-2,47582289827517 +ConductorCentre_L_x[4][17]=0 +ConductorCentre_L_x[4][18]=0 +ConductorCentre_L_x[4][19]=0 +ConductorCentre_L_x[4][20]=0 +ConductorCentre_L_x[4][21]=0 +ConductorCentre_L_x[4][22]=0 +ConductorCentre_L_x[4][23]=0 +ConductorCentre_L_x[4][24]=0 +ConductorCentre_L_x[4][25]=0 +ConductorCentre_L_x[4][26]=0 +ConductorCentre_L_x[4][27]=0 +ConductorCentre_L_y[0][0]=63,4932337868909 +ConductorCentre_L_y[0][1]=62,8531087474329 +ConductorCentre_L_y[0][2]=62,212983707975 +ConductorCentre_L_y[0][3]=61,5728586685171 +ConductorCentre_L_y[0][4]=60,9327336290591 +ConductorCentre_L_y[0][5]=60,2926085896012 +ConductorCentre_L_y[0][6]=59,6524835501432 +ConductorCentre_L_y[0][7]=59,0123585106853 +ConductorCentre_L_y[0][8]=58,3722334712274 +ConductorCentre_L_y[0][9]=57,7321084317694 +ConductorCentre_L_y[0][10]=57,0919833923115 +ConductorCentre_L_y[0][11]=56,4518583528536 +ConductorCentre_L_y[0][12]=55,8117333133956 +ConductorCentre_L_y[0][13]=55,1716082739377 +ConductorCentre_L_y[0][14]=54,5314832344798 +ConductorCentre_L_y[0][15]=53,8913581950218 +ConductorCentre_L_y[0][16]=53,2512331555639 +ConductorCentre_L_y[0][17]=52,611108116106 +ConductorCentre_L_y[0][18]=51,970983076648 +ConductorCentre_L_y[0][19]=51,3308580371901 +ConductorCentre_L_y[0][20]=50,6907329977321 +ConductorCentre_L_y[0][21]=50,0506079582742 +ConductorCentre_L_y[0][22]=49,4104829188163 +ConductorCentre_L_y[0][23]=48,7703578793583 +ConductorCentre_L_y[0][24]=48,1302328399004 +ConductorCentre_L_y[0][25]=47,4901078004425 +ConductorCentre_L_y[0][26]=46,8499827609845 +ConductorCentre_L_y[0][27]=0 +ConductorCentre_L_y[1][0]=0 +ConductorCentre_L_y[1][1]=63,2709206937292 +ConductorCentre_L_y[1][2]=62,6307956542712 +ConductorCentre_L_y[1][3]=61,9906706148133 +ConductorCentre_L_y[1][4]=61,3505455753554 +ConductorCentre_L_y[1][5]=60,7104205358974 +ConductorCentre_L_y[1][6]=60,0702954964395 +ConductorCentre_L_y[1][7]=59,4301704569816 +ConductorCentre_L_y[1][8]=58,7900454175236 +ConductorCentre_L_y[1][9]=58,1499203780657 +ConductorCentre_L_y[1][10]=57,5097953386078 +ConductorCentre_L_y[1][11]=56,8696702991498 +ConductorCentre_L_y[1][12]=56,2295452596919 +ConductorCentre_L_y[1][13]=55,5894202202339 +ConductorCentre_L_y[1][14]=54,949295180776 +ConductorCentre_L_y[1][15]=54,3091701413181 +ConductorCentre_L_y[1][16]=53,6690451018601 +ConductorCentre_L_y[1][17]=53,0289200624022 +ConductorCentre_L_y[1][18]=52,3887950229443 +ConductorCentre_L_y[1][19]=51,7486699834863 +ConductorCentre_L_y[1][20]=51,1085449440284 +ConductorCentre_L_y[1][21]=50,4684199045705 +ConductorCentre_L_y[1][22]=49,8282948651125 +ConductorCentre_L_y[1][23]=49,1881698256546 +ConductorCentre_L_y[1][24]=48,5480447861967 +ConductorCentre_L_y[1][25]=47,9079197467387 +ConductorCentre_L_y[1][26]=47,2677947072808 +ConductorCentre_L_y[1][27]=46,6276696678229 +ConductorCentre_L_y[2][0]=63,6887326400254 +ConductorCentre_L_y[2][1]=63,0486076005675 +ConductorCentre_L_y[2][2]=62,4084825611096 +ConductorCentre_L_y[2][3]=61,7683575216516 +ConductorCentre_L_y[2][4]=61,1282324821937 +ConductorCentre_L_y[2][5]=60,4881074427357 +ConductorCentre_L_y[2][6]=59,8479824032778 +ConductorCentre_L_y[2][7]=59,2078573638199 +ConductorCentre_L_y[2][8]=58,5677323243619 +ConductorCentre_L_y[2][9]=57,927607284904 +ConductorCentre_L_y[2][10]=57,2874822454461 +ConductorCentre_L_y[2][11]=56,6473572059881 +ConductorCentre_L_y[2][12]=56,0072321665302 +ConductorCentre_L_y[2][13]=55,3671071270723 +ConductorCentre_L_y[2][14]=54,7269820876143 +ConductorCentre_L_y[2][15]=54,0868570481564 +ConductorCentre_L_y[2][16]=53,4467320086985 +ConductorCentre_L_y[2][17]=52,8066069692405 +ConductorCentre_L_y[2][18]=52,1664819297826 +ConductorCentre_L_y[2][19]=51,5263568903246 +ConductorCentre_L_y[2][20]=50,8862318508667 +ConductorCentre_L_y[2][21]=50,2461068114088 +ConductorCentre_L_y[2][22]=49,6059817719508 +ConductorCentre_L_y[2][23]=48,9658567324929 +ConductorCentre_L_y[2][24]=48,325731693035 +ConductorCentre_L_y[2][25]=47,685606653577 +ConductorCentre_L_y[2][26]=47,0454816141191 +ConductorCentre_L_y[2][27]=46,4053565746612 +ConductorCentre_L_y[3][0]=0 +ConductorCentre_L_y[3][1]=63,4664195468637 +ConductorCentre_L_y[3][2]=62,8262945074058 +ConductorCentre_L_y[3][3]=62,1861694679479 +ConductorCentre_L_y[3][4]=61,5460444284899 +ConductorCentre_L_y[3][5]=60,905919389032 +ConductorCentre_L_y[3][6]=60,2657943495741 +ConductorCentre_L_y[3][7]=59,6256693101161 +ConductorCentre_L_y[3][8]=58,9855442706582 +ConductorCentre_L_y[3][9]=58,3454192312003 +ConductorCentre_L_y[3][10]=57,7052941917423 +ConductorCentre_L_y[3][11]=57,0651691522844 +ConductorCentre_L_y[3][12]=56,4250441128265 +ConductorCentre_L_y[3][13]=55,7849190733685 +ConductorCentre_L_y[3][14]=55,1447940339106 +ConductorCentre_L_y[3][15]=54,5046689944526 +ConductorCentre_L_y[3][16]=53,8645439549947 +ConductorCentre_L_y[3][17]=53,2244189155368 +ConductorCentre_L_y[3][18]=52,5842938760788 +ConductorCentre_L_y[3][19]=51,9441688366209 +ConductorCentre_L_y[3][20]=51,304043797163 +ConductorCentre_L_y[3][21]=50,663918757705 +ConductorCentre_L_y[3][22]=50,0237937182471 +ConductorCentre_L_y[3][23]=49,3836686787892 +ConductorCentre_L_y[3][24]=48,7435436393312 +ConductorCentre_L_y[3][25]=48,1034185998733 +ConductorCentre_L_y[3][26]=47,4632935604154 +ConductorCentre_L_y[3][27]=46,8231685209574 +ConductorCentre_L_y[4][0]=0 +ConductorCentre_L_y[4][1]=63,2441064537021 +ConductorCentre_L_y[4][2]=62,6039814142441 +ConductorCentre_L_y[4][3]=61,9638563747862 +ConductorCentre_L_y[4][4]=61,3237313353282 +ConductorCentre_L_y[4][5]=60,6836062958703 +ConductorCentre_L_y[4][6]=60,0434812564124 +ConductorCentre_L_y[4][7]=59,4033562169544 +ConductorCentre_L_y[4][8]=58,7632311774965 +ConductorCentre_L_y[4][9]=58,1231061380386 +ConductorCentre_L_y[4][10]=57,4829810985806 +ConductorCentre_L_y[4][11]=56,8428560591227 +ConductorCentre_L_y[4][12]=56,2027310196648 +ConductorCentre_L_y[4][13]=55,5626059802068 +ConductorCentre_L_y[4][14]=54,9224809407489 +ConductorCentre_L_y[4][15]=54,282355901291 +ConductorCentre_L_y[4][16]=53,642230861833 +ConductorCentre_L_y[4][17]=0 +ConductorCentre_L_y[4][18]=0 +ConductorCentre_L_y[4][19]=0 +ConductorCentre_L_y[4][20]=0 +ConductorCentre_L_y[4][21]=0 +ConductorCentre_L_y[4][22]=0 +ConductorCentre_L_y[4][23]=0 +ConductorCentre_L_y[4][24]=0 +ConductorCentre_L_y[4][25]=0 +ConductorCentre_L_y[4][26]=0 +ConductorCentre_L_y[4][27]=0 +ConductorCentre_R_x[0][0]=6,49922212908759 +ConductorCentre_R_x[0][1]=6,38635081360408 +ConductorCentre_R_x[0][2]=6,27347949812058 +ConductorCentre_R_x[0][3]=6,16060818263708 +ConductorCentre_R_x[0][4]=6,04773686715357 +ConductorCentre_R_x[0][5]=5,93486555167007 +ConductorCentre_R_x[0][6]=5,82199423618657 +ConductorCentre_R_x[0][7]=5,70912292070306 +ConductorCentre_R_x[0][8]=5,59625160521956 +ConductorCentre_R_x[0][9]=5,48338028973605 +ConductorCentre_R_x[0][10]=5,37050897425255 +ConductorCentre_R_x[0][11]=5,25763765876905 +ConductorCentre_R_x[0][12]=5,14476634328554 +ConductorCentre_R_x[0][13]=5,03189502780204 +ConductorCentre_R_x[0][14]=4,91902371231853 +ConductorCentre_R_x[0][15]=4,80615239683503 +ConductorCentre_R_x[0][16]=4,69328108135153 +ConductorCentre_R_x[0][17]=4,58040976586802 +ConductorCentre_R_x[0][18]=4,46753845038452 +ConductorCentre_R_x[0][19]=4,35466713490101 +ConductorCentre_R_x[0][20]=4,24179581941751 +ConductorCentre_R_x[0][21]=4,12892450393401 +ConductorCentre_R_x[0][22]=4,0160531884505 +ConductorCentre_R_x[0][23]=3,903181872967 +ConductorCentre_R_x[0][24]=3,79031055748349 +ConductorCentre_R_x[0][25]=3,67743924199999 +ConductorCentre_R_x[0][26]=3,56456792651649 +ConductorCentre_R_x[0][27]=0 +ConductorCentre_R_x[1][0]=0 +ConductorCentre_R_x[1][1]=5,88842192557675 +ConductorCentre_R_x[1][2]=5,77555061009325 +ConductorCentre_R_x[1][3]=5,66267929460974 +ConductorCentre_R_x[1][4]=5,54980797912624 +ConductorCentre_R_x[1][5]=5,43693666364273 +ConductorCentre_R_x[1][6]=5,32406534815923 +ConductorCentre_R_x[1][7]=5,21119403267572 +ConductorCentre_R_x[1][8]=5,09832271719222 +ConductorCentre_R_x[1][9]=4,98545140170872 +ConductorCentre_R_x[1][10]=4,87258008622521 +ConductorCentre_R_x[1][11]=4,75970877074171 +ConductorCentre_R_x[1][12]=4,64683745525821 +ConductorCentre_R_x[1][13]=4,5339661397747 +ConductorCentre_R_x[1][14]=4,4210948242912 +ConductorCentre_R_x[1][15]=4,30822350880769 +ConductorCentre_R_x[1][16]=4,19535219332419 +ConductorCentre_R_x[1][17]=4,08248087784069 +ConductorCentre_R_x[1][18]=3,96960956235718 +ConductorCentre_R_x[1][19]=3,85673824687368 +ConductorCentre_R_x[1][20]=3,74386693139017 +ConductorCentre_R_x[1][21]=3,63099561590667 +ConductorCentre_R_x[1][22]=3,51812430042317 +ConductorCentre_R_x[1][23]=3,40525298493966 +ConductorCentre_R_x[1][24]=3,29238166945616 +ConductorCentre_R_x[1][25]=3,17951035397265 +ConductorCentre_R_x[1][26]=3,06663903848915 +ConductorCentre_R_x[1][27]=2,95376772300565 +ConductorCentre_R_x[2][0]=5,39049303754941 +ConductorCentre_R_x[2][1]=5,27762172206591 +ConductorCentre_R_x[2][2]=5,16475040658241 +ConductorCentre_R_x[2][3]=5,0518790910989 +ConductorCentre_R_x[2][4]=4,9390077756154 +ConductorCentre_R_x[2][5]=4,82613646013189 +ConductorCentre_R_x[2][6]=4,71326514464839 +ConductorCentre_R_x[2][7]=4,60039382916488 +ConductorCentre_R_x[2][8]=4,48752251368138 +ConductorCentre_R_x[2][9]=4,37465119819788 +ConductorCentre_R_x[2][10]=4,26177988271437 +ConductorCentre_R_x[2][11]=4,14890856723087 +ConductorCentre_R_x[2][12]=4,03603725174737 +ConductorCentre_R_x[2][13]=3,92316593626386 +ConductorCentre_R_x[2][14]=3,81029462078036 +ConductorCentre_R_x[2][15]=3,69742330529685 +ConductorCentre_R_x[2][16]=3,58455198981335 +ConductorCentre_R_x[2][17]=3,47168067432985 +ConductorCentre_R_x[2][18]=3,35880935884634 +ConductorCentre_R_x[2][19]=3,24593804336284 +ConductorCentre_R_x[2][20]=3,13306672787933 +ConductorCentre_R_x[2][21]=3,02019541239583 +ConductorCentre_R_x[2][22]=2,90732409691233 +ConductorCentre_R_x[2][23]=2,79445278142882 +ConductorCentre_R_x[2][24]=2,68158146594532 +ConductorCentre_R_x[2][25]=2,56871015046181 +ConductorCentre_R_x[2][26]=2,45583883497831 +ConductorCentre_R_x[2][27]=2,34296751949481 +ConductorCentre_R_x[3][0]=0 +ConductorCentre_R_x[3][1]=4,77969283403857 +ConductorCentre_R_x[3][2]=4,66682151855507 +ConductorCentre_R_x[3][3]=4,55395020307156 +ConductorCentre_R_x[3][4]=4,44107888758806 +ConductorCentre_R_x[3][5]=4,32820757210456 +ConductorCentre_R_x[3][6]=4,21533625662105 +ConductorCentre_R_x[3][7]=4,10246494113755 +ConductorCentre_R_x[3][8]=3,98959362565405 +ConductorCentre_R_x[3][9]=3,87672231017054 +ConductorCentre_R_x[3][10]=3,76385099468704 +ConductorCentre_R_x[3][11]=3,65097967920353 +ConductorCentre_R_x[3][12]=3,53810836372003 +ConductorCentre_R_x[3][13]=3,42523704823652 +ConductorCentre_R_x[3][14]=3,31236573275302 +ConductorCentre_R_x[3][15]=3,19949441726952 +ConductorCentre_R_x[3][16]=3,08662310178601 +ConductorCentre_R_x[3][17]=2,97375178630251 +ConductorCentre_R_x[3][18]=2,86088047081901 +ConductorCentre_R_x[3][19]=2,7480091553355 +ConductorCentre_R_x[3][20]=2,635137839852 +ConductorCentre_R_x[3][21]=2,52226652436849 +ConductorCentre_R_x[3][22]=2,40939520888499 +ConductorCentre_R_x[3][23]=2,29652389340149 +ConductorCentre_R_x[3][24]=2,18365257791798 +ConductorCentre_R_x[3][25]=2,07078126243448 +ConductorCentre_R_x[3][26]=1,95790994695097 +ConductorCentre_R_x[3][27]=1,84503863146747 +ConductorCentre_R_x[4][0]=0 +ConductorCentre_R_x[4][1]=4,16889263052773 +ConductorCentre_R_x[4][2]=4,05602131504423 +ConductorCentre_R_x[4][3]=3,94314999956072 +ConductorCentre_R_x[4][4]=3,83027868407722 +ConductorCentre_R_x[4][5]=3,71740736859372 +ConductorCentre_R_x[4][6]=3,60453605311021 +ConductorCentre_R_x[4][7]=3,49166473762671 +ConductorCentre_R_x[4][8]=3,3787934221432 +ConductorCentre_R_x[4][9]=3,2659221066597 +ConductorCentre_R_x[4][10]=3,1530507911762 +ConductorCentre_R_x[4][11]=3,04017947569269 +ConductorCentre_R_x[4][12]=2,92730816020919 +ConductorCentre_R_x[4][13]=2,81443684472568 +ConductorCentre_R_x[4][14]=2,70156552924218 +ConductorCentre_R_x[4][15]=2,58869421375868 +ConductorCentre_R_x[4][16]=2,47582289827517 +ConductorCentre_R_x[4][17]=0 +ConductorCentre_R_x[4][18]=0 +ConductorCentre_R_x[4][19]=0 +ConductorCentre_R_x[4][20]=0 +ConductorCentre_R_x[4][21]=0 +ConductorCentre_R_x[4][22]=0 +ConductorCentre_R_x[4][23]=0 +ConductorCentre_R_x[4][24]=0 +ConductorCentre_R_x[4][25]=0 +ConductorCentre_R_x[4][26]=0 +ConductorCentre_R_x[4][27]=0 +ConductorCentre_R_y[0][0]=63,4932337868909 +ConductorCentre_R_y[0][1]=62,8531087474329 +ConductorCentre_R_y[0][2]=62,212983707975 +ConductorCentre_R_y[0][3]=61,5728586685171 +ConductorCentre_R_y[0][4]=60,9327336290591 +ConductorCentre_R_y[0][5]=60,2926085896012 +ConductorCentre_R_y[0][6]=59,6524835501432 +ConductorCentre_R_y[0][7]=59,0123585106853 +ConductorCentre_R_y[0][8]=58,3722334712274 +ConductorCentre_R_y[0][9]=57,7321084317694 +ConductorCentre_R_y[0][10]=57,0919833923115 +ConductorCentre_R_y[0][11]=56,4518583528536 +ConductorCentre_R_y[0][12]=55,8117333133956 +ConductorCentre_R_y[0][13]=55,1716082739377 +ConductorCentre_R_y[0][14]=54,5314832344798 +ConductorCentre_R_y[0][15]=53,8913581950218 +ConductorCentre_R_y[0][16]=53,2512331555639 +ConductorCentre_R_y[0][17]=52,611108116106 +ConductorCentre_R_y[0][18]=51,970983076648 +ConductorCentre_R_y[0][19]=51,3308580371901 +ConductorCentre_R_y[0][20]=50,6907329977321 +ConductorCentre_R_y[0][21]=50,0506079582742 +ConductorCentre_R_y[0][22]=49,4104829188163 +ConductorCentre_R_y[0][23]=48,7703578793583 +ConductorCentre_R_y[0][24]=48,1302328399004 +ConductorCentre_R_y[0][25]=47,4901078004425 +ConductorCentre_R_y[0][26]=46,8499827609845 +ConductorCentre_R_y[0][27]=0 +ConductorCentre_R_y[1][0]=0 +ConductorCentre_R_y[1][1]=63,2709206937292 +ConductorCentre_R_y[1][2]=62,6307956542712 +ConductorCentre_R_y[1][3]=61,9906706148133 +ConductorCentre_R_y[1][4]=61,3505455753554 +ConductorCentre_R_y[1][5]=60,7104205358974 +ConductorCentre_R_y[1][6]=60,0702954964395 +ConductorCentre_R_y[1][7]=59,4301704569816 +ConductorCentre_R_y[1][8]=58,7900454175236 +ConductorCentre_R_y[1][9]=58,1499203780657 +ConductorCentre_R_y[1][10]=57,5097953386078 +ConductorCentre_R_y[1][11]=56,8696702991498 +ConductorCentre_R_y[1][12]=56,2295452596919 +ConductorCentre_R_y[1][13]=55,5894202202339 +ConductorCentre_R_y[1][14]=54,949295180776 +ConductorCentre_R_y[1][15]=54,3091701413181 +ConductorCentre_R_y[1][16]=53,6690451018601 +ConductorCentre_R_y[1][17]=53,0289200624022 +ConductorCentre_R_y[1][18]=52,3887950229443 +ConductorCentre_R_y[1][19]=51,7486699834863 +ConductorCentre_R_y[1][20]=51,1085449440284 +ConductorCentre_R_y[1][21]=50,4684199045705 +ConductorCentre_R_y[1][22]=49,8282948651125 +ConductorCentre_R_y[1][23]=49,1881698256546 +ConductorCentre_R_y[1][24]=48,5480447861967 +ConductorCentre_R_y[1][25]=47,9079197467387 +ConductorCentre_R_y[1][26]=47,2677947072808 +ConductorCentre_R_y[1][27]=46,6276696678229 +ConductorCentre_R_y[2][0]=63,6887326400254 +ConductorCentre_R_y[2][1]=63,0486076005675 +ConductorCentre_R_y[2][2]=62,4084825611096 +ConductorCentre_R_y[2][3]=61,7683575216516 +ConductorCentre_R_y[2][4]=61,1282324821937 +ConductorCentre_R_y[2][5]=60,4881074427357 +ConductorCentre_R_y[2][6]=59,8479824032778 +ConductorCentre_R_y[2][7]=59,2078573638199 +ConductorCentre_R_y[2][8]=58,5677323243619 +ConductorCentre_R_y[2][9]=57,927607284904 +ConductorCentre_R_y[2][10]=57,2874822454461 +ConductorCentre_R_y[2][11]=56,6473572059881 +ConductorCentre_R_y[2][12]=56,0072321665302 +ConductorCentre_R_y[2][13]=55,3671071270723 +ConductorCentre_R_y[2][14]=54,7269820876143 +ConductorCentre_R_y[2][15]=54,0868570481564 +ConductorCentre_R_y[2][16]=53,4467320086985 +ConductorCentre_R_y[2][17]=52,8066069692405 +ConductorCentre_R_y[2][18]=52,1664819297826 +ConductorCentre_R_y[2][19]=51,5263568903246 +ConductorCentre_R_y[2][20]=50,8862318508667 +ConductorCentre_R_y[2][21]=50,2461068114088 +ConductorCentre_R_y[2][22]=49,6059817719508 +ConductorCentre_R_y[2][23]=48,9658567324929 +ConductorCentre_R_y[2][24]=48,325731693035 +ConductorCentre_R_y[2][25]=47,685606653577 +ConductorCentre_R_y[2][26]=47,0454816141191 +ConductorCentre_R_y[2][27]=46,4053565746612 +ConductorCentre_R_y[3][0]=0 +ConductorCentre_R_y[3][1]=63,4664195468637 +ConductorCentre_R_y[3][2]=62,8262945074058 +ConductorCentre_R_y[3][3]=62,1861694679479 +ConductorCentre_R_y[3][4]=61,5460444284899 +ConductorCentre_R_y[3][5]=60,905919389032 +ConductorCentre_R_y[3][6]=60,2657943495741 +ConductorCentre_R_y[3][7]=59,6256693101161 +ConductorCentre_R_y[3][8]=58,9855442706582 +ConductorCentre_R_y[3][9]=58,3454192312003 +ConductorCentre_R_y[3][10]=57,7052941917423 +ConductorCentre_R_y[3][11]=57,0651691522844 +ConductorCentre_R_y[3][12]=56,4250441128265 +ConductorCentre_R_y[3][13]=55,7849190733685 +ConductorCentre_R_y[3][14]=55,1447940339106 +ConductorCentre_R_y[3][15]=54,5046689944526 +ConductorCentre_R_y[3][16]=53,8645439549947 +ConductorCentre_R_y[3][17]=53,2244189155368 +ConductorCentre_R_y[3][18]=52,5842938760788 +ConductorCentre_R_y[3][19]=51,9441688366209 +ConductorCentre_R_y[3][20]=51,304043797163 +ConductorCentre_R_y[3][21]=50,663918757705 +ConductorCentre_R_y[3][22]=50,0237937182471 +ConductorCentre_R_y[3][23]=49,3836686787892 +ConductorCentre_R_y[3][24]=48,7435436393312 +ConductorCentre_R_y[3][25]=48,1034185998733 +ConductorCentre_R_y[3][26]=47,4632935604154 +ConductorCentre_R_y[3][27]=46,8231685209574 +ConductorCentre_R_y[4][0]=0 +ConductorCentre_R_y[4][1]=63,2441064537021 +ConductorCentre_R_y[4][2]=62,6039814142441 +ConductorCentre_R_y[4][3]=61,9638563747862 +ConductorCentre_R_y[4][4]=61,3237313353282 +ConductorCentre_R_y[4][5]=60,6836062958703 +ConductorCentre_R_y[4][6]=60,0434812564124 +ConductorCentre_R_y[4][7]=59,4033562169544 +ConductorCentre_R_y[4][8]=58,7632311774965 +ConductorCentre_R_y[4][9]=58,1231061380386 +ConductorCentre_R_y[4][10]=57,4829810985806 +ConductorCentre_R_y[4][11]=56,8428560591227 +ConductorCentre_R_y[4][12]=56,2027310196648 +ConductorCentre_R_y[4][13]=55,5626059802068 +ConductorCentre_R_y[4][14]=54,9224809407489 +ConductorCentre_R_y[4][15]=54,282355901291 +ConductorCentre_R_y[4][16]=53,642230861833 +ConductorCentre_R_y[4][17]=0 +ConductorCentre_R_y[4][18]=0 +ConductorCentre_R_y[4][19]=0 +ConductorCentre_R_y[4][20]=0 +ConductorCentre_R_y[4][21]=0 +ConductorCentre_R_y[4][22]=0 +ConductorCentre_R_y[4][23]=0 +ConductorCentre_R_y[4][24]=0 +ConductorCentre_R_y[4][25]=0 +ConductorCentre_R_y[4][26]=0 +ConductorCentre_R_y[4][27]=0 +Copper_Diameter=0,5 +Copper_Diameter_2=0,574 +Copper_Diameter_3=0,574 +Copper_Diameter_Aux=0,65 +Aux_Copper_Diameter=0,65 +Wire_Diameter=0,55 +Wire_Diameter_2=0,6299 +Wire_Diameter_3=0,6299 +Wire_Diameter_Aux=0,714 +Aux_Wire_Diameter=0,714 +Copper_Depth_[%]=100 +Coil_Divider_Width=2 +EWdg_Fill=0,682955032064913 +Liner_-_Lam_Gap=0 +Liner_Thickness=0,25 +Ins_Slot_Base_Thickness=0 +ConductorsPerSlot=250 +Conductors/Slot=250 +ConductorsPerSlot_2=0 +ConductorsPerSlot_3=0 +Ins_Tooth_Side_Thickness=0 +Imp_Goodness_[Active]=0,8 +Imp_Goodness_[Liner-Lam]=0,8 +Imp_Goodness_[EWdg]=0,8 +Imp_Goodness_[Litz]=0,85 +Potting_Goodness_[EWdg]=1 +Armature_CoilStyle=0 +Armature_WindingType=0 +Armature_Winding_Definition=1 +Armature_Winding_Definition_Hairpin=0 +Wire_Type_Stator=2 +Wire_Type_Stator_2=0 +Wire_Type_Stator_3=0 +Wire_Type_Litz=0 +Wire_Type_Aux=0 +AWG_WireGaugeIndex=44 +Last_AWG_Wire_Table_Entry_Number=44 +AWG_WireGaugeIndex_2=44 +AWG_WireGaugeIndex_3=44 +SWG_WireGaugeIndex=48 +Last_SWG_Wire_Table_Entry_Number=48 +SWG_WireGaugeIndex_2=48 +SWG_WireGaugeIndex_3=48 +Metric_WireGaugeIndex=20 +Last_Metric_Wire_Table_Entry_Number=20 +Metric_WireGaugeIndex_2=20 +Metric_WireGaugeIndex_3=20 +AWG_WireGaugeIndex_Litz=56 +AWG_WireGaugeIndex_Aux=44 +Last_Aux_AWG_Wire_Table_Entry_Number=44 +Metric_WireGaugeIndex_Aux=20 +Last_Aux_Metric_Wire_Table_Entry_Number=20 +Liner_Layers_Definition=0 +Number_Liner_Layers=3 +Liner_Layer_Thickness[0]=0,1 +Liner_Layer_Thickness[1]=0,1 +Liner_Layer_Thickness[2]=0,1 +Liner_Layer_Thickness[3]=0,1 +Liner_Layer_Thickness[4]=0,1 +Liner_Layer_Conductivity[0]=0,21 +Liner_Layer_Conductivity[1]=0,21 +Liner_Layer_Conductivity[2]=0,21 +Liner_Layer_Conductivity[3]=0,21 +Liner_Layer_Conductivity[4]=0,21 +Liner_Layer_Specific_Heat[0]=1000 +Liner_Layer_Specific_Heat[1]=1000 +Liner_Layer_Specific_Heat[2]=1000 +Liner_Layer_Specific_Heat[3]=1000 +Liner_Layer_Specific_Heat[4]=1000 +Liner_Layer_Density[0]=700 +Liner_Layer_Density[1]=700 +Liner_Layer_Density[2]=700 +Liner_Layer_Density[3]=700 +Liner_Layer_Density[4]=700 +Liner_Layer_Notes[0]= +Liner_Layer_Notes[1]= +Liner_Layer_Notes[2]= +Liner_Layer_Notes[3]= +Liner_Layer_Notes[4]= +Wire_Type=Diameter_Input +Aux_Wire_Type=AWG_Table +Winding_Type=Overlapping +Wdg_Definition=Conductors_Slot +EWdg_Definition=EWdg_MLT +EWdg_MLT=34,2340219832084 +Liner_Layers=Single_Layer +Liner_Layer_Thickness_1=0,1 +Liner_Layer_Conductivity_1=0,21 +Liner_Layer_Specific_Heat_1=1000 +Liner_Layer_Density_1=700 +Liner_Layer_Notes_1= +Liner_Layer_Thickness_2=0,1 +Liner_Layer_Conductivity_2=0,21 +Liner_Layer_Specific_Heat_2=1000 +Liner_Layer_Density_2=700 +Liner_Layer_Notes_2= +Liner_Layer_Thickness_3=0,1 +Liner_Layer_Conductivity_3=0,21 +Liner_Layer_Specific_Heat_3=1000 +Liner_Layer_Density_3=700 +Liner_Layer_Notes_3= +Liner_Layer_Thickness_4=0,1 +Liner_Layer_Conductivity_4=0,21 +Liner_Layer_Specific_Heat_4=1000 +Liner_Layer_Density_4=700 +Liner_Layer_Notes_4= +Liner_Layer_Thickness_5=0,1 +Liner_Layer_Conductivity_5=0,21 +Liner_Layer_Specific_Heat_5=1000 +Liner_Layer_Density_5=700 +Liner_Layer_Notes_5= + +[BPM_Rating_Test] +Constant_Torque_or_Constant_Current=Constant_Current +Magnet_Temp_Coeff_Br=-0,12 +PM_Losses_Vary_With_Temperature_and_Load=False +Losses_Vary_With_Temperature_and_Load=False +Iron_loss_Flux_To_Power_Ratio=0 +Iron_Loss_To_Power_Ratio=0 +Winding_Temperature_Load_Vary=106,755159371359 +Winding_Temperature_-_Tw(i/p)=106,755159371359 +Magnet_Temperature_Load_Vary=87,67881395449 +Magnet_Temperature_-_Tm(i/p)=87,67881395449 +Shaft_Torque_[1pu]=1,21387188184284 +Rph_at_Tw=6,52632421563798 +Rph_@Tw(i/p)=6,52632421563798 +Iph_[1pu]=0,687223392972767 +Torque_Current_Multiplier=1 + +[h_Table_Params] +Input_Flow_Rate_or_Velocity=Input_Velocity +Convection_Radiation_Table_dT=100 +Internal_Radiation_Table_dT=10 +Forced_Conv_Default_RPM=3000 +Forced_Convection_Default_RPM=3000 +Forced_Conv_Default_Velocity=5 +Forced_Convection_Default_Velocity=5 +Forced_Conv_Default_Flow_Rate=0 +Forced_Convection_Default_Flow_Rate=0 + +[h_Forced_Con_Model] +Calc/Input_h[fc]_Housing_[F]_-_No_Fins=Calc_h_conv +Calc/Input_h[fc]_Housing_[F]_-_Fin_Base=Calc_h_conv +Calc/Input_h[fc]_Housing_[F]_-_Fin_Sides=Calc_h_conv +Calc/Input_h[fc]_Housing_[F]_-_Fin_Tips=Calc_h_conv +Calc/Input_h[fc]_Housing_[F]_-_Fin_Channel=Calc_h_conv +Calc/Input_h[fc]_Housing_[F]_-_Corner_Cutout=Calc_h_conv +Calc/Input_h[fc]_Housing_[R]_-_No_Fins=Calc_h_conv +Calc/Input_h[fc]_Housing_[R]_-_Fin_Base=Calc_h_conv +Calc/Input_h[fc]_Housing_[R]_-_Fin_Sides=Calc_h_conv +Calc/Input_h[fc]_Housing_[R]_-_Fin_Tips=Calc_h_conv +Calc/Input_h[fc]_Housing_[R]_-_Fin_Channel=Calc_h_conv +Calc/Input_h[fc]_Housing_[R]_-_Corner_Cutout=Calc_h_conv +Calc/Input_h[fc]_Endcap_[F]_-_Radial=Calc_h_conv +Calc/Input_h[fc]_Endcap_[F]_-_Axial=Calc_h_conv +Calc/Input_h[fc]_Endcap_[R]_-_Radial=Calc_h_conv +Calc/Input_h[fc]_Endcap_[R]_-_Axial=Calc_h_conv +Calc/Input_h[fc]_Flange_Plate=Calc_h_conv +Calc/Input_h[fc]_Axle_Plate_[F]=Calc_h_conv +Calc/Input_h[fc]_Axle_Plate_[R]=Calc_h_conv +Calc/Input_h[fc]_Base_Plate=Calc_h_conv +Calc/Input_h[fc]_Encoder_Case_-_Radial=Calc_h_conv +Calc/Input_h[fc]_Encoder_Case_-_Axial=Calc_h_conv + +[Calc_Data_Keys] +[1]=5C5F53510B444053515C5D0A0D5B0C06140B111C190904004173011F05451901174E0F07555C401E5D581E4017154A57580B0B1A045A01434746595B4B5501454754575D4B020E525B425C59555C0C0F00065A065A42545E535056 +[2]=5C5F53510B444053515C5D0A0D5B1E000907001A565F5B5816135C46535D2A080C5B47060117180E4108514007080B13465C4B140744015E585746584A54185B414B55574401095A5D5257595F5C0D02070740065A4255465F53510A5C4C5056 +[3]=5C5F53510B444053515C5D0A0D5B1E000907001A565F5B5816135C46535D2A080C5B47060117180E4108514007080B13465C4B140744015E585746584A54185B414B55574401095A5D5257535F5A0D02050440065A4255465F53510A5C4C5056 +[4]=5C5F53510B444053515C5D0A0D5B1E000907001A565F5B5816135C46535D2A080C5B47060117180E4108514007080B13465C4B140744015E585746584A54185B404B55574401095A5D5257595F5A0B02050440065A4255465F53510A5C4C5056 +[5]=5C5F53510B444053515C5D0A0D5B1E000907001A565F5B5816135C46535D2A080C5B47060117180E4108514007080B13465C4B140744015E585746584A541858454B55574401095A5D5257535F5A0902040240065A4255465F53510A5C4C5056 +[6]=5C5F53510B444053515C5D0A0D5B1E000907001A565F5B5816135C46535D2A080C5B47060117180E4108514007080B13465C4B140744015E585746584A54185A4D4B545F4401095A5D5257535F5D0002060540065A4255465F53510A5C4C5056 +[7]=5C5F53510B444053515C5D0A0D5B1E000907001A565F5B5816135C46535D2A080C5B47060117180E4108514007080B13465C4B140744015E585746584A541858444B545F4401095A5D52575F5F5D0802040C40065A4255465F53510A5C4C5056 +[8]=5C5F53510B444053515C5D0A0D5B091A361F06235D72775440065A4255465F53510A5C4C5056 +[9]=5C5F53510B444053515C5D0A0D5B2710220B361A55627F7A3B5815391C3C3A131D7518223E34052C7B7A020414281F011A7040406D184724152A381D2F3D0C5F425056405E040D5A584B5259 +[10]=5C5F53510B444053515C5D0A0D5B02012220223B754E7E5838421E121620080E0D6F101714045A5E040D5B4047515E575E000C07 +[11]=5C5F53510B444053515C5D0A0D5B0926111E0601775959611D591A04323A1335085A251B2D1F3809517F3E2946535D515B170D03014605544255 +[12]=5C5F53510B444053515C5D0A0D5B36161333153B7E686D7B357F3A050A07383E22700C372004242E6678313907025E505F0D0B1A0043075F405F5C59 +[13]=5C5F53510B444053515C5D0A0D5B27362D24302E5F6D64450E7B013F002E0011510D5D41574B5B5C070B5E574655 +[14]=5C5F53510B444053515C5D0A0D5B1D17102C1C104B554642315217030C1E04122940070F0120192F637200062523132C07714E636C1D075841525B4451520C58435D515D +[15]=5C5F53510B444053515C5D0A0D5B26243E051D2A7B515C65155708380B3A3E1D09722331123F363E7F7F2316022E3B36047073000043075E58535F5E5653015E46 +[16]=5C5F53510B444053515C5D0A0D5B0F390C30090F5E537A7B335C24370A0F1B10015721205050595F00175D5946545C5C5C0A +[17]=5C5F53510B444053515C5D0A0D5B1A3E31022F306B765940165A272029191B27245222270204393E6A7C233E38525F525C0A16010240015B4F525B +[18]=5C5F53510B444053515C5D0A0D5B193A352110005B6F64671F5B171D072B0800356F2103003D3D1B697A212A160B1A0A0B0D0D0301471D5841525A5C5D510B +[19]=5C5F53510B444053515C5D0A0D5B3F342A001D0B5E7F47760E6400242C021E350D7E0405271234397E72203431305E505F0D0B1A0043075F405F5C59 +[20]=5C5F53510B444053515C5D0A0D5B36050B0D14207A4F78743B6B173F0C1B1F0F155B013E0E515B5C070A465B45525853510D0B + +[External_Components] +Number_of_External_Circuit_Comps=0 + +[External_Flow_Components] +Number_of_External_Flow_Circuit_Comps=0 + +[Wet_Rotor_Data] +h[Wet_Rotor]_Velocity_Selection=h_Based_on_Effective_Velocity +Wet_Rotor_Fluid_Thermal_Conductivity=0,125 +Wet_Rotor_Fluid_Density=1000 +Wet_Rotor_Fluid_Specific_Heat=1880 +Wet_Rotor_Fluid_Kinematic_Viscosity=1,1E-5 +Wet_Rotor_Fluid_Name=Fixed values +Number_of_Wet_Rotor_Fluid_Conductivity_Values=0 +Number_of_Wet_Rotor_Fluid_Specific_Heat_Values=0 +Number_of_Wet_Rotor_Fluid_Density_Values=0 +Number_of_Wet_Rotor_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Wet_Rotor_Fluid_Volumetric_Expansion_Values=0 +Calc/Input_h[Wet_Rotor]_Front_End_Winding_[Bore]=Calc_h_conv +Input_Value_h[Wet_Rotor]_Front_End_Winding_[Bore]=10 +Adjustment_h[Wet_Rotor]_Front_End_Winding_[Bore]=1 +Velocity_Multiplier_h[Wet_Rotor]_Front_End_Winding_[Bore]=1 +Notes_Wet_Rotor_Front_End_Winding_[Bore]= +Calc/Input_h[Wet_Rotor]_Rear_End_Winding_[Bore]=Calc_h_conv +Input_Value_h[Wet_Rotor]_Rear_End_Winding_[Bore]=10 +Adjustment_h[Wet_Rotor]_Rear_End_Winding_[Bore]=1 +Velocity_Multiplier_h[Wet_Rotor]_Rear_End_Winding_[Bore]=1 +Notes_Wet_Rotor_Rear_End_Winding_[Bore]= +Calc/Input_h[Wet_Rotor]_Front_Shaft=Calc_h_conv +Input_Value_h[Wet_Rotor]_Front_Shaft=10 +Adjustment_h[Wet_Rotor]_Front_Shaft=1 +Velocity_Multiplier_h[Wet_Rotor]_Front_Shaft=1 +Notes_Wet_Rotor_Front_Shaft= +Calc/Input_h[Wet_Rotor]_Rear_Shaft=Calc_h_conv +Input_Value_h[Wet_Rotor]_Rear_Shaft=10 +Adjustment_h[Wet_Rotor]_Rear_Shaft=1 +Velocity_Multiplier_h[Wet_Rotor]_Rear_Shaft=1 +Notes_Wet_Rotor_Rear_Shaft= +Calc/Input_h[Wet_Rotor]_Front_End_Winding_[End]=Calc_h_conv +Input_Value_h[Wet_Rotor]_Front_End_Winding_[End]=10 +Adjustment_h[Wet_Rotor]_Front_End_Winding_[End]=1 +Velocity_Multiplier_h[Wet_Rotor]_Front_End_Winding_[End]=1 +Notes_Wet_Rotor_Front_End_Winding_[End]= +Calc/Input_h[Wet_Rotor]_Rear_End_Winding_[End]=Calc_h_conv +Input_Value_h[Wet_Rotor]_Rear_End_Winding_[End]=10 +Adjustment_h[Wet_Rotor]_Rear_End_Winding_[End]=1 +Velocity_Multiplier_h[Wet_Rotor]_Rear_End_Winding_[End]=1 +Notes_Wet_Rotor_Rear_End_Winding_[End]= +Calc/Input_h[Wet_Rotor]_Front_Endcap=Calc_h_conv +Input_Value_h[Wet_Rotor]_Front_Endcap=10 +Adjustment_h[Wet_Rotor]_Front_Endcap=1 +Velocity_Multiplier_h[Wet_Rotor]_Front_Endcap=1 +Notes_Wet_Rotor_Front_Endcap= +Calc/Input_h[Wet_Rotor]_Rear_Endcap=Calc_h_conv +Input_Value_h[Wet_Rotor]_Rear_Endcap=10 +Adjustment_h[Wet_Rotor]_Rear_Endcap=1 +Velocity_Multiplier_h[Wet_Rotor]_Rear_Endcap=1 +Notes_Wet_Rotor_Rear_Endcap= +Calc/Input_h[Wet_Rotor]_Coil_Divider=Calc_h_conv +Input_Value_h[Wet_Rotor]_Coil_Divider=10 +Adjustment_h[Wet_Rotor]_Coil_Divider=1 +Velocity_Multiplier_h[Wet_Rotor]_Coil_Divider=1 +Notes_Wet_Rotor_Coil_Divider= +Calc/Input_h[Wet_Rotor]_Slot_Wedge=Calc_h_conv +Input_Value_h[Wet_Rotor]_Slot_Wedge=10 +Adjustment_h[Wet_Rotor]_Slot_Wedge=1 +Velocity_Multiplier_h[Wet_Rotor]_Slot_Wedge=1 +Notes_Wet_Rotor_Slot_Wedge= +Wet_Rotor_Flow_Path=Wet_Rotor_Front_Inlet +Wet_Rotor_Inlet_Outlet_Position_-_Front=Axial_Inlet_Outlet +Wet_Rotor_Inlet_Outlet_Position_-_Rear=Axial_Inlet_Outlet +Wet_Rotor_Shaft_Hole_Cooling=Not_Included +WetRotor_Duct_Wall_Roughness_CoilDivider=0,0025 +WetRotor_Duct_Wall_Roughness_Wedge=0,0025 +WetRotor_Duct_Wall_Roughness_Airgap=0,0025 +IncludeWetRotorDuctWallFriction=True +Slot_Wedge_Fluid_Flow=False +Coil_Divider_Fluid_Flow=False +Flow_Adjust_Gap=1 +Flow_Adjust_Slot_Wedge=1 +Flow_Adjust_Coil_Divider=1 +OnlyActiveSectionFluidFlow=False +WetRotorFluidTemperature=0 +Wet_Rotor_Inlet_Temp=40 +Wet_Rotor_Inlet_Temperature=40 +Wet_Rotor_Fluid_Volume_Flow_Rate=6E-6 +Wet_Rotor_Axial_Airgap_Velocity_Multiplier=1 +Axial_Velocity_Multiplier_-_Airgap=1 +Wet_Rotor_Axial_EW_Shaft_F_Velocity_Multiplier=1 +Axial_Velocity_Multiplier_-_Ewdg-Shaft[F]=1 +Wet_Rotor_Axial_EW_Shaft_R_Velocity_Multiplier=1 +Axial_Velocity_Multiplier_-_Ewdg-Shaft[R]=1 +Wet_Rotor_Axial_Coil_Divider_Velocity_Multiplier=1 +Axial_Velocity_Multiplier_-_Coil_Divider=1 +Wet_Rotor_Axial_Slot_Wedge_Velocity_Multiplier=1 +Axial_Velocity_Multiplier_-_Slot_Wedge=1 +Calc_Input_h_Wet_Rotor_Stator_Bore=0 +h_Wet_Rotor_Stator_Bore_Input=10 +Input_Value_h[Wet_Rotor]_Stator_Bore=10 +h_Wet_Rotor_Stator_Bore_Adjust=1 +Adjustment_h[Wet_Rotor]_Stator_Bore=1 +Velocity_Wet_Rotor_Stator_Bore_Multiplier=1 +Velocity_Multiplier_h[Wet_Rotor]_Stator_Bore=1 +Wet_Rotor_Stator_Bore_Notes= +Calc_Input_h_Wet_Rotor_Rotor_Surface=0 +h_Wet_Rotor_Rotor_Surface_Input=10 +Input_Value_h[Wet_Rotor]_Rotor_Surface=10 +h_Wet_Rotor_Rotor_Surface_Adjust=1 +Adjustment_h[Wet_Rotor]_Rotor_Surface=1 +Velocity_Wet_Rotor_Rotor_Surface_Multiplier=1 +Velocity_Multiplier_h[Wet_Rotor]_Rotor_Surface=1 +Wet_Rotor_Rotor_Surface_Notes= +Calc/Input_H[Wet_Rotor]_Stator_Bore=Calc_h_conv +Calc/Input_H[Wet_Rotor]_Rotor_Surface=Calc_h_conv + +[Water_Jacket_Data] +WJ_Active_Cooling_Only=False +WJ_Fluid_Flow_Direction=Front_Rear +WJ_Fluid_Inlet_Temperature=40 +WJ_Fluid_Thermal_Conductivity=0,125 +WJ_Fluid_Density=1000 +WJ_Fluid_Specific_Heat=1880 +WJ_Fluid_Kinematic_Viscosity=1,1E-5 +Housing_Water_Jacket_Fluid_Name=Fixed values +Number_of_Housing_Water_Jacket_Fluid_Conductivity_Values=0 +Number_of_Housing_Water_Jacket_Fluid_Specific_Heat_Values=0 +Number_of_Housing_Water_Jacket_Fluid_Density_Values=0 +Number_of_Housing_Water_Jacket_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Housing_Water_Jacket_Fluid_Volumetric_Expansion_Values=0 +Calc/Input_h[WJ]_Front_Housing=Calc_h_conv +Input_Value_h[WJ]_Front_Housing=10 +Adjustment_h[WJ]_Front_Housing=1 +Velocity_Multiplier_h[WJ]_Front_Housing=1 +Notes_WJ_Front_Housing= +Calc/Input_h[WJ]_Rear_Housing=Calc_h_conv +Input_Value_h[WJ]_Rear_Housing=10 +Adjustment_h[WJ]_Rear_Housing=1 +Velocity_Multiplier_h[WJ]_Rear_Housing=1 +Notes_WJ_Rear_Housing= +Calc/Input_h[WJ]_Front_Endcap=Calc_h_conv +Input_Value_h[WJ]_Front_Endcap=10 +Adjustment_h[WJ]_Front_Endcap=1 +Velocity_Multiplier_h[WJ]_Front_Endcap=1 +Notes_WJ_Front_Endcap= +Calc/Input_h[WJ]_Rear_Endcap=Calc_h_conv +Input_Value_h[WJ]_Rear_Endcap=10 +Adjustment_h[WJ]_Rear_Endcap=1 +Velocity_Multiplier_h[WJ]_Rear_Endcap=1 +Notes_WJ_Rear_Endcap= +Notes_WJ_Fluid_Flow_Front_Housing= +Notes_WJ_Fluid_Flow_Rear_Housing= +WJ_Duct_Wall_Roughness_Active=0,0025 +WJ_Duct_Wall_Roughness_Front=0,0025 +WJ_Duct_Wall_Roughness_Rear=0,0025 +IncludeWJDuctWallFriction=True +HousingWJ_Friction_k_Adjustment_L1_F=1 +HousingWJ_h_Input_L1_F=0 +HousingWJ_h_Adjust_L1_F=1 +HousingWJ_Velocity_Multiplier_L1_F=1 +HousingWJ_FlowNotes_L1_F= +HousingWJ_HeatTransferNotes_L1_F= +HousingWJ_Friction_k_Adjustment_L2_F=1 +HousingWJ_h_Input_L2_F=0 +HousingWJ_h_Adjust_L2_F=1 +HousingWJ_Velocity_Multiplier_L2_F=1 +HousingWJ_FlowNotes_L2_F= +HousingWJ_HeatTransferNotes_L2_F= +HousingWJ_Friction_k_Adjustment_L3_F=1 +HousingWJ_h_Input_L3_F=0 +HousingWJ_h_Adjust_L3_F=1 +HousingWJ_Velocity_Multiplier_L3_F=1 +HousingWJ_FlowNotes_L3_F= +HousingWJ_HeatTransferNotes_L3_F= +HousingWJ_Friction_k_Adjustment_L4_F=1 +HousingWJ_h_Input_L4_F=0 +HousingWJ_h_Adjust_L4_F=1 +HousingWJ_Velocity_Multiplier_L4_F=1 +HousingWJ_FlowNotes_L4_F= +HousingWJ_HeatTransferNotes_L4_F= +HousingWJ_Friction_k_Adjustment_L1_R=1 +HousingWJ_h_Input_L1_R=0 +HousingWJ_h_Adjust_L1_R=1 +HousingWJ_Velocity_Multiplier_L1_R=1 +HousingWJ_FlowNotes_L1_R= +HousingWJ_HeatTransferNotes_L1_R= +HousingWJ_Friction_k_Adjustment_L2_R=1 +HousingWJ_h_Input_L2_R=0 +HousingWJ_h_Adjust_L2_R=1 +HousingWJ_Velocity_Multiplier_L2_R=1 +HousingWJ_FlowNotes_L2_R= +HousingWJ_HeatTransferNotes_L2_R= +HousingWJ_Friction_k_Adjustment_L3_R=1 +HousingWJ_h_Input_L3_R=0 +HousingWJ_h_Adjust_L3_R=1 +HousingWJ_Velocity_Multiplier_L3_R=1 +HousingWJ_FlowNotes_L3_R= +HousingWJ_HeatTransferNotes_L3_R= +HousingWJ_Friction_k_Adjustment_L4_R=1 +HousingWJ_h_Input_L4_R=0 +HousingWJ_h_Adjust_L4_R=1 +HousingWJ_Velocity_Multiplier_L4_R=1 +HousingWJ_FlowNotes_L4_R= +HousingWJ_HeatTransferNotes_L4_R= +HousingWJ_Channel_CSArea_A_Adjustment[0]=0 +HousingWJ_Channel_CSArea_A_Adjustment[1]=0 +HousingWJ_Channel_CSArea_A_Adjustment[2]=0 +HousingWJ_Channel_CSArea_A_Adjustment[3]=0 +HousingWJ_Channel_CSArea_A_Adjustment[4]=0 +HousingWJ_Channel_CSArea_A_Adjustment[5]=0 +HousingWJ_Channel_CSArea_A_Adjustment[6]=0 +HousingWJ_Channel_CSArea_A_Adjustment[7]=0 +HousingWJ_Channel_CSArea_A_Adjustment[8]=0 +HousingWJ_Channel_CSArea_F_Adjustment=0 +HousingWJ_Channel_CSArea_R_Adjustment=0 +HousingWJ_Endcap_CSArea_F_Adjustment=0 +HousingWJ_Endcap_CSArea_R_Adjustment=0 +HousingWJ_Channel_Length_A_Adjustment[0]=0 +HousingWJ_Channel_Length_A_Adjustment[1]=0 +HousingWJ_Channel_Length_A_Adjustment[2]=0 +HousingWJ_Channel_Length_A_Adjustment[3]=0 +HousingWJ_Channel_Length_A_Adjustment[4]=0 +HousingWJ_Channel_Length_A_Adjustment[5]=0 +HousingWJ_Channel_Length_A_Adjustment[6]=0 +HousingWJ_Channel_Length_A_Adjustment[7]=0 +HousingWJ_Channel_Length_A_Adjustment[8]=0 +HousingWJ_Channel_Length_F_Adjustment=0 +HousingWJ_Channel_Length_R_Adjustment=0 +HousingWJ_Endcap_Length_F_Calculated=0 +HousingWJ_Endcap_Length_F_Adjustment=0 +HousingWJ_Endcap_Length_F=0 +HousingWJ_Endcap_Length_R_Calculated=0 +HousingWJ_Endcap_Length_R_Adjustment=0 +HousingWJ_Endcap_Length_R=0 +HousingWJ_Endcap_Height_F=0 +HousingWJ_Endcap_Height_R=0 +HousingWJ_Endcap_Width_F=0 +HousingWJ_Endcap_Width_R=0 +HousingWJ_Channel_Length_L1_A_Adjustment[0]=0 +HousingWJ_Channel_Length_L1_A_Adjustment[1]=0 +HousingWJ_Channel_Length_L1_A_Adjustment[2]=0 +HousingWJ_Channel_Length_L1_A_Adjustment[3]=0 +HousingWJ_Channel_Length_L1_A_Adjustment[4]=0 +HousingWJ_Channel_Length_L1_A_Adjustment[5]=0 +HousingWJ_Channel_Length_L1_A_Adjustment[6]=0 +HousingWJ_Channel_Length_L1_A_Adjustment[7]=0 +HousingWJ_Channel_Length_L1_A_Adjustment[8]=0 +HousingWJ_Channel_Length_L2_A_Adjustment[0]=0 +HousingWJ_Channel_Length_L2_A_Adjustment[1]=0 +HousingWJ_Channel_Length_L2_A_Adjustment[2]=0 +HousingWJ_Channel_Length_L2_A_Adjustment[3]=0 +HousingWJ_Channel_Length_L2_A_Adjustment[4]=0 +HousingWJ_Channel_Length_L2_A_Adjustment[5]=0 +HousingWJ_Channel_Length_L2_A_Adjustment[6]=0 +HousingWJ_Channel_Length_L2_A_Adjustment[7]=0 +HousingWJ_Channel_Length_L2_A_Adjustment[8]=0 +HousingWJ_Channel_Length_L3_A_Adjustment[0]=0 +HousingWJ_Channel_Length_L3_A_Adjustment[1]=0 +HousingWJ_Channel_Length_L3_A_Adjustment[2]=0 +HousingWJ_Channel_Length_L3_A_Adjustment[3]=0 +HousingWJ_Channel_Length_L3_A_Adjustment[4]=0 +HousingWJ_Channel_Length_L3_A_Adjustment[5]=0 +HousingWJ_Channel_Length_L3_A_Adjustment[6]=0 +HousingWJ_Channel_Length_L3_A_Adjustment[7]=0 +HousingWJ_Channel_Length_L3_A_Adjustment[8]=0 +HousingWJ_Channel_Length_L4_A_Adjustment[0]=0 +HousingWJ_Channel_Length_L4_A_Adjustment[1]=0 +HousingWJ_Channel_Length_L4_A_Adjustment[2]=0 +HousingWJ_Channel_Length_L4_A_Adjustment[3]=0 +HousingWJ_Channel_Length_L4_A_Adjustment[4]=0 +HousingWJ_Channel_Length_L4_A_Adjustment[5]=0 +HousingWJ_Channel_Length_L4_A_Adjustment[6]=0 +HousingWJ_Channel_Length_L4_A_Adjustment[7]=0 +HousingWJ_Channel_Length_L4_A_Adjustment[8]=0 +HousingWJ_Channel_Length_L1_F_Adjustment=0 +HousingWJ_Channel_Length_L2_F_Adjustment=0 +HousingWJ_Channel_Length_L3_F_Adjustment=0 +HousingWJ_Channel_Length_L4_F_Adjustment=0 +HousingWJ_Channel_Length_L1_R_Adjustment=0 +HousingWJ_Channel_Length_L2_R_Adjustment=0 +HousingWJ_Channel_Length_L3_R_Adjustment=0 +HousingWJ_Channel_Length_L4_R_Adjustment=0 +HousingWJ_Channel_CSArea_L1_A_Adjustment[0]=0 +HousingWJ_Channel_CSArea_L1_A_Adjustment[1]=0 +HousingWJ_Channel_CSArea_L1_A_Adjustment[2]=0 +HousingWJ_Channel_CSArea_L1_A_Adjustment[3]=0 +HousingWJ_Channel_CSArea_L1_A_Adjustment[4]=0 +HousingWJ_Channel_CSArea_L1_A_Adjustment[5]=0 +HousingWJ_Channel_CSArea_L1_A_Adjustment[6]=0 +HousingWJ_Channel_CSArea_L1_A_Adjustment[7]=0 +HousingWJ_Channel_CSArea_L1_A_Adjustment[8]=0 +HousingWJ_Channel_CSArea_L2_A_Adjustment[0]=0 +HousingWJ_Channel_CSArea_L2_A_Adjustment[1]=0 +HousingWJ_Channel_CSArea_L2_A_Adjustment[2]=0 +HousingWJ_Channel_CSArea_L2_A_Adjustment[3]=0 +HousingWJ_Channel_CSArea_L2_A_Adjustment[4]=0 +HousingWJ_Channel_CSArea_L2_A_Adjustment[5]=0 +HousingWJ_Channel_CSArea_L2_A_Adjustment[6]=0 +HousingWJ_Channel_CSArea_L2_A_Adjustment[7]=0 +HousingWJ_Channel_CSArea_L2_A_Adjustment[8]=0 +HousingWJ_Channel_CSArea_L3_A_Adjustment[0]=0 +HousingWJ_Channel_CSArea_L3_A_Adjustment[1]=0 +HousingWJ_Channel_CSArea_L3_A_Adjustment[2]=0 +HousingWJ_Channel_CSArea_L3_A_Adjustment[3]=0 +HousingWJ_Channel_CSArea_L3_A_Adjustment[4]=0 +HousingWJ_Channel_CSArea_L3_A_Adjustment[5]=0 +HousingWJ_Channel_CSArea_L3_A_Adjustment[6]=0 +HousingWJ_Channel_CSArea_L3_A_Adjustment[7]=0 +HousingWJ_Channel_CSArea_L3_A_Adjustment[8]=0 +HousingWJ_Channel_CSArea_L4_A_Adjustment[0]=0 +HousingWJ_Channel_CSArea_L4_A_Adjustment[1]=0 +HousingWJ_Channel_CSArea_L4_A_Adjustment[2]=0 +HousingWJ_Channel_CSArea_L4_A_Adjustment[3]=0 +HousingWJ_Channel_CSArea_L4_A_Adjustment[4]=0 +HousingWJ_Channel_CSArea_L4_A_Adjustment[5]=0 +HousingWJ_Channel_CSArea_L4_A_Adjustment[6]=0 +HousingWJ_Channel_CSArea_L4_A_Adjustment[7]=0 +HousingWJ_Channel_CSArea_L4_A_Adjustment[8]=0 +HousingWJ_Channel_CSArea_L1_F_Adjustment=0 +HousingWJ_Channel_CSArea_L2_F_Adjustment=0 +HousingWJ_Channel_CSArea_L3_F_Adjustment=0 +HousingWJ_Channel_CSArea_L4_F_Adjustment=0 +HousingWJ_Channel_CSArea_L1_R_Adjustment=0 +HousingWJ_Channel_CSArea_L2_R_Adjustment=0 +HousingWJ_Channel_CSArea_L3_R_Adjustment=0 +HousingWJ_Channel_CSArea_L4_R_Adjustment=0 +HousingWJ_Wall_Thickness=0 +HousingWJNonSpiralDucts=False +HousingWJEndcapDuctType=0 +HousingWJ_Fan_Definition=0 +HousingWJ_Shaft_Speed=3000 +WJ_Fluid_Volume_Flow_Rate=6E-6 +HousingWJ_FlowRate_Endcap_F=6E-6 +HousingWJ_FlowRate_Endcap_R=6E-6 +HousingWJ_Inlet_Temp_Endcap_F=40 +HousingWJ_Inlet_Temp_Endcap_R=40 +HousingWJ_FlowNotes_A[0]= +HousingWJ_FlowNotes_A[1]= +HousingWJ_FlowNotes_A[2]= +HousingWJ_FlowNotes_A[3]= +HousingWJ_FlowNotes_A[4]= +HousingWJ_FlowNotes_A[5]= +HousingWJ_FlowNotes_A[6]= +HousingWJ_FlowNotes_A[7]= +HousingWJ_FlowNotes_A[8]= +HousingWJ_VelocityMult_A[0]=1 +HousingWJ_VelocityMult_A[1]=1 +HousingWJ_VelocityMult_A[2]=1 +HousingWJ_VelocityMult_A[3]=1 +HousingWJ_VelocityMult_A[4]=1 +HousingWJ_VelocityMult_A[5]=1 +HousingWJ_VelocityMult_A[6]=1 +HousingWJ_VelocityMult_A[7]=1 +HousingWJ_VelocityMult_A[8]=1 +HousingWJ_CalcInputH_A[0]=0 +HousingWJ_CalcInputH_A[1]=0 +HousingWJ_CalcInputH_A[2]=0 +HousingWJ_CalcInputH_A[3]=0 +HousingWJ_CalcInputH_A[4]=0 +HousingWJ_CalcInputH_A[5]=0 +HousingWJ_CalcInputH_A[6]=0 +HousingWJ_CalcInputH_A[7]=0 +HousingWJ_CalcInputH_A[8]=0 +HousingWJ_InputH_A[0]=10 +HousingWJ_InputH_A[1]=10 +HousingWJ_InputH_A[2]=10 +HousingWJ_InputH_A[3]=10 +HousingWJ_InputH_A[4]=10 +HousingWJ_InputH_A[5]=10 +HousingWJ_InputH_A[6]=10 +HousingWJ_InputH_A[7]=10 +HousingWJ_InputH_A[8]=10 +HousingWJ_AdjustH_A[0]=1 +HousingWJ_AdjustH_A[1]=1 +HousingWJ_AdjustH_A[2]=1 +HousingWJ_AdjustH_A[3]=1 +HousingWJ_AdjustH_A[4]=1 +HousingWJ_AdjustH_A[5]=1 +HousingWJ_AdjustH_A[6]=1 +HousingWJ_AdjustH_A[7]=1 +HousingWJ_AdjustH_A[8]=1 +HousingWJ_Notes_A[0]= +HousingWJ_Notes_A[1]= +HousingWJ_Notes_A[2]= +HousingWJ_Notes_A[3]= +HousingWJ_Notes_A[4]= +HousingWJ_Notes_A[5]= +HousingWJ_Notes_A[6]= +HousingWJ_Notes_A[7]= +HousingWJ_Notes_A[8]= +HousingWJ_Channel_Correlation_A[0]=0 +HousingWJ_Channel_Correlation_A[1]=0 +HousingWJ_Channel_Correlation_A[2]=0 +HousingWJ_Channel_Correlation_A[3]=0 +HousingWJ_Channel_Correlation_A[4]=0 +HousingWJ_Channel_Correlation_A[5]=0 +HousingWJ_Channel_Correlation_A[6]=0 +HousingWJ_Channel_Correlation_A[7]=0 +HousingWJ_Channel_Correlation_A[8]=0 +HousingWJ_CalcInputH_L1_A[0]=0 +HousingWJ_CalcInputH_L1_A[1]=0 +HousingWJ_CalcInputH_L1_A[2]=0 +HousingWJ_CalcInputH_L1_A[3]=0 +HousingWJ_CalcInputH_L1_A[4]=0 +HousingWJ_CalcInputH_L1_A[5]=0 +HousingWJ_CalcInputH_L1_A[6]=0 +HousingWJ_CalcInputH_L1_A[7]=0 +HousingWJ_CalcInputH_L1_A[8]=0 +HousingWJ_CalcInputH_L2_A[0]=0 +HousingWJ_CalcInputH_L2_A[1]=0 +HousingWJ_CalcInputH_L2_A[2]=0 +HousingWJ_CalcInputH_L2_A[3]=0 +HousingWJ_CalcInputH_L2_A[4]=0 +HousingWJ_CalcInputH_L2_A[5]=0 +HousingWJ_CalcInputH_L2_A[6]=0 +HousingWJ_CalcInputH_L2_A[7]=0 +HousingWJ_CalcInputH_L2_A[8]=0 +HousingWJ_CalcInputH_L3_A[0]=0 +HousingWJ_CalcInputH_L3_A[1]=0 +HousingWJ_CalcInputH_L3_A[2]=0 +HousingWJ_CalcInputH_L3_A[3]=0 +HousingWJ_CalcInputH_L3_A[4]=0 +HousingWJ_CalcInputH_L3_A[5]=0 +HousingWJ_CalcInputH_L3_A[6]=0 +HousingWJ_CalcInputH_L3_A[7]=0 +HousingWJ_CalcInputH_L3_A[8]=0 +HousingWJ_CalcInputH_L4_A[0]=0 +HousingWJ_CalcInputH_L4_A[1]=0 +HousingWJ_CalcInputH_L4_A[2]=0 +HousingWJ_CalcInputH_L4_A[3]=0 +HousingWJ_CalcInputH_L4_A[4]=0 +HousingWJ_CalcInputH_L4_A[5]=0 +HousingWJ_CalcInputH_L4_A[6]=0 +HousingWJ_CalcInputH_L4_A[7]=0 +HousingWJ_CalcInputH_L4_A[8]=0 +HousingWJ_InputH_L1_A[0]=10 +HousingWJ_InputH_L1_A[1]=10 +HousingWJ_InputH_L1_A[2]=10 +HousingWJ_InputH_L1_A[3]=10 +HousingWJ_InputH_L1_A[4]=10 +HousingWJ_InputH_L1_A[5]=10 +HousingWJ_InputH_L1_A[6]=10 +HousingWJ_InputH_L1_A[7]=10 +HousingWJ_InputH_L1_A[8]=10 +HousingWJ_InputH_L2_A[0]=10 +HousingWJ_InputH_L2_A[1]=10 +HousingWJ_InputH_L2_A[2]=10 +HousingWJ_InputH_L2_A[3]=10 +HousingWJ_InputH_L2_A[4]=10 +HousingWJ_InputH_L2_A[5]=10 +HousingWJ_InputH_L2_A[6]=10 +HousingWJ_InputH_L2_A[7]=10 +HousingWJ_InputH_L2_A[8]=10 +HousingWJ_InputH_L3_A[0]=10 +HousingWJ_InputH_L3_A[1]=10 +HousingWJ_InputH_L3_A[2]=10 +HousingWJ_InputH_L3_A[3]=10 +HousingWJ_InputH_L3_A[4]=10 +HousingWJ_InputH_L3_A[5]=10 +HousingWJ_InputH_L3_A[6]=10 +HousingWJ_InputH_L3_A[7]=10 +HousingWJ_InputH_L3_A[8]=10 +HousingWJ_InputH_L4_A[0]=10 +HousingWJ_InputH_L4_A[1]=10 +HousingWJ_InputH_L4_A[2]=10 +HousingWJ_InputH_L4_A[3]=10 +HousingWJ_InputH_L4_A[4]=10 +HousingWJ_InputH_L4_A[5]=10 +HousingWJ_InputH_L4_A[6]=10 +HousingWJ_InputH_L4_A[7]=10 +HousingWJ_InputH_L4_A[8]=10 +HousingWJ_AdjustH_L1_A[0]=1 +HousingWJ_AdjustH_L1_A[1]=1 +HousingWJ_AdjustH_L1_A[2]=1 +HousingWJ_AdjustH_L1_A[3]=1 +HousingWJ_AdjustH_L1_A[4]=1 +HousingWJ_AdjustH_L1_A[5]=1 +HousingWJ_AdjustH_L1_A[6]=1 +HousingWJ_AdjustH_L1_A[7]=1 +HousingWJ_AdjustH_L1_A[8]=1 +HousingWJ_AdjustH_L2_A[0]=1 +HousingWJ_AdjustH_L2_A[1]=1 +HousingWJ_AdjustH_L2_A[2]=1 +HousingWJ_AdjustH_L2_A[3]=1 +HousingWJ_AdjustH_L2_A[4]=1 +HousingWJ_AdjustH_L2_A[5]=1 +HousingWJ_AdjustH_L2_A[6]=1 +HousingWJ_AdjustH_L2_A[7]=1 +HousingWJ_AdjustH_L2_A[8]=1 +HousingWJ_AdjustH_L3_A[0]=1 +HousingWJ_AdjustH_L3_A[1]=1 +HousingWJ_AdjustH_L3_A[2]=1 +HousingWJ_AdjustH_L3_A[3]=1 +HousingWJ_AdjustH_L3_A[4]=1 +HousingWJ_AdjustH_L3_A[5]=1 +HousingWJ_AdjustH_L3_A[6]=1 +HousingWJ_AdjustH_L3_A[7]=1 +HousingWJ_AdjustH_L3_A[8]=1 +HousingWJ_AdjustH_L4_A[0]=1 +HousingWJ_AdjustH_L4_A[1]=1 +HousingWJ_AdjustH_L4_A[2]=1 +HousingWJ_AdjustH_L4_A[3]=1 +HousingWJ_AdjustH_L4_A[4]=1 +HousingWJ_AdjustH_L4_A[5]=1 +HousingWJ_AdjustH_L4_A[6]=1 +HousingWJ_AdjustH_L4_A[7]=1 +HousingWJ_AdjustH_L4_A[8]=1 +HousingWJ_Channel_Correlation_L1_A[0]=0 +HousingWJ_Channel_Correlation_L1_A[1]=0 +HousingWJ_Channel_Correlation_L1_A[2]=0 +HousingWJ_Channel_Correlation_L1_A[3]=0 +HousingWJ_Channel_Correlation_L1_A[4]=0 +HousingWJ_Channel_Correlation_L1_A[5]=0 +HousingWJ_Channel_Correlation_L1_A[6]=0 +HousingWJ_Channel_Correlation_L1_A[7]=0 +HousingWJ_Channel_Correlation_L1_A[8]=0 +HousingWJ_Channel_Correlation_L2_A[0]=0 +HousingWJ_Channel_Correlation_L2_A[1]=0 +HousingWJ_Channel_Correlation_L2_A[2]=0 +HousingWJ_Channel_Correlation_L2_A[3]=0 +HousingWJ_Channel_Correlation_L2_A[4]=0 +HousingWJ_Channel_Correlation_L2_A[5]=0 +HousingWJ_Channel_Correlation_L2_A[6]=0 +HousingWJ_Channel_Correlation_L2_A[7]=0 +HousingWJ_Channel_Correlation_L2_A[8]=0 +HousingWJ_Channel_Correlation_L3_A[0]=0 +HousingWJ_Channel_Correlation_L3_A[1]=0 +HousingWJ_Channel_Correlation_L3_A[2]=0 +HousingWJ_Channel_Correlation_L3_A[3]=0 +HousingWJ_Channel_Correlation_L3_A[4]=0 +HousingWJ_Channel_Correlation_L3_A[5]=0 +HousingWJ_Channel_Correlation_L3_A[6]=0 +HousingWJ_Channel_Correlation_L3_A[7]=0 +HousingWJ_Channel_Correlation_L3_A[8]=0 +HousingWJ_Channel_Correlation_L4_A[0]=0 +HousingWJ_Channel_Correlation_L4_A[1]=0 +HousingWJ_Channel_Correlation_L4_A[2]=0 +HousingWJ_Channel_Correlation_L4_A[3]=0 +HousingWJ_Channel_Correlation_L4_A[4]=0 +HousingWJ_Channel_Correlation_L4_A[5]=0 +HousingWJ_Channel_Correlation_L4_A[6]=0 +HousingWJ_Channel_Correlation_L4_A[7]=0 +HousingWJ_Channel_Correlation_L4_A[8]=0 +HousingWJ_Friction_k_Adjustment_L1_A[0]=1 +HousingWJ_Friction_k_Adjustment_L1_A[1]=1 +HousingWJ_Friction_k_Adjustment_L1_A[2]=1 +HousingWJ_Friction_k_Adjustment_L1_A[3]=1 +HousingWJ_Friction_k_Adjustment_L1_A[4]=1 +HousingWJ_Friction_k_Adjustment_L1_A[5]=1 +HousingWJ_Friction_k_Adjustment_L1_A[6]=1 +HousingWJ_Friction_k_Adjustment_L1_A[7]=1 +HousingWJ_Friction_k_Adjustment_L1_A[8]=1 +HousingWJ_h_Input_L1_A[0]=0 +HousingWJ_h_Input_L1_A[1]=0 +HousingWJ_h_Input_L1_A[2]=0 +HousingWJ_h_Input_L1_A[3]=0 +HousingWJ_h_Input_L1_A[4]=0 +HousingWJ_h_Input_L1_A[5]=0 +HousingWJ_h_Input_L1_A[6]=0 +HousingWJ_h_Input_L1_A[7]=0 +HousingWJ_h_Input_L1_A[8]=0 +HousingWJ_h_Adjust_L1_A[0]=1 +HousingWJ_h_Adjust_L1_A[1]=1 +HousingWJ_h_Adjust_L1_A[2]=1 +HousingWJ_h_Adjust_L1_A[3]=1 +HousingWJ_h_Adjust_L1_A[4]=1 +HousingWJ_h_Adjust_L1_A[5]=1 +HousingWJ_h_Adjust_L1_A[6]=1 +HousingWJ_h_Adjust_L1_A[7]=1 +HousingWJ_h_Adjust_L1_A[8]=1 +HousingWJ_Velocity_Multiplier_L1_A[0]=1 +HousingWJ_Velocity_Multiplier_L1_A_[Active][0]=1 +HousingWJ_Velocity_Multiplier_L1_A[1]=1 +HousingWJ_Velocity_Multiplier_L1_A_[Active][1]=1 +HousingWJ_Velocity_Multiplier_L1_A[2]=1 +HousingWJ_Velocity_Multiplier_L1_A_[Active][2]=1 +HousingWJ_Velocity_Multiplier_L1_A[3]=1 +HousingWJ_Velocity_Multiplier_L1_A_[Active][3]=1 +HousingWJ_Velocity_Multiplier_L1_A[4]=1 +HousingWJ_Velocity_Multiplier_L1_A_[Active][4]=1 +HousingWJ_Velocity_Multiplier_L1_A[5]=1 +HousingWJ_Velocity_Multiplier_L1_A_[Active][5]=1 +HousingWJ_Velocity_Multiplier_L1_A[6]=1 +HousingWJ_Velocity_Multiplier_L1_A_[Active][6]=1 +HousingWJ_Velocity_Multiplier_L1_A[7]=1 +HousingWJ_Velocity_Multiplier_L1_A_[Active][7]=1 +HousingWJ_Velocity_Multiplier_L1_A[8]=1 +HousingWJ_Velocity_Multiplier_L1_A_[Active][8]=1 +HousingWJ_FlowNotes_L1_A[0]= +HousingWJ_FlowNotes_L1_A[1]= +HousingWJ_FlowNotes_L1_A[2]= +HousingWJ_FlowNotes_L1_A[3]= +HousingWJ_FlowNotes_L1_A[4]= +HousingWJ_FlowNotes_L1_A[5]= +HousingWJ_FlowNotes_L1_A[6]= +HousingWJ_FlowNotes_L1_A[7]= +HousingWJ_FlowNotes_L1_A[8]= +HousingWJ_HeatTransferNotes_L1_A[0]= +HousingWJ_HeatTransferNotes_L1_A[1]= +HousingWJ_HeatTransferNotes_L1_A[2]= +HousingWJ_HeatTransferNotes_L1_A[3]= +HousingWJ_HeatTransferNotes_L1_A[4]= +HousingWJ_HeatTransferNotes_L1_A[5]= +HousingWJ_HeatTransferNotes_L1_A[6]= +HousingWJ_HeatTransferNotes_L1_A[7]= +HousingWJ_HeatTransferNotes_L1_A[8]= +HousingWJ_Friction_k_Adjustment_L2_A[0]=1 +HousingWJ_Friction_k_Adjustment_L2_A[1]=1 +HousingWJ_Friction_k_Adjustment_L2_A[2]=1 +HousingWJ_Friction_k_Adjustment_L2_A[3]=1 +HousingWJ_Friction_k_Adjustment_L2_A[4]=1 +HousingWJ_Friction_k_Adjustment_L2_A[5]=1 +HousingWJ_Friction_k_Adjustment_L2_A[6]=1 +HousingWJ_Friction_k_Adjustment_L2_A[7]=1 +HousingWJ_Friction_k_Adjustment_L2_A[8]=1 +HousingWJ_h_Input_L2_A[0]=0 +HousingWJ_h_Input_L2_A[1]=0 +HousingWJ_h_Input_L2_A[2]=0 +HousingWJ_h_Input_L2_A[3]=0 +HousingWJ_h_Input_L2_A[4]=0 +HousingWJ_h_Input_L2_A[5]=0 +HousingWJ_h_Input_L2_A[6]=0 +HousingWJ_h_Input_L2_A[7]=0 +HousingWJ_h_Input_L2_A[8]=0 +HousingWJ_h_Adjust_L2_A[0]=1 +HousingWJ_h_Adjust_L2_A[1]=1 +HousingWJ_h_Adjust_L2_A[2]=1 +HousingWJ_h_Adjust_L2_A[3]=1 +HousingWJ_h_Adjust_L2_A[4]=1 +HousingWJ_h_Adjust_L2_A[5]=1 +HousingWJ_h_Adjust_L2_A[6]=1 +HousingWJ_h_Adjust_L2_A[7]=1 +HousingWJ_h_Adjust_L2_A[8]=1 +HousingWJ_Velocity_Multiplier_L2_A[0]=1 +HousingWJ_Velocity_Multiplier_L2_A[1]=1 +HousingWJ_Velocity_Multiplier_L2_A[2]=1 +HousingWJ_Velocity_Multiplier_L2_A[3]=1 +HousingWJ_Velocity_Multiplier_L2_A[4]=1 +HousingWJ_Velocity_Multiplier_L2_A[5]=1 +HousingWJ_Velocity_Multiplier_L2_A[6]=1 +HousingWJ_Velocity_Multiplier_L2_A[7]=1 +HousingWJ_Velocity_Multiplier_L2_A[8]=1 +HousingWJ_FlowNotes_L2_A[0]= +HousingWJ_FlowNotes_L2_A[1]= +HousingWJ_FlowNotes_L2_A[2]= +HousingWJ_FlowNotes_L2_A[3]= +HousingWJ_FlowNotes_L2_A[4]= +HousingWJ_FlowNotes_L2_A[5]= +HousingWJ_FlowNotes_L2_A[6]= +HousingWJ_FlowNotes_L2_A[7]= +HousingWJ_FlowNotes_L2_A[8]= +HousingWJ_HeatTransferNotes_L2_A[0]= +HousingWJ_HeatTransferNotes_L2_A[1]= +HousingWJ_HeatTransferNotes_L2_A[2]= +HousingWJ_HeatTransferNotes_L2_A[3]= +HousingWJ_HeatTransferNotes_L2_A[4]= +HousingWJ_HeatTransferNotes_L2_A[5]= +HousingWJ_HeatTransferNotes_L2_A[6]= +HousingWJ_HeatTransferNotes_L2_A[7]= +HousingWJ_HeatTransferNotes_L2_A[8]= +HousingWJ_Friction_k_Adjustment_L3_A[0]=1 +HousingWJ_Friction_k_Adjustment_L3_A[1]=1 +HousingWJ_Friction_k_Adjustment_L3_A[2]=1 +HousingWJ_Friction_k_Adjustment_L3_A[3]=1 +HousingWJ_Friction_k_Adjustment_L3_A[4]=1 +HousingWJ_Friction_k_Adjustment_L3_A[5]=1 +HousingWJ_Friction_k_Adjustment_L3_A[6]=1 +HousingWJ_Friction_k_Adjustment_L3_A[7]=1 +HousingWJ_Friction_k_Adjustment_L3_A[8]=1 +HousingWJ_h_Input_L3_A[0]=0 +HousingWJ_h_Input_L3_A[1]=0 +HousingWJ_h_Input_L3_A[2]=0 +HousingWJ_h_Input_L3_A[3]=0 +HousingWJ_h_Input_L3_A[4]=0 +HousingWJ_h_Input_L3_A[5]=0 +HousingWJ_h_Input_L3_A[6]=0 +HousingWJ_h_Input_L3_A[7]=0 +HousingWJ_h_Input_L3_A[8]=0 +HousingWJ_h_Adjust_L3_A[0]=1 +HousingWJ_h_Adjust_L3_A[1]=1 +HousingWJ_h_Adjust_L3_A[2]=1 +HousingWJ_h_Adjust_L3_A[3]=1 +HousingWJ_h_Adjust_L3_A[4]=1 +HousingWJ_h_Adjust_L3_A[5]=1 +HousingWJ_h_Adjust_L3_A[6]=1 +HousingWJ_h_Adjust_L3_A[7]=1 +HousingWJ_h_Adjust_L3_A[8]=1 +HousingWJ_Velocity_Multiplier_L3_A[0]=1 +HousingWJ_Velocity_Multiplier_L3_A[1]=1 +HousingWJ_Velocity_Multiplier_L3_A[2]=1 +HousingWJ_Velocity_Multiplier_L3_A[3]=1 +HousingWJ_Velocity_Multiplier_L3_A[4]=1 +HousingWJ_Velocity_Multiplier_L3_A[5]=1 +HousingWJ_Velocity_Multiplier_L3_A[6]=1 +HousingWJ_Velocity_Multiplier_L3_A[7]=1 +HousingWJ_Velocity_Multiplier_L3_A[8]=1 +HousingWJ_FlowNotes_L3_A[0]= +HousingWJ_FlowNotes_L3_A[1]= +HousingWJ_FlowNotes_L3_A[2]= +HousingWJ_FlowNotes_L3_A[3]= +HousingWJ_FlowNotes_L3_A[4]= +HousingWJ_FlowNotes_L3_A[5]= +HousingWJ_FlowNotes_L3_A[6]= +HousingWJ_FlowNotes_L3_A[7]= +HousingWJ_FlowNotes_L3_A[8]= +HousingWJ_HeatTransferNotes_L3_A[0]= +HousingWJ_HeatTransferNotes_L3_A[1]= +HousingWJ_HeatTransferNotes_L3_A[2]= +HousingWJ_HeatTransferNotes_L3_A[3]= +HousingWJ_HeatTransferNotes_L3_A[4]= +HousingWJ_HeatTransferNotes_L3_A[5]= +HousingWJ_HeatTransferNotes_L3_A[6]= +HousingWJ_HeatTransferNotes_L3_A[7]= +HousingWJ_HeatTransferNotes_L3_A[8]= +HousingWJ_Friction_k_Adjustment_L4_A[0]=1 +HousingWJ_Friction_k_Adjustment_L4_A[1]=1 +HousingWJ_Friction_k_Adjustment_L4_A[2]=1 +HousingWJ_Friction_k_Adjustment_L4_A[3]=1 +HousingWJ_Friction_k_Adjustment_L4_A[4]=1 +HousingWJ_Friction_k_Adjustment_L4_A[5]=1 +HousingWJ_Friction_k_Adjustment_L4_A[6]=1 +HousingWJ_Friction_k_Adjustment_L4_A[7]=1 +HousingWJ_Friction_k_Adjustment_L4_A[8]=1 +HousingWJ_h_Input_L4_A[0]=0 +HousingWJ_h_Input_L4_A[1]=0 +HousingWJ_h_Input_L4_A[2]=0 +HousingWJ_h_Input_L4_A[3]=0 +HousingWJ_h_Input_L4_A[4]=0 +HousingWJ_h_Input_L4_A[5]=0 +HousingWJ_h_Input_L4_A[6]=0 +HousingWJ_h_Input_L4_A[7]=0 +HousingWJ_h_Input_L4_A[8]=0 +HousingWJ_h_Adjust_L4_A[0]=1 +HousingWJ_h_Adjust_L4_A[1]=1 +HousingWJ_h_Adjust_L4_A[2]=1 +HousingWJ_h_Adjust_L4_A[3]=1 +HousingWJ_h_Adjust_L4_A[4]=1 +HousingWJ_h_Adjust_L4_A[5]=1 +HousingWJ_h_Adjust_L4_A[6]=1 +HousingWJ_h_Adjust_L4_A[7]=1 +HousingWJ_h_Adjust_L4_A[8]=1 +HousingWJ_Velocity_Multiplier_L4_A[0]=1 +HousingWJ_Velocity_Multiplier_L4_A[1]=1 +HousingWJ_Velocity_Multiplier_L4_A[2]=1 +HousingWJ_Velocity_Multiplier_L4_A[3]=1 +HousingWJ_Velocity_Multiplier_L4_A[4]=1 +HousingWJ_Velocity_Multiplier_L4_A[5]=1 +HousingWJ_Velocity_Multiplier_L4_A[6]=1 +HousingWJ_Velocity_Multiplier_L4_A[7]=1 +HousingWJ_Velocity_Multiplier_L4_A[8]=1 +HousingWJ_FlowNotes_L4_A[0]= +HousingWJ_FlowNotes_L4_A[1]= +HousingWJ_FlowNotes_L4_A[2]= +HousingWJ_FlowNotes_L4_A[3]= +HousingWJ_FlowNotes_L4_A[4]= +HousingWJ_FlowNotes_L4_A[5]= +HousingWJ_FlowNotes_L4_A[6]= +HousingWJ_FlowNotes_L4_A[7]= +HousingWJ_FlowNotes_L4_A[8]= +HousingWJ_HeatTransferNotes_L4_A[0]= +HousingWJ_HeatTransferNotes_L4_A[1]= +HousingWJ_HeatTransferNotes_L4_A[2]= +HousingWJ_HeatTransferNotes_L4_A[3]= +HousingWJ_HeatTransferNotes_L4_A[4]= +HousingWJ_HeatTransferNotes_L4_A[5]= +HousingWJ_HeatTransferNotes_L4_A[6]= +HousingWJ_HeatTransferNotes_L4_A[7]= +HousingWJ_HeatTransferNotes_L4_A[8]= +HousingWJ_Channel_Perimeter_L1_A_Adjustment=0 +HousingWJ_Channel_Perimeter_L2_A_Adjustment=0 +HousingWJ_Channel_Perimeter_L3_A_Adjustment=0 +HousingWJ_Channel_Perimeter_L4_A_Adjustment=0 +HousingWJ_Channel_Perimeter_L1_F_Adjustment=0 +HousingWJ_Channel_Perimeter_L2_F_Adjustment=0 +HousingWJ_Channel_Perimeter_L3_F_Adjustment=0 +HousingWJ_Channel_Perimeter_L4_F_Adjustment=0 +HousingWJ_Channel_Perimeter_L1_R_Adjustment=0 +HousingWJ_Channel_Perimeter_L2_R_Adjustment=0 +HousingWJ_Channel_Perimeter_L3_R_Adjustment=0 +HousingWJ_Channel_Perimeter_L4_R_Adjustment=0 + +[Spiral_Groove_Shaft] +Shaft_Groove_Active_Cooling_Only=True +Shaft_Groove_Fluid_Flow_Direction=Front_Rear +Shaft_Groove_Fluid_Inlet_Temperature=40 +Shaft_Groove_Fluid_Volume_Flow_Rate=6E-6 +Shaft_Groove_Fluid_Thermal_Conductivity=0,125 +Shaft_Groove_Fluid_Density=1000 +Shaft_Groove_Fluid_Specific_Heat=1880 +Shaft_Groove_Fluid_Kinematic_Viscosity=1,1E-5 +Shaft_Spiral_Groove_Fluid_Name=Fixed values +Number_of_Shaft_Spiral_Groove_Fluid_Conductivity_Values=0 +Number_of_Shaft_Spiral_Groove_Fluid_Specific_Heat_Values=0 +Number_of_Shaft_Spiral_Groove_Fluid_Density_Values=0 +Number_of_Shaft_Spiral_Groove_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Shaft_Spiral_Groove_Fluid_Volumetric_Expansion_Values=0 +Calc/Input_h[Shaft_Groove]_-_Front=Calc_h_conv +Input_Value_h[Shaft_Groove]_-_Front=10 +Adjustment_h[Shaft_Groove]_-_Front=1 +Velocity_Multiplier_h[Shaft_Groove]_-_Front=1 +Notes_Shaft_Groove_-_Front= +Calc/Input_h[Shaft_Groove]_-_Active=Calc_h_conv +Input_Value_h[Shaft_Groove]_-_Active=10 +Adjustment_h[Shaft_Groove]_-_Active=1 +Velocity_Multiplier_h[Shaft_Groove]_-_Active=1 +Notes_Shaft_Groove_-_Active= +Calc/Input_h[Shaft_Groove]_-_Rear=Calc_h_conv +Input_Value_h[Shaft_Groove]_-_Rear=10 +Adjustment_h[Shaft_Groove]_-_Rear=1 +Velocity_Multiplier_h[Shaft_Groove]_-_Rear=1 +Notes_Shaft_Groove_-_Rear= +ShaftSG_ShaftHoleCooling=False +ShaftSG_AxleCooling=False +ShaftSpiralGroove_Fluid_Flow_A_Notes= +ShaftSpiralGroove_Fluid_Flow_F_Notes= +ShaftSpiralGroove_Fluid_Flow_R_Notes= +ShaftSpiralGroove_Channel_CSArea_A_Adjustment=0 +ShaftSpiralGroove_Channel_CSArea_F_Adjustment=0 +ShaftSpiralGroove_Channel_CSArea_R_Adjustment=0 +ShaftSpiralGroove_Channel_Length_A_Adjustment=0 +ShaftSpiralGroove_Channel_Length_F_Adjustment=0 +ShaftSpiralGroove_Channel_Length_R_Adjustment=0 +IncludeShaftSpiralGrooveDuctWallFriction=True +ShaftSpiralGroove_Duct_Wall_Roughness_Active=0,0025 +ShaftSpiralGroove_Duct_Wall_Roughness_Front=0,0025 +ShaftSpiralGroove_Duct_Wall_Roughness_Rear=0,0025 +ShaftSpiralGroove_ParallelPathsIndex=0 +ShaftSG_Wall_Thickness=0 + +[Water_Jacket_Rotor] +Rotor_Water_Jacket_Flow_Path=Rotor_Water_Jacket_Front_Inlet +Rotor_WJ_Fluid_Inlet_Temperature=40 +Rotor_WJ_Fluid_Volume_Flow_Rate=6E-6 +Rotor_WJ_Fluid_Thermal_Conductivity=0,125 +Rotor_WJ_Fluid_Density=1000 +Rotor_WJ_Fluid_Specific_Heat=1880 +Rotor_WJ_Fluid_Kinematic_Viscosity=1,1E-5 +Rotor_Water_Jacket_Fluid_Name=Fixed values +Number_of_Rotor_Water_Jacket_Fluid_Conductivity_Values=0 +Number_of_Rotor_Water_Jacket_Fluid_Specific_Heat_Values=0 +Number_of_Rotor_Water_Jacket_Fluid_Density_Values=0 +Number_of_Rotor_Water_Jacket_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Rotor_Water_Jacket_Fluid_Volumetric_Expansion_Values=0 +Calc/Input_h[Rotor_WJ]_-_Front=Calc_h_conv +Input_Value_h[Rotor_WJ]_-_Front=10 +Adjustment_h[Rotor_WJ]_-_Front=1 +Velocity_Multiplier_h[Rotor_WJ]_-_Front=1 +Notes_Rotor_WJ_-_Front= + +[Water_Jacket_Slot] +Slot_WJ_Fluid_Inlet_Temperature=40 +Slot_WJ_Fluid_Volume_Flow_Rate=6E-6 +Slot_WJ_Fluid_Thermal_Conductivity=0,125 +Slot_WJ_Fluid_Density=1000 +Slot_WJ_Fluid_Specific_Heat=1880 +Slot_WJ_Fluid_Kinematic_Viscosity=1,1E-5 +Slot_Water_Jacket_Fluid_Name=Fixed values +Number_of_Slot_Water_Jacket_Fluid_Conductivity_Values=0 +Number_of_Slot_Water_Jacket_Fluid_Specific_Heat_Values=0 +Number_of_Slot_Water_Jacket_Fluid_Density_Values=0 +Number_of_Slot_Water_Jacket_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Slot_Water_Jacket_Fluid_Volumetric_Expansion_Values=0 +Vel_Mult_SlotWJ_Stator_Slot_Bottom=1 +Notes_SlotWJ_Stator_Slot_Bottom= +h_Input_SlotWJ_Stator_Slot_Bottom=0 +h_Adjust_SlotWJ_Stator_Slot_Bottom=1 +Calc_Input_h_SlotWJ_Stator_Slot_Bottom=0 +Vel_Mult_SlotWJ_Stator_Tooth=1 +Notes_SlotWJ_Stator_Tooth= +h_Input_SlotWJ_Stator_Tooth=0 +h_Adjust_SlotWJ_Stator_Tooth=1 +Calc_Input_h_SlotWJ_Stator_Tooth=0 +Vel_Mult_SlotWJ_Conductors=1 +Notes_SlotWJ_Conductors= +h_Input_SlotWJ_Conductors=0 +h_Adjust_SlotWJ_Conductors=1 +Calc_Input_h_SlotWJ_Conductors=0 +Vel_Mult_SlotWJ_Slot_Opening=1 +Notes_SlotWJ_slot_opening= +h_Input_SlotWJ_slot_opening=0 +h_Adjust_SlotWJ_slot_opening=1 +Calc_Input_h_SlotWJ_slot_opening=0 +Vel_Mult_SlotWJ_Slot_centre=1 +Notes_SlotWJ_Slot_centre= +h_Input_SlotWJ_Slot_centre=0 +h_Adjust_SlotWJ_Slot_centre=1 +Calc_Input_h_SlotWJ_Slot_centre=0 +Vel_Mult_SlotWJ_Slot_CentreToBase=1 +Notes_SlotWJ_Slot_CentreToBase= +h_Input_SlotWJ_Slot_CentreToBase=0 +h_Adjust_SlotWJ_Slot_CentreToBase=1 +Calc_Input_h_SlotWJ_Slot_CentreToBase=0 +Vel_Mult_SlotWJ_Slot_CentreToOpening=1 +Notes_SlotWJ_Slot_CentreToOpening= +h_Input_SlotWJ_Slot_CentreToOpening=0 +h_Adjust_SlotWJ_Slot_CentreToOpening=1 +Calc_Input_h_SlotWJ_Slot_CentreToOpening=0 +Vel_Mult_SlotWJ_Slot_Bottom=1 +Notes_SlotWJ_Slot_Bottom= +h_Input_SlotWJ_Slot_Bottom=0 +h_Adjust_SlotWJ_Slot_Bottom=1 +Calc_Input_h_SlotWJ_Slot_Bottom=0 +SlotWJFlowOption=0 +SlotWJFlowDirection=1 +SlotWJDuctWidth_Specification=0 +SlotWJ_SlotBottomDuct_Exists=True +SlotWJ_SlotOpeningDuct_Exists=True +SlotWJ_SlotCentreDuct_Exists=False +IncludeSlotWJDuctWallFriction=True +SlotWJ_Duct_Wall_Roughness=0,0025 +SlotWJ_Duct_Wall_Notes= +SlotWJ_Inlet_Contraction_Notes= +SlotWJ_Outlet_Expansion_Notes= +SlotWJ_Duct_Friction_k_Adjustment=1 +SlotWJ_Inlet_k_Contraction_Adjustment=1 +SlotWJ_Outlet_k_Expansion_Adjustment=1 +Rt_SlotWJ_Insulation_Calc=1 +SlotWJ_Dissipation_Calc=1 +SlotWJ_Conductor_Dissipation_Calc=1 +NumberOfSlotWJCentreDucts=0 + +[Heat_Exchanger] +Heat_Exchanger_Fluid_Name=Fixed values +Number_of_Heat_Exchanger_Fluid_Conductivity_Values=0 +Number_of_Heat_Exchanger_Fluid_Specific_Heat_Values=0 +Number_of_Heat_Exchanger_Fluid_Density_Values=0 +Number_of_Heat_Exchanger_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Heat_Exchanger_Fluid_Volumetric_Expansion_Values=0 +HeatExchanger=False +Vel_Mult_HeatEx_outer=1 +Notes_HeatEx_outer= +h_Input_HeatEx_outer=0 +h_Adjust_HeatEx_outer=1 +Calc_Input_h_HeatEx_outer=0 +Vel_Mult_HeatEx_inner=1 +Notes_HeatEx_inner= +h_Input_HeatEx_inner=0 +h_Adjust_HeatEx_inner=1 +Calc_Input_h_HeatEx_inner=0 +HeatExFlowOption=0 +HeatExOutletCoupling=0 +IncludeHeatExDuctWallFriction=True +HeatEx_Duct_Wall_Roughness=0,0025 +HeatEx_Duct_Wall_Notes= +HeatEx_Inlet_ContExp_Notes= +HeatEx_Outlet_ContExp_Notes= +HeatEx_Duct_Friction_k_Adjustment=1 +HeatEx_Inlet_k_ContExp_Adjustment=1 +HeatEx_Outlet_k_ContExp_Adjustment=1 +HeatEx_Coolant_Inlet_Temp=20 +HeatEx_Volume_Flow_Rate=6E-6 +HeatEx_Fluid_Conductivity=0,61 +HeatEx_Fluid_Density=995,7 +HeatEx_Fluid_Cp=4178 +HeatEx_Fluid_Kinematic_Viscosity=8,02E-7 +HeatEx_Duct_Length=1000 +HeatEx_Duct_Diameter=3 +HeatEx_Wall_Thickness=2 +HeatEx_Insulation_Thickness=0,1 +HeatEx_Duct_Parallel_Paths=1 +HeatEx_Channel_Flow_Area_Outer=1000000 + +[Fluid_Data] +External_Fluid_Name=Air (Motor-CAD model) +Number_of_External_Fluid_Conductivity_Values=0 +Number_of_External_Fluid_Specific_Heat_Values=0 +Number_of_External_Fluid_Density_Values=0 +Number_of_External_Fluid_Kinematic_Viscosity_Values=0 +Number_of_External_Fluid_Volumetric_Expansion_Values=0 +Internal_Fluid_Name=Air (Motor-CAD model) +Number_of_Internal_Fluid_Conductivity_Values=0 +Number_of_Internal_Fluid_Specific_Heat_Values=0 +Number_of_Internal_Fluid_Density_Values=0 +Number_of_Internal_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Internal_Fluid_Volumetric_Expansion_Values=0 +InternalFluid_Conductivity=0,02722807296764 +Internal_Fluid_Conductivity=0,02722807296764 +InternalFluid_Density=1,12741108250936 +Internal_Fluid_Density=1,12741108250936 +InternalFluid_Cp=1006,5583344624 +Internal_Fluid_Cp=1006,5583344624 +InternalFluid_Kinematic_Viscosity=1,68879201391184E-5 +Internal_Fluid_Kinematic_Viscosity=1,68879201391184E-5 +ExternalFluid_Conductivity=0,02722807296764 +External_Fluid_Conductivity=0,02722807296764 +ExternalFluid_Density=1,12741108250936 +External_Fluid_Density=1,12741108250936 +ExternalFluid_Cp=1006,5583344624 +External_Fluid_Cp=1006,5583344624 +ExternalFluid_Kinematic_Viscosity=1,68879201391184E-5 +External_Fluid_Kinematic_Viscosity=1,68879201391184E-5 + +[EWdg_Spray_Cooling] +Spray_Cooling_Fluid_Name=Fixed values +Number_of_Spray_Cooling_Fluid_Conductivity_Values=0 +Number_of_Spray_Cooling_Fluid_Specific_Heat_Values=0 +Number_of_Spray_Cooling_Fluid_Density_Values=0 +Number_of_Spray_Cooling_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Spray_Cooling_Fluid_Volumetric_Expansion_Values=0 +Spray_Radial_from_Housing_[Front])_Fluid_Name=Fixed values +Number_of_Spray_Radial_from_Housing_[Front])_Fluid_Conductivity_Values=0 +Number_of_Spray_Radial_from_Housing_[Front])_Fluid_Specific_Heat_Values=0 +Number_of_Spray_Radial_from_Housing_[Front])_Fluid_Density_Values=0 +Number_of_Spray_Radial_from_Housing_[Front])_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Spray_Radial_from_Housing_[Front])_Fluid_Volumetric_Expansion_Values=0 +Spray_Radial_from_Housing_[Rear])_Fluid_Name=Fixed values +Number_of_Spray_Radial_from_Housing_[Rear])_Fluid_Conductivity_Values=0 +Number_of_Spray_Radial_from_Housing_[Rear])_Fluid_Specific_Heat_Values=0 +Number_of_Spray_Radial_from_Housing_[Rear])_Fluid_Density_Values=0 +Number_of_Spray_Radial_from_Housing_[Rear])_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Spray_Radial_from_Housing_[Rear])_Fluid_Volumetric_Expansion_Values=0 +Spray_Radial_from_Rotor_[Front])_Fluid_Name=Fixed values +Number_of_Spray_Radial_from_Rotor_[Front])_Fluid_Conductivity_Values=0 +Number_of_Spray_Radial_from_Rotor_[Front])_Fluid_Specific_Heat_Values=0 +Number_of_Spray_Radial_from_Rotor_[Front])_Fluid_Density_Values=0 +Number_of_Spray_Radial_from_Rotor_[Front])_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Spray_Radial_from_Rotor_[Front])_Fluid_Volumetric_Expansion_Values=0 +Spray_Radial_from_Rotor_[Rear])_Fluid_Name=Fixed values +Number_of_Spray_Radial_from_Rotor_[Rear])_Fluid_Conductivity_Values=0 +Number_of_Spray_Radial_from_Rotor_[Rear])_Fluid_Specific_Heat_Values=0 +Number_of_Spray_Radial_from_Rotor_[Rear])_Fluid_Density_Values=0 +Number_of_Spray_Radial_from_Rotor_[Rear])_Fluid_Kinematic_Viscosity_Values=0 +Number_of_Spray_Radial_from_Rotor_[Rear])_Fluid_Volumetric_Expansion_Values=0 +Spray_RadialHousing=False +Spray_RadialRotor=False +Spray_AxialEndcap=False +Nozzles_EWdg_Outer_F[0]=0 +NozzleDia_EWdg_Outer_F[0]=0 +SprayFlowRatio_EWdg_Outer_F[0]=1 +InternalFlowRatio_EWdg_Outer_F[0]=0 +NozzleDistance_Adj_EWdg_Outer_F[0]=0 +TargetLength_Adj_EWdg_Outer_F[0]=0 +Velocity_Mult_EWdg_Outer_F[0]=1 +Notes_Flow_EWdg_Outer_F[0]= +Notes_HT_EWdg_Outer_F[0]= +Calc_Input_h_EWdg_Outer_F[0]=0 +h_Input_EWdg_Outer_F[0]=1000 +h_Adjust_EWdg_Outer_F[0]=1 +h_Calc_EWdg_Outer_F[0]=0 +Nozzles_EWdg_Front_F[0]=0 +NozzleDia_EWdg_Front_F[0]=0 +SprayFlowRatio_EWdg_Front_F[0]=1 +InternalFlowRatio_EWdg_Front_F[0]=0 +NozzleDistance_Adj_EWdg_Front_F[0]=0 +TargetLength_Adj_EWdg_Front_F[0]=0 +Velocity_Mult_EWdg_Front_F[0]=1 +Notes_Flow_EWdg_Front_F[0]= +Notes_HT_EWdg_Front_F[0]= +Calc_Input_h_EWdg_Front_F[0]=0 +h_Input_EWdg_Front_F[0]=1000 +h_Adjust_EWdg_Front_F[0]=1 +h_Calc_EWdg_Front_F[0]=0 +Nozzles_EWdg_Inner_F[0]=1 +NozzleDia_EWdg_Inner_F[0]=1 +SprayFlowRatio_EWdg_Inner_F[0]=1 +InternalFlowRatio_EWdg_Inner_F[0]=1 +NozzleDistance_Adj_EWdg_Inner_F[0]=0 +TargetLength_Adj_EWdg_Inner_F[0]=0 +Velocity_Mult_EWdg_Inner_F[0]=1 +Notes_Flow_EWdg_Inner_F[0]= +Notes_HT_EWdg_Inner_F[0]= +Calc_Input_h_EWdg_Inner_F[0]=0 +h_Input_EWdg_Inner_F[0]=1000 +h_Adjust_EWdg_Inner_F[0]=1 +h_Calc_EWdg_Inner_F[0]=0 +Nozzles_EWdg_Rear_F[0]=0 +NozzleDia_EWdg_Rear_F[0]=0 +SprayFlowRatio_EWdg_Rear_F[0]=1 +InternalFlowRatio_EWdg_Rear_F[0]=0 +NozzleDistance_Adj_EWdg_Rear_F[0]=0 +TargetLength_Adj_EWdg_Rear_F[0]=0 +Velocity_Mult_EWdg_Rear_F[0]=1 +Notes_Flow_EWdg_Rear_F[0]= +Notes_HT_EWdg_Rear_F[0]= +Calc_Input_h_EWdg_Rear_F[0]=0 +h_Input_EWdg_Rear_F[0]=1000 +h_Adjust_EWdg_Rear_F[0]=1 +h_Calc_EWdg_Rear_F[0]=0 +Nozzles_RotorPole_F=0 +NozzleDia_RotorPole_F=0 +SprayFlowRatio_RotorPole_F=1 +InternalFlowRatio_RotorPole_F=0,5 +NozzleDistance_Adj_RotorPole_F=0 +TargetLength_Adj_RotorPole_F=0 +Velocity_Mult_RotorPole_F=1 +Notes_Flow_RotorPole_F= +Notes_HT_RotorPole_F= +Calc_Input_h_RotorPole_F=0 +h_Input_RotorPole_F=1000 +h_Adjust_RotorPole_F=1 +h_Calc_RotorPole_F=0 +Nozzles_RotorCore_F=0 +NozzleDia_RotorCore_F=0 +SprayFlowRatio_RotorCore_F=1 +InternalFlowRatio_RotorCore_F=0,5 +NozzleDistance_Adj_RotorCore_F=0 +TargetLength_Adj_RotorCore_F=0 +Velocity_Mult_RotorCore_F=1 +Notes_Flow_RotorCore_F= +Notes_HT_RotorCore_F= +Calc_Input_h_RotorCore_F=0 +h_Input_RotorCore_F=1000 +h_Adjust_RotorCore_F=1 +h_Calc_RotorCore_F=0 +Nozzles_EWdg_Outer_R[0]=0 +NozzleDia_EWdg_Outer_R[0]=0 +SprayFlowRatio_EWdg_Outer_R[0]=1 +InternalFlowRatio_EWdg_Outer_R[0]=0 +NozzleDistance_Adj_EWdg_Outer_R[0]=0 +TargetLength_Adj_EWdg_Outer_R[0]=0 +Velocity_Mult_EWdg_Outer_R[0]=1 +Notes_Flow_EWdg_Outer_R[0]= +Notes_HT_EWdg_Outer_R[0]= +Calc_Input_h_EWdg_Outer_R[0]=0 +h_Input_EWdg_Outer_R[0]=1000 +h_Adjust_EWdg_Outer_R[0]=1 +h_Calc_EWdg_Outer_R[0]=0 +Nozzles_EWdg_Rear_R[0]=0 +NozzleDia_EWdg_Rear_R[0]=0 +SprayFlowRatio_EWdg_Rear_R[0]=1 +InternalFlowRatio_EWdg_Rear_R[0]=0 +NozzleDistance_Adj_EWdg_Rear_R[0]=0 +TargetLength_Adj_EWdg_Rear_R[0]=0 +Velocity_Mult_EWdg_Rear_R[0]=1 +Notes_Flow_EWdg_Rear_R[0]= +Notes_HT_EWdg_Rear_R[0]= +Calc_Input_h_EWdg_Rear_R[0]=0 +h_Input_EWdg_Rear_R[0]=1000 +h_Adjust_EWdg_Rear_R[0]=1 +h_Calc_EWdg_Rear_R[0]=0 +Nozzles_EWdg_Inner_R[0]=1 +NozzleDia_EWdg_Inner_R[0]=1 +SprayFlowRatio_EWdg_Inner_R[0]=1 +InternalFlowRatio_EWdg_Inner_R[0]=1 +NozzleDistance_Adj_EWdg_Inner_R[0]=0 +TargetLength_Adj_EWdg_Inner_R[0]=0 +Velocity_Mult_EWdg_Inner_R[0]=1 +Notes_Flow_EWdg_Inner_R[0]= +Notes_HT_EWdg_Inner_R[0]= +Calc_Input_h_EWdg_Inner_R[0]=0 +h_Input_EWdg_Inner_R[0]=1000 +h_Adjust_EWdg_Inner_R[0]=1 +h_Calc_EWdg_Inner_R[0]=0 +Nozzles_EWdg_Front_R[0]=0 +NozzleDia_EWdg_Front_R[0]=0 +SprayFlowRatio_EWdg_Front_R[0]=1 +InternalFlowRatio_EWdg_Front_R[0]=0 +NozzleDistance_Adj_EWdg_Front_R[0]=0 +TargetLength_Adj_EWdg_Front_R[0]=0 +Velocity_Mult_EWdg_Front_R[0]=1 +Notes_Flow_EWdg_Front_R[0]= +Notes_HT_EWdg_Front_R[0]= +Calc_Input_h_EWdg_Front_R[0]=0 +h_Input_EWdg_Front_R[0]=1000 +h_Adjust_EWdg_Front_R[0]=1 +h_Calc_EWdg_Front_R[0]=0 +Nozzles_RotorPole_R=0 +NozzleDia_RotorPole_R=0 +SprayFlowRatio_RotorPole_R=1 +InternalFlowRatio_RotorPole_R=0,5 +NozzleDistance_Adj_RotorPole_R=0 +TargetLength_Adj_RotorPole_R=0 +Velocity_Mult_RotorPole_R=1 +Notes_Flow_RotorPole_R= +Notes_HT_RotorPole_R= +Calc_Input_h_RotorPole_R=0 +h_Input_RotorPole_R=1000 +h_Adjust_RotorPole_R=1 +h_Calc_RotorPole_R=0 +Nozzles_RotorCore_R=0 +NozzleDia_RotorCore_R=0 +SprayFlowRatio_RotorCore_R=1 +InternalFlowRatio_RotorCore_R=0,5 +NozzleDistance_Adj_RotorCore_R=0 +TargetLength_Adj_RotorCore_R=0 +Velocity_Mult_RotorCore_R=1 +Notes_Flow_RotorCore_R= +Notes_HT_RotorCore_R= +Calc_Input_h_RotorCore_R=0 +h_Input_RotorCore_R=1000 +h_Adjust_RotorCore_R=1 +h_Calc_RotorCore_R=0 +Spray_Area_Mult_EWdg_Outer_F[0]=1 +Spray_Area_Mult_EWdg_Front_F[0]=1 +Spray_Area_Mult_EWdg_Inner_F[0]=1 +Spray_Area_Mult_EWdg_Rear_F[0]=1 +Spray_Area_Mult_RotorPole_F=1 +Area_Mult_RotorPole_F=1 +Spray_Area_Mult_RotorCore_F=1 +Area_Mult_RotorCore_F=1 +Spray_Area_Mult_EWdg_Outer_R[0]=1 +Spray_Area_Mult_EWdg_Rear_R[0]=1 +Spray_Area_Mult_EWdg_Inner_R[0]=1 +Spray_Area_Mult_EWdg_Front_R[0]=1 +Spray_Area_Mult_RotorPole_R=1 +Area_Mult_RotorPole_R=1 +Spray_Area_Mult_RotorCore_R=1 +Area_Mult_RotorCore_R=1 +Spray_Area_Mult_EndcapFluid_F=1 +Area_Mult_EndcapFluid_F=1 +Spray_Area_Mult_EndcapFluid_R=1 +Area_Mult_EndcapFluid_R=1 +h_Calc_Endcap_F=0 +h_Calc_Endcap_R=0 +Spray_Area_Mult_HousingFluid_F=1 +Area_Mult_HousingFluid_F=1 +Spray_Area_Mult_HousingFluid_A=1 +Area_Mult_HousingFluid_A=1 +Spray_Area_Mult_HousingFluid_R=1 +Area_Mult_HousingFluid_R=1 +SprayCoverageProp_EWdg_Outer_F[0]=1 +SprayCoverageProp_EWdg_Front_F[0]=1 +SprayCoverageProp_EWdg_Inner_F[0]=1 +SprayCoverageProp_EWdg_Rear_F[0]=1 +SprayCoverageProp_RotorPole_F=1 +SprayCoverageProp_RotorCore_F=1 +SprayCoverageProp_EWdg_Outer_R[0]=1 +SprayCoverageProp_EWdg_Rear_R[0]=1 +SprayCoverageProp_EWdg_Inner_R[0]=1 +SprayCoverageProp_EWdg_Front_R[0]=1 +SprayCoverageProp_RotorPole_R=1 +SprayCoverageProp_RotorCore_R=1 +SprayCoverageProp_EndcapFluid_F=1 +SprayCoverageProp_EndcapFluid_R=1 +SprayCoverageProp_HousingFluid_F=1 +SprayCoverageProp_HousingFluid_A=1 +SprayCoverageProp_HousingFluid_R=1 +SpraySource_EWdg_Outer_F[0]=0 +SpraySource_EWdg_Front_F[0]=0 +SpraySource_EWdg_Inner_F[0]=0 +SpraySource_EWdg_Rear_F[0]=0 +SpraySource_RotorPole_F=0 +SpraySource_RotorCore_F=0 +SpraySource_EWdg_Outer_R[0]=0 +SpraySource_EWdg_Rear_R[0]=0 +SpraySource_EWdg_Inner_R[0]=0 +SpraySource_EWdg_Front_R[0]=0 +SpraySource_RotorPole_R=0 +SpraySource_RotorCore_R=0 +InternalFlowRatio_Endcap_F=0,5 +Notes_Flow_Endcap_F= +InternalFlowRatio_Housing_F=1 +Notes_Flow_Housing_F= +InternalFlowRatio_Endcap_R=0,5 +Notes_Flow_Endcap_R= +InternalFlowRatio_Housing_R=1 +Notes_Flow_Housing_R= +InternalFlowRatio_Housing_A=0 +Notes_Flow_Housing_A=default = no internal flow (Internal Flow Rate Ratio = 0) +SprayFlowRateCalculation=1 +SprayCoolingEnamelModel=1 +Spray_RadialHousing_InletTemperature_F=40 +Spray_RadialHousing_InletTemperature=40 +Spray_RadialHousing_InletTemperature_R=40 +Spray_RadialRotor_InletTemperature_F=40 +Spray_RadialRotor_InletTemperature_R=40 +Spray_RadialHousing_VolumeFlowRate=6E-6 +Spray_RadialRotor_VolumeFlowRate=6E-6 +Spray_RadialHousing_ThermalConductivity_F=0,125 +Spray_RadialHousing_ThermalConductivity=0,125 +Spray_RadialHousing_ThermalConductivity_R=0,125 +Spray_RadialRotor_ThermalConductivity_F=0,125 +Spray_RadialRotor_ThermalConductivity_R=0,125 +Spray_RadialHousing_Density_F=1000 +Spray_RadialHousing_Density=1000 +Spray_RadialHousing_Density_R=1000 +Spray_RadialRotor_Density_F=1000 +Spray_RadialRotor_Density_R=1000 +Spray_RadialHousing_Cp_F=1880 +Spray_RadialHousing_Cp=1880 +Spray_RadialHousing_Cp_R=1880 +Spray_RadialRotor_Cp_F=1880 +Spray_RadialRotor_Cp_R=1880 +Spray_RadialHousing_KinematicViscosity_F=1,1E-5 +Spray_RadialHousing_KinematicViscosity=1,1E-5 +Spray_RadialHousing_KinematicViscosity_R=1,1E-5 +Spray_RadialRotor_KinematicViscosity_F=1,1E-5 +Spray_RadialRotor_KinematicViscosity_R=1,1E-5 +Spray_RadialHousing_VolumetricExpansionCoef_F=0 +Spray_RadialHousing_VolumetricExpansionCoef=0 +Spray_RadialHousing_VolumetricExpansionCoef_R=0 +Spray_RadialRotor_VolumetricExpansionCoef_F=0 +Spray_RadialRotor_VolumetricExpansionCoef_R=0 +Spray_RadialHousing_FlowProportion_F=0,5 +Spray_RadialRotor_FlowProportion_F=0,5 +Spray_RadialHousing_NozzleNumber_F=4 +Spray_RadialRotor_NozzleNumber_F=4 +Spray_RadialHousing_NozzleNumber_R=4 +Spray_RadialRotor_NozzleNumber_R=4 +Spray_RadialHousing_NozzleDiameter_F=1 +Spray_RadialRotor_NozzleDiameter_F=1 +Spray_RadialHousing_NozzleDiameter_R=1 +Spray_RadialRotor_NozzleDiameter_R=1 +Spray_RadialHousing_Calc_Input_h_EWdg_Inner_F[0]=0 +Spray_RadialHousing_Stationary_h_Input_EWdg_Inner_F[0]=0 +Spray_RadialHousing_Rotational_h_Input_EWdg_Inner_F[0]=0 +Spray_RadialHousing_Stationary_h_Adjust_EWdg_Inner_F[0]=1 +Spray_RadialHousing_Rotational_h_Adjust_EWdg_Inner_F[0]=1 +Spray_RadialHousing_CorrelationFactor_Hairpin_EWdg_Inner_F[0]=1 +Spray_RadialHousing_CorrelationFactor_Stranded_EWdg_Inner_F[0]=0,3 +Spray_RadialHousing_Area_Mult_EWdg_Inner_F[0]=1 +Spray_RadialHousing_Notes_EWdg_Inner_F[0]= +Spray_RadialHousing_Calc_Input_h_EWdg_Outer_F[0]=0 +Spray_RadialHousing_Stationary_h_Input_EWdg_Outer_F[0]=0 +Spray_RadialHousing_Rotational_h_Input_EWdg_Outer_F[0]=0 +Spray_RadialHousing_Stationary_h_Adjust_EWdg_Outer_F[0]=1 +Spray_RadialHousing_Rotational_h_Adjust_EWdg_Outer_F[0]=1 +Spray_RadialHousing_CorrelationFactor_Hairpin_EWdg_Outer_F[0]=0,3 +Spray_RadialHousing_CorrelationFactor_Stranded_EWdg_Outer_F[0]=1 +Spray_RadialHousing_Area_Mult_EWdg_Outer_F[0]=1 +Spray_RadialHousing_Notes_EWdg_Outer_F[0]= +Spray_RadialHousing_Calc_Input_h_EWdg_Front_F[0]=0 +Spray_RadialHousing_Stationary_h_Input_EWdg_Front_F[0]=0 +Spray_RadialHousing_Rotational_h_Input_EWdg_Front_F[0]=0 +Spray_RadialHousing_Stationary_h_Adjust_EWdg_Front_F[0]=1 +Spray_RadialHousing_Rotational_h_Adjust_EWdg_Front_F[0]=1 +Spray_RadialHousing_CorrelationFactor_Hairpin_EWdg_Front_F[0]=0,7 +Spray_RadialHousing_CorrelationFactor_Stranded_EWdg_Front_F[0]=0,7 +Spray_RadialHousing_Area_Mult_EWdg_Front_F[0]=1 +Spray_RadialHousing_Notes_EWdg_Front_F[0]= +Spray_RadialHousing_Calc_Input_h_EWdg_Rear_F[0]=0 +Spray_RadialHousing_Stationary_h_Input_EWdg_Rear_F[0]=0 +Spray_RadialHousing_Rotational_h_Input_EWdg_Rear_F[0]=0 +Spray_RadialHousing_Stationary_h_Adjust_EWdg_Rear_F[0]=1 +Spray_RadialHousing_Rotational_h_Adjust_EWdg_Rear_F[0]=1 +Spray_RadialHousing_CorrelationFactor_Hairpin_EWdg_Rear_F[0]=0,7 +Spray_RadialHousing_Area_Mult_EWdg_Rear_F[0]=1 +Spray_RadialHousing_Notes_EWdg_Rear_F[0]= +Spray_RadialHousing_Calc_Input_h_EWdg_Inner_R[0]=0 +Spray_RadialHousing_Stationary_h_Input_EWdg_Inner_R[0]=0 +Spray_RadialHousing_Rotational_h_Input_EWdg_Inner_R[0]=0 +Spray_RadialHousing_Stationary_h_Adjust_EWdg_Inner_R[0]=1 +Spray_RadialHousing_Rotational_h_Adjust_EWdg_Inner_R[0]=1 +Spray_RadialHousing_CorrelationFactor_Hairpin_EWdg_Inner_R[0]=1 +Spray_RadialHousing_CorrelationFactor_Stranded_EWdg_Inner_R[0]=0,3 +Spray_RadialHousing_Area_Mult_EWdg_Inner_R[0]=1 +Spray_RadialHousing_Notes_EWdg_Inner_R[0]= +Spray_RadialHousing_Calc_Input_h_EWdg_Outer_R[0]=0 +Spray_RadialHousing_Stationary_h_Input_EWdg_Outer_R[0]=0 +Spray_RadialHousing_Rotational_h_Input_EWdg_Outer_R[0]=0 +Spray_RadialHousing_Stationary_h_Adjust_EWdg_Outer_R[0]=1 +Spray_RadialHousing_Rotational_h_Adjust_EWdg_Outer_R[0]=1 +Spray_RadialHousing_CorrelationFactor_Hairpin_EWdg_Outer_R[0]=0,3 +Spray_RadialHousing_CorrelationFactor_Stranded_EWdg_Outer_R[0]=1 +Spray_RadialHousing_Area_Mult_EWdg_Outer_R[0]=1 +Spray_RadialHousing_Notes_EWdg_Outer_R[0]= +Spray_RadialHousing_Calc_Input_h_EWdg_Front_R[0]=0 +Spray_RadialHousing_Stationary_h_Input_EWdg_Front_R[0]=0 +Spray_RadialHousing_Rotational_h_Input_EWdg_Front_R[0]=0 +Spray_RadialHousing_Stationary_h_Adjust_EWdg_Front_R[0]=1 +Spray_RadialHousing_Rotational_h_Adjust_EWdg_Front_R[0]=1 +Spray_RadialHousing_CorrelationFactor_Hairpin_EWdg_Front_R[0]=0,7 +Spray_RadialHousing_Area_Mult_EWdg_Front_R[0]=1 +Spray_RadialHousing_Notes_EWdg_Front_R[0]= +Spray_RadialHousing_Calc_Input_h_EWdg_Rear_R[0]=0 +Spray_RadialHousing_Stationary_h_Input_EWdg_Rear_R[0]=0 +Spray_RadialHousing_Rotational_h_Input_EWdg_Rear_R[0]=0 +Spray_RadialHousing_Stationary_h_Adjust_EWdg_Rear_R[0]=1 +Spray_RadialHousing_Rotational_h_Adjust_EWdg_Rear_R[0]=1 +Spray_RadialHousing_CorrelationFactor_Hairpin_EWdg_Rear_R[0]=0,7 +Spray_RadialHousing_CorrelationFactor_Stranded_EWdg_Rear_R[0]=0,7 +Spray_RadialHousing_Area_Mult_EWdg_Rear_R[0]=1 +Spray_RadialHousing_Notes_EWdg_Rear_R[0]= +Spray_RadialHousing_Calc_Input_h_RotorPole_F=0 +Spray_RadialHousing_Stationary_h_Input_RotorPole_F=0 +Spray_RadialHousing_Rotational_h_Input_RotorPole_F=0 +Spray_RadialHousing_Stationary_h_Adjust_RotorPole_F=1 +Spray_RadialHousing_Rotational_h_Adjust_RotorPole_F=1 +Spray_RadialHousing_CorrelationFactor_RotorPole_F=0,2 +Spray_RadialHousing_Area_Mult_RotorPole_F=1 +Spray_RadialHousing_Notes_RotorPole_F= +Spray_RadialHousing_Calc_Input_h_RotorPole_R=0 +Spray_RadialHousing_Stationary_h_Input_RotorPole_R=0 +Spray_RadialHousing_Rotational_h_Input_RotorPole_R=0 +Spray_RadialHousing_Stationary_h_Adjust_RotorPole_R=1 +Spray_RadialHousing_Rotational_h_Adjust_RotorPole_R=1 +Spray_RadialHousing_CorrelationFactor_RotorPole_R=0,2 +Spray_RadialHousing_Area_Mult_RotorPole_R=1 +Spray_RadialHousing_Notes_RotorPole_R= +Spray_RadialHousing_Calc_Input_h_RotorCore_F=0 +Spray_RadialHousing_Stationary_h_Input_RotorCore_F=0 +Spray_RadialHousing_Rotational_h_Input_RotorCore_F=0 +Spray_RadialHousing_Stationary_h_Adjust_RotorCore_F=1 +Spray_RadialHousing_Rotational_h_Adjust_RotorCore_F=1 +Spray_RadialHousing_CorrelationFactor_RotorCore_F=0,2 +Spray_RadialHousing_Area_Mult_RotorCore_F=1 +Spray_RadialHousing_Notes_RotorCore_F= +Spray_RadialHousing_Calc_Input_h_RotorCore_R=0 +Spray_RadialHousing_Stationary_h_Input_RotorCore_R=0 +Spray_RadialHousing_Rotational_h_Input_RotorCore_R=0 +Spray_RadialHousing_Stationary_h_Adjust_RotorCore_R=1 +Spray_RadialHousing_Rotational_h_Adjust_RotorCore_R=1 +Spray_RadialHousing_CorrelationFactor_RotorCore_R=0,2 +Spray_RadialHousing_Area_Mult_RotorCore_R=1 +Spray_RadialHousing_Notes_RotorCore_R= +Spray_RadialHousing_Calc_Input_h_Endcap_F=0 +Spray_RadialHousing_Stationary_h_Input_Endcap_F=0 +Spray_RadialHousing_Rotational_h_Input_Endcap_F=0 +Spray_RadialHousing_Stationary_h_Adjust_Endcap_F=1 +Spray_RadialHousing_Rotational_h_Adjust_Endcap_F=1 +Spray_RadialHousing_CorrelationFactor_Endcap_F=0,1 +Spray_RadialHousing_Area_Mult_Endcap_F=1 +Spray_RadialHousing_Notes_Endcap_F= +Spray_RadialHousing_Calc_Input_h_Endcap_R=0 +Spray_RadialHousing_Stationary_h_Input_Endcap_R=0 +Spray_RadialHousing_Rotational_h_Input_Endcap_R=0 +Spray_RadialHousing_Stationary_h_Adjust_Endcap_R=1 +Spray_RadialHousing_Rotational_h_Adjust_Endcap_R=1 +Spray_RadialHousing_CorrelationFactor_Endcap_R=0,1 +Spray_RadialHousing_Area_Mult_Endcap_R=1 +Spray_RadialHousing_Notes_Endcap_R= +Spray_RadialHousing_Calc_Input_h_Housing_F=0 +Spray_RadialHousing_Stationary_h_Input_Housing_F=0 +Spray_RadialHousing_Rotational_h_Input_Housing_F=0 +Spray_RadialHousing_Stationary_h_Adjust_Housing_F=1 +Spray_RadialHousing_Rotational_h_Adjust_Housing_F=1 +Spray_RadialHousing_CorrelationFactor_Housing_F=0,1 +Spray_RadialHousing_Area_Mult_Housing_F=1 +Spray_RadialHousing_Notes_Housing_F= +Spray_RadialHousing_Calc_Input_h_Housing_R=0 +Spray_RadialHousing_Stationary_h_Input_Housing_R=0 +Spray_RadialHousing_Rotational_h_Input_Housing_R=0 +Spray_RadialHousing_Stationary_h_Adjust_Housing_R=1 +Spray_RadialHousing_Rotational_h_Adjust_Housing_R=1 +Spray_RadialHousing_CorrelationFactor_Housing_R=0,1 +Spray_RadialHousing_Area_Mult_Housing_R=1 +Spray_RadialHousing_Notes_Housing_R= +Spray_RadialHousing_Calc_Input_h_Bearing_F=0 +Spray_RadialHousing_Stationary_h_Input_Bearing_F=0 +Spray_RadialHousing_Rotational_h_Input_Bearing_F=0 +Spray_RadialHousing_Stationary_h_Adjust_Bearing_F=1 +Spray_RadialHousing_Rotational_h_Adjust_Bearing_F=1 +Spray_RadialHousing_CorrelationFactor_Bearing_F=0,1 +Spray_RadialHousing_Area_Mult_Bearing_F=1 +Spray_RadialHousing_Notes_Bearing_F= +Spray_RadialHousing_Calc_Input_h_Bearing_R=0 +Spray_RadialHousing_Stationary_h_Input_Bearing_R=0 +Spray_RadialHousing_Rotational_h_Input_Bearing_R=0 +Spray_RadialHousing_Stationary_h_Adjust_Bearing_R=1 +Spray_RadialHousing_Rotational_h_Adjust_Bearing_R=1 +Spray_RadialHousing_CorrelationFactor_Bearing_R=0,1 +Spray_RadialHousing_Area_Mult_Bearing_R=1 +Spray_RadialHousing_Notes_Bearing_R= +Spray_RadialHousing_Calc_Input_h_Shaft_F=0 +Spray_RadialHousing_Stationary_h_Input_Shaft_F=0 +Spray_RadialHousing_Rotational_h_Input_Shaft_F=0 +Spray_RadialHousing_Stationary_h_Adjust_Shaft_F=1 +Spray_RadialHousing_Rotational_h_Adjust_Shaft_F=1 +Spray_RadialHousing_CorrelationFactor_Shaft_F=0,1 +Spray_RadialHousing_Area_Mult_Shaft_F=1 +Spray_RadialHousing_Notes_Shaft_F= +Spray_RadialHousing_Calc_Input_h_Shaft_R=0 +Spray_RadialHousing_Stationary_h_Input_Shaft_R=0 +Spray_RadialHousing_Rotational_h_Input_Shaft_R=0 +Spray_RadialHousing_Stationary_h_Adjust_Shaft_R=1 +Spray_RadialHousing_Rotational_h_Adjust_Shaft_R=1 +Spray_RadialHousing_CorrelationFactor_Shaft_R=0,1 +Spray_RadialHousing_Area_Mult_Shaft_R=1 +Spray_RadialHousing_Notes_Shaft_R= +Spray_RadialRotor_Calc_Input_h_EWdg_Inner_F[0]=0 +Spray_RadialRotor_Stationary_h_Input_EWdg_Inner_F[0]=0 +Spray_RadialRotor_Rotational_h_Input_EWdg_Inner_F[0]=0 +Spray_RadialRotor_Stationary_h_Adjust_EWdg_Inner_F[0]=1 +Spray_RadialRotor_Rotational_h_Adjust_EWdg_Inner_F[0]=1 +Spray_RadialRotor_CorrelationFactor_Hairpin_EWdg_Inner_F[0]=1 +Spray_RadialRotor_CorrelationFactor_Stranded_EWdg_Inner_F[0]=1 +Spray_RadialRotor_Area_Mult_EWdg_Inner_F[0]=1 +Spray_RadialRotor_Notes_EWdg_Inner_F[0]= +Spray_RadialRotor_Calc_Input_h_EWdg_Outer_F[0]=0 +Spray_RadialRotor_Stationary_h_Input_EWdg_Outer_F[0]=0 +Spray_RadialRotor_Rotational_h_Input_EWdg_Outer_F[0]=0 +Spray_RadialRotor_Stationary_h_Adjust_EWdg_Outer_F[0]=1 +Spray_RadialRotor_Rotational_h_Adjust_EWdg_Outer_F[0]=1 +Spray_RadialRotor_CorrelationFactor_Hairpin_EWdg_Outer_F[0]=0,05 +Spray_RadialRotor_CorrelationFactor_Stranded_EWdg_Outer_F[0]=0,05 +Spray_RadialRotor_Area_Mult_EWdg_Outer_F[0]=1 +Spray_RadialRotor_Notes_EWdg_Outer_F[0]= +Spray_RadialRotor_Calc_Input_h_EWdg_Front_F[0]=0 +Spray_RadialRotor_Stationary_h_Input_EWdg_Front_F[0]=0 +Spray_RadialRotor_Rotational_h_Input_EWdg_Front_F[0]=0 +Spray_RadialRotor_Stationary_h_Adjust_EWdg_Front_F[0]=1 +Spray_RadialRotor_Rotational_h_Adjust_EWdg_Front_F[0]=1 +Spray_RadialRotor_CorrelationFactor_Hairpin_EWdg_Front_F[0]=0,1 +Spray_RadialRotor_CorrelationFactor_Stranded_EWdg_Front_F[0]=0,1 +Spray_RadialRotor_Area_Mult_EWdg_Front_F[0]=1 +Spray_RadialRotor_Notes_EWdg_Front_F[0]= +Spray_RadialRotor_Calc_Input_h_EWdg_Rear_F[0]=0 +Spray_RadialRotor_Stationary_h_Input_EWdg_Rear_F[0]=0 +Spray_RadialRotor_Rotational_h_Input_EWdg_Rear_F[0]=0 +Spray_RadialRotor_Stationary_h_Adjust_EWdg_Rear_F[0]=1 +Spray_RadialRotor_Rotational_h_Adjust_EWdg_Rear_F[0]=1 +Spray_RadialRotor_CorrelationFactor_Hairpin_EWdg_Rear_F[0]=0,1 +Spray_RadialRotor_Area_Mult_EWdg_Rear_F[0]=1 +Spray_RadialRotor_Notes_EWdg_Rear_F[0]= +Spray_RadialRotor_Calc_Input_h_EWdg_Inner_R[0]=0 +Spray_RadialRotor_Stationary_h_Input_EWdg_Inner_R[0]=0 +Spray_RadialRotor_Rotational_h_Input_EWdg_Inner_R[0]=0 +Spray_RadialRotor_Stationary_h_Adjust_EWdg_Inner_R[0]=1 +Spray_RadialRotor_Rotational_h_Adjust_EWdg_Inner_R[0]=1 +Spray_RadialRotor_CorrelationFactor_Hairpin_EWdg_Inner_R[0]=1 +Spray_RadialRotor_CorrelationFactor_Stranded_EWdg_Inner_R[0]=1 +Spray_RadialRotor_Area_Mult_EWdg_Inner_R[0]=1 +Spray_RadialRotor_Notes_EWdg_Inner_R[0]= +Spray_RadialRotor_Calc_Input_h_EWdg_Outer_R[0]=0 +Spray_RadialRotor_Stationary_h_Input_EWdg_Outer_R[0]=0 +Spray_RadialRotor_Rotational_h_Input_EWdg_Outer_R[0]=0 +Spray_RadialRotor_Stationary_h_Adjust_EWdg_Outer_R[0]=1 +Spray_RadialRotor_Rotational_h_Adjust_EWdg_Outer_R[0]=1 +Spray_RadialRotor_CorrelationFactor_Hairpin_EWdg_Outer_R[0]=0,05 +Spray_RadialRotor_CorrelationFactor_Stranded_EWdg_Outer_R[0]=0,05 +Spray_RadialRotor_Area_Mult_EWdg_Outer_R[0]=1 +Spray_RadialRotor_Notes_EWdg_Outer_R[0]= +Spray_RadialRotor_Calc_Input_h_EWdg_Front_R[0]=0 +Spray_RadialRotor_Stationary_h_Input_EWdg_Front_R[0]=0 +Spray_RadialRotor_Rotational_h_Input_EWdg_Front_R[0]=0 +Spray_RadialRotor_Stationary_h_Adjust_EWdg_Front_R[0]=1 +Spray_RadialRotor_Rotational_h_Adjust_EWdg_Front_R[0]=1 +Spray_RadialRotor_CorrelationFactor_Hairpin_EWdg_Front_R[0]=0,1 +Spray_RadialRotor_Area_Mult_EWdg_Front_R[0]=1 +Spray_RadialRotor_Notes_EWdg_Front_R[0]= +Spray_RadialRotor_Calc_Input_h_EWdg_Rear_R[0]=0 +Spray_RadialRotor_Stationary_h_Input_EWdg_Rear_R[0]=0 +Spray_RadialRotor_Rotational_h_Input_EWdg_Rear_R[0]=0 +Spray_RadialRotor_Stationary_h_Adjust_EWdg_Rear_R[0]=1 +Spray_RadialRotor_Rotational_h_Adjust_EWdg_Rear_R[0]=1 +Spray_RadialRotor_CorrelationFactor_Hairpin_EWdg_Rear_R[0]=0,1 +Spray_RadialRotor_CorrelationFactor_Stranded_EWdg_Rear_R[0]=0,1 +Spray_RadialRotor_Area_Mult_EWdg_Rear_R[0]=1 +Spray_RadialRotor_Notes_EWdg_Rear_R[0]= +Spray_RadialRotor_Calc_Input_h_RotorPole_F=0 +Spray_RadialRotor_Stationary_h_Input_RotorPole_F=0 +Spray_RadialRotor_Rotational_h_Input_RotorPole_F=0 +Spray_RadialRotor_Stationary_h_Adjust_RotorPole_F=1 +Spray_RadialRotor_Rotational_h_Adjust_RotorPole_F=1 +Spray_RadialRotor_CorrelationFactor_RotorPole_F=0,2 +Spray_RadialRotor_Area_Mult_RotorPole_F=1 +Spray_RadialRotor_Notes_RotorPole_F= +Spray_RadialRotor_Calc_Input_h_RotorPole_R=0 +Spray_RadialRotor_Stationary_h_Input_RotorPole_R=0 +Spray_RadialRotor_Rotational_h_Input_RotorPole_R=0 +Spray_RadialRotor_Stationary_h_Adjust_RotorPole_R=1 +Spray_RadialRotor_Rotational_h_Adjust_RotorPole_R=1 +Spray_RadialRotor_CorrelationFactor_RotorPole_R=0,2 +Spray_RadialRotor_Area_Mult_RotorPole_R=1 +Spray_RadialRotor_Notes_RotorPole_R= +Spray_RadialRotor_Calc_Input_h_RotorCore_F=0 +Spray_RadialRotor_Stationary_h_Input_RotorCore_F=0 +Spray_RadialRotor_Rotational_h_Input_RotorCore_F=0 +Spray_RadialRotor_Stationary_h_Adjust_RotorCore_F=1 +Spray_RadialRotor_Rotational_h_Adjust_RotorCore_F=1 +Spray_RadialRotor_CorrelationFactor_RotorCore_F=0,2 +Spray_RadialRotor_Area_Mult_RotorCore_F=1 +Spray_RadialRotor_Notes_RotorCore_F= +Spray_RadialRotor_Calc_Input_h_RotorCore_R=0 +Spray_RadialRotor_Stationary_h_Input_RotorCore_R=0 +Spray_RadialRotor_Rotational_h_Input_RotorCore_R=0 +Spray_RadialRotor_Stationary_h_Adjust_RotorCore_R=1 +Spray_RadialRotor_Rotational_h_Adjust_RotorCore_R=1 +Spray_RadialRotor_CorrelationFactor_RotorCore_R=0,2 +Spray_RadialRotor_Area_Mult_RotorCore_R=1 +Spray_RadialRotor_Notes_RotorCore_R= +Spray_RadialRotor_Calc_Input_h_Endcap_F=0 +Spray_RadialRotor_Stationary_h_Input_Endcap_F=0 +Spray_RadialRotor_Rotational_h_Input_Endcap_F=0 +Spray_RadialRotor_Stationary_h_Adjust_Endcap_F=1 +Spray_RadialRotor_Rotational_h_Adjust_Endcap_F=1 +Spray_RadialRotor_CorrelationFactor_Endcap_F=0,1 +Spray_RadialRotor_Area_Mult_Endcap_F=1 +Spray_RadialRotor_Notes_Endcap_F= +Spray_RadialRotor_Calc_Input_h_Endcap_R=0 +Spray_RadialRotor_Stationary_h_Input_Endcap_R=0 +Spray_RadialRotor_Rotational_h_Input_Endcap_R=0 +Spray_RadialRotor_Stationary_h_Adjust_Endcap_R=1 +Spray_RadialRotor_Rotational_h_Adjust_Endcap_R=1 +Spray_RadialRotor_CorrelationFactor_Endcap_R=0,1 +Spray_RadialRotor_Area_Mult_Endcap_R=1 +Spray_RadialRotor_Notes_Endcap_R= +Spray_RadialRotor_Calc_Input_h_Housing_F=0 +Spray_RadialRotor_Stationary_h_Input_Housing_F=0 +Spray_RadialRotor_Rotational_h_Input_Housing_F=0 +Spray_RadialRotor_Stationary_h_Adjust_Housing_F=1 +Spray_RadialRotor_Rotational_h_Adjust_Housing_F=1 +Spray_RadialRotor_CorrelationFactor_Housing_F=0,1 +Spray_RadialRotor_Area_Mult_Housing_F=1 +Spray_RadialRotor_Notes_Housing_F= +Spray_RadialRotor_Calc_Input_h_Housing_R=0 +Spray_RadialRotor_Stationary_h_Input_Housing_R=0 +Spray_RadialRotor_Rotational_h_Input_Housing_R=0 +Spray_RadialRotor_Stationary_h_Adjust_Housing_R=1 +Spray_RadialRotor_Rotational_h_Adjust_Housing_R=1 +Spray_RadialRotor_CorrelationFactor_Housing_R=0,1 +Spray_RadialRotor_Area_Mult_Housing_R=1 +Spray_RadialRotor_Notes_Housing_R= +Spray_RadialRotor_Calc_Input_h_Bearing_F=0 +Spray_RadialRotor_Stationary_h_Input_Bearing_F=0 +Spray_RadialRotor_Rotational_h_Input_Bearing_F=0 +Spray_RadialRotor_Stationary_h_Adjust_Bearing_F=1 +Spray_RadialRotor_Rotational_h_Adjust_Bearing_F=1 +Spray_RadialRotor_CorrelationFactor_Bearing_F=0,1 +Spray_RadialRotor_Area_Mult_Bearing_F=1 +Spray_RadialRotor_Notes_Bearing_F= +Spray_RadialRotor_Calc_Input_h_Bearing_R=0 +Spray_RadialRotor_Stationary_h_Input_Bearing_R=0 +Spray_RadialRotor_Rotational_h_Input_Bearing_R=0 +Spray_RadialRotor_Stationary_h_Adjust_Bearing_R=1 +Spray_RadialRotor_Rotational_h_Adjust_Bearing_R=1 +Spray_RadialRotor_CorrelationFactor_Bearing_R=0,1 +Spray_RadialRotor_Area_Mult_Bearing_R=1 +Spray_RadialRotor_Notes_Bearing_R= +Spray_RadialRotor_Calc_Input_h_Shaft_F=0 +Spray_RadialRotor_Stationary_h_Input_Shaft_F=0 +Spray_RadialRotor_Rotational_h_Input_Shaft_F=0 +Spray_RadialRotor_Stationary_h_Adjust_Shaft_F=1 +Spray_RadialRotor_Rotational_h_Adjust_Shaft_F=1 +Spray_RadialRotor_CorrelationFactor_Shaft_F=0,1 +Spray_RadialRotor_Area_Mult_Shaft_F=1 +Spray_RadialRotor_Notes_Shaft_F= +Spray_RadialRotor_Calc_Input_h_Shaft_R=0 +Spray_RadialRotor_Stationary_h_Input_Shaft_R=0 +Spray_RadialRotor_Rotational_h_Input_Shaft_R=0 +Spray_RadialRotor_Stationary_h_Adjust_Shaft_R=1 +Spray_RadialRotor_Rotational_h_Adjust_Shaft_R=1 +Spray_RadialRotor_CorrelationFactor_Shaft_R=0,1 +Spray_RadialRotor_Area_Mult_Shaft_R=1 +Spray_RadialRotor_Notes_Shaft_R= +RadialRotor_SprayCorrelation=1 +Spray_Cooling_Fluid_Volume_Flow_Rate=6E-5 +Spray_Cooling_Inlet_Temp=40 +SprayFluid_Temperature_UserDefined=0 +SprayFluid_Conductivity_UserDefined=0,0125 +SPRAY_COOLING_FLUID_CONDUCTIVITY=0,0125 +SprayFluid_Density_UserDefined=1000 +SPRAY_COOLING_FLUID_DENSITY=1000 +SprayFluid_Cp_UserDefined=1880 +SPRAY_COOLING_FLUID_CP=1880 +SprayFluid_KinematicViscosity_UserDefined=1,1E-5 +SPRAY_COOLING_FLUID_KINEMATIC_VISCOSITY=1,1E-5 +SprayFluid_VolumetricExpansionCoef_UserDefined=0 +Spray_Cooling_Endcap_Fluid_Calc_Input_h_F=0 +Spray_Cooling_Endcap_Fluid_h_Input_F=100 +Spray_Cooling_Endcap_Fluid_h_Adjust_F=1 +Spray_Cooling_Endcap_Fluid_Velocity_Multiplier_F=1 +Spray_Cooling_Endcap_Fluid_Notes_F= +Spray_Cooling_Endcap_Fluid_Calc_Input_h_R=0 +Spray_Cooling_Endcap_Fluid_h_Input_R=100 +Spray_Cooling_Endcap_Fluid_h_Adjust_R=1 +Spray_Cooling_Endcap_Fluid_Velocity_Multiplier_R=1 +Spray_Cooling_Endcap_Fluid_Notes_R= +Spray_Cooling_Housing_Fluid_Calc_Input_h_F=0 +Spray_Cooling_Housing_Fluid_h_Input_F=100 +Spray_Cooling_Housing_Fluid_h_Adjust_F=1 +Spray_Cooling_Housing_Fluid_Velocity_Multiplier_F=0,1 +Spray_Cooling_Housing_Fluid_Notes_F= +Spray_Cooling_Housing_Fluid_Calc_Input_h_A=0 +Spray_Cooling_Housing_Fluid_h_Input_A=100 +Spray_Cooling_Housing_Fluid_h_Adjust_A=1 +Spray_Cooling_Housing_Fluid_Velocity_Multiplier_A=0,1 +Spray_Cooling_Housing_Fluid_Notes_A= +Spray_Cooling_Housing_Fluid_Calc_Input_h_R=0 +Spray_Cooling_Housing_Fluid_h_Input_R=100 +Spray_Cooling_Housing_Fluid_h_Adjust_R=1 +Spray_Cooling_Housing_Fluid_Velocity_Multiplier_R=0,1 +Spray_Cooling_Housing_Fluid_Notes_R= +h_Calc_Housing_F=0 +h_Calc_Housing_R=0 +h_Calc_Housing_A=0 +Nozzles_EWBore_F=1 +NozzleDia_EWBore_F=1 +SprayFlowRatio_EWBore_F=1 +InternalFlowRatio_EWBore_F=1 +NozzleDistance_Adj_EWBore_F=0 +TargetLength_Adj_EWBore_F=0 +Velocity_Mult_EWBore_F=1 +Notes_Flow_EWBore_F= +Notes_HT_EWBore_F= +Calc_Input_h_EWBore_F=0 +h_Input_EWBore_F=1000 +h_Adjust_EWBore_F=1 +h_Calc_EWBore_F=0 +SpraySource_EWBore_F=0 +Area_Mult_EWBore_F=1 +Nozzles_EWOuter_F=0 +NozzleDia_EWOuter_F=0 +SprayFlowRatio_EWOuter_F=1 +InternalFlowRatio_EWOuter_F=0 +NozzleDistance_Adj_EWOuter_F=0 +TargetLength_Adj_EWOuter_F=0 +Velocity_Mult_EWOuter_F=1 +Notes_Flow_EWOuter_F= +Notes_HT_EWOuter_F= +Calc_Input_h_EWOuter_F=0 +h_Input_EWOuter_F=1000 +h_Adjust_EWOuter_F=1 +h_Calc_EWOuter_F=0 +SpraySource_EWOuter_F=0 +Area_Mult_EWOuter_F=1 +Nozzles_EWEnd_F=0 +NozzleDia_EWEnd_F=0 +SprayFlowRatio_EWEnd_F=1 +InternalFlowRatio_EWEnd_F=0 +NozzleDistance_Adj_EWEnd_F=0 +TargetLength_Adj_EWEnd_F=0 +Velocity_Mult_EWEnd_F=1 +Notes_Flow_EWEnd_F= +Notes_HT_EWEnd_F= +Calc_Input_h_EWEnd_F=0 +h_Input_EWEnd_F=1000 +h_Adjust_EWEnd_F=1 +h_Calc_EWEnd_F=0 +SpraySource_EWEnd_F=0 +Area_Mult_EWEnd_F=1 +Nozzles_EWBore_R=1 +NozzleDia_EWBore_R=1 +SprayFlowRatio_EWBore_R=1 +InternalFlowRatio_EWBore_R=1 +NozzleDistance_Adj_EWBore_R=0 +TargetLength_Adj_EWBore_R=0 +Velocity_Mult_EWBore_R=1 +Notes_Flow_EWBore_R= +Notes_HT_EWBore_R= +Calc_Input_h_EWBore_R=0 +h_Input_EWBore_R=1000 +h_Adjust_EWBore_R=1 +h_Calc_EWBore_R=0 +SpraySource_EWBore_R=0 +Area_Mult_EWBore_R=1 +Nozzles_EWOuter_R=0 +NozzleDia_EWOuter_R=0 +SprayFlowRatio_EWOuter_R=1 +InternalFlowRatio_EWOuter_R=0 +NozzleDistance_Adj_EWOuter_R=0 +TargetLength_Adj_EWOuter_R=0 +Velocity_Mult_EWOuter_R=1 +Notes_Flow_EWOuter_R= +Notes_HT_EWOuter_R= +Calc_Input_h_EWOuter_R=0 +h_Input_EWOuter_R=1000 +h_Adjust_EWOuter_R=1 +h_Calc_EWOuter_R=0 +SpraySource_EWOuter_R=0 +Area_Mult_EWOuter_R=1 +Nozzles_EWEnd_R=0 +NozzleDia_EWEnd_R=0 +SprayFlowRatio_EWEnd_R=1 +InternalFlowRatio_EWEnd_R=0 +NozzleDistance_Adj_EWEnd_R=0 +TargetLength_Adj_EWEnd_R=0 +Velocity_Mult_EWEnd_R=1 +Notes_Flow_EWEnd_R= +Notes_HT_EWEnd_R= +Calc_Input_h_EWEnd_R=0 +h_Input_EWEnd_R=1000 +h_Adjust_EWEnd_R=1 +h_Calc_EWEnd_R=0 +SpraySource_EWEnd_R=0 +Area_Mult_EWEnd_R=1 +Spray_Cooling_Endcap_Fluid_Calc_Input_F=Calc_h_conv +Spray_Cooling_Endcap_Fluid_Calc_Input_R=Calc_h_conv +Spray_Cooling_Housing_Fluid_Calc_Input_F=Calc_h_conv +Spray_Cooling_Housing_Fluid_Calc_Input_A=Calc_h_conv +Spray_Cooling_Housing_Fluid_Calc_Input_R=Calc_h_conv + +[Sizing_Algorithm] +IM_Size_Reduction_Algorithm=BPM_Sizing +Winding_Temperature_Increase=20 +IM_Power_Shaft=136 +IM_Power_Factor_Pre_Sizing=0,592 +IM_Power_Factor_Post_Sizing=0,514 +IM_Voltage_Line=240 + +[Through_Vent] +TVent_Fluid_Conductivity=0,125 +TVent_Fluid_Density=1000 +TVent_Fluid_Cp=1880 +TVent_Fluid_Kinematic_Viscosity=1,1E-5 +TVent_Fluid_Name=Air (Motor-CAD model) +Number_of_TVent_Fluid_Conductivity_Values=0 +Number_of_TVent_Fluid_Specific_Heat_Values=0 +Number_of_TVent_Fluid_Density_Values=0 +Number_of_TVent_Fluid_Kinematic_Viscosity_Values=0 +Number_of_TVent_Fluid_Volumetric_Expansion_Values=0 +TVent_Inlet_Temperature=40 +Through_Vent_Flow_Direction=Rear_Inlet +Inlet_Type_Front=Radial_Full_Circle +Inlet_Type_Rear=Radial_Full_Circle +Calc_Input_h_TVent_Circular_Stator_Duct_L1_F=Calc_h_conv +Calc_Input_h_TVent_Circular_Stator_Duct_L1_R=Calc_h_conv +Calc_Input_h_TVent_Circular_Housing_Duct_L1_F=Calc_h_conv +Calc_Input_h_TVent_Circular_Housing_Duct_L1_R=Calc_h_conv +Calc_Input_h_TVent_Circular_Housing_Duct_L2_F=Calc_h_conv +Calc_Input_h_TVent_Circular_Housing_Duct_L2_R=Calc_h_conv +Calc_Input_h_TVent_Circular_Housing_Duct_L3_F=Calc_h_conv +Calc_Input_h_TVent_Circular_Housing_Duct_L3_R=Calc_h_conv +Calc_Input_h_TVent_Circular_Housing_Duct_L4_F=Calc_h_conv +Calc_Input_h_TVent_Circular_Housing_Duct_L4_R=Calc_h_conv +Calc_Input_h_TVent_Endcap_F=Calc_h_conv +Calc_Input_h_TVent_Endcap_R=Calc_h_conv +Calc_Input_h_TVent_Housing_OHang_F=Calc_h_conv +Calc_Input_h_TVent_Housing_OHang_R=Calc_h_conv +Calc_Input_h_TVent_Shaft_OHang_F=Calc_h_conv +Calc_Input_h_TVent_Shaft_OHang_R=Calc_h_conv +Calc_Input_h_TVent_Axle_OHang_F=Calc_h_conv +Calc_Input_h_TVent_Axle_OHang_R=Calc_h_conv +TVent_Include_Rotor_Duct_Rotation_Effects=False +TVent_Include_Airgap_Rotation_Effects=False +TVent_Fan_Definition=0 +Fan_Definition=0 +Shaft_Speed=3000 +Flow_Rate=0,025 +Stator_Duct_Friction_k_Adjustment[0]=1 +Stator_Duct_Friction_k_Adjustment[1]=1 +Stator_Duct_Friction_k_Adjustment[2]=1 +Stator_Duct_Friction_k_Adjustment[3]=1 +Stator_Duct_Friction_k_Adjustment[4]=1 +Stator_Duct_Friction_k_Adjustment[5]=1 +Stator_Duct_Friction_k_Adjustment[6]=1 +Stator_Duct_Friction_k_Adjustment[7]=1 +Stator_Duct_Friction_k_Adjustment[8]=1 +Stator_Duct_Wall_Roughness=0,0025 +Airgap_Duct_Friction_k_Adjustment[0]=1 +Airgap_Duct_Friction_k_Adjustment[1]=1 +Airgap_Duct_Friction_k_Adjustment[2]=1 +Airgap_Duct_Friction_k_Adjustment[3]=1 +Airgap_Duct_Friction_k_Adjustment[4]=1 +Airgap_Duct_Friction_k_Adjustment[5]=1 +Airgap_Duct_Friction_k_Adjustment[6]=1 +Airgap_Duct_Friction_k_Adjustment[7]=1 +Airgap_Duct_Friction_k_Adjustment[8]=1 +Airgap_Duct_Wall_Roughness=0,0025 +IncludeDuctWallFriction=True +Notes_Stator_Duct[0]= +Notes_Stator_Duct[1]= +Notes_Stator_Duct[2]= +Notes_Stator_Duct[3]= +Notes_Stator_Duct[4]= +Notes_Stator_Duct[5]= +Notes_Stator_Duct[6]= +Notes_Stator_Duct[7]= +Notes_Stator_Duct[8]= +Notes_Airgap_Duct[0]= +Notes_Airgap_Duct[1]= +Notes_Airgap_Duct[2]= +Notes_Airgap_Duct[3]= +Notes_Airgap_Duct[4]= +Notes_Airgap_Duct[5]= +Notes_Airgap_Duct[6]= +Notes_Airgap_Duct[7]= +Notes_Airgap_Duct[8]= +CircularDuctLayers=1 +CircularDuctL1RadialDiameter=123 +iCircularDuctL1RadialDiameter=123 +CircularDuctL1Channels=36 +CircularDuctL1ChannelDiameter=3 +CircularDuctL1OffsetAngle=0 +CircularDuctL1SeparationAngle=5 +CircularDuctL2RadialDiameter=124 +iCircularDuctL2RadialDiameter=124 +CircularDuctL2Channels=36 +CircularDuctL2ChannelDiameter=5 +CircularDuctL2OffsetAngle=5 +CircularDuctL2SeparationAngle=5 +CircularDuctL3RadialDiameter=123 +iCircularDuctL3RadialDiameter=123 +CircularDuctL3Channels=10 +CircularDuctL3ChannelDiameter=5 +CircularDuctL3OffsetAngle=0 +CircularDuctL3SeparationAngle=5 +CircularDuctL4RadialDiameter=120 +iCircularDuctL4RadialDiameter=120 +CircularDuctL4Channels=10 +CircularDuctL4ChannelDiameter=8 +CircularDuctL4OffsetAngle=18 +CircularDuctL4SeparationAngle=5 +CircularDuctL1_h_Input[0]=0 +CircularDuctL1_h_Input[1]=0 +CircularDuctL1_h_Input[2]=0 +CircularDuctL1_h_Input[3]=0 +CircularDuctL1_h_Input[4]=0 +CircularDuctL1_h_Input[5]=0 +CircularDuctL1_h_Input[6]=0 +CircularDuctL1_h_Input[7]=0 +CircularDuctL1_h_Input[8]=0 +CircularDuctL1_h_Adjust[0]=1 +CircularDuctL1_h_Adjust[1]=1 +CircularDuctL1_h_Adjust[2]=1 +CircularDuctL1_h_Adjust[3]=1 +CircularDuctL1_h_Adjust[4]=1 +CircularDuctL1_h_Adjust[5]=1 +CircularDuctL1_h_Adjust[6]=1 +CircularDuctL1_h_Adjust[7]=1 +CircularDuctL1_h_Adjust[8]=1 +CircularDuctL1_Velocity_Multiplier[0]=1 +CircularDuctL1_Velocity_Multiplier[1]=1 +CircularDuctL1_Velocity_Multiplier[2]=1 +CircularDuctL1_Velocity_Multiplier[3]=1 +CircularDuctL1_Velocity_Multiplier[4]=1 +CircularDuctL1_Velocity_Multiplier[5]=1 +CircularDuctL1_Velocity_Multiplier[6]=1 +CircularDuctL1_Velocity_Multiplier[7]=1 +CircularDuctL1_Velocity_Multiplier[8]=1 +CircularDuctL1_HeatTransferNotes[0]= +CircularDuctL1_HeatTransferNotes[1]= +CircularDuctL1_HeatTransferNotes[2]= +CircularDuctL1_HeatTransferNotes[3]= +CircularDuctL1_HeatTransferNotes[4]= +CircularDuctL1_HeatTransferNotes[5]= +CircularDuctL1_HeatTransferNotes[6]= +CircularDuctL1_HeatTransferNotes[7]= +CircularDuctL1_HeatTransferNotes[8]= +CircularDuctL1_h_Input_F=0 +CircularDuctL1_h_Adjust_F=1 +CircularDuctL1_Velocity_Multiplier_F=1 +CircularDuctL1_HeatTransferNotes_F= +CircularDuctL1_h_Input_R=0 +CircularDuctL1_h_Adjust_R=1 +CircularDuctL1_Velocity_Multiplier_R=1 +CircularDuctL1_HeatTransferNotes_R= +CircularDuctL1_Expansion_k_Adjustment=1 +CircularDuctL1_Contraction_k_Adjustment=1 +CircularDuctL2_h_Input[0]=0 +CircularDuctL2_h_Input[1]=0 +CircularDuctL2_h_Input[2]=0 +CircularDuctL2_h_Input[3]=0 +CircularDuctL2_h_Input[4]=0 +CircularDuctL2_h_Input[5]=0 +CircularDuctL2_h_Input[6]=0 +CircularDuctL2_h_Input[7]=0 +CircularDuctL2_h_Input[8]=0 +CircularDuctL2_h_Adjust[0]=1 +CircularDuctL2_h_Adjust[1]=1 +CircularDuctL2_h_Adjust[2]=1 +CircularDuctL2_h_Adjust[3]=1 +CircularDuctL2_h_Adjust[4]=1 +CircularDuctL2_h_Adjust[5]=1 +CircularDuctL2_h_Adjust[6]=1 +CircularDuctL2_h_Adjust[7]=1 +CircularDuctL2_h_Adjust[8]=1 +CircularDuctL2_Velocity_Multiplier[0]=1 +CircularDuctL2_Velocity_Multiplier[1]=1 +CircularDuctL2_Velocity_Multiplier[2]=1 +CircularDuctL2_Velocity_Multiplier[3]=1 +CircularDuctL2_Velocity_Multiplier[4]=1 +CircularDuctL2_Velocity_Multiplier[5]=1 +CircularDuctL2_Velocity_Multiplier[6]=1 +CircularDuctL2_Velocity_Multiplier[7]=1 +CircularDuctL2_Velocity_Multiplier[8]=1 +CircularDuctL2_HeatTransferNotes[0]= +CircularDuctL2_HeatTransferNotes[1]= +CircularDuctL2_HeatTransferNotes[2]= +CircularDuctL2_HeatTransferNotes[3]= +CircularDuctL2_HeatTransferNotes[4]= +CircularDuctL2_HeatTransferNotes[5]= +CircularDuctL2_HeatTransferNotes[6]= +CircularDuctL2_HeatTransferNotes[7]= +CircularDuctL2_HeatTransferNotes[8]= +CircularDuctL2_Expansion_k_Adjustment=1 +CircularDuctL2_Contraction_k_Adjustment=1 +CircularDuctL3_h_Input[0]=0 +CircularDuctL3_h_Input[1]=0 +CircularDuctL3_h_Input[2]=0 +CircularDuctL3_h_Input[3]=0 +CircularDuctL3_h_Input[4]=0 +CircularDuctL3_h_Input[5]=0 +CircularDuctL3_h_Input[6]=0 +CircularDuctL3_h_Input[7]=0 +CircularDuctL3_h_Input[8]=0 +CircularDuctL3_h_Adjust[0]=1 +CircularDuctL3_h_Adjust[1]=1 +CircularDuctL3_h_Adjust[2]=1 +CircularDuctL3_h_Adjust[3]=1 +CircularDuctL3_h_Adjust[4]=1 +CircularDuctL3_h_Adjust[5]=1 +CircularDuctL3_h_Adjust[6]=1 +CircularDuctL3_h_Adjust[7]=1 +CircularDuctL3_h_Adjust[8]=1 +CircularDuctL3_Velocity_Multiplier[0]=1 +CircularDuctL3_Velocity_Multiplier[1]=1 +CircularDuctL3_Velocity_Multiplier[2]=1 +CircularDuctL3_Velocity_Multiplier[3]=1 +CircularDuctL3_Velocity_Multiplier[4]=1 +CircularDuctL3_Velocity_Multiplier[5]=1 +CircularDuctL3_Velocity_Multiplier[6]=1 +CircularDuctL3_Velocity_Multiplier[7]=1 +CircularDuctL3_Velocity_Multiplier[8]=1 +CircularDuctL3_HeatTransferNotes[0]= +CircularDuctL3_HeatTransferNotes[1]= +CircularDuctL3_HeatTransferNotes[2]= +CircularDuctL3_HeatTransferNotes[3]= +CircularDuctL3_HeatTransferNotes[4]= +CircularDuctL3_HeatTransferNotes[5]= +CircularDuctL3_HeatTransferNotes[6]= +CircularDuctL3_HeatTransferNotes[7]= +CircularDuctL3_HeatTransferNotes[8]= +CircularDuctL3_Expansion_k_Adjustment=1 +CircularDuctL3_Contraction_k_Adjustment=1 +CircularDuctL4_h_Input[0]=0 +CircularDuctL4_h_Input[1]=0 +CircularDuctL4_h_Input[2]=0 +CircularDuctL4_h_Input[3]=0 +CircularDuctL4_h_Input[4]=0 +CircularDuctL4_h_Input[5]=0 +CircularDuctL4_h_Input[6]=0 +CircularDuctL4_h_Input[7]=0 +CircularDuctL4_h_Input[8]=0 +CircularDuctL4_h_Adjust[0]=1 +CircularDuctL4_h_Adjust[1]=1 +CircularDuctL4_h_Adjust[2]=1 +CircularDuctL4_h_Adjust[3]=1 +CircularDuctL4_h_Adjust[4]=1 +CircularDuctL4_h_Adjust[5]=1 +CircularDuctL4_h_Adjust[6]=1 +CircularDuctL4_h_Adjust[7]=1 +CircularDuctL4_h_Adjust[8]=1 +CircularDuctL4_Velocity_Multiplier[0]=1 +CircularDuctL4_Velocity_Multiplier[1]=1 +CircularDuctL4_Velocity_Multiplier[2]=1 +CircularDuctL4_Velocity_Multiplier[3]=1 +CircularDuctL4_Velocity_Multiplier[4]=1 +CircularDuctL4_Velocity_Multiplier[5]=1 +CircularDuctL4_Velocity_Multiplier[6]=1 +CircularDuctL4_Velocity_Multiplier[7]=1 +CircularDuctL4_Velocity_Multiplier[8]=1 +CircularDuctL4_HeatTransferNotes[0]= +CircularDuctL4_HeatTransferNotes[1]= +CircularDuctL4_HeatTransferNotes[2]= +CircularDuctL4_HeatTransferNotes[3]= +CircularDuctL4_HeatTransferNotes[4]= +CircularDuctL4_HeatTransferNotes[5]= +CircularDuctL4_HeatTransferNotes[6]= +CircularDuctL4_HeatTransferNotes[7]= +CircularDuctL4_HeatTransferNotes[8]= +CircularDuctL4_Expansion_k_Adjustment=1 +CircularDuctL4_Contraction_k_Adjustment=1 +CircularDuctL1_Friction_k_Adjustment[0]=1 +CircularDuctL1_Friction_k_Adjustment[1]=1 +CircularDuctL1_Friction_k_Adjustment[2]=1 +CircularDuctL1_Friction_k_Adjustment[3]=1 +CircularDuctL1_Friction_k_Adjustment[4]=1 +CircularDuctL1_Friction_k_Adjustment[5]=1 +CircularDuctL1_Friction_k_Adjustment[6]=1 +CircularDuctL1_Friction_k_Adjustment[7]=1 +CircularDuctL1_Friction_k_Adjustment[8]=1 +CircularDuctL1_Contraction_Notes= +CircularDuctL1_Duct_Notes[0]= +CircularDuctL1_Duct_Notes[1]= +CircularDuctL1_Duct_Notes[2]= +CircularDuctL1_Duct_Notes[3]= +CircularDuctL1_Duct_Notes[4]= +CircularDuctL1_Duct_Notes[5]= +CircularDuctL1_Duct_Notes[6]= +CircularDuctL1_Duct_Notes[7]= +CircularDuctL1_Duct_Notes[8]= +CircularDuctL1_Expansion_Notes= +CircularDuctL1_Contraction_Notes_F= +CircularDuctL1_Duct_Notes_F= +CircularDuctL1_Expansion_Notes_F= +CircularDuctL1_Friction_k_Adjustment_R=1 +CircularDuctL1_Contraction_Notes_R= +CircularDuctL1_Duct_Notes_R= +CircularDuctL1_Expansion_Notes_R= +CircularDuctL2_Friction_k_Adjustment[0]=1 +CircularDuctL2_Friction_k_Adjustment[1]=1 +CircularDuctL2_Friction_k_Adjustment[2]=1 +CircularDuctL2_Friction_k_Adjustment[3]=1 +CircularDuctL2_Friction_k_Adjustment[4]=1 +CircularDuctL2_Friction_k_Adjustment[5]=1 +CircularDuctL2_Friction_k_Adjustment[6]=1 +CircularDuctL2_Friction_k_Adjustment[7]=1 +CircularDuctL2_Friction_k_Adjustment[8]=1 +CircularDuctL2_Contraction_Notes= +CircularDuctL2_Duct_Notes[0]= +CircularDuctL2_Duct_Notes[1]= +CircularDuctL2_Duct_Notes[2]= +CircularDuctL2_Duct_Notes[3]= +CircularDuctL2_Duct_Notes[4]= +CircularDuctL2_Duct_Notes[5]= +CircularDuctL2_Duct_Notes[6]= +CircularDuctL2_Duct_Notes[7]= +CircularDuctL2_Duct_Notes[8]= +CircularDuctL2_Expansion_Notes= +CircularDuctL3_Friction_k_Adjustment[0]=1 +CircularDuctL3_Friction_k_Adjustment[1]=1 +CircularDuctL3_Friction_k_Adjustment[2]=1 +CircularDuctL3_Friction_k_Adjustment[3]=1 +CircularDuctL3_Friction_k_Adjustment[4]=1 +CircularDuctL3_Friction_k_Adjustment[5]=1 +CircularDuctL3_Friction_k_Adjustment[6]=1 +CircularDuctL3_Friction_k_Adjustment[7]=1 +CircularDuctL3_Friction_k_Adjustment[8]=1 +CircularDuctL3_Contraction_Notes= +CircularDuctL3_Duct_Notes[0]= +CircularDuctL3_Duct_Notes[1]= +CircularDuctL3_Duct_Notes[2]= +CircularDuctL3_Duct_Notes[3]= +CircularDuctL3_Duct_Notes[4]= +CircularDuctL3_Duct_Notes[5]= +CircularDuctL3_Duct_Notes[6]= +CircularDuctL3_Duct_Notes[7]= +CircularDuctL3_Duct_Notes[8]= +CircularDuctL3_Expansion_Notes= +CircularDuctL4_Friction_k_Adjustment[0]=1 +CircularDuctL4_Friction_k_Adjustment[1]=1 +CircularDuctL4_Friction_k_Adjustment[2]=1 +CircularDuctL4_Friction_k_Adjustment[3]=1 +CircularDuctL4_Friction_k_Adjustment[4]=1 +CircularDuctL4_Friction_k_Adjustment[5]=1 +CircularDuctL4_Friction_k_Adjustment[6]=1 +CircularDuctL4_Friction_k_Adjustment[7]=1 +CircularDuctL4_Friction_k_Adjustment[8]=1 +CircularDuctL4_Contraction_Notes= +CircularDuctL4_Duct_Notes[0]= +CircularDuctL4_Duct_Notes[1]= +CircularDuctL4_Duct_Notes[2]= +CircularDuctL4_Duct_Notes[3]= +CircularDuctL4_Duct_Notes[4]= +CircularDuctL4_Duct_Notes[5]= +CircularDuctL4_Duct_Notes[6]= +CircularDuctL4_Duct_Notes[7]= +CircularDuctL4_Duct_Notes[8]= +CircularDuctL4_Expansion_Notes= +RotorCircularDuctLayers=1 +RotorCircularDuctLayer_RadialDiameter[0]=55 +RotorCircularDuctLayer_RadialDiameter[1]=55 +RotorCircularDuctLayer_RadialDiameter[2]=40 +RotorCircularDuctLayer_RadialDiameter[3]=70 +RotorCircularDuctLayer_Channels[0]=4 +RotorCircularDuctLayer_Channels[1]=12 +RotorCircularDuctLayer_Channels[2]=4 +RotorCircularDuctLayer_Channels[3]=8 +RotorCircularDuctLayer_ChannelDiameter[0]=6 +RotorCircularDuctLayer_ChannelDiameter[1]=4 +RotorCircularDuctLayer_ChannelDiameter[2]=4 +RotorCircularDuctLayer_ChannelDiameter[3]=4 +RotorCircularDuctLayer_OffsetAngle[0]=0 +RotorCircularDuctLayer_OffsetAngle[1]=45 +RotorCircularDuctLayer_OffsetAngle[2]=45 +RotorCircularDuctLayer_OffsetAngle[3]=22,5 +RotorCircularDuctLayer_ChannelHeight[0]=3 +RotorCircularDuctLayer_ChannelHeight[1]=3 +RotorCircularDuctLayer_ChannelHeight[2]=3 +RotorCircularDuctLayer_ChannelHeight[3]=3 +RotorCircularDuctLayer_ChannelWidth[0]=2 +RotorCircularDuctLayer_ChannelWidth[1]=2 +RotorCircularDuctLayer_ChannelWidth[2]=2 +RotorCircularDuctLayer_ChannelWidth[3]=2 +RotorRectangularDuctLayer_CornerRadius[0]=0 +RotorRectangularDuctLayer_CornerRadius[1]=0 +RotorRectangularDuctLayer_CornerRadius[2]=0 +RotorRectangularDuctLayer_CornerRadius[3]=0 +RotorArcDuctLayer_InnerDiameter[0]=30 +RotorArcDuctLayer_InnerDiameter[1]=30 +RotorArcDuctLayer_InnerDiameter[2]=30 +RotorArcDuctLayer_InnerDiameter[3]=30 +RotorArcDuctLayer_Depth[0]=5 +RotorArcDuctLayer_Depth[1]=5 +RotorArcDuctLayer_Depth[2]=5 +RotorArcDuctLayer_Depth[3]=5 +RotorArcDuctLayer_CornerRadius[0]=0 +RotorArcDuctLayer_CornerRadius[1]=0 +RotorArcDuctLayer_CornerRadius[2]=0 +RotorArcDuctLayer_CornerRadius[3]=0 +RotorArcDuctLayer_WebWidth[0]=1 +RotorArcDuctLayer_WebWidth[1]=1 +RotorArcDuctLayer_WebWidth[2]=1 +RotorArcDuctLayer_WebWidth[3]=1 +RotorCircularDuctL1_h_Input[0]=0 +RotorCircularDuctL1_h_Input[1]=0 +RotorCircularDuctL1_h_Input[2]=0 +RotorCircularDuctL1_h_Input[3]=0 +RotorCircularDuctL1_h_Input[4]=0 +RotorCircularDuctL1_h_Input[5]=0 +RotorCircularDuctL1_h_Input[6]=0 +RotorCircularDuctL1_h_Input[7]=0 +RotorCircularDuctL1_h_Input[8]=0 +RotorCircularDuctL1_h_Adjust[0]=1 +RotorCircularDuctL1_h_Adjust[1]=1 +RotorCircularDuctL1_h_Adjust[2]=1 +RotorCircularDuctL1_h_Adjust[3]=1 +RotorCircularDuctL1_h_Adjust[4]=1 +RotorCircularDuctL1_h_Adjust[5]=1 +RotorCircularDuctL1_h_Adjust[6]=1 +RotorCircularDuctL1_h_Adjust[7]=1 +RotorCircularDuctL1_h_Adjust[8]=1 +RotorCircularDuctL1_Velocity_Multiplier[0]=1 +RotorCircularDuctL1_Velocity_Multiplier[1]=1 +RotorCircularDuctL1_Velocity_Multiplier[2]=1 +RotorCircularDuctL1_Velocity_Multiplier[3]=1 +RotorCircularDuctL1_Velocity_Multiplier[4]=1 +RotorCircularDuctL1_Velocity_Multiplier[5]=1 +RotorCircularDuctL1_Velocity_Multiplier[6]=1 +RotorCircularDuctL1_Velocity_Multiplier[7]=1 +RotorCircularDuctL1_Velocity_Multiplier[8]=1 +RotorCircularDuctL1_HeatTransferNotes[0]= +RotorCircularDuctL1_HeatTransferNotes[1]= +RotorCircularDuctL1_HeatTransferNotes[2]= +RotorCircularDuctL1_HeatTransferNotes[3]= +RotorCircularDuctL1_HeatTransferNotes[4]= +RotorCircularDuctL1_HeatTransferNotes[5]= +RotorCircularDuctL1_HeatTransferNotes[6]= +RotorCircularDuctL1_HeatTransferNotes[7]= +RotorCircularDuctL1_HeatTransferNotes[8]= +RotorCircularDuctL1_Expansion_k_Adjustment=1 +RotorCircularDuctL1_Contraction_k_Adjustment=1 +RotorCircularDuctL2_h_Input[0]=0 +RotorCircularDuctL2_h_Input[1]=0 +RotorCircularDuctL2_h_Input[2]=0 +RotorCircularDuctL2_h_Input[3]=0 +RotorCircularDuctL2_h_Input[4]=0 +RotorCircularDuctL2_h_Input[5]=0 +RotorCircularDuctL2_h_Input[6]=0 +RotorCircularDuctL2_h_Input[7]=0 +RotorCircularDuctL2_h_Input[8]=0 +RotorCircularDuctL2_h_Adjust[0]=1 +RotorCircularDuctL2_h_Adjust[1]=1 +RotorCircularDuctL2_h_Adjust[2]=1 +RotorCircularDuctL2_h_Adjust[3]=1 +RotorCircularDuctL2_h_Adjust[4]=1 +RotorCircularDuctL2_h_Adjust[5]=1 +RotorCircularDuctL2_h_Adjust[6]=1 +RotorCircularDuctL2_h_Adjust[7]=1 +RotorCircularDuctL2_h_Adjust[8]=1 +RotorCircularDuctL2_Velocity_Multiplier[0]=1 +RotorCircularDuctL2_Velocity_Multiplier[1]=1 +RotorCircularDuctL2_Velocity_Multiplier[2]=1 +RotorCircularDuctL2_Velocity_Multiplier[3]=1 +RotorCircularDuctL2_Velocity_Multiplier[4]=1 +RotorCircularDuctL2_Velocity_Multiplier[5]=1 +RotorCircularDuctL2_Velocity_Multiplier[6]=1 +RotorCircularDuctL2_Velocity_Multiplier[7]=1 +RotorCircularDuctL2_Velocity_Multiplier[8]=1 +RotorCircularDuctL2_HeatTransferNotes[0]= +RotorCircularDuctL2_HeatTransferNotes[1]= +RotorCircularDuctL2_HeatTransferNotes[2]= +RotorCircularDuctL2_HeatTransferNotes[3]= +RotorCircularDuctL2_HeatTransferNotes[4]= +RotorCircularDuctL2_HeatTransferNotes[5]= +RotorCircularDuctL2_HeatTransferNotes[6]= +RotorCircularDuctL2_HeatTransferNotes[7]= +RotorCircularDuctL2_HeatTransferNotes[8]= +RotorCircularDuctL2_Expansion_k_Adjustment=1 +RotorCircularDuctL2_Contraction_k_Adjustment=1 +RotorCircularDuctL3_h_Input[0]=0 +RotorCircularDuctL3_h_Input[1]=0 +RotorCircularDuctL3_h_Input[2]=0 +RotorCircularDuctL3_h_Input[3]=0 +RotorCircularDuctL3_h_Input[4]=0 +RotorCircularDuctL3_h_Input[5]=0 +RotorCircularDuctL3_h_Input[6]=0 +RotorCircularDuctL3_h_Input[7]=0 +RotorCircularDuctL3_h_Input[8]=0 +RotorCircularDuctL3_h_Adjust[0]=1 +RotorCircularDuctL3_h_Adjust[1]=1 +RotorCircularDuctL3_h_Adjust[2]=1 +RotorCircularDuctL3_h_Adjust[3]=1 +RotorCircularDuctL3_h_Adjust[4]=1 +RotorCircularDuctL3_h_Adjust[5]=1 +RotorCircularDuctL3_h_Adjust[6]=1 +RotorCircularDuctL3_h_Adjust[7]=1 +RotorCircularDuctL3_h_Adjust[8]=1 +RotorCircularDuctL3_Velocity_Multiplier[0]=1 +RotorCircularDuctL3_Velocity_Multiplier[1]=1 +RotorCircularDuctL3_Velocity_Multiplier[2]=1 +RotorCircularDuctL3_Velocity_Multiplier[3]=1 +RotorCircularDuctL3_Velocity_Multiplier[4]=1 +RotorCircularDuctL3_Velocity_Multiplier[5]=1 +RotorCircularDuctL3_Velocity_Multiplier[6]=1 +RotorCircularDuctL3_Velocity_Multiplier[7]=1 +RotorCircularDuctL3_Velocity_Multiplier[8]=1 +RotorCircularDuctL3_HeatTransferNotes[0]= +RotorCircularDuctL3_HeatTransferNotes[1]= +RotorCircularDuctL3_HeatTransferNotes[2]= +RotorCircularDuctL3_HeatTransferNotes[3]= +RotorCircularDuctL3_HeatTransferNotes[4]= +RotorCircularDuctL3_HeatTransferNotes[5]= +RotorCircularDuctL3_HeatTransferNotes[6]= +RotorCircularDuctL3_HeatTransferNotes[7]= +RotorCircularDuctL3_HeatTransferNotes[8]= +RotorCircularDuctL3_Expansion_k_Adjustment=1 +RotorCircularDuctL3_Contraction_k_Adjustment=1 +RotorCircularDuctL4_h_Input[0]=0 +RotorCircularDuctL4_h_Input[1]=0 +RotorCircularDuctL4_h_Input[2]=0 +RotorCircularDuctL4_h_Input[3]=0 +RotorCircularDuctL4_h_Input[4]=0 +RotorCircularDuctL4_h_Input[5]=0 +RotorCircularDuctL4_h_Input[6]=0 +RotorCircularDuctL4_h_Input[7]=0 +RotorCircularDuctL4_h_Input[8]=0 +RotorCircularDuctL4_h_Adjust[0]=1 +RotorCircularDuctL4_h_Adjust[1]=1 +RotorCircularDuctL4_h_Adjust[2]=1 +RotorCircularDuctL4_h_Adjust[3]=1 +RotorCircularDuctL4_h_Adjust[4]=1 +RotorCircularDuctL4_h_Adjust[5]=1 +RotorCircularDuctL4_h_Adjust[6]=1 +RotorCircularDuctL4_h_Adjust[7]=1 +RotorCircularDuctL4_h_Adjust[8]=1 +RotorCircularDuctL4_Velocity_Multiplier[0]=1 +RotorCircularDuctL4_Velocity_Multiplier[1]=1 +RotorCircularDuctL4_Velocity_Multiplier[2]=1 +RotorCircularDuctL4_Velocity_Multiplier[3]=1 +RotorCircularDuctL4_Velocity_Multiplier[4]=1 +RotorCircularDuctL4_Velocity_Multiplier[5]=1 +RotorCircularDuctL4_Velocity_Multiplier[6]=1 +RotorCircularDuctL4_Velocity_Multiplier[7]=1 +RotorCircularDuctL4_Velocity_Multiplier[8]=1 +RotorCircularDuctL4_HeatTransferNotes[0]= +RotorCircularDuctL4_HeatTransferNotes[1]= +RotorCircularDuctL4_HeatTransferNotes[2]= +RotorCircularDuctL4_HeatTransferNotes[3]= +RotorCircularDuctL4_HeatTransferNotes[4]= +RotorCircularDuctL4_HeatTransferNotes[5]= +RotorCircularDuctL4_HeatTransferNotes[6]= +RotorCircularDuctL4_HeatTransferNotes[7]= +RotorCircularDuctL4_HeatTransferNotes[8]= +RotorCircularDuctL4_Expansion_k_Adjustment=1 +RotorCircularDuctL4_Contraction_k_Adjustment=1 +RotorCircularDuctL1_Friction_k_Adjustment[0]=1 +RotorCircularDuctL1_Friction_k_Adjustment[1]=1 +RotorCircularDuctL1_Friction_k_Adjustment[2]=1 +RotorCircularDuctL1_Friction_k_Adjustment[3]=1 +RotorCircularDuctL1_Friction_k_Adjustment[4]=1 +RotorCircularDuctL1_Friction_k_Adjustment[5]=1 +RotorCircularDuctL1_Friction_k_Adjustment[6]=1 +RotorCircularDuctL1_Friction_k_Adjustment[7]=1 +RotorCircularDuctL1_Friction_k_Adjustment[8]=1 +RotorCircularDuctL1_Contraction_Notes= +RotorCircularDuctL1_Duct_Notes[0]= +RotorCircularDuctL1_Duct_Notes[1]= +RotorCircularDuctL1_Duct_Notes[2]= +RotorCircularDuctL1_Duct_Notes[3]= +RotorCircularDuctL1_Duct_Notes[4]= +RotorCircularDuctL1_Duct_Notes[5]= +RotorCircularDuctL1_Duct_Notes[6]= +RotorCircularDuctL1_Duct_Notes[7]= +RotorCircularDuctL1_Duct_Notes[8]= +RotorCircularDuctL1_Expansion_Notes= +RotorCircularDuctL2_Friction_k_Adjustment[0]=1 +RotorCircularDuctL2_Friction_k_Adjustment[1]=1 +RotorCircularDuctL2_Friction_k_Adjustment[2]=1 +RotorCircularDuctL2_Friction_k_Adjustment[3]=1 +RotorCircularDuctL2_Friction_k_Adjustment[4]=1 +RotorCircularDuctL2_Friction_k_Adjustment[5]=1 +RotorCircularDuctL2_Friction_k_Adjustment[6]=1 +RotorCircularDuctL2_Friction_k_Adjustment[7]=1 +RotorCircularDuctL2_Friction_k_Adjustment[8]=1 +RotorCircularDuctL2_Contraction_Notes= +RotorCircularDuctL2_Duct_Notes[0]= +RotorCircularDuctL2_Duct_Notes[1]= +RotorCircularDuctL2_Duct_Notes[2]= +RotorCircularDuctL2_Duct_Notes[3]= +RotorCircularDuctL2_Duct_Notes[4]= +RotorCircularDuctL2_Duct_Notes[5]= +RotorCircularDuctL2_Duct_Notes[6]= +RotorCircularDuctL2_Duct_Notes[7]= +RotorCircularDuctL2_Duct_Notes[8]= +RotorCircularDuctL2_Expansion_Notes= +RotorCircularDuctL3_Friction_k_Adjustment[0]=1 +RotorCircularDuctL3_Friction_k_Adjustment[1]=1 +RotorCircularDuctL3_Friction_k_Adjustment[2]=1 +RotorCircularDuctL3_Friction_k_Adjustment[3]=1 +RotorCircularDuctL3_Friction_k_Adjustment[4]=1 +RotorCircularDuctL3_Friction_k_Adjustment[5]=1 +RotorCircularDuctL3_Friction_k_Adjustment[6]=1 +RotorCircularDuctL3_Friction_k_Adjustment[7]=1 +RotorCircularDuctL3_Friction_k_Adjustment[8]=1 +RotorCircularDuctL3_Contraction_Notes= +RotorCircularDuctL3_Duct_Notes[0]= +RotorCircularDuctL3_Duct_Notes[1]= +RotorCircularDuctL3_Duct_Notes[2]= +RotorCircularDuctL3_Duct_Notes[3]= +RotorCircularDuctL3_Duct_Notes[4]= +RotorCircularDuctL3_Duct_Notes[5]= +RotorCircularDuctL3_Duct_Notes[6]= +RotorCircularDuctL3_Duct_Notes[7]= +RotorCircularDuctL3_Duct_Notes[8]= +RotorCircularDuctL3_Expansion_Notes= +RotorCircularDuctL4_Friction_k_Adjustment[0]=1 +RotorCircularDuctL4_Friction_k_Adjustment[1]=1 +RotorCircularDuctL4_Friction_k_Adjustment[2]=1 +RotorCircularDuctL4_Friction_k_Adjustment[3]=1 +RotorCircularDuctL4_Friction_k_Adjustment[4]=1 +RotorCircularDuctL4_Friction_k_Adjustment[5]=1 +RotorCircularDuctL4_Friction_k_Adjustment[6]=1 +RotorCircularDuctL4_Friction_k_Adjustment[7]=1 +RotorCircularDuctL4_Friction_k_Adjustment[8]=1 +RotorCircularDuctL4_Contraction_Notes= +RotorCircularDuctL4_Duct_Notes[0]= +RotorCircularDuctL4_Duct_Notes[1]= +RotorCircularDuctL4_Duct_Notes[2]= +RotorCircularDuctL4_Duct_Notes[3]= +RotorCircularDuctL4_Duct_Notes[4]= +RotorCircularDuctL4_Duct_Notes[5]= +RotorCircularDuctL4_Duct_Notes[6]= +RotorCircularDuctL4_Duct_Notes[7]= +RotorCircularDuctL4_Duct_Notes[8]= +RotorCircularDuctL4_Expansion_Notes= +CircularDuctL1ChannelHeight=3 +CircularDuctL1ChannelWidth=2 +StatorRectangularDuctLayer_CornerRadius[0]=0 +StatorRectangularDuctLayer_CornerRadius[1]=0 +StatorRectangularDuctLayer_CornerRadius[2]=0 +StatorRectangularDuctLayer_CornerRadius[3]=0 +CircularDuctL2ChannelHeight=3 +CircularDuctL2ChannelWidth=2 +CircularDuctL3ChannelHeight=3 +CircularDuctL3ChannelWidth=2 +CircularDuctL4ChannelHeight=3 +CircularDuctL4ChannelWidth=2 +Axle_Hole_Diameter=0 +Stator_Ducts=6 +Stator_Duct_Ratio=0,7 +Stator_Duct_Gap=2,5 +Number_Shaft_Spokes=4 +Spoke_Radial_Depth=10 +Spoke_Thickness=5 +Vel_Mult_TVent_EndRing_Outer_F=1 +Notes_TVent_EndRing_Outer_F= +h_Input_TVent_EndRing_Outer_F=0 +h_Adjust_TVent_EndRing_Outer_F=1 +Calc_Input_h_TVent_EndRing_Outer_F=0 +Vel_Mult_TVent_EndRing_Bore_F=1 +Notes_TVent_EndRing_Bore_F= +h_Input_TVent_EndRing_Bore_F=0 +h_Adjust_TVent_EndRing_Bore_F=1 +Calc_Input_h_TVent_EndRing_Bore_F=0 +Vel_Mult_TVent_EndRing_End_F=1 +Notes_TVent_EndRing_End_F= +h_Input_TVent_EndRing_End_F=0 +h_Adjust_TVent_EndRing_End_F=1 +Calc_Input_h_TVent_EndRing_End_F=0 +Vel_Mult_TVent_EndRing_ExtBore_F=1 +Notes_TVent_EndRing_ExtBore_F= +h_Input_TVent_EndRing_ExtBore_F=0 +h_Adjust_TVent_EndRing_ExtBore_F=1 +Calc_Input_h_TVent_EndRing_ExtBore_F=0 +Vel_Mult_TVent_EndRing_ExtOuter_F=1 +Notes_TVent_EndRing_ExtOuter_F= +h_Input_TVent_EndRing_ExtOuter_F=0 +h_Adjust_TVent_EndRing_ExtOuter_F=1 +Calc_Input_h_TVent_EndRing_ExtOuter_F=0 +Vel_Mult_TVent_EndRing_ExtInter_F=1 +Notes_TVent_EndRing_ExtInter_F= +h_Input_TVent_EndRing_ExtInter_F=0 +h_Adjust_TVent_EndRing_ExtInter_F=1 +Calc_Input_h_TVent_EndRing_ExtInter_F=0 +Vel_Mult_TVent_EndRing_Outer_R=1 +Notes_TVent_EndRing_Outer_R= +h_Input_TVent_EndRing_Outer_R=0 +h_Adjust_TVent_EndRing_Outer_R=1 +Calc_Input_h_TVent_EndRing_Outer_R=0 +Vel_Mult_TVent_EndRing_Bore_R=1 +Notes_TVent_EndRing_Bore_R= +h_Input_TVent_EndRing_Bore_R=0 +h_Adjust_TVent_EndRing_Bore_R=1 +Calc_Input_h_TVent_EndRing_Bore_R=0 +Vel_Mult_TVent_EndRing_End_R=1 +Notes_TVent_EndRing_End_R= +h_Input_TVent_EndRing_End_R=0 +h_Adjust_TVent_EndRing_End_R=1 +Calc_Input_h_TVent_EndRing_End_R=0 +Vel_Mult_TVent_EndRing_ExtBore_R=1 +Notes_TVent_EndRing_ExtBore_R= +h_Input_TVent_EndRing_ExtBore_R=0 +h_Adjust_TVent_EndRing_ExtBore_R=1 +Calc_Input_h_TVent_EndRing_ExtBore_R=0 +Vel_Mult_TVent_EndRing_ExtOuter_R=1 +Notes_TVent_EndRing_ExtOuter_R= +h_Input_TVent_EndRing_ExtOuter_R=0 +h_Adjust_TVent_EndRing_ExtOuter_R=1 +Calc_Input_h_TVent_EndRing_ExtOuter_R=0 +Vel_Mult_TVent_EndRing_ExtInter_R=1 +Notes_TVent_EndRing_ExtInter_R= +h_Input_TVent_EndRing_ExtInter_R=0 +h_Adjust_TVent_EndRing_ExtInter_R=1 +Calc_Input_h_TVent_EndRing_ExtInter_R=0 +Shaft_Hole_Diameter=0 +StatorDuctType=0 +RotorDuctType=0 +StatorRadialDuct_Friction_k_Adjustment=1 +StatorRadialDuct_Duct_Notes= +StatorRadialDuct_h_Input=0 +StatorRadialDuct_h_Adjust=1 +StatorRadialDuct_Velocity_Multiplier=1 +StatorRadialDuct_HeatTransferNotes= +RotorRadialDuct_Friction_k_Adjustment=1 +RotorRadialDuct_Duct_Notes= +RotorRadialDuct_h_Input=0 +RotorRadialDuct_h_Adjust=1 +RotorRadialDuct_Velocity_Multiplier=1 +RotorRadialDuct_HeatTransferNotes= +Rotor_Duct_Wall_Roughness=0,0025 +Notes_Rotor_Duct_Layer_1= +Notes_Rotor_Duct_Layer_2= +Vel_Mult_TVent_RotorEwdg_Inner_F=1 +Notes_TVent_RotorEwdg_Inner_F= +h_Input_TVent_RotorEwdg_Inner_F=0 +h_Adjust_TVent_RotorEwdg_Inner_F=1 +Calc_Input_h_TVent_RotorEwdg_Inner_F=0 +Vel_Mult_TVent_RotorEwdg_Outer_F=1 +Notes_TVent_RotorEwdg_Outer_F= +h_Input_TVent_RotorEwdg_Outer_F=0 +h_Adjust_TVent_RotorEwdg_Outer_F=1 +Calc_Input_h_TVent_RotorEwdg_Outer_F=0 +Vel_Mult_TVent_RotorEwdg_End_F=1 +Notes_TVent_RotorEwdg_End_F= +h_Input_TVent_RotorEwdg_End_F=0 +h_Adjust_TVent_RotorEwdg_End_F=1 +Calc_Input_h_TVent_RotorEwdg_End_F=0 +Vel_Mult_TVent_RotorEwdg_Inner_R=1 +Notes_TVent_RotorEwdg_Inner_R= +h_Input_TVent_RotorEwdg_Inner_R=0 +h_Adjust_TVent_RotorEwdg_Inner_R=1 +Calc_Input_h_TVent_RotorEwdg_Inner_R=0 +Vel_Mult_TVent_RotorEwdg_Outer_R=1 +Notes_TVent_RotorEwdg_Outer_R= +h_Input_TVent_RotorEwdg_Outer_R=0 +h_Adjust_TVent_RotorEwdg_Outer_R=1 +Calc_Input_h_TVent_RotorEwdg_Outer_R=0 +Vel_Mult_TVent_RotorEwdg_End_R=1 +Notes_TVent_RotorEwdg_End_R= +h_Input_TVent_RotorEwdg_End_R=0 +h_Adjust_TVent_RotorEwdg_End_R=1 +Calc_Input_h_TVent_RotorEwdg_End_R=0 +Vel_Mult_TVent_RotorLam_F=1 +Notes_TVent_RotorLam_F= +h_Input_TVent_RotorLam_F=0 +h_Adjust_TVent_RotorLam_F=1 +Calc_Input_h_TVent_RotorLam_F=0 +Vel_Mult_TVent_RotorLam_R=1 +Notes_TVent_RotorLam_R= +h_Input_TVent_RotorLam_R=0 +h_Adjust_TVent_RotorLam_R=1 +Calc_Input_h_TVent_RotorLam_R=0 +Vel_Mult_TVent_Magnet_F=1 +Notes_TVent_Magnet_F= +h_Input_TVent_Magnet_F=0 +h_Adjust_TVent_Magnet_F=1 +Calc_Input_h_TVent_Magnet_F=0 +Vel_Mult_TVent_Magnet_R=1 +Notes_TVent_Magnet_R= +h_Input_TVent_Magnet_R=0 +h_Adjust_TVent_Magnet_R=1 +Calc_Input_h_TVent_Magnet_R=0 +IncludeEndspaceRotationEffects=True +TVent_StatorDuct_HTC_Calc=1 +TVent_HousingCircDucts=False +TVent_NoAirgapFlow=False +TVentRadialDuctFlowDirection=1 +RadialDuctType=1 +Area_Mult_TVent_Stator_Duct[0]=1 +Area_Mult_TVent_Stator_Duct[1]=1 +Area_Mult_TVent_Stator_Duct[2]=1 +Area_Mult_TVent_Stator_Duct[3]=1 +Area_Mult_TVent_Stator_Duct[4]=1 +Area_Mult_TVent_Stator_Duct[5]=1 +Area_Mult_TVent_Stator_Duct[6]=1 +Area_Mult_TVent_Stator_Duct[7]=1 +Area_Mult_TVent_Stator_Duct[8]=1 +Area_Mult_TVent_Rotor_Duct[0]=1 +Area_Mult_TVent_Rotor_Duct[1]=1 +Area_Mult_TVent_Rotor_Duct[2]=1 +Area_Mult_TVent_Rotor_Duct[3]=1 +Area_Mult_TVent_Rotor_Duct[4]=1 +Area_Mult_TVent_Rotor_Duct[5]=1 +Area_Mult_TVent_Rotor_Duct[6]=1 +Area_Mult_TVent_Rotor_Duct[7]=1 +Area_Mult_TVent_Rotor_Duct[8]=1 +Area_Mult_TVent_Airgap_Stator[0]=1 +Area_Mult_TVent_Airgap_Stator[1]=1 +Area_Mult_TVent_Airgap_Stator[2]=1 +Area_Mult_TVent_Airgap_Stator[3]=1 +Area_Mult_TVent_Airgap_Stator[4]=1 +Area_Mult_TVent_Airgap_Stator[5]=1 +Area_Mult_TVent_Airgap_Stator[6]=1 +Area_Mult_TVent_Airgap_Stator[7]=1 +Area_Mult_TVent_Airgap_Stator[8]=1 +Area_Mult_TVent_Airgap_Rotor[0]=1 +Area_Mult_TVent_Airgap_Rotor[1]=1 +Area_Mult_TVent_Airgap_Rotor[2]=1 +Area_Mult_TVent_Airgap_Rotor[3]=1 +Area_Mult_TVent_Airgap_Rotor[4]=1 +Area_Mult_TVent_Airgap_Rotor[5]=1 +Area_Mult_TVent_Airgap_Rotor[6]=1 +Area_Mult_TVent_Airgap_Rotor[7]=1 +Area_Mult_TVent_Airgap_Rotor[8]=1 +Area_Mult_TVent_Endcap_F=1 +Area_Mult_TVent_Endcap_R=1 +Area_Mult_TVent_Housing_OHang_F=1 +Area_Mult_TVent_Housing_OHang_R=1 +Area_Mult_TVent_Shaft_OHang_F=1 +Area_Mult_TVent_Shaft_OHang_R=1 +Area_Mult_TVent_Axle_OHang_F=1 +Area_Mult_TVent_Axle_OHang_R=1 +Area_Mult_TVent_RotorEwdg_Inner_F=1 +iArea_Mult_TVent_RotorEwdg_Inner_F=1 +Area_Mult_TVent_RotorEwdg_Outer_F=1 +iArea_Mult_TVent_RotorEwdg_Outer_F=1 +Area_Mult_TVent_RotorEwdg_End_F=1 +iArea_Mult_TVent_RotorEwdg_End_F=1 +Area_Mult_TVent_RotorEwdg_Inner_R=1 +iArea_Mult_TVent_RotorEwdg_Inner_R=1 +Area_Mult_TVent_RotorEwdg_Outer_R=1 +iArea_Mult_TVent_RotorEwdg_Outer_R=1 +Area_Mult_TVent_RotorEwdg_End_R=1 +iArea_Mult_TVent_RotorEwdg_End_R=1 +CircularDuctL1_Area_Mult_A[0]=1 +CircularDuctL1_Area_Mult_A[1]=1 +CircularDuctL1_Area_Mult_A[2]=1 +CircularDuctL1_Area_Mult_A[3]=1 +CircularDuctL1_Area_Mult_A[4]=1 +CircularDuctL1_Area_Mult_A[5]=1 +CircularDuctL1_Area_Mult_A[6]=1 +CircularDuctL1_Area_Mult_A[7]=1 +CircularDuctL1_Area_Mult_A[8]=1 +CircularDuctL2_Area_Mult_A[0]=1 +CircularDuctL2_Area_Mult_A[1]=1 +CircularDuctL2_Area_Mult_A[2]=1 +CircularDuctL2_Area_Mult_A[3]=1 +CircularDuctL2_Area_Mult_A[4]=1 +CircularDuctL2_Area_Mult_A[5]=1 +CircularDuctL2_Area_Mult_A[6]=1 +CircularDuctL2_Area_Mult_A[7]=1 +CircularDuctL2_Area_Mult_A[8]=1 +CircularDuctL3_Area_Mult_A[0]=1 +CircularDuctL3_Area_Mult_A[1]=1 +CircularDuctL3_Area_Mult_A[2]=1 +CircularDuctL3_Area_Mult_A[3]=1 +CircularDuctL3_Area_Mult_A[4]=1 +CircularDuctL3_Area_Mult_A[5]=1 +CircularDuctL3_Area_Mult_A[6]=1 +CircularDuctL3_Area_Mult_A[7]=1 +CircularDuctL3_Area_Mult_A[8]=1 +CircularDuctL4_Area_Mult_A[0]=1 +CircularDuctL4_Area_Mult_A[1]=1 +CircularDuctL4_Area_Mult_A[2]=1 +CircularDuctL4_Area_Mult_A[3]=1 +CircularDuctL4_Area_Mult_A[4]=1 +CircularDuctL4_Area_Mult_A[5]=1 +CircularDuctL4_Area_Mult_A[6]=1 +CircularDuctL4_Area_Mult_A[7]=1 +CircularDuctL4_Area_Mult_A[8]=1 +StatorRadialDuct_Area_Mult=1 +RotorRadial_Duct_Area_Mult=1 +Area_Mult_TVent_RotorLam_F=1 +Area_Mult_TVent_RotorLam_R=1 +Area_Mult_TVent_Magnet_F=1 +Area_Mult_TVent_Magnet_R=1 +Area_Mult_TVent_EndRing_Outer_F=1 +Area_Mult_TVent_EndRing_Bore_F=1 +Area_Mult_TVent_EndRing_End_F=1 +Area_Mult_TVent_EndRing_ExtBore_F=1 +Area_Mult_TVent_EndRing_ExtOuter_F=1 +Area_Mult_TVent_EndRing_ExtInter_F=1 +Area_Mult_TVent_EndRing_Outer_R=1 +Area_Mult_TVent_EndRing_Bore_R=1 +Area_Mult_TVent_EndRing_End_R=1 +Area_Mult_TVent_EndRing_ExtBore_R=1 +Area_Mult_TVent_EndRing_ExtOuter_R=1 +Area_Mult_TVent_EndRing_ExtInter_R=1 +SelfVentilation=False +TVent_SpokeDuct_k_Wall_Friction_Adjust[0]=1 +TVent_SpokeDuct_k_Wall_Friction_Adjust[1]=1 +TVent_SpokeDuct_k_Wall_Friction_Adjust[2]=1 +TVent_SpokeDuct_k_Wall_Friction_Adjust[3]=1 +TVent_SpokeDuct_k_Wall_Friction_Adjust[4]=1 +TVent_SpokeDuct_k_Wall_Friction_Adjust[5]=1 +TVent_SpokeDuct_k_Wall_Friction_Adjust[6]=1 +TVent_SpokeDuct_k_Wall_Friction_Adjust[7]=1 +TVent_SpokeDuct_k_Wall_Friction_Adjust[8]=1 +TVentFluidTemperature=1 +VortexTransition=1 +ProportionTVentRadialFlow=1 +TVentInletAxialOffset_F=0 +TVentInletAxialOffset_R=0 +TVentRotorDuctBlockage=0 +Calc_Input_h_TVent_CupBase=0 +h_Input_TVent_CupBase=0 +h_Adjust_TVent_CupBase=1 +Vel_Mult_TVent_CupBase=1 +Area_Mult_TVent_CupBase=1 +Notes_TVent_CupBase= +Calc_Input_h_TVent_CupCylinderOH=0 +h_Input_TVent_CupCylinderOH=0 +h_Adjust_TVent_CupCylinderOH=1 +Vel_Mult_TVent_CupCylinderOH=1 +Area_Mult_TVent_CupCylinderOH=1 +Notes_TVent_CupCylinderOH= +TVent_Airgap_FrictionFactorCalc=1 +TVent_RadialFlowPathCalc=1 +TVent_htc_Recalc=1 +TVent_InletExpansion_CSA=1 +TVent_UsingAverageAirgapTempCalc=1 +Calc_Input_h_TVent_EWdg_Inner_F[0]=0 +h_Input_TVent_EWdg_Inner_F[0]=10 +h_Adjust_TVent_EWdg_Inner_F[0]=1 +Velocity_Multiplier_TVent_EWdg_Inner_F[0]=1 +Area_Mult_TVent_EWdg_Inner_F[0]=1 +Notes_TVent_EWdg_Inner_F[0]= +Calc_Input_h_TVent_EW_Outer_F[0]=0 +h_Input_TVent_EW_Outer_F[0]=10 +h_Adjust_TVent_EW_Outer_F[0]=1 +Velocity_Multiplier_TVent_EW_Outer_F[0]=1 +Area_Mult_TVent_EW_Outer_F[0]=1 +Notes_TVent_EW_Outer_F[0]= +Calc_Input_h_TVent_EWdg_Front_F[0]=0 +h_Input_TVent_EWdg_Front_F[0]=10 +h_Adjust_TVent_EWdg_Front_F[0]=1 +Velocity_Multiplier_TVent_EWdg_Front_F[0]=1 +Area_Mult_TVent_EWdg_Front_F[0]=1 +Notes_TVent_EWdg_Front_F[0]= +Calc_Input_h_TVent_EWdg_Rear_F[0]=0 +h_Input_TVent_EWdg_Rear_F[0]=10 +h_Adjust_TVent_EWdg_Rear_F[0]=1 +Velocity_Multiplier_TVent_EWdg_Rear_F[0]=0 +Area_Mult_TVent_EWdg_Rear_F[0]=1 +Notes_TVent_EWdg_Rear_F[0]= +Calc_Input_h_TVent_EWdg_Inner_R[0]=0 +h_Input_TVent_EWdg_Inner_R[0]=10 +h_Adjust_TVent_EWdg_Inner_R[0]=1 +Velocity_Multiplier_TVent_EWdg_Inner_R[0]=1 +Area_Mult_TVent_EWdg_Inner_R[0]=1 +Notes_TVent_EWdg_Inner_R[0]= +Calc_Input_h_TVent_EW_Outer_R[0]=0 +h_Input_TVent_EW_Outer_R[0]=10 +h_Adjust_TVent_EW_Outer_R[0]=1 +Velocity_Multiplier_TVent_EW_Outer_R[0]=1 +Area_Mult_TVent_EW_Outer_R[0]=1 +Notes_TVent_EW_Outer_R[0]= +Calc_Input_h_TVent_EWdg_Front_R[0]=0 +h_Input_TVent_EWdg_Front_R[0]=10 +h_Adjust_TVent_EWdg_Front_R[0]=1 +Velocity_Multiplier_TVent_EWdg_Front_R[0]=0 +Area_Mult_TVent_EWdg_Front_R[0]=1 +Notes_TVent_EWdg_Front_R[0]= +Calc_Input_h_TVent_EWdg_Rear_R[0]=0 +h_Input_TVent_EWdg_Rear_R[0]=10 +h_Adjust_TVent_EWdg_Rear_R[0]=1 +Velocity_Multiplier_TVent_EWdg_Rear_R[0]=1 +Area_Mult_TVent_EWdg_Rear_R[0]=1 +Notes_TVent_EWdg_Rear_R[0]= +Velocity_Multiplier_TVent_Stator_Duct[0]=1 +Velocity_Multiplier_TVent_Stator_Duct[1]=1 +Velocity_Multiplier_TVent_Stator_Duct[2]=1 +Velocity_Multiplier_TVent_Stator_Duct[3]=1 +Velocity_Multiplier_TVent_Stator_Duct[4]=1 +Velocity_Multiplier_TVent_Stator_Duct[5]=1 +Velocity_Multiplier_TVent_Stator_Duct[6]=1 +Velocity_Multiplier_TVent_Stator_Duct[7]=1 +Velocity_Multiplier_TVent_Stator_Duct[8]=1 +Calc_Input_h_TVent_Stator_Duct[0]=0 +Calc_Input_h_TVent_Stator_Duct[1]=0 +Calc_Input_h_TVent_Stator_Duct[2]=0 +Calc_Input_h_TVent_Stator_Duct[3]=0 +Calc_Input_h_TVent_Stator_Duct[4]=0 +Calc_Input_h_TVent_Stator_Duct[5]=0 +Calc_Input_h_TVent_Stator_Duct[6]=0 +Calc_Input_h_TVent_Stator_Duct[7]=0 +Calc_Input_h_TVent_Stator_Duct[8]=0 +h_Input_TVent_Stator_Duct[0]=0 +h_Input_TVent_Stator_Duct[1]=0 +h_Input_TVent_Stator_Duct[2]=0 +h_Input_TVent_Stator_Duct[3]=0 +h_Input_TVent_Stator_Duct[4]=0 +h_Input_TVent_Stator_Duct[5]=0 +h_Input_TVent_Stator_Duct[6]=0 +h_Input_TVent_Stator_Duct[7]=0 +h_Input_TVent_Stator_Duct[8]=0 +h_Adjust_TVent_Stator_Duct[0]=1 +h_Adjust_TVent_Stator_Duct[1]=1 +h_Adjust_TVent_Stator_Duct[2]=1 +h_Adjust_TVent_Stator_Duct[3]=1 +h_Adjust_TVent_Stator_Duct[4]=1 +h_Adjust_TVent_Stator_Duct[5]=1 +h_Adjust_TVent_Stator_Duct[6]=1 +h_Adjust_TVent_Stator_Duct[7]=1 +h_Adjust_TVent_Stator_Duct[8]=1 +Notes_TVent_Stator_Duct[0]= +Notes_TVent_Stator_Duct[1]= +Notes_TVent_Stator_Duct[2]= +Notes_TVent_Stator_Duct[3]= +Notes_TVent_Stator_Duct[4]= +Notes_TVent_Stator_Duct[5]= +Notes_TVent_Stator_Duct[6]= +Notes_TVent_Stator_Duct[7]= +Notes_TVent_Stator_Duct[8]= +CircularDuctL1_Calc_Input_h_A[0]=0 +CircularDuctL1_Calc_Input_h_A[1]=0 +CircularDuctL1_Calc_Input_h_A[2]=0 +CircularDuctL1_Calc_Input_h_A[3]=0 +CircularDuctL1_Calc_Input_h_A[4]=0 +CircularDuctL1_Calc_Input_h_A[5]=0 +CircularDuctL1_Calc_Input_h_A[6]=0 +CircularDuctL1_Calc_Input_h_A[7]=0 +CircularDuctL1_Calc_Input_h_A[8]=0 +CircularDuctL2_Calc_Input_h[0]=0 +CircularDuctL2_Calc_Input_h[1]=0 +CircularDuctL2_Calc_Input_h[2]=0 +CircularDuctL2_Calc_Input_h[3]=0 +CircularDuctL2_Calc_Input_h[4]=0 +CircularDuctL2_Calc_Input_h[5]=0 +CircularDuctL2_Calc_Input_h[6]=0 +CircularDuctL2_Calc_Input_h[7]=0 +CircularDuctL2_Calc_Input_h[8]=0 +CircularDuctL3_Calc_Input_h[0]=0 +CircularDuctL3_Calc_Input_h[1]=0 +CircularDuctL3_Calc_Input_h[2]=0 +CircularDuctL3_Calc_Input_h[3]=0 +CircularDuctL3_Calc_Input_h[4]=0 +CircularDuctL3_Calc_Input_h[5]=0 +CircularDuctL3_Calc_Input_h[6]=0 +CircularDuctL3_Calc_Input_h[7]=0 +CircularDuctL3_Calc_Input_h[8]=0 +CircularDuctL4_Calc_Input_h[0]=0 +CircularDuctL4_Calc_Input_h[1]=0 +CircularDuctL4_Calc_Input_h[2]=0 +CircularDuctL4_Calc_Input_h[3]=0 +CircularDuctL4_Calc_Input_h[4]=0 +CircularDuctL4_Calc_Input_h[5]=0 +CircularDuctL4_Calc_Input_h[6]=0 +CircularDuctL4_Calc_Input_h[7]=0 +CircularDuctL4_Calc_Input_h[8]=0 +Velocity_Multiplier_TVent_Airgap_Stator[0]=1 +Velocity_Multiplier_TVent_Airgap_Stator[1]=1 +Velocity_Multiplier_TVent_Airgap_Stator[2]=1 +Velocity_Multiplier_TVent_Airgap_Stator[3]=1 +Velocity_Multiplier_TVent_Airgap_Stator[4]=1 +Velocity_Multiplier_TVent_Airgap_Stator[5]=1 +Velocity_Multiplier_TVent_Airgap_Stator[6]=1 +Velocity_Multiplier_TVent_Airgap_Stator[7]=1 +Velocity_Multiplier_TVent_Airgap_Stator[8]=1 +Calc_Input_h_TVent_Airgap_Stator[0]=0 +Calc_Input_h_TVent_Airgap_Stator[1]=0 +Calc_Input_h_TVent_Airgap_Stator[2]=0 +Calc_Input_h_TVent_Airgap_Stator[3]=0 +Calc_Input_h_TVent_Airgap_Stator[4]=0 +Calc_Input_h_TVent_Airgap_Stator[5]=0 +Calc_Input_h_TVent_Airgap_Stator[6]=0 +Calc_Input_h_TVent_Airgap_Stator[7]=0 +Calc_Input_h_TVent_Airgap_Stator[8]=0 +h_Input_TVent_Airgap_Stator[0]=0 +h_Input_TVent_Airgap_Stator[1]=0 +h_Input_TVent_Airgap_Stator[2]=0 +h_Input_TVent_Airgap_Stator[3]=0 +h_Input_TVent_Airgap_Stator[4]=0 +h_Input_TVent_Airgap_Stator[5]=0 +h_Input_TVent_Airgap_Stator[6]=0 +h_Input_TVent_Airgap_Stator[7]=0 +h_Input_TVent_Airgap_Stator[8]=0 +h_Adjust_TVent_Airgap_Stator[0]=1 +h_Adjust_TVent_Airgap_Stator[1]=1 +h_Adjust_TVent_Airgap_Stator[2]=1 +h_Adjust_TVent_Airgap_Stator[3]=1 +h_Adjust_TVent_Airgap_Stator[4]=1 +h_Adjust_TVent_Airgap_Stator[5]=1 +h_Adjust_TVent_Airgap_Stator[6]=1 +h_Adjust_TVent_Airgap_Stator[7]=1 +h_Adjust_TVent_Airgap_Stator[8]=1 +Notes_TVent_Airgap_Stator[0]= +Notes_TVent_Airgap_Stator[1]= +Notes_TVent_Airgap_Stator[2]= +Notes_TVent_Airgap_Stator[3]= +Notes_TVent_Airgap_Stator[4]= +Notes_TVent_Airgap_Stator[5]= +Notes_TVent_Airgap_Stator[6]= +Notes_TVent_Airgap_Stator[7]= +Notes_TVent_Airgap_Stator[8]= +Velocity_Multiplier_TVent_Airgap_Rotor[0]=1 +Velocity_Multiplier_TVent_Airgap_Rotor[1]=1 +Velocity_Multiplier_TVent_Airgap_Rotor[2]=1 +Velocity_Multiplier_TVent_Airgap_Rotor[3]=1 +Velocity_Multiplier_TVent_Airgap_Rotor[4]=1 +Velocity_Multiplier_TVent_Airgap_Rotor[5]=1 +Velocity_Multiplier_TVent_Airgap_Rotor[6]=1 +Velocity_Multiplier_TVent_Airgap_Rotor[7]=1 +Velocity_Multiplier_TVent_Airgap_Rotor[8]=1 +Calc_Input_h_TVent_Airgap_Rotor[0]=0 +Calc_Input_h_TVent_Airgap_Rotor[1]=0 +Calc_Input_h_TVent_Airgap_Rotor[2]=0 +Calc_Input_h_TVent_Airgap_Rotor[3]=0 +Calc_Input_h_TVent_Airgap_Rotor[4]=0 +Calc_Input_h_TVent_Airgap_Rotor[5]=0 +Calc_Input_h_TVent_Airgap_Rotor[6]=0 +Calc_Input_h_TVent_Airgap_Rotor[7]=0 +Calc_Input_h_TVent_Airgap_Rotor[8]=0 +h_Input_TVent_Airgap_Rotor[0]=0 +h_Input_TVent_Airgap_Rotor[1]=0 +h_Input_TVent_Airgap_Rotor[2]=0 +h_Input_TVent_Airgap_Rotor[3]=0 +h_Input_TVent_Airgap_Rotor[4]=0 +h_Input_TVent_Airgap_Rotor[5]=0 +h_Input_TVent_Airgap_Rotor[6]=0 +h_Input_TVent_Airgap_Rotor[7]=0 +h_Input_TVent_Airgap_Rotor[8]=0 +h_Adjust_TVent_Airgap_Rotor[0]=1 +h_Adjust_TVent_Airgap_Rotor[1]=1 +h_Adjust_TVent_Airgap_Rotor[2]=1 +h_Adjust_TVent_Airgap_Rotor[3]=1 +h_Adjust_TVent_Airgap_Rotor[4]=1 +h_Adjust_TVent_Airgap_Rotor[5]=1 +h_Adjust_TVent_Airgap_Rotor[6]=1 +h_Adjust_TVent_Airgap_Rotor[7]=1 +h_Adjust_TVent_Airgap_Rotor[8]=1 +Notes_TVent_Airgap_Rotor[0]= +Notes_TVent_Airgap_Rotor[1]= +Notes_TVent_Airgap_Rotor[2]= +Notes_TVent_Airgap_Rotor[3]= +Notes_TVent_Airgap_Rotor[4]= +Notes_TVent_Airgap_Rotor[5]= +Notes_TVent_Airgap_Rotor[6]= +Notes_TVent_Airgap_Rotor[7]= +Notes_TVent_Airgap_Rotor[8]= +Velocity_Multiplier_TVent_Rotor_Duct[0]=1 +Velocity_Multiplier_TVent_Rotor_Duct[1]=1 +Velocity_Multiplier_TVent_Rotor_Duct[2]=1 +Velocity_Multiplier_TVent_Rotor_Duct[3]=1 +Velocity_Multiplier_TVent_Rotor_Duct[4]=1 +Velocity_Multiplier_TVent_Rotor_Duct[5]=1 +Velocity_Multiplier_TVent_Rotor_Duct[6]=1 +Velocity_Multiplier_TVent_Rotor_Duct[7]=1 +Velocity_Multiplier_TVent_Rotor_Duct[8]=1 +Calc_Input_h_TVent_Rotor_Duct[0]=0 +Calc_Input_h_TVent_Rotor_Duct[1]=0 +Calc_Input_h_TVent_Rotor_Duct[2]=0 +Calc_Input_h_TVent_Rotor_Duct[3]=0 +Calc_Input_h_TVent_Rotor_Duct[4]=0 +Calc_Input_h_TVent_Rotor_Duct[5]=0 +Calc_Input_h_TVent_Rotor_Duct[6]=0 +Calc_Input_h_TVent_Rotor_Duct[7]=0 +Calc_Input_h_TVent_Rotor_Duct[8]=0 +h_Input_TVent_Rotor_Duct[0]=10 +h_Input_TVent_Rotor_Duct[1]=10 +h_Input_TVent_Rotor_Duct[2]=10 +h_Input_TVent_Rotor_Duct[3]=10 +h_Input_TVent_Rotor_Duct[4]=10 +h_Input_TVent_Rotor_Duct[5]=10 +h_Input_TVent_Rotor_Duct[6]=10 +h_Input_TVent_Rotor_Duct[7]=10 +h_Input_TVent_Rotor_Duct[8]=10 +h_Adjust_TVent_Rotor_Duct[0]=1 +h_Adjust_TVent_Rotor_Duct[1]=1 +h_Adjust_TVent_Rotor_Duct[2]=1 +h_Adjust_TVent_Rotor_Duct[3]=1 +h_Adjust_TVent_Rotor_Duct[4]=1 +h_Adjust_TVent_Rotor_Duct[5]=1 +h_Adjust_TVent_Rotor_Duct[6]=1 +h_Adjust_TVent_Rotor_Duct[7]=1 +h_Adjust_TVent_Rotor_Duct[8]=1 +Notes_TVent_Rotor_Duct[0]= +Notes_TVent_Rotor_Duct[1]= +Notes_TVent_Rotor_Duct[2]= +Notes_TVent_Rotor_Duct[3]= +Notes_TVent_Rotor_Duct[4]= +Notes_TVent_Rotor_Duct[5]= +Notes_TVent_Rotor_Duct[6]= +Notes_TVent_Rotor_Duct[7]= +Notes_TVent_Rotor_Duct[8]= +RotorCircularDuctL1_Calc_Input_h[0]=0 +RotorCircularDuctL1_Calc_Input_h[1]=0 +RotorCircularDuctL1_Calc_Input_h[2]=0 +RotorCircularDuctL1_Calc_Input_h[3]=0 +RotorCircularDuctL1_Calc_Input_h[4]=0 +RotorCircularDuctL1_Calc_Input_h[5]=0 +RotorCircularDuctL1_Calc_Input_h[6]=0 +RotorCircularDuctL1_Calc_Input_h[7]=0 +RotorCircularDuctL1_Calc_Input_h[8]=0 +RotorCircularDuctL2_Calc_Input_h[0]=0 +RotorCircularDuctL2_Calc_Input_h[1]=0 +RotorCircularDuctL2_Calc_Input_h[2]=0 +RotorCircularDuctL2_Calc_Input_h[3]=0 +RotorCircularDuctL2_Calc_Input_h[4]=0 +RotorCircularDuctL2_Calc_Input_h[5]=0 +RotorCircularDuctL2_Calc_Input_h[6]=0 +RotorCircularDuctL2_Calc_Input_h[7]=0 +RotorCircularDuctL2_Calc_Input_h[8]=0 +RotorCircularDuctL3_Calc_Input_h[0]=0 +RotorCircularDuctL3_Calc_Input_h[1]=0 +RotorCircularDuctL3_Calc_Input_h[2]=0 +RotorCircularDuctL3_Calc_Input_h[3]=0 +RotorCircularDuctL3_Calc_Input_h[4]=0 +RotorCircularDuctL3_Calc_Input_h[5]=0 +RotorCircularDuctL3_Calc_Input_h[6]=0 +RotorCircularDuctL3_Calc_Input_h[7]=0 +RotorCircularDuctL3_Calc_Input_h[8]=0 +RotorCircularDuctL4_Calc_Input_h[0]=0 +RotorCircularDuctL4_Calc_Input_h[1]=0 +RotorCircularDuctL4_Calc_Input_h[2]=0 +RotorCircularDuctL4_Calc_Input_h[3]=0 +RotorCircularDuctL4_Calc_Input_h[4]=0 +RotorCircularDuctL4_Calc_Input_h[5]=0 +RotorCircularDuctL4_Calc_Input_h[6]=0 +RotorCircularDuctL4_Calc_Input_h[7]=0 +RotorCircularDuctL4_Calc_Input_h[8]=0 +Calc_Input_h_TVent_StatorRadialDuct=0 +Calc_Input_h_TVent_RotorRadialDuct=0 +Area_Mult_TVent_Rotor_Spacer[0]=1 +Area_Mult_TVent_Rotor_Spacer[1]=1 +Area_Mult_TVent_Rotor_Spacer[2]=1 +Area_Mult_TVent_Rotor_Spacer[3]=1 +Area_Mult_TVent_Rotor_Spacer[4]=1 +Area_Mult_TVent_Rotor_Spacer[5]=1 +Area_Mult_TVent_Rotor_Spacer[6]=1 +Area_Mult_TVent_Rotor_Spacer[7]=1 +Area_Mult_TVent_Rotor_Spacer[8]=1 +Area_Mult_Tvent_Rotor_Coil_Base[0]=1 +Area_Mult_Tvent_Rotor_Coil_Base[1]=1 +Area_Mult_Tvent_Rotor_Coil_Base[2]=1 +Area_Mult_Tvent_Rotor_Coil_Base[3]=1 +Area_Mult_Tvent_Rotor_Coil_Base[4]=1 +Area_Mult_Tvent_Rotor_Coil_Base[5]=1 +Area_Mult_Tvent_Rotor_Coil_Base[6]=1 +Area_Mult_Tvent_Rotor_Coil_Base[7]=1 +Area_Mult_Tvent_Rotor_Coil_Base[8]=1 +Area_Mult_Tvent_Rotor_Back_Iron[0]=1 +Area_Mult_Tvent_Rotor_Back_Iron[1]=1 +Area_Mult_Tvent_Rotor_Back_Iron[2]=1 +Area_Mult_Tvent_Rotor_Back_Iron[3]=1 +Area_Mult_Tvent_Rotor_Back_Iron[4]=1 +Area_Mult_Tvent_Rotor_Back_Iron[5]=1 +Area_Mult_Tvent_Rotor_Back_Iron[6]=1 +Area_Mult_Tvent_Rotor_Back_Iron[7]=1 +Area_Mult_Tvent_Rotor_Back_Iron[8]=1 +Calc_Input_h_TVent_Rotor_Spacer[0]=0 +Calc_Input_h_TVent_Rotor_Spacer[1]=0 +Calc_Input_h_TVent_Rotor_Spacer[2]=0 +Calc_Input_h_TVent_Rotor_Spacer[3]=0 +Calc_Input_h_TVent_Rotor_Spacer[4]=0 +Calc_Input_h_TVent_Rotor_Spacer[5]=0 +Calc_Input_h_TVent_Rotor_Spacer[6]=0 +Calc_Input_h_TVent_Rotor_Spacer[7]=0 +Calc_Input_h_TVent_Rotor_Spacer[8]=0 +Calc_Input_h_TVent_Rotor_Coil_Base[0]=0 +Calc_Input_h_TVent_Rotor_Coil_Base[1]=0 +Calc_Input_h_TVent_Rotor_Coil_Base[2]=0 +Calc_Input_h_TVent_Rotor_Coil_Base[3]=0 +Calc_Input_h_TVent_Rotor_Coil_Base[4]=0 +Calc_Input_h_TVent_Rotor_Coil_Base[5]=0 +Calc_Input_h_TVent_Rotor_Coil_Base[6]=0 +Calc_Input_h_TVent_Rotor_Coil_Base[7]=0 +Calc_Input_h_TVent_Rotor_Coil_Base[8]=0 +Calc_Input_h_TVent_Rotor_Back_Iron[0]=0 +Calc_Input_h_TVent_Rotor_Back_Iron[1]=0 +Calc_Input_h_TVent_Rotor_Back_Iron[2]=0 +Calc_Input_h_TVent_Rotor_Back_Iron[3]=0 +Calc_Input_h_TVent_Rotor_Back_Iron[4]=0 +Calc_Input_h_TVent_Rotor_Back_Iron[5]=0 +Calc_Input_h_TVent_Rotor_Back_Iron[6]=0 +Calc_Input_h_TVent_Rotor_Back_Iron[7]=0 +Calc_Input_h_TVent_Rotor_Back_Iron[8]=0 +h_Input_TVent_Rotor_Spacer[0]=0 +h_Input_TVent_Rotor_Spacer[1]=0 +h_Input_TVent_Rotor_Spacer[2]=0 +h_Input_TVent_Rotor_Spacer[3]=0 +h_Input_TVent_Rotor_Spacer[4]=0 +h_Input_TVent_Rotor_Spacer[5]=0 +h_Input_TVent_Rotor_Spacer[6]=0 +h_Input_TVent_Rotor_Spacer[7]=0 +h_Input_TVent_Rotor_Spacer[8]=0 +h_Input_TVent_Rotor_Coil_Base[0]=0 +h_Input_TVent_Rotor_Coil_Base[1]=0 +h_Input_TVent_Rotor_Coil_Base[2]=0 +h_Input_TVent_Rotor_Coil_Base[3]=0 +h_Input_TVent_Rotor_Coil_Base[4]=0 +h_Input_TVent_Rotor_Coil_Base[5]=0 +h_Input_TVent_Rotor_Coil_Base[6]=0 +h_Input_TVent_Rotor_Coil_Base[7]=0 +h_Input_TVent_Rotor_Coil_Base[8]=0 +h_Input_TVent_Rotor_Back_Iron[0]=0 +h_Input_TVent_Rotor_Back_Iron[1]=0 +h_Input_TVent_Rotor_Back_Iron[2]=0 +h_Input_TVent_Rotor_Back_Iron[3]=0 +h_Input_TVent_Rotor_Back_Iron[4]=0 +h_Input_TVent_Rotor_Back_Iron[5]=0 +h_Input_TVent_Rotor_Back_Iron[6]=0 +h_Input_TVent_Rotor_Back_Iron[7]=0 +h_Input_TVent_Rotor_Back_Iron[8]=0 +h_Adjust_TVent_Rotor_Spacer[0]=1 +h_Adjust_TVent_Rotor_Spacer[1]=1 +h_Adjust_TVent_Rotor_Spacer[2]=1 +h_Adjust_TVent_Rotor_Spacer[3]=1 +h_Adjust_TVent_Rotor_Spacer[4]=1 +h_Adjust_TVent_Rotor_Spacer[5]=1 +h_Adjust_TVent_Rotor_Spacer[6]=1 +h_Adjust_TVent_Rotor_Spacer[7]=1 +h_Adjust_TVent_Rotor_Spacer[8]=1 +h_Adjust_TVent_Rotor_Coil_Base[0]=1 +h_Adjust_TVent_Rotor_Coil_Base[1]=1 +h_Adjust_TVent_Rotor_Coil_Base[2]=1 +h_Adjust_TVent_Rotor_Coil_Base[3]=1 +h_Adjust_TVent_Rotor_Coil_Base[4]=1 +h_Adjust_TVent_Rotor_Coil_Base[5]=1 +h_Adjust_TVent_Rotor_Coil_Base[6]=1 +h_Adjust_TVent_Rotor_Coil_Base[7]=1 +h_Adjust_TVent_Rotor_Coil_Base[8]=1 +h_Adjust_TVent_Rotor_Back_Iron[0]=1 +h_Adjust_TVent_Rotor_Back_Iron[1]=1 +h_Adjust_TVent_Rotor_Back_Iron[2]=1 +h_Adjust_TVent_Rotor_Back_Iron[3]=1 +h_Adjust_TVent_Rotor_Back_Iron[4]=1 +h_Adjust_TVent_Rotor_Back_Iron[5]=1 +h_Adjust_TVent_Rotor_Back_Iron[6]=1 +h_Adjust_TVent_Rotor_Back_Iron[7]=1 +h_Adjust_TVent_Rotor_Back_Iron[8]=1 +Velocity_Multiplier_TVent_Rotor_Spacer[0]=1 +Velocity_Multiplier_TVent_Rotor_Spacer[1]=1 +Velocity_Multiplier_TVent_Rotor_Spacer[2]=1 +Velocity_Multiplier_TVent_Rotor_Spacer[3]=1 +Velocity_Multiplier_TVent_Rotor_Spacer[4]=1 +Velocity_Multiplier_TVent_Rotor_Spacer[5]=1 +Velocity_Multiplier_TVent_Rotor_Spacer[6]=1 +Velocity_Multiplier_TVent_Rotor_Spacer[7]=1 +Velocity_Multiplier_TVent_Rotor_Spacer[8]=1 +Velocity_Multiplier_Tvent_Rotor_Coil_Base[0]=1 +Velocity_Multiplier_Tvent_Rotor_Coil_Base[1]=1 +Velocity_Multiplier_Tvent_Rotor_Coil_Base[2]=1 +Velocity_Multiplier_Tvent_Rotor_Coil_Base[3]=1 +Velocity_Multiplier_Tvent_Rotor_Coil_Base[4]=1 +Velocity_Multiplier_Tvent_Rotor_Coil_Base[5]=1 +Velocity_Multiplier_Tvent_Rotor_Coil_Base[6]=1 +Velocity_Multiplier_Tvent_Rotor_Coil_Base[7]=1 +Velocity_Multiplier_Tvent_Rotor_Coil_Base[8]=1 +Velocity_Multiplier_Tvent_Rotor_Back_Iron[0]=1 +Velocity_Multiplier_Tvent_Rotor_Back_Iron[1]=1 +Velocity_Multiplier_Tvent_Rotor_Back_Iron[2]=1 +Velocity_Multiplier_Tvent_Rotor_Back_Iron[3]=1 +Velocity_Multiplier_Tvent_Rotor_Back_Iron[4]=1 +Velocity_Multiplier_Tvent_Rotor_Back_Iron[5]=1 +Velocity_Multiplier_Tvent_Rotor_Back_Iron[6]=1 +Velocity_Multiplier_Tvent_Rotor_Back_Iron[7]=1 +Velocity_Multiplier_Tvent_Rotor_Back_Iron[8]=1 +Notes_TVent_Rotor_Spacer[0]= +Notes_TVent_Rotor_Spacer[1]= +Notes_TVent_Rotor_Spacer[2]= +Notes_TVent_Rotor_Spacer[3]= +Notes_TVent_Rotor_Spacer[4]= +Notes_TVent_Rotor_Spacer[5]= +Notes_TVent_Rotor_Spacer[6]= +Notes_TVent_Rotor_Spacer[7]= +Notes_TVent_Rotor_Spacer[8]= +Notes_TVent_Rotor_Coil_Base[0]= +Notes_TVent_Rotor_Coil_Base[1]= +Notes_TVent_Rotor_Coil_Base[2]= +Notes_TVent_Rotor_Coil_Base[3]= +Notes_TVent_Rotor_Coil_Base[4]= +Notes_TVent_Rotor_Coil_Base[5]= +Notes_TVent_Rotor_Coil_Base[6]= +Notes_TVent_Rotor_Coil_Base[7]= +Notes_TVent_Rotor_Coil_Base[8]= +Notes_TVent_Rotor_Back_Iron[0]= +Notes_TVent_Rotor_Back_Iron[1]= +Notes_TVent_Rotor_Back_Iron[2]= +Notes_TVent_Rotor_Back_Iron[3]= +Notes_TVent_Rotor_Back_Iron[4]= +Notes_TVent_Rotor_Back_Iron[5]= +Notes_TVent_Rotor_Back_Iron[6]= +Notes_TVent_Rotor_Back_Iron[7]= +Notes_TVent_Rotor_Back_Iron[8]= +RotorCircularDuctL1_Area_Mult[0]=1 +RotorCircularDuctL1_Area_Mult[1]=1 +RotorCircularDuctL1_Area_Mult[2]=1 +RotorCircularDuctL1_Area_Mult[3]=1 +RotorCircularDuctL1_Area_Mult[4]=1 +RotorCircularDuctL1_Area_Mult[5]=1 +RotorCircularDuctL1_Area_Mult[6]=1 +RotorCircularDuctL1_Area_Mult[7]=1 +RotorCircularDuctL1_Area_Mult[8]=1 +RotorCircularDuctL2_Area_Mult[0]=1 +RotorCircularDuctL2_Area_Mult[1]=1 +RotorCircularDuctL2_Area_Mult[2]=1 +RotorCircularDuctL2_Area_Mult[3]=1 +RotorCircularDuctL2_Area_Mult[4]=1 +RotorCircularDuctL2_Area_Mult[5]=1 +RotorCircularDuctL2_Area_Mult[6]=1 +RotorCircularDuctL2_Area_Mult[7]=1 +RotorCircularDuctL2_Area_Mult[8]=1 +RotorCircularDuctL3_Area_Mult[0]=1 +RotorCircularDuctL3_Area_Mult[1]=1 +RotorCircularDuctL3_Area_Mult[2]=1 +RotorCircularDuctL3_Area_Mult[3]=1 +RotorCircularDuctL3_Area_Mult[4]=1 +RotorCircularDuctL3_Area_Mult[5]=1 +RotorCircularDuctL3_Area_Mult[6]=1 +RotorCircularDuctL3_Area_Mult[7]=1 +RotorCircularDuctL3_Area_Mult[8]=1 +RotorCircularDuctL4_Area_Mult[0]=1 +RotorCircularDuctL4_Area_Mult[1]=1 +RotorCircularDuctL4_Area_Mult[2]=1 +RotorCircularDuctL4_Area_Mult[3]=1 +RotorCircularDuctL4_Area_Mult[4]=1 +RotorCircularDuctL4_Area_Mult[5]=1 +RotorCircularDuctL4_Area_Mult[6]=1 +RotorCircularDuctL4_Area_Mult[7]=1 +RotorCircularDuctL4_Area_Mult[8]=1 +Grill_Axial_Circular_Hole_Number_F=4 +Grill_Axial_Circular_Hole_Number_Front=4 +Grill_Axial_Circular_Hole_Number_R=4 +Grill_Axial_Circular_Hole_Number_Rear=4 +Grill_Axial_Circular_Hole_Diameter_F=10 +Grill_Axial_Circular_Hole_Diameter_Front=10 +Grill_Axial_Circular_Hole_Diameter_R=10 +Grill_Axial_Circular_Hole_Diameter_Rear=10 +Grill_Radial_Full_Circle_Length_F=10 +Grill_Radial_Full_Circle_Length_Front=10 +Grill_Radial_Full_Circle_Length_R=10 +Grill_Radial_Full_Circle_Length_Rear=10 +Grill_Radial_Hole_Number_F=2 +Grill_Radial_Hole_Number_Front=2 +Grill_Radial_Hole_Number_R=2 +Grill_Radial_Hole_Number_Rear=2 +Grill_Radial_Rectangle_Width_F=10 +Grill_Radial_Rectangle_Width_Front=10 +Grill_Radial_Rectangle_Width_R=10 +Grill_Radial_Rectangle_Width_Rear=10 +Grill_Radial_Rectangle_Length_F=10 +Grill_Radial_Rectangle_Length_Front=10 +Grill_Radial_Rectangle_Length_R=10 +Grill_Radial_Rectangle_Length_Rear=10 +Grill_Free_Area_Ratio_F=0,8 +Grill_Free_Area_Ratio_Front=0,8 +Grill_Free_Area_Ratio_R=0,8 +Grill_Free_Area_Ratio_Rear=0,8 +k_Adjust_Inlet_Entrance=1 +k_Adjust_Inlet_Entrance_R=1 +k_Adjust_Inlet_Expansion=1 +k_Adjust_Inlet_Expansion_R=1 +k_Adjust_Inlet_Stator_Bend=1 +k_Adjust_Inlet_Stator_Contraction=1 +k_Adjust_Inlet_Stator_EWdg_Bend=1 +k_Adjust_Inlet_Stator_EWdg_Contraction_Expansion=1 +k_Adjust_Inlet_Stator_EWdg_Ext_Expansion=1 +k_Adjust_Inlet_Stator_Duct_Contraction=1 +k_Adjust_Outlet_Stator_Duct_Expansion=1 +k_Adjust_Outlet_Stator_EWdg_Radial_Contraction=1 +k_Adjust_Outlet_Stator_EWdg_Bend=1 +k_Adjust_Outlet_Stator_EWdg_Contraction_Expansion=1 +k_Adjust_Outlet_Stator_Bend=1 +k_Adjust_Outlet_Stator_Contraction_Expansion=1 +k_Adjust_Inlet_Rotor_Bend=1 +k_Adjust_Inlet_Rotor_Contraction=1 +k_Adjust_Inlet_Rotor_EWdg_Bend=1 +k_Adjust_Inlet_Rotor_EWdg_Contraction_Expansion=1 +k_Adjust_Inlet_Rotor_EWdg_Bore_Bend=1 +k_Adjust_Inlet_Rotor_EWdg_Bore_Expansion=1 +k_Adjust_Inlet_Rotor_Duct_Contraction=1 +k_Adjust_Outlet_Rotor_Duct_Expansion=1 +k_Adjust_Outlet_Rotor_EWdg_Bore_Bend=1 +k_Adjust_Outlet_Rotor_EWdg_Bore_Contraction=1 +k_Adjust_Outlet_Rotor_EWdg_Bend=1 +k_Adjust_Outlet_Rotor_EWdg_Contraction_Expansion=1 +k_Adjust_Outlet_Rotor_Bend=1 +k_Adjust_Outlet_Rotor_Contraction_Expansion=1 +k_Adjust_Outlet_Airgap_Duct_Expansion=1 +k_Adjust_Inlet_Airgap_Duct_Contraction=1 +k_Adjust_Outlet_Exit=1 +k_Adjust_Winding_Separator_Contraction=1 +k_Adjust_Winding_Separator_Expansion=1 +Notes_Inlet_Entrance= +Notes_Inlet_Entrance_R= +Notes_Inlet_Expansion= +Notes_Inlet_Expansion_R= +Notes_Inlet_Stator_Bend= +Notes_Inlet_Stator_Contraction= +Notes_Inlet_Stator_EWdg_Bend= +Notes_Inlet_Stator_EWdg_Contraction_Expansion= +Notes_Inlet_Stator_EWdg_Ext_Expansion= +Notes_Inlet_Stator_Duct_Contraction= +Notes_Outlet_Stator_Duct_Expansion= +Notes_Outlet_Stator_EWdg_Radial_Contraction= +Notes_Outlet_Stator_EWdg_Bend= +Notes_Outlet_Stator_EWdg_Contraction_Expansion= +Notes_Outlet_Stator_Bend= +Notes_Outlet_Stator_Contraction_Expansion= +Notes_Inlet_Rotor_Bend= +Notes_Inlet_Rotor_Contraction= +Notes_Inlet_Rotor_EWdg_Bend= +Notes_Inlet_Rotor_EWdg_Contraction_Expansion= +Notes_Inlet_Rotor_EWdg_Bore_Bend= +Notes_Inlet_Rotor_EWdg_Bore_Expansion= +Notes_Inlet_Rotor_Duct_Contraction= +Notes_Outlet_Rotor_Duct_Expansion= +Notes_Outlet_Rotor_EWdg_Bore_Bend= +Notes_Outlet_Rotor_EWdg_Bore_Contraction= +Notes_Outlet_Rotor_EWdg_Bend= +Notes_Outlet_Rotor_EWdg_Contraction_Expansion= +Notes_Outlet_Rotor_Bend= +Notes_Outlet_Rotor_Contraction_Expansion= +Notes_Outlet_Airgap_Duct_Expansion= +Notes_Inlet_Airgap_Duct_Contraction= +Notes_Outlet_Exit= +Notes_Winding_Separator_Contraction= +Notes_Winding_Separator_Expansion= +h_Input_TVent_Endcap_F=10 +h_Input_TVent_Endcap_R=10 +h_Input_TVent_Housing_OHang_F=10 +h_Input_TVent_Housing_OHang_R=10 +h_Input_TVent_Shaft_OHang_F=10 +h_Input_TVent_Shaft_OHang_R=10 +h_Input_TVent_Axle_OHang_F=10 +h_Input_TVent_Axle_OHang_R=10 +h_Adjust_TVent_Endcap_F=1 +h_Adjust_TVent_Endcap_R=1 +h_Adjust_TVent_Housing_OHang_F=1 +h_Adjust_TVent_Housing_OHang_R=1 +h_Adjust_TVent_Shaft_OHang_F=1 +h_Adjust_TVent_Shaft_OHang_R=1 +h_Adjust_TVent_Axle_OHang_F=1 +h_Adjust_TVent_Axle_OHang_R=1 +Velocity_Multiplier_TVent_Endcap_F=1 +Velocity_Multiplier_TVent_Endcap_R=1 +Velocity_Multiplier_TVent_Housing_OHang_F=1 +Velocity_Multiplier_TVent_Housing_OHang_R=1 +Velocity_Multiplier_TVent_Shaft_OHang_F=1 +Velocity_Multiplier_TVent_Shaft_OHang_R=1 +Velocity_Multiplier_TVent_Axle_OHang_F=1 +Velocity_Multiplier_TVent_Axle_OHang_R=1 +Notes_TVent_Endcap_F= +Notes_TVent_Endcap_R= +Notes_TVent_Housing_OHang_F= +Notes_TVent_Housing_OHang_R= +Notes_TVent_Shaft_OHang_F= +Notes_TVent_Shaft_OHang_R= +Notes_TVent_Axle_OHang_F= +Notes_TVent_Axle_OHang_R= +Stator_Duct_Type=No_Stator_Ducts +Rotor_Duct_Type=No_Rotor_Ducts +Calc_Input_h_TVent_EWdg_Bore_F=Calc_h_conv +h_Input_TVent_EWdg_Bore_F=10 +h_Adjust_TVent_EWdg_Bore_F=1 +Velocity_Multiplier_TVent_EWdg_Bore_F=1 +Area_Mult_TVent_EWdg_Bore_F=1 +Notes_TVent_EWdg_Bore_F= +Calc_Input_h_TVent_EWdg_Outer_F=Calc_h_conv +h_Input_TVent_EWdg_Outer_F=10 +h_Adjust_TVent_EWdg_Outer_F=1 +Velocity_Multiplier_TVent_EWdg_Outer_F=1 +Area_Mult_TVent_EWdg_Outer_F=1 +Notes_TVent_EWdg_Outer_F= +Calc_Input_h_TVent_EWdg_End_F=Calc_h_conv +h_Input_TVent_EWdg_End_F=10 +h_Adjust_TVent_EWdg_End_F=1 +Velocity_Multiplier_TVent_EWdg_End_F=1 +Area_Mult_TVent_EWdg_End_F=1 +Notes_TVent_EWdg_End_F= +Calc_Input_h_TVent_EWdg_Bore_R=Calc_h_conv +h_Input_TVent_EWdg_Bore_R=10 +h_Adjust_TVent_EWdg_Bore_R=1 +Velocity_Multiplier_TVent_EWdg_Bore_R=1 +Area_Mult_TVent_EWdg_Bore_R=1 +Notes_TVent_EWdg_Bore_R= +Calc_Input_h_TVent_EWdg_Outer_R=Calc_h_conv +h_Input_TVent_EWdg_Outer_R=10 +h_Adjust_TVent_EWdg_Outer_R=1 +Velocity_Multiplier_TVent_EWdg_Outer_R=1 +Area_Mult_TVent_EWdg_Outer_R=1 +Notes_TVent_EWdg_Outer_R= +Calc_Input_h_TVent_EWdg_End_R=Calc_h_conv +h_Input_TVent_EWdg_End_R=10 +h_Adjust_TVent_EWdg_End_R=1 +Velocity_Multiplier_TVent_EWdg_End_R=1 +Area_Mult_TVent_EWdg_End_R=1 +Notes_TVent_EWdg_End_R= + +[Speed_Program] +Allowable_Import_Convergence_Error=1 +Maximum_Number_Iterations=20 +Import_Export_Calculation_Options=Single_Shot +Import_SPEED_Losses=True +Import_SPEED_Geometry=True +Import_SPEED_Radial_Cross_Section=True +Import_SPEED_Axial_Cross_Section=True +Import_SPEED_End_Winding_Overhang=True +Import_SPEED_Winding_Design=True +Import_SPEED_Duty_Cycle=False +Import_SPEED_Cooling=False +Import_SPEED_Material_Data=False +Export_MOTORCAD_Temperatures=False +Export_SteadyState_or_Transient_Temperatures=SteadyState +External_Application_File= +Speed_Program_Xfe=1 +Speed_Program_Wwf=0 +Windage_Friction_Ratio=0,5 +Friction_Front_Rear_Ratio=0,5 +Import_SPEED_WindageFrictionLosses=False +Import_SPEED_AmbientTemperature=False + +[Fan_Char] +Fan_Char_Points=2 +Fan_Char_Volume_Flow_Rate[1]=0 +Fan_Char_Pressure[1]=100 +Fan_Char_Volume_Flow_Rate[2]=0,025 +Fan_Char_Pressure[2]=0 +HousingWJ_Fan_Char_Points=2 +HousingWJ_Fan_Char_Volume_Flow_Rate[1]=0 +HousingWJ_Fan_Char_Pressure[1]=100 +HousingWJ_Fan_Char_Volume_Flow_Rate[2]=0,025 +HousingWJ_Fan_Char_Pressure[2]=0 +Fan_Definition=0 +Fan_Blades=8 + +[Flow_Rate] +Flow_Rate_Points=0 +HousingWJ_Flow_Rate_Points=0 + +[Material_Properties] +Fluid_Database=c:\ANSYS_Motor-CAD\2024_1_3\Motor-CAD Data\materials\fluids.mdb +Solid_Database=c:\ANSYS_Motor-CAD\2024_1_3\Motor-CAD Data\materials\solids.mdb + +[Single_Phase] +Stator_Slot_To_Use_For_Calculation=1 +Stator_Slot_To_Use_For_Winding_View=1 + +[Temperature Validation] +Number_of_Validation_Temperatures=0 + +[Ratio_Tree] +RatioTreeCount=12 +Node0=Ratio_Bore +Node0Scaling=True +Node0ArrayIndex=-1992 +Node1=Ratio_SlotDepth_ParallelTooth +Node1Scaling=True +Node1ArrayIndex=-1992 +Node2=Ratio_SlotOpening_ParallelTooth +Node2Scaling=True +Node2ArrayIndex=-1992 +Node3=Ratio_ToothWidth +Node3Scaling=True +Node3ArrayIndex=-1992 +Node4=Ratio_SleeveThickness +Node4Scaling=True +Node4ArrayIndex=-1992 +Node5=Ratio_RotorD +Node5Scaling=True +Node5ArrayIndex=-1992 +Node6=Ratio_BandingThickness +Node6Scaling=True +Node6ArrayIndex=-1992 +Node7=Ratio_ShaftD +Node7Scaling=True +Node7ArrayIndex=-1992 +Node8=Ratio_ShaftHole +Node8Scaling=True +Node8ArrayIndex=-1992 +Node9=Ratio_MagnetArc +Node9Scaling=True +Node9ArrayIndex=-1992 +Node10=Ratio_MagnetReduction +Node10Scaling=True +Node10ArrayIndex=-1992 +Node11=Stator_Lam_Dia +Node11Scaling=True +Node11ArrayIndex=-1992 + +[Scripting_Options] +ScriptAutoRun=0 +ScriptAutoRun_PythonClasses=0 +ScriptPythonFunctionType=0 +ScriptFileName=No File Selected +ScriptFileName_Python=No File Selected +Scripting_Engine=0 + +[Scripting] +ScriptLines=75 +Script[0]="'' example Script" +Script[1]="' this is the main function called when the run script button is pressed" +Script[2]="' the function is passed the current title of the motor project" +Script[3]="Function MainFunction(Title)" +Script[4]=" dim mcad" +Script[5]=" set mcad = createobject(""motorcad.appautomation"")" +Script[6]=" call mcad.showmessage(""example of script for ""+ Title)" +Script[7]="" +Script[8]=" ' speed up the set by setting to avoid immediate update of input" +Script[9]=" call mcad.AvoidImmediateUpdate(true)" +Script[10]="" +Script[11]=" ' set all messages to display in a separate window" +Script[12]=" ' Warning: this will disable crucial popups e.g. prompts to save files, overwrite data etc" +Script[13]=" ' Please ensure this is the behaviour you want" +Script[14]=" call mcad.SetVariable(""MessageDisplayState"",2)" +Script[15]="" +Script[16]=" ' set the radial cross section display" +Script[17]=" 'call mcad.DisplayScreen(""Radial"")" +Script[18]="" +Script[19]=" ' example of call to a separate function" +Script[20]=" mySecondFunction(mcad)" +Script[21]="" +Script[22]=" ' set the scripting display" +Script[23]=" call mcad.DisplayScreen(""Scripting"")" +Script[24]="" +Script[25]=" ' restore the message dialogs" +Script[26]=" call mcad.SetVariable(""MessageDisplayState"", 0)" +Script[27]="" +Script[28]="End Function" +Script[29]="" +Script[30]="' this is an example of a separate function that takes mcad as a parameter" +Script[31]="Function mySecondFunction(mcad)" +Script[32]=" for toothWidth = 1 to 3 step .5" +Script[33]=" call mcad.showmessage(""Tooth width = "" + CStr(toothWidth))" +Script[34]=" call mcad.SetVariable(""Tooth_Width"", toothWidth)" +Script[35]=" call mcad.DoSteadyStateAnalysis" +Script[36]=" call mcad.GetVariable(""T_[WINDING_AVERAGE]"", temperature)" +Script[37]=" call mcad.showmessage(""Winding temperature = "" + CStr(temperature))" +Script[38]="" +Script[39]=" ' to be able to stop a script from the stop button need this code in the innermost loop" +Script[40]=" ' this asks Motor-CAD if the stop button has been pressed" +Script[41]=" if mcad.IsStopRequested then exit function end if" +Script[42]="" +Script[43]="" +Script[44]=" Next" +Script[45]="" +Script[46]="" +Script[47]="' myExcelCall" +Script[48]="" +Script[49]="End Function" +Script[50]="" +Script[51]="' this function is called the first time when scripting is run during the analysis" +Script[52]="' this allows parameters to be initialised" +Script[53]="Function Initialisation(Title)" +Script[54]="" +Script[55]="End Function" +Script[56]="" +Script[57]="' this function is called when scripting is run during the analysis after the duty cycle has completed" +Script[58]="' this allows any calculations to be made at the end of the transient" +Script[59]="Function Finalisation(Title)" +Script[60]="" +Script[61]="End Function" +Script[62]="" +Script[63]="" +Script[64]="" +Script[65]="" +Script[66]="' this is an example of putting values into excel" +Script[67]="'Function myExcelCall" +Script[68]="' dim excel" +Script[69]="' set excel = createObject(""excel.application"")" +Script[70]="' excel.visible = TRUE" +Script[71]="' excel.workbooks.add" +Script[72]="" +Script[73]="' excel.cells(1,1).value = ""temperature""" +Script[74]="'End Function" + +[Python_Scripting] +ScriptLines_Python=116 +Python_Script[0]="# ---------- DEMO SCRIPT ----------" +Python_Script[1]="" +Python_Script[2]="# Need to import pymotorcad to access Motor-CAD" +Python_Script[3]="import ansys.motorcad.core as pymotorcad" +Python_Script[4]="" +Python_Script[5]="# Connect to Motor-CAD" +Python_Script[6]="mcApp = pymotorcad.MotorCAD()" +Python_Script[7]="" +Python_Script[8]="" +Python_Script[9]="# This function is called when ""Run"" is pressed" +Python_Script[10]="def main():" +Python_Script[11]=" # We can use main to test functions before running a calculation" +Python_Script[12]=" # e.g. running thermal steady initial function" +Python_Script[13]=" user_func = thermal_steady()" +Python_Script[14]=" user_func.initial()" +Python_Script[15]="" +Python_Script[16]=" # Or we can use main to run calculations" +Python_Script[17]=" demo_func()" +Python_Script[18]="" +Python_Script[19]="" +Python_Script[20]="# demo function which sets tooth_width and runs thermal calculations" +Python_Script[21]="def demo_func():" +Python_Script[22]=" array_tooth_widths = [1, 1.5, 2.0]" +Python_Script[23]="" +Python_Script[24]=" # set all messages to display in a separate window" +Python_Script[25]=" # Warning: this will disable crucial popups e.g. prompts to save files, overwrite data etc" +Python_Script[26]=" # Please ensure this is the behaviour you want" +Python_Script[27]=" mcApp.set_variable(""MessageDisplayState"", 2)" +Python_Script[28]="" +Python_Script[29]=" for toothWidth in array_tooth_widths:" +Python_Script[30]=" mcApp.show_message(""Tooth width = "" + str(toothWidth))" +Python_Script[31]=" mcApp.set_variable(""Tooth_Width"", toothWidth)" +Python_Script[32]=" mcApp.do_steady_state_analysis()" +Python_Script[33]=" temperature = mcApp.get_variable(""T_[WINDING_AVERAGE]"", )" +Python_Script[34]=" mcApp.show_message(""Winding temperature = "" + str(temperature))" +Python_Script[35]="" +Python_Script[36]=" # restore the message dialogs" +Python_Script[37]=" mcApp.set_variable(""MessageDisplayState"", 0)" +Python_Script[38]="" +Python_Script[39]="" +Python_Script[40]="# ---------- FUNCTIONS RUN DURING CALCULATIONS ----------" +Python_Script[41]="# These will only run if using ""Run During Analysis"" selected" +Python_Script[42]="# (Scripting -> Settings -> Run During Analysis)" +Python_Script[43]="" +Python_Script[44]="# If ""Run During Analysis"" is selected then this script will be imported." +Python_Script[45]="# This means that anything other than setting up the MotorCAD object should" +Python_Script[46]="# be moved to a function/class to avoid unexpected behaviour" +Python_Script[47]="" +Python_Script[48]="# This class contains functions for steady-state thermal calculations" +Python_Script[49]="class thermal_steady():" +Python_Script[50]=" def initial(self):" +Python_Script[51]=" # Called before calculation" +Python_Script[52]=" self.step = 0" +Python_Script[53]=" print('Thermal Steady State - Initial')" +Python_Script[54]="" +Python_Script[55]=" def main(self):" +Python_Script[56]=" # Called before each time step in calculation" +Python_Script[57]=" self.step = self.step + 1" +Python_Script[58]=" print('Step: ' + str(self.step) + '. Thermal Steady State - Main')" +Python_Script[59]="" +Python_Script[60]=" def final(self):" +Python_Script[61]=" # Called after calculation" +Python_Script[62]=" print('Thermal Steady State - Final')" +Python_Script[63]="" +Python_Script[64]=" # This class contains functions for trasient thermal calculations" +Python_Script[65]="" +Python_Script[66]="" +Python_Script[67]="class thermal_transient():" +Python_Script[68]=" def initial(self):" +Python_Script[69]=" # Called before calculation" +Python_Script[70]=" self.step = 0" +Python_Script[71]=" print('Thermal Transient - Initial')" +Python_Script[72]="" +Python_Script[73]=" def main(self):" +Python_Script[74]=" # Called before each time step in calculation" +Python_Script[75]=" self.step = self.step + 1" +Python_Script[76]=" print('Step: ' + str(self.step) + '. Thermal Transient State - Main')" +Python_Script[77]="" +Python_Script[78]=" def final(self):" +Python_Script[79]=" # Called after calculation" +Python_Script[80]=" print('Thermal Transient - Final')" +Python_Script[81]="" +Python_Script[82]=" # This class contains functions for E-Magnetic calculations" +Python_Script[83]="" +Python_Script[84]="" +Python_Script[85]="class emagnetic():" +Python_Script[86]=" def initial(self):" +Python_Script[87]=" # Called before calculation" +Python_Script[88]=" print('E-Magnetic - Initial')" +Python_Script[89]="" +Python_Script[90]=" def final(self):" +Python_Script[91]=" # Called after calculation" +Python_Script[92]=" print('E-Magnetic - Final')" +Python_Script[93]="" +Python_Script[94]="" +Python_Script[95]="# This class contains functions for Mechanical Stress calculations" +Python_Script[96]="class mechanical_stress():" +Python_Script[97]=" def initial(self):" +Python_Script[98]=" # Called before calculation" +Python_Script[99]=" print('Mech Stress - Initial')" +Python_Script[100]="" +Python_Script[101]=" def final(self):" +Python_Script[102]=" # Called after calculation" +Python_Script[103]=" print('Mech Stress - Final')" +Python_Script[104]="" +Python_Script[105]="" +Python_Script[106]="# This class contains functions for Mechanical Forces calculations" +Python_Script[107]="class mechanical_forces():" +Python_Script[108]=" def initial(self):" +Python_Script[109]=" # Called before calculation" +Python_Script[110]=" print('Mech Forces - Initial')" +Python_Script[111]="" +Python_Script[112]=" def final(self):" +Python_Script[113]=" # Called after calculation" +Python_Script[114]=" print('Mech Forces - Final')" +Python_Script[115]="" + +[Loss_Current_Values] +StatorCopperLossesbyCurrent=False +MainWindingCurrentAtRefTemp=10 +MainWindingResistanceAtRefTemp=3 +AuxWindingCurrentAtRefTemp=5 +AuxWindingResistanceAtRefTemp=1 +RefTempForWindingResistances=20 + +[Mat_Conductivity] +Conductivity_Stator_Lam_Outer=28 +Thermal_Conductivity_Coil_Insulation=0,2 +Thermal_Conductivity_Phase_Separator=0,2 +Thermal_Conductivity_Spacer=0,2 +Thermal_Conductivity_Seal=0,2 +Conductivity_Plate_Front_Outer=100 +Conductivity_Plate_Front_Middle=100 +Conductivity_Plate_Front_Inner=100 +Conductivity_Plate_Rear_Outer=100 +Conductivity_Plate_Rear_Middle=100 +Conductivity_Plate_Rear_Inner=100 +Conductivity_Mount_Centre=100 +Conductivity_Mount_Rear=100 +Conductivity_Endcap_OH=0,29 +Conductivity_Endcap_Centre=0,29 +Thermal_Conductivity_CoilDivider=0,2 +Thermal_Conductivity_SlotWedge=0,2 +Thermal_Conductivity_RotorWedge=0,2 +Thermal_Conductivity_SyncRotorWindingSeparator=0,2 +Thermal_Conductivity_HeatEx_Duct=168 +Thermal_Conductivity_HeatEx_Insulation=0,2 +Thermal_Conductivity_StatorBackIronInterLamination=0,02723 +Thermal_Conductivity_StatorToothInterLamination=0,02723 +Thermal_Conductivity_StatorOuterInterLamination=0,02723 +Thermal_Conductivity_RotorToothInterLamination=0,02723 +Thermal_Conductivity_RotorBackIronInterLamination=0,02723 +Conductivity_Rotor_Cage_Top_Opening=180 +Conductivity_Rotor_Cage_Top=180 +Conductivity_Rotor_Cage_Bottom_Opening=180 +Conductivity_Rotor_Cage_Bottom=180 +Conductivity_Rotor_Cage_End_F=180 +Conductivity_Rotor_Cage_End_R=180 +Thermal_Conductivity_RotorPlate_F=52 +Thermal_Conductivity_RotorPlate_R=52 +Thermal_Conductivity_Wafter_F=52 +Thermal_Conductivity_Wafter_R=52 +Thermal_Conductivity_StatorClampPlate_F=52 +Thermal_Conductivity_StatorClampPlate_R=52 +Thermal_Conductivity_Fan=52 +Thermal_Conductivity_HousingWJ_Wall=0,2 +Thermal_Conductivity_ShaftSG_Wall=0,2 +Conductivity_LitzImpreg_A=0,21 +Conductivity_LitzImpreg_F=0,21 +Conductivity_LitzImpreg_R=0,21 +Conductivity_LitzIns_A=0,21 +Conductivity_LitzIns_F=0,21 +Conductivity_LitzIns_R=0,21 +Conductivity_Copper_Active_Aux=401 +Conductivity_Copper_EW_Front_Aux=401 +Conductivity_Copper_EW_Rear_Aux=401 +Conductivity_Housing_Active=0,25 +Thermal_Conductivity_Housing_[A]=0,25 +Conductivity_Housing_Front=0,25 +Thermal_Conductivity_Housing_[F]=0,25 +Conductivity_Housing_Rear=0,25 +Thermal_Conductivity_Housing_[R]=0,25 +Conductivity_Endcap_Front=0,29 +Thermal_Conductivity_Endcap_[F]=0,29 +Conductivity_Endcap_Rear=0,25 +Thermal_Conductivity_Endcap_[R]=0,25 +Conductivity_Stator_Lam_Back_Iron=30 +Thermal_Conductivity_Stator_Lam_[Back_Iron]=30 +Conductivity_Stator_Lam_Tooth=30 +Thermal_Conductivity_Stator_Lam_[Tooth]=30 +Conductivity_Copper_Active=401 +Thermal_Conductivity_Copper_-_Active=401 +Conductivity_Copper_EW_Front=401 +Thermal_Conductivity_Copper_-_EndWdg_[F]=401 +Conductivity_Copper_EW_Rear=401 +Thermal_Conductivity_Copper_-_EndWdg_[R]=401 +Conductivity_End_Winding_Insulation_F=0,2 +Thermal_Conductivity_EWdg_Ins_[F]=0,2 +Conductivity_End_Winding_Insulation_R=0,2 +Thermal_Conductivity_EWdg_Ins_[R]=0,2 +Conductivity_Insulation_Active=0,21 +Thermal_Conductivity_Wire_Insulation=0,21 +Conductivity_Insulation_EW_Front=0,21 +Thermal_Conductivity_Wire_Insulation_-_EndWdg_[F]=0,21 +Conductivity_Insulation_EW_Rear=0,21 +Thermal_Conductivity_Wire_Insulation_-_EndWdg_[R]=0,21 +Conductivity_Impreg_Active=0,2 +Thermal_Conductivity_Impreg_-_Active=0,2 +Conductivity_Impreg_EW_Front=0,2 +Thermal_Conductivity_Impreg_-_EndWdg_[F]=0,2 +Conductivity_Impreg_EW_Rear=0,2 +Thermal_Conductivity_Impreg_-_EndWdg_[R]=0,2 +Conductivity_Potting_EndCap_Front=0,3 +Thermal_Conductivity_Potting_-_Endcap_[F]=0,3 +Conductivity_Potting_EndCap_Rear=0,3 +Thermal_Conductivity_Potting_-_EndWdg_[R]=0,3 +Conductivity_Slot_Liner=0,21 +Thermal_Conductivity_Slot_Liner=0,21 +Conductivity_Ins_Slot_Base=0,2 +Thermal_Conductivity_Ins_Slot_Base=0,2 +Conductivity_Ins_Tooth_Side=0,2 +Thermal_Conductivity_Ins_Tooth_Side=0,2 +Thermal_Conductivity_Magnet=7,6 +Conductivity_Embedded_Magnet_Pole=25 +Thermal_Conductivity_Rotor_Lam_[Embedded_Magnet_Pole]=25 +Conductivity_Inter_Magnet_Gap=25 +Thermal_Conductivity_Rotor_Lam_[Inter_Magnet_Gap]=25 +Conductivity_Rotor_Lam_Back_Iron=25 +Thermal_Conductivity_Rotor_Lam_[Back_Iron]=25 +Conductivity_Rotor_Hub=30 +Conductivity_Rotor_Lam_Tooth=25 +Thermal_Conductivity_Rotor_Lam_[Tooth]=25 +Conductivity_Banding=0,2 +Thermal_Conductivity_Magnet_Banding=0,2 +Conductivity_Sleeve=0,2 +Thermal_Conductivity_Stator_Bore_Sleeve=0,2 +Conductivity_Shaft_Active=52 +Thermal_Conductivity_Shaft_[A]=52 +Conductivity_Shaft_Front=52 +Thermal_Conductivity_Shaft_[F]=52 +Conductivity_Shaft_Rear=52 +Thermal_Conductivity_Shaft_[R]=52 +Conductivity_Axle_Active=52 +Thermal_Conductivity_Axle_[A]=52 +Conductivity_Axle_Front=52 +Thermal_Conductivity_Axle_[F]=52 +Conductivity_Axle_Rear=52 +Thermal_Conductivity_Axle_[R]=52 +Conductivity_Rotor_Cup_OH=52 +Thermal_Conductivity_Rotor_Cup_OH=52 +Conductivity_Rotor_Cup_Base=52 +Thermal_Conductivity_Rotor_Cup_Base=52 +Conductivity_Bearing_Front=30 +Thermal_Conductivity_Bearing_[F]=30 +Conductivity_Bearing_Rear=30 +Thermal_Conductivity_Bearing_[R]=30 +Conductivity_Plate=100 +Thermal_Conductivity_Flange_Plate=100 +Conductivity_Axle_Plate_F=100 +Thermal_Conductivity_Axle_Plate_[F]=100 +Conductivity_Axle_Plate_R=100 +Thermal_Conductivity_Axle_Plate_[R]=100 +Conductivity_Base=100 +Thermal_Conductivity_Base_Plate=100 +Conductivity_Feet=100 +Thermal_Conductivity_Feet=100 +Conductivity_Encoder=2 +Thermal_Conductivity_Encoder=2 +Conductivity_EncCase=100 +Thermal_Conductivity_Encoder_Case=100 +Conductivity_Rotor_Copper=401 +Thermal_Conductivity_Rotor_Copper=401 +Conductivity_Rotor_Liner=0,2 +Thermal_Conductivity_Rotor_Liner=0,2 +Conductivity_Rotor_Impreg=0,2 +Thermal_Conductivity_Rotor_Impreg=0,2 +Conductivity_Rotor_Ins=0,21 +Thermal_Conductivity_Rotor_Insulation=0,21 +Conductivity_Damper_Bars=180 +Conductivity_Damper_End_F=180 +Conductivity_Damper_End_R=180 +Conductivity_Damper_Opening=180 +Conductivity_Enc_Barrier=1 +Thermal_Conductivity_Encoder_Barrier=1 +Conductivity_Comm_Bars=401 +Thermal_Conductivity_Comm_Bars=401 +Conductivity_Comm_Insulation=0,2 +Thermal_Conductivity_Comm_Insulation=0,2 +Conductivity_Brushes=200 +Thermal_Conductivity_Brushes=200 +Conductivity_Brush_Holder=401 +Thermal_Conductivity_Brush_Holder_-_metatic_part=401 +Conductivity_Brush_Holder_Insulation=0,2 +Thermal_Conductivity_Brush_Holder_Insulation=0,2 +Conductivity_Housing_Cover=0,2 +Thermal_Conductivity_Housing_Cover=0,2 +Conductivity_Slot_Water_Jacket_Wall=0,2 +Thermal_Conductivity_Slot_WJ_Wall=0,2 +Conductivity_Slot_Water_Jacket_Insulation=0,2 +Thermal_Conductivity_Slot_WJ_Insulation=0,2 +Thermal_Conductivity_FieldDivider=0,2 + +[Mat_Cp] +Cp_Stator_Lam_Outer=460 +Specific_Heat_Coil_Insulation=1000 +Specific_Heat_Phase_Separator=1000 +Specific_Heat_Spacer=1000 +Specific_Heat_Seal=1200 +Cp_Plate_Front_Outer=900 +Cp_Plate_Front_Middle=900 +Cp_Plate_Front_Inner=900 +Cp_Plate_Rear_Outer=900 +Cp_Plate_Rear_Middle=900 +Cp_Plate_Rear_Inner=900 +Cp_Mount_Centre=900 +Cp_Mount_Rear=900 +Cp_Endcap_OH=1250 +Cp_Endcap_Centre=1250 +Specific_Heat_CoilDivider=1200 +Specific_Heat_SlotWedge=1200 +Specific_Heat_RotorWedge=1200 +Specific_Heat_SyncRotorWindingSeparator=1200 +Specific_Heat_HeatEx_Duct=833 +Specific_Heat_HeatEx_Insulation=1200 +Specific_Heat_RotorPocket=1011 +Specific_Heat_StatorBackIronInterLamination=1007 +Specific_Heat_StatorToothInterLamination=1007 +Specific_Heat_StatorOuterInterLamination=1007 +Specific_Heat_RotorToothInterLamination=1007 +Specific_Heat_RotorBackIronInterLamination=1007 +Cp_Rotor_Cage_Top_Opening=963 +Cp_Rotor_Cage_Top=963 +Cp_Rotor_Cage_Bottom_Opening=963 +Cp_Rotor_Cage_Bottom=963 +Cp_Rotor_Cage_End_F=963 +Cp_Rotor_Cage_End_R=963 +Specific_Heat_RotorPlate_F=460 +Specific_Heat_RotorPlate_R=460 +Specific_Heat_Wafter_F=460 +Specific_Heat_Wafter_R=460 +Specific_Heat_StatorClampPlate_F=460 +Specific_Heat_StatorClampPlate_R=460 +Specific_Heat_Fan=460 +Specific_Heat_HousingWJ_Wall=1700 +Specific_Heat_ShaftSG_Wall=1700 +Cp_LitzImpreg_A=1000 +Cp_LitzImpreg_F=1000 +Cp_LitzImpreg_R=1000 +Cp_LitzIns_A=1000 +Cp_LitzIns_F=1000 +Cp_LitzIns_R=1000 +Cp_Copper_Active_Aux=385 +Cp_Copper_EW_Front_Aux=385 +Cp_Copper_EW_Rear_Aux=385 +Cp_Housing_Active=1260 +Specific_Heat_Housing_[A]=1260 +Cp_Housing_Front=1260 +Specific_Heat_Housing_[F]=1260 +Cp_Housing_Rear=1260 +Specific_Heat_Housing_[R]=1260 +Cp_Endcap_Front=1250 +Specific_Heat_Endcap_[F]=1250 +Cp_Endcap_Rear=1260 +Specific_Heat_Endcap_[R]=1260 +Cp_Stator_Lam_Back_Iron=460 +Specific_Heat_Stator_Lam_[Back_Iron]=460 +Cp_Stator_Lam_Tooth=460 +Specific_Heat_Stator_Lam_[Tooth]=460 +Cp_Copper_Active=385 +Specific_Heat_Copper_-_Active=385 +Cp_Copper_EW_Front=385 +Specific_Heat_Copper_-_Endwdg_[F]=385 +Cp_Copper_EW_Rear=385 +Specific_Heat_Copper_-_Endwdg_[R]=385 +Cp_End_Winding_Insulation_F=1700 +Specific_Heat_EWdg_Ins_[F]=1700 +Cp_End_Winding_Insulation_R=1700 +Specific_Heat_EWdg_Ins_[R]=1700 +Cp_Insulation_Active=1000 +Specific_Heat_Wire_Insulation=1000 +Cp_Insulation_EW_Front=1000 +Specific_Heat_Wire_Insulation_-_EndWdg_[F]=1000 +Cp_Insulation_EW_Rear=1000 +Specific_Heat_Wire_Insulation_-_EndWdg_[R]=1000 +Cp_Impreg_Active=1700 +Specific_Heat_Impreg_-_Active=1700 +Cp_Impreg_EW_Front=1700 +Specific_Heat_Impreg_-_EndWdg_[F]=1700 +Cp_Impreg_EW_Rear=1700 +Specific_Heat_Impreg_-_EndWdg_[R]=1700 +Cp_Potting_EndCap_Front=1700 +Specific_Heat_Potting_-_Endcap_[F]=1700 +Cp_Potting_EndCap_Rear=1700 +Specific_Heat_Potting_-_EndWdg_[R]=1700 +Cp_Slot_Liner=1000 +Specific_Heat_Slot_Liner=1000 +Cp_Ins_Slot_Base=1700 +Specific_Heat_Ins_Slot_Base=1700 +Cp_Ins_Tooth_Side=1700 +Specific_Heat_Ins_Tooth_Side=1700 +Cp_Magnet=460 +Specific_Heat_Magnet=460 +Cp_Embedded_Magnet_Pole=450 +Specific_Heat_Rotor_Lam_[Embedded_Magnet_Pole]=450 +Cp_Inter_Magnet_Gap=450 +Specific_Heat_Rotor_Lam_[Inter_Magnet_Gap]=450 +Cp_Rotor_Lam_Back_Iron=450 +Specific_Heat_Rotor_Lam_[Back_Iron]=450 +Cp_Rotor_Hub=460 +Cp_Rotor_Lam_Tooth=450 +Specific_Heat_Rotor_Lam_[Tooth]=450 +Cp_Banding=1000 +Specific_Heat_Magnet_Banding=1000 +Cp_Sleeve=1000 +Specific_Heat_Stator_Bore_Sleeve=1000 +Cp_Shaft_Active=460 +Specific_Heat_Shaft_[A]=460 +Cp_Shaft_Front=460 +Specific_Heat_Shaft_[F]=460 +Cp_Shaft_Rear=460 +Specific_Heat_Shaft_[R]=460 +Cp_Axle_Active=460 +Specific_Heat_Axle_[A]=460 +Cp_Axle_Front=460 +Specific_Heat_Axle_[F]=460 +Cp_Axle_Rear=460 +Specific_Heat_Axle_[R]=460 +Cp_Rotor_Cup_OH=460 +Specific_Heat_Rotor_Cup_OH=460 +Cp_Rotor_Cup_Base=460 +Specific_Heat_Rotor_Cup_Base=460 +Cp_Bearing_Front=460 +Specific_Heat_Bearing_[F]=460 +Cp_Bearing_Rear=460 +Specific_Heat_Bearing_[R]=460 +Cp_Plate=900 +Specific_Heat_Flange_Plate=900 +Cp_Axle_Plate_F=900 +Specific_Heat_Axle_Plate_[F]=900 +Cp_Axle_Plate_R=900 +Specific_Heat_Axle_Plate_[R]=900 +Cp_Base=900 +Specific_Heat_Base_Plate=900 +Cp_Feet=900 +Specific_Heat_Feet=900 +Cp_Encoder=1000 +Specific_Heat_Encoder=1000 +Cp_EncCase=900 +Specific_Heat_Encoder_Case=900 +Cp_Rotor_Copper=385 +Specific_Heat_Rotor_Copper=385 +Cp_Rotor_Liner=1000 +Specific_Heat_Rotor_Liner=1000 +Cp_Rotor_Impreg=1700 +Specific_Heat_Rotor_Impreg=1700 +Cp_Rotor_Ins=1000 +Specific_Heat_Rotor_Insulation=1000 +Cp_Damper_Bars=963 +Cp_Damper_End_F=963 +Cp_Damper_End_R=963 +Cp_Damper_Opening=963 +Cp_Enc_Barrier=1000 +Specific_Heat_Encoder_Barrier=1000 +Cp_Comm_Bars=385 +Specific_Heat_Comm_Bars=385 +Cp_Comm_Insulation=1700 +Specific_Heat_Comm_Insulation=1700 +Cp_Brushes=700 +Specific_Heat_Brushes=700 +Cp_Brush_Holder=385 +Specific_Heat_Brush_Holder_-_metalic_part=385 +Cp_Brush_Holder_Insulation=1700 +Specific_Heat_Brush_Holder_Insulation=1700 +Cp_Housing_Cover=1700 +Specific_Heat_Housing_Cover=1700 +Cp_Slot_Water_Jacket_Wall=1700 +Specific_Heat_Slot_WJ_Wall=1700 +Cp_Slot_Water_Jacket_Insulation=1700 +Specific_Heat_Slot_WJ_Insulation=1700 +Specific_Heat_FieldDivider=1200 + +[Mat_Density] +Density_Stator_Lam_Outer=7800 +Density_Coil_Insulation=700 +Density_Phase_Separator=700 +Density_Spacer=700 +Density_Seal=1000 +Density_Plate_Front_Outer=2700 +Density_Plate_Front_Middle=2700 +Density_Plate_Front_Inner=2700 +Density_Plate_Rear_Outer=2700 +Density_Plate_Rear_Middle=2700 +Density_Plate_Rear_Inner=2700 +Density_Mount_Centre=2700 +Density_Mount_Rear=2700 +Density_Endcap_OH=1200 +Density_Endcap_Centre=1200 +Density_CoilDivider=1000 +Density_SlotWedge=1000 +Density_RotorWedge=1000 +Density_SyncRotorWindingSeparator=1000 +Density_HeatEx_Duct=2790 +Density_HeatEx_Insulation=1000 +Density_RotorPocket=0,9461 +Density_StatorBackIronInterLamination=1,127 +Density_StatorToothInterLamination=1,127 +Density_StatorOuterInterLamination=1,127 +Density_RotorToothInterLamination=1,127 +Density_RotorBackIronInterLamination=1,127 +Density_Rotor_Cage_Top_Opening=2950 +Density_Rotor_Cage_Top=2950 +Density_Rotor_Cage_Bottom_Opening=2950 +Density_Rotor_Cage_Bottom=2950 +Density_Rotor_Cage_End_F=2950 +Density_Rotor_Cage_End_R=2950 +Density_RotorPlate_F=7800 +Density_RotorPlate_R=7800 +Density_Wafter_F=7800 +Density_Wafter_R=7800 +Density_StatorClampPlate_F=7800 +Density_StatorClampPlate_R=7800 +Density_Fan=7800 +Density_HousingWJ_Wall=1400 +Density_ShaftSG_Wall=1400 +Density_LitzImpreg_A=1400 +Density_LitzImpreg_F=1400 +Density_LitzImpreg_R=1400 +Density_LitzIns_A=1400 +Density_LitzIns_F=1400 +Density_LitzIns_R=1400 +Density_Copper_Active_Aux=8933 +Density_Copper_EW_Front_Aux=8933 +Density_Copper_EW_Rear_Aux=8933 +Density_Housing_Active=1014 +Density_Housing_[A]=1014 +Density_Housing_Front=1014 +Density_Housing_[F]=1014 +Density_Housing_Rear=1014 +Density_Housing_[R]=1014 +Density_Endcap_Front=1200 +Density_Endcap_[F]=1200 +Density_Endcap_Rear=1014 +Density_Endcap_[R]=1014 +Density_Stator_Lam_Back_Iron=7650 +Density_Stator_Lam_[Back_Iron]=7650 +Density_Stator_Lam_Tooth=7650 +Density_Stator_Lam_[Tooth]=7650 +Density_Copper_Active=8933 +Density_Copper_-_Active=8933 +Density_Copper_EW_Front=8933 +Density_Copper_-_Endwdg_[F]=8933 +Density_Copper_EW_Rear=8933 +Density_Copper_-_Endwdg_[R]=8933 +Density_End_Winding_Insulation_F=1400 +Density_EWdg_Ins_[F]=1400 +Density_End_Winding_Insulation_R=1400 +Density_EWdg_Ins_[R]=1400 +Density_Insulation_Active=1400 +Density_Wire_Insulation=1400 +Density_Insulation_EW_Front=1400 +Density_Wire_Insulation_-_EndWdg_[F]=1400 +Density_Insulation_EW_Rear=1400 +Density_Wire_Insulation_-_EndWdg_[R]=1400 +Density_Impreg_Active=1400 +Density_Impreg_-_Active=1400 +Density_Impreg_EW_Front=1400 +Density_Impreg_-_EndWdg_[F]=1400 +Density_Impreg_EW_Rear=1400 +Density_Impreg_-_EndWdg_[R]=1400 +Density_Potting_Endcap_Front=1400 +Density_Potting_-_Endcap_[F]=1400 +Density_Potting_Endcap_Rear=1400 +Density_Potting_-_EndWdg_[R]=1400 +Density_Slot_Liner=700 +Density_Ins_Slot_Base=1400 +Density_Ins_Tooth_Side=1400 +Density_Magnet=7500 +Density_Embedded_Magnet_Pole=7800 +Density_Rotor_Lam_[Embedded_Magnet_Pole]=7800 +Density_Inter_Magnet_Gap=7800 +Density_Rotor_Lam_[Inter_Magnet_Gap]=7800 +Density_Rotor_Lam_Back_Iron=7800 +Density_Rotor_Lam_[Back_Iron]=7800 +Density_Rotor_Hub=7650 +Density_Rotor_Lam_Tooth=7800 +Density_Rotor_Lam_[Tooth]=7800 +Density_Banding=4000 +Density_Magnet_Banding=4000 +Density_Sleeve=4000 +Density_Stator_Bore_Sleeve=4000 +Density_Shaft_Active=7800 +Density_Shaft_[A]=7800 +Density_Shaft_Front=7800 +Density_Shaft_[F]=7800 +Density_Shaft_Rear=7800 +Density_Shaft_[R]=7800 +Density_Axle_Active=7800 +Density_Axle_[A]=7800 +Density_Axle_Front=7800 +Density_Axle_[F]=7800 +Density_Axle_Rear=7800 +Density_Axle_[R]=7800 +Density_Rotor_Cup_OH=7800 +Density_Rotor_Cup_Base=7800 +Density_Bearing_Front=7800 +Density_Bearing_[F]=7800 +Density_Bearing_Rear=7800 +Density_Bearing_[R]=7800 +Density_Plate=2700 +Density_Flange_Plate=2700 +Density_Axle_Plate_F=2700 +Density_Axle_Plate_[F]=2700 +Density_Axle_Plate_R=2700 +Density_Axle_Plate_[R]=2700 +Density_Base=2700 +Density_Base_Plate=2700 +Density_Feet=7800 +Density_Encoder=1000 +Density_EncCase=2700 +Density_Encoder_Case=2700 +Density_Rotor_Copper=8933 +Density_Rotor_Liner=1400 +Density_Rotor_Impreg=1400 +Density_Rotor_Ins=1400 +Density_Rotor_Insulation=1400 +Density_Damper_Bars=2950 +Density_Damper_End_F=2950 +Density_Damper_End_R=2950 +Density_Damper_Opening=2950 +Density_Enc_Barrier=3000 +Density_Encoder_Barrier=3000 +Density_Comm_Bars=8933 +Density_Comm_Insulation=1400 +Density_Brushes=1600 +Density_Brush_Holder=8933 +Density_Brush_Holder_-_metalic_part=8933 +Density_Brush_Holder_Insulation=1400 +Density_Housing_Cover=1400 +Density_Slot_Water_Jacket_Wall=1400 +Density_Slot_WJ_Wall=1400 +Density_Slot_Water_Jacket_Insulation=1400 +Density_Slot_WJ_Insulation=1400 +Density_FieldDivider=1000 + +[Weight_Multiplier] +Weight_Multiplier_Stator_Lam_Outer=1 +Weight_Multiplier_Coil_Insulation=1 +Weight_Multiplier_Phase_Separator=1 +Weight_Multiplier_Spacer=1 +Weight_Multiplier_Seal=1 +Weight_Multiplier_Plate_Front_Outer=1 +Weight_Multiplier_Plate_Front_Middle=1 +Weight_Multiplier_Plate_Front_Inner=1 +Weight_Multiplier_Plate_Rear_Outer=1 +Weight_Multiplier_Plate_Rear_Middle=1 +Weight_Multiplier_Plate_Rear_Inner=1 +Weight_Multiplier_Mount_Centre=1 +Weight_Multiplier_Mount_Rear=1 +Weight_Multiplier_Endcap_OH=1 +Weight_Multiplier_Endcap_Centre=1 +Weight_Multiplier_CoilDivider=1 +Weight_Multiplier_SlotWedge=1 +Weight_Multiplier_RotorWedge=1 +Weight_Multiplier_SyncRotorWindingSeparator=1 +Weight_Multiplier_HeatEx_Duct=1 +Weight_Multiplier_HeatEx_Insulation=1 +Weight_Multiplier_RotorPocket=1 +Weight_Multiplier_StatorBackIronInterLamination=1 +Weight_Multiplier_StatorToothInterLamination=1 +Weight_Multiplier_StatorOuterInterLamination=1 +Weight_Multiplier_RotorToothInterLamination=1 +Weight_Multiplier_RotorBackIronInterLamination=1 +Weight_Multiplier_Rotor_Cage_Top_Opening=1 +Weight_Multiplier_Rotor_Cage_Top=1 +Weight_Multiplier_Rotor_Cage_Bottom_Opening=1 +Weight_Multiplier_Rotor_Cage_Bottom=1 +Weight_Multiplier_Rotor_Cage_End_F=1 +Weight_Multiplier_Rotor_Cage_End_R=1 +Weight_Multiplier_RotorPlate_F=1 +Weight_Multiplier_RotorPlate_R=1 +Weight_Multiplier_Wafter_F=1 +Weight_Multiplier_Wafter_R=1 +Weight_Multiplier_StatorClampPlate_F=1 +Weight_Multiplier_StatorClampPlate_R=1 +Weight_Multiplier_Fan=1 +Weight_Multiplier_HousingWJ_Wall=1 +Weight_Multiplier_ShaftSG_Wall=1 +Weight_Multiplier_LitzImpreg_A=1 +Weight_Multiplier_LitzImpreg_F=1 +Weight_Multiplier_LitzImpreg_R=1 +Weight_Multiplier_LitzImpreg_T=1 +Weight_Multiplier_LitzIns_A=1 +Weight_Multiplier_LitzIns_F=1 +Weight_Multiplier_LitzIns_R=1 +Weight_Multiplier_LitzIns_T=1 +Weight_Multiplier_Copper_Active_Aux=1 +Weight_Multiplier_Copper_EW_Front_Aux=1 +Weight_Multiplier_Copper_EW_Rear_Aux=1 +Weight_Multiplier_Housing_Active=1 +Weight_Multiplier_Housing_[A]=1 +Weight_Multiplier_Housing_Front=1 +Weight_Multiplier_Housing_[F]=1 +Weight_Multiplier_Housing_Rear=1 +Weight_Multiplier_Housing_[R]=1 +Weight_Multiplier_Endcap_Front=1 +Weight_Multiplier_Endcap_[F]=1 +Weight_Multiplier_Endcap_Rear=1 +Weight_Multiplier_Endcap_[R]=1 +Weight_Multiplier_Stator_Lam_Back_Iron=1 +Weight_Multiplier_Stator_Lam_Yoke=1 +Weight_Multiplier_Stator_Lam_Tooth=1 +Weight_Multiplier_Copper_Active=1 +Weight_Multiplier_Copper_-_Active=1 +Weight_Multiplier_Copper_EW_Front=1 +Weight_Multiplier_Copper_-_EndWdg_[F]=1 +Weight_Multiplier_Copper_EW_Rear=1 +Weight_Multiplier_Copper_-_EndWdg_[R]=1 +Weight_Multiplier_End_Winding_Insulation_F=1 +Weight_Multiplier_EWdg_Ins_[F]=1 +Weight_Multiplier_End_Winding_Insulation_R=1 +Weight_Multiplier_EWdg_Ins_[R]=1 +Weight_Multiplier_Insulation_Active=1 +Weight_Multiplier_Wire_Insulation=1 +Weight_Multiplier_Insulation_EW_Front=1 +Weight_Multiplier_Wire_Insulation_-_EndWdg_[F]=1 +Weight_Multiplier_Insulation_EW_Rear=1 +Weight_Multiplier_Wire_Insulation_-_EndWdg_[R]=1 +Weight_Multiplier_Impreg_Active=1 +Weight_Multiplier_Impreg_-_Active=1 +Weight_Multiplier_Impreg_EW_Front=1 +Weight_Multiplier_Impreg_-_EndWdg_[F]=1 +Weight_Multiplier_Impreg_EW_Rear=1 +Weight_Multiplier_Impreg_-_EndWdg_[R]=1 +Weight_Multiplier_Potting_Endcap_Front=1 +Weight_Multiplier_Potting_-_Endcap_[F]=1 +Weight_Multiplier_Potting_Endcap_Rear=1 +Weight_Multiplier_Potting_-_EndWdg_[R]=1 +Weight_Multiplier_Slot_Liner=1 +Weight_Multiplier_Ins_Slot_Base=1 +Weight_Multiplier_Ins_Tooth_Side=1 +Weight_Multiplier_Magnet=1 +Weight_Multiplier_Embedded_Magnet_Pole=1 +Weight_Multiplier_Inter_Magnet_Gap=1 +Weight_Multiplier_Rotor_Lam_Back_Iron=1 +Weight_Multiplier_Rotor_Hub=1 +Weight_Multiplier_Rotor_Lam_Tooth=1 +Weight_Multiplier_Banding=1 +Weight_Multiplier_Magnet_Banding=1 +Weight_Multiplier_Sleeve=1 +Weight_Multiplier_Stator_Bore_Sleeve=1 +Weight_Multiplier_Shaft_Active=1 +Weight_Multiplier_Shaft_[A]=1 +Weight_Multiplier_Shaft_Front=1 +Weight_Multiplier_Shaft_[F]=1 +Weight_Multiplier_Shaft_Rear=1 +Weight_Multiplier_Shaft_[R]=1 +Weight_Multiplier_Axle_Active=1 +Weight_Multiplier_Axle_[A]=1 +Weight_Multiplier_Axle_Front=1 +Weight_Multiplier_Axle_[F]=1 +Weight_Multiplier_Axle_Rear=1 +Weight_Multiplier_Axle_[R]=1 +Weight_Multiplier_Rotor_Cup_OH=1 +Weight_Multiplier_Rotor_Cup_Base=1 +Weight_Multiplier_Bearing_Front=1 +Weight_Multiplier_Bearing_[F]=1 +Weight_Multiplier_Bearing_Rear=1 +Weight_Multiplier_Bearing_[R]=1 +Weight_Multiplier_Plate=1 +Weight_Multiplier_Flange_Plate=1 +Weight_Multiplier_Axle_Plate_F=1 +Weight_Multiplier_Axle_Plate_[F]=1 +Weight_Multiplier_Axle_Plate_R=1 +Weight_Multiplier_Axle_Plate_[R]=1 +Weight_Multiplier_Base=1 +Weight_Multiplier_Base_Plate=1 +Weight_Multiplier_Feet=1 +Weight_Multiplier_Encoder=1 +Weight_Multiplier_EncCase=1 +Weight_Multiplier_Encoder_Case=1 +Weight_Multiplier_Rotor_Copper=1 +Weight_Multiplier_Rotor_Liner=1 +Weight_Multiplier_Rotor_Impreg=1 +Weight_Multiplier_Rotor_Ins=1 +Weight_Multiplier_Damper_Bars=1 +Weight_Multiplier_Damper_End_F=1 +Weight_Multiplier_Damper_End_R=1 +Weight_Multiplier_Damper_Opening=1 +Weight_Multiplier_Enc_Barrier=1 +Weight_Multiplier_Encoder_Barrier=1 +Weight_Multiplier_Comm_Bars=1 +Weight_Multiplier_Comm_Insulation=1 +Weight_Multiplier_Brushes=1 +Weight_Multiplier_Brush_Holder=1 +Weight_Multiplier_Brush_Holder_-_metalic_part=1 +Weight_Multiplier_Brush_Holder_Insulation=1 +Weight_Multiplier_Housing_Cover=1 +Weight_Multiplier_Slot_Water_Jacket_Wall=1 +Weight_Multiplier_Slot_WJ_Wall=1 +Weight_Multiplier_Slot_Water_Jacket_Insulation=1 +Weight_Multiplier_Slot_WJ_Insulation=1 +Weight_Multiplier_FieldDivider=1 + +[Weight_Addition] +Weight_addition_Stator_Lam_Outer=0 +Weight_Addition_Coil_Insulation=0 +Weight_Addition_Phase_Separator=0 +Weight_Addition_Spacer=0 +Weight_Addition_Seal=0 +Weight_Addition_Plate_Front_Outer=0 +Weight_Addition_Plate_Front_Middle=0 +Weight_Addition_Plate_Front_Inner=0 +Weight_Addition_Plate_Rear_Outer=0 +Weight_Addition_Plate_Rear_Middle=0 +Weight_Addition_Plate_Rear_Inner=0 +Weight_Addition_Mount_Centre=0 +Weight_Addition_Mount_Rear=0 +Weight_Addition_Endcap_OH=0 +Weight_Addition_Endcap_Centre=0 +Weight_Addition_CoilDivider=0 +Weight_Addition_SlotWedge=0 +Weight_Addition_RotorWedge=0 +Weight_Addition_SyncRotorWindingSeparator=0 +Weight_Addition_HeatEx_Duct=0 +Weight_Addition_HeatEx_Insulation=0 +Weight_Addition_RotorPocket=0 +Weight_Addition_StatorBackIronInterLamination=0 +Weight_Addition_StatorToothInterLamination=0 +Weight_Addition_StatorOuterInterLamination=0 +Weight_Addition_RotorToothInterLamination=0 +Weight_Addition_RotorBackIronInterLamination=0 +Weight_Addition_Rotor_Cage_Top_Opening=0 +Weight_Addition_Rotor_Cage_Top=0 +Weight_Addition_Rotor_Cage_Bottom_Opening=0 +Weight_Addition_Rotor_Cage_Bottom=0 +Weight_Addition_Rotor_Cage_End_F=0 +Weight_Addition_Rotor_Cage_End_R=0 +Weight_Addition_RotorPlate_F=0 +Weight_Addition_RotorPlate_R=0 +Weight_Addition_Wafter_F=0 +Weight_Addition_Wafter_R=0 +Weight_Addition_StatorClampPlate_F=0 +Weight_Addition_StatorClampPlate_R=0 +Weight_Addition_Fan=0 +Weight_Addition_HousingWJ_Wall=0 +Weight_Addition_ShaftSG_Wall=0 +Weight_Addition_LitzImpreg_A=0 +Weight_Addition_LitzImpreg_F=0 +Weight_Addition_LitzImpreg_R=0 +Weight_Addition_LitzImpreg_T=0 +Weight_Addition_LitzIns_A=0 +Weight_Addition_LitzIns_F=0 +Weight_Addition_LitzIns_R=0 +Weight_Addition_LitzIns_T=0 +Weight_Addition_Copper_Active_Aux=0 +Weight_Addition_Copper_EW_Front_Aux=0 +Weight_Addition_Copper_EW_Rear_Aux=0 +Weight_Addition_Housing_Active=0 +Weight_Addition_Housing_[A]=0 +Weight_Addition_Housing_Front=0 +Weight_Addition_Housing_[F]=0 +Weight_Addition_Housing_Rear=0 +Weight_Addition_Housing_[R]=0 +Weight_Addition_Endcap_Front=0 +Weight_Addition_Endcap_[F]=0 +Weight_Addition_Endcap_Rear=0 +Weight_Addition_Endcap_[R]=0 +Weight_Addition_Stator_Lam_Back_Iron=0 +Weight_Addition_Stator_Lam_Yoke=0 +Weight_Addition_Stator_Lam_Tooth=0 +Weight_Addition_Copper_Active=0 +Weight_Addition_Copper_-_Active=0 +Weight_Addition_Copper_EW_Front=0 +Weight_Addition_Copper_-_EndWdg_[F]=0 +Weight_Addition_Copper_EW_Rear=0 +Weight_Addition_Copper_-_EndWdg_[R]=0 +Weight_Addition_End_Winding_Insulation_F=0 +Weight_Addition_EWdg_Ins_[F]=0 +Weight_Addition_End_Winding_Insulation_R=0 +Weight_Addition_EWdg_Ins_[R]=0 +Weight_addition_Insulation_Active=0 +Weight_Addition_Wire_Insulation=0 +Weight_addition_Insulation_EW_Front=0 +Weight_Addition_Wire_Insulation_-_EndWdg_[F]=0 +Weight_addition_Insulation_EW_Rear=0 +Weight_Addition_Wire_Insulation_-_EndWdg_[R]=0 +Weight_Addition_Impreg_Active=0 +Weight_Addition_Impreg_-_Active=0 +Weight_Addition_Impreg_EW_Front=0 +Weight_Addition_Impreg_-_EndWdg_[F]=0 +Weight_Addition_Impreg_EW_Rear=0 +Weight_Addition_Impreg_-_EndWdg_[R]=0 +Weight_Addition_Potting_Endcap_Front=0 +Weight_Addition_Potting_-_Endcap_[F]=0 +Weight_Addition_Potting_Endcap_Rear=0 +Weight_Addition_Potting_-_EndWdg_[R]=0 +Weight_Addition_Slot_Liner=0 +Weight_Addition_Ins_Slot_Base=0 +Weight_Addition_Ins_Tooth_Side=0 +Weight_Addition_Magnet=0 +Weight_Addition_Embedded_Magnet_Pole=0 +Weight_Addition_Inter_Magnet_Gap=0 +Weight_Addition_Rotor_Lam_Back_Iron=0 +Weight_Addition_Rotor_Hub=0 +Weight_Addition_Rotor_Lam_Tooth=0 +Weight_Addition_Banding=0 +Weight_Addition_Magnet_Banding=0 +Weight_Addition_Sleeve=0 +Weight_Addition_Stator_Bore_Sleeve=0 +Weight_Addition_Shaft_Active=0 +Weight_Addition_Shaft_[A]=0 +Weight_Addition_Shaft_Front=0 +Weight_Addition_Shaft_[F]=0 +Weight_Addition_Shaft_Rear=0 +Weight_Addition_Shaft_[R]=0 +Weight_Addition_Axle_Active=0 +Weight_Addition_Axle_[A]=0 +Weight_Addition_Axle_Front=0 +Weight_Addition_Axle_[F]=0 +Weight_Addition_Axle_Rear=0 +Weight_Addition_Axle_[R]=0 +Weight_Addition_Rotor_Cup_OH=0 +Weight_Addition_Rotor_Cup_Base=0 +Weight_Addition_Bearing_Front=0 +Weight_Addition_Bearing_[F]=0 +Weight_Addition_Bearing_Rear=0 +Weight_Addition_Bearing_[R]=0 +Weight_Addition_Plate=0 +Weight_Addition_Flange_Plate=0 +Weight_Addition_Axle_Plate_F=0 +Weight_Addition_Axle_Plate_[F]=0 +Weight_Addition_Axle_Plate_R=0 +Weight_Addition_Axle_Plate_[R]=0 +Weight_Addition_Base=0 +Weight_Addition_Base_Plate=0 +Weight_Addition_Feet=0 +Weight_Addition_Encoder=0 +Weight_Addition_EncCase=0 +Weight_Addition_Encoder_Case=0 +Weight_Addition_Rotor_Copper=0 +Weight_Addition_Rotor_Liner=0 +Weight_Addition_Rotor_Impreg=0 +Weight_addition_Rotor_Ins=0 +Weight_Addition_Rotor_Insulation=0 +Weight_Addition_Damper_Bars=0 +Weight_Addition_Damper_End_F=0 +Weight_Addition_Damper_End_R=0 +Weight_Addition_Damper_Opening=0 +Weight_Addition_Enc_Barrier=0 +Weight_Addition_Encoder_Barrier=0 +Weight_Addition_Comm_Bars=0 +Weight_Addition_Comm_Insulation=0 +Weight_Addition_Brushes=0 +Weight_Addition_Brush_Holder=0 +Weight_Addition_Brush_Holder_-_matalic_part=0 +Weight_Addition_Brush_Holder_Insulation=0 +Weight_Addition_Housing_Cover=0 +Weight_Addition_Slot_Water_Jacket_Wall=0 +Weight_Addition_Slot_WJ_Wall=0 +Weight_Addition_Slot_Water_Jacket_Insulation=0 +Weight_Addition_Slot_WJ_Insulation=0 +Weight_Addition_FieldDivider=0 + +[Material] +Material_Stator_Lam_Outer= +Material_Coil_Insulation= +Material_Phase_Separator= +Material_Spacer= +Material_Seal= +Material_Plate_Front_Outer= +Material_Plate_Front_Middle= +Material_Plate_Front_Inner= +Material_Plate_Rear_Outer= +Material_Plate_Rear_Middle= +Material_Plate_Rear_Inner= +Material_Mount_Centre= +Material_Mount_Rear= +Material_Endcap_OH=Polycarbonate (PC) +Material_Endcap_Centre=Polycarbonate (PC) +Material_CoilDivider= +Material_SlotWedge= +Material_RotorWedge= +Material_SyncRotorWindingSeparator= +Material_HeatEx_Duct= +Material_HeatEx_Insulation= +Material_StatorBackIronInterLamination= +Material_StatorToothInterLamination= +Material_StatorOuterInterLamination= +Material_RotorToothInterLamination= +Material_RotorBackIronInterLamination= +Material_Rotor_Cage_Top_Opening=Aluminium (Cast) +Material_Rotor_Cage_Top=Aluminium (Cast) +Material_Rotor_Cage_Bottom_Opening=Aluminium (Cast) +Material_Rotor_Cage_Bottom=Aluminium (Cast) +Material_Rotor_Cage_End_F=Aluminium (Cast) +Material_Rotor_Cage_End_R=Aluminium (Cast) +Material_RotorPlate_F= +Material_RotorPlate_R= +Material_Wafter_F= +Material_Wafter_R= +Material_StatorClampPlate_F= +Material_StatorClampPlate_R= +Material_Fan= +Material_HousingWJ_Wall= +Material_ShaftSG_Wall= +Material_LitzImpreg_A= +Material_LitzImpreg_F= +Material_LitzImpreg_R= +Material_LitzImpreg_T= +Material_LitzIns_A= +Material_LitzIns_F= +Material_LitzIns_R= +Material_LitzIns_T= +Material_Copper_Active_Aux=Copper (Pure) +Material_Copper_EW_Front_Aux=Copper (Pure) +Material_Copper_EW_Rear_Aux=Copper (Pure) +Material_Housing_Active=Plastic (ABS) +Material_Housing_[A]=Plastic (ABS) +Material_Housing_Front=Plastic (ABS) +Material_Housing_[F]=Plastic (ABS) +Material_Housing_Rear=Plastic (ABS) +Material_Housing_[R]=Plastic (ABS) +Material_Endcap_Front=Polycarbonate (PC) +Material_Endcap_[F]=Polycarbonate (PC) +Material_Endcap_Rear=Plastic (ABS) +Material_Endcap_[R]=Plastic (ABS) +Material_Stator_Lam_Back_Iron=M800-50A +Material_Stator_Lam_Yoke=M800-50A +Material_Stator_Lam_Tooth=M800-50A +Material_Copper_Active=Copper (Pure) +Material_Copper_-_Active=Copper (Pure) +Material_Copper_EW_Front=Copper (Pure) +Material_Copper_-_EndWdg_[F]=Copper (Pure) +Material_Copper_EW_Rear=Copper (Pure) +Material_Copper_-_EndWdg_[R]=Copper (Pure) +Material_End_Winding_Insulation_F= +Material_EWdg_Ins_[F]= +Material_End_Winding_Insulation_R= +Material_EWdg_Ins_[R]= +Material_Insulation_Active= +Material_Wire_Insulation= +Material_Insulation_EW_Front= +Material_Wire_Insulation_-_EndWdg_[F]= +Material_Insulation_EW_Rear= +Material_Wire_Insulation_-_EndWdg_[R]= +Material_Impreg_Active= +Material_Impreg_-_Active= +Material_Impreg_EW_Front= +Material_Impreg_-_EndWdg_[F]= +Material_Impreg_EW_Rear= +Material_Impreg_-_EndWdg_[R]= +Material_Potting_Endcap_Front= +Material_Potting_-_Endcap_[F]= +Material_Potting_Endcap_Rear= +Material_Potting_-_EndWdg_[R]= +Material_Airgap= +Material_End_Space_Front= +Material_End-Space_[F]= +Material_End_Space_Rear= +Material_End-Space_[R]= +Material_Slot_Liner= +Material_Ins_Slot_Base= +Material_Insulation_Slot_Liner_Base= +Material_Ins_Tooth_Side= +Material_Insulation_Tooth_Side= +Material_Magnet=N38UH +Material_Embedded_Magnet_Pole=Stahl 37 +Material_Inter_Magnet_Gap=Stahl 37 +Material_Rotor_Lam_Back_Iron=Stahl 37 +Material_Rotor_Hub=Aluminium (Cast) +Material_Rotor_Lam_Tooth=Stahl 37 +Material_Banding= +Material_Magnet_Banding= +Material_Sleeve= +Material_Stator_Bore_Sleeve= +Material_Shaft_Active= +Material_Shaft_[A]= +Material_Shaft_Front= +Material_Shaft_[F]= +Material_Shaft_Rear= +Material_Shaft_[R]= +Material_Axle_Active= +Material_Axle_[A]= +Material_Axle_Front= +Material_Axle_[F]= +Material_Axle_Rear= +Material_Axle_[R]= +Material_Rotor_Cup_OH= +Material_Rotor_Cup_Base= +Material_Bearing_Front= +Material_Bearing_[F]= +Material_Bearing_Rear= +Material_Bearing_[R]= +Material_Axle_Plate_F= +Material_Axle_Plate_[F]= +Material_Plate= +Material_Axle_Plate_R= +Material_Axle_Plate_[R]= +Material_Base= +Material_Base_Plate= +Material_Feet= +Material_Encoder= +Material_EncCase= +Material_Encoder_Case= +Material_Rotor_Copper=Copper (Pure) +Material_Rotor_Liner= +Material_Rotor_Impreg= +Material_Rotor_Ins= +Material_Rotor_Insulation= +Material_Damper_Bars=Aluminium (Cast) +Material_Damper_End_F=Aluminium (Cast) +Material_Damper_End_R=Aluminium (Cast) +Material_Damper_Opening=Aluminium (Cast) +Material_Enc_Barrier= +Material_Encoder_Barrier= +Material_Comm_Bars=Copper (Pure) +Material_Comm_Insulation= +Material_Brushes=Electrographitic EG362 +Material_Brush_Holder= +Material_Brush_Holder_Insulation= +Material_Housing_Cover= +Material_Slot_Water_Jacket_Wall= +Material_Slot_WJ_Wall= +Material_Slot_Water_Jacket_Insulation= +Material_Slot_WJ_Insulation= +Material_FieldDivider= + +[Mat_Weight_Notes] +Material_Weight_Notes_Stator_Lam_Outer= +Material_Weight_Notes_Coil_Insulation= +Material_Weight_Notes_Phase_Separator= +Material_Weight_Notes_Spacer= +Material_Weight_Notes_Seal= +Material_Weight_Notes_Plate_Front_Outer= +Material_Weight_Notes_Plate_Front_Middle= +Material_Weight_Notes_Plate_Front_Inner= +Material_Weight_Notes_Plate_Rear_Outer= +Material_Weight_Notes_Plate_Rear_Middle= +Material_Weight_Notes_Plate_Rear_Inner= +Material_Weight_Notes_Mount_Centre= +Material_Weight_Notes_Mount_Rear= +Material_Weight_Notes_Endcap_OH= +Material_Weight_Notes_Endcap_Centre= +Material_Weight_Notes_CoilDivider= +Material_Weight_Notes_SlotWedge= +Material_Weight_Notes_RotorWedge= +Material_Weight_Notes_SyncRotorWindingSeparator= +Material_Weight_Notes_HeatEx_Duct= +Material_Weight_Notes_HeatEx_Insulation= +Material_Weight_Notes_RotorPocket= +Material_Weight_Notes_StatorBackIronInterLamination= +Material_Weight_Notes_StatorToothInterLamination= +Material_Weight_Notes_StatorOuterInterLamination= +Material_Weight_Notes_RotorToothInterLamination= +Material_Weight_Notes_RotorBackIronInterLamination= +Material_Weight_Notes_Rotor_Cage_Top_Opening= +Material_Weight_Notes_Rotor_Cage_Top= +Material_Weight_Notes_Rotor_Cage_Bottom_Opening= +Material_Weight_Notes_Rotor_Cage_Bottom= +Material_Weight_Notes_Rotor_Cage_End_F= +Material_Weight_Notes_Rotor_Cage_End_R= +Material_Weight_Notes_RotorPlate_F= +Material_Weight_Notes_RotorPlate_R= +Material_Weight_Notes_Wafter_F= +Material_Weight_Notes_Wafter_R= +Material_Weight_Notes_StatorClampPlate_F= +Material_Weight_Notes_StatorClampPlate_R= +Material_Weight_Notes_Fan= +Material_Weight_Notes_HousingWJ_Wall= +Material_Weight_Notes_ShaftSG_Wall= +Material_Weight_Notes_LitzImpreg_A= +Material_Weight_Notes_LitzImpreg_F= +Material_Weight_Notes_LitzImpreg_R= +Material_Weight_Notes_LitzImpreg_T= +Material_Weight_Notes_LitzIns_A= +Material_Weight_Notes_LitzIns_F= +Material_Weight_Notes_LitzIns_R= +Material_Weight_Notes_LitzIns_T= +Material_Weight_Notes_Copper_Active_Aux= +Material_Weight_Notes_Copper_EW_Front_Aux= +Material_Weight_Notes_Copper_EW_Rear_Aux= +Material_Weight_Notes_Housing_Active= +Notes_Mat&Weight_Housing_[A]= +Material_Weight_Notes_Housing_Front= +Notes_Mat&Weight_Housing_[F]= +Material_Weight_Notes_Housing_Rear= +Notes_Mat&Weight_Housing_[R]= +Material_Weight_Notes_Housing_Total= +Notes_Mat&Weight_Housing_[T]= +Material_Weight_Notes_Endcap_Front= +Notes_Mat&Weight_Endcap_[F]= +Material_Weight_Notes_Endcap_Rear= +Notes_Mat&Weight_Endcap_[R]= +Material_Weight_Notes_Stator_Lam_Back_Iron= +Notes_Mat&Weight_Stator_Lam_Yoke= +Material_Weight_Notes_Stator_Lam_Tooth= +Notes_Mat&Weight_Stator_Lam_Tooth= +Material_Weight_Notes_Stator_Lam= +Notes_Mat&Weight_Stator_Lam= +Material_Weight_Notes_Copper_Active= +Notes_Mat&Weight_Copper_-_Active= +Material_Weight_Notes_Copper_EW_Front= +Notes_Mat&Weight_Copper_-_Endwdg_[F]= +Material_Weight_Notes_Copper_EW_Rear= +Notes_Mat&Weight_Copper_-_Endwdg_[R]= +Material_Weight_Notes_End_Winding_Insulation_F= +Notes_Mat&Weight_EWdg_Ins_[F]= +Material_Weight_Notes_End_Winding_Insulation_R= +Notes_Mat&Weight_EWdg_Ins_[R]= +Material_Weight_Notes_Copper_Total= +Notes_Mat&Weight_Copper_-_Total= +Material_Weight_Notes_Insulation_Active= +Notes_Mat&Weight_Wire_Insulation= +Material_Weight_Notes_Insulation_EW_Front= +Notes_Mat&Weight_Wire_Insulation_-_EndWdg_[F]= +Material_Weight_Notes_Insulation_EW_Rear= +Notes_Mat&Weight_Wire_Insulation_-_EndWdg_[R]= +Material_Weight_Notes_Insulation_Total= +Notes_Mat&Weight_Wire_Insulation_-_Total= +Material_Weight_Notes_Impreg_Active= +Notes_Mat&Weight_Impreg_-_Active= +Material_Weight_Notes_Impreg_EW_Front= +Notes_Mat&Weight_Impreg_-_EndWdg_[F]= +Material_Weight_Notes_Impreg_EW_Rear= +Notes_Mat&Weight_Impreg_-_EndWdg_[R]= +Material_Weight_Notes_Impreg_Total= +Notes_Mat&Weight_Impreg_-_Total= +Material_Weight_Notes_Potting_Endcap_Front= +Notes_Mat&Weight_Potting_-_Endcap_[F]= +Material_Weight_Notes_Potting_Endcap_Rear= +Notes_Mat&Weight_Potting_-_Endcap_[R]= +Material_Weight_Notes_Airgap= +Notes_Mat&Weight_Airgap= +Material_Weight_Notes_End_Space_Front= +Notes_Mat&Weight_End-Space_[F]= +Material_Weight_Notes_End_Space_Rear= +Notes_Mat&Weight_End-Space_[R]= +Material_Weight_Notes_Slot_Liner= +Notes_Mat&Weight_Slot_Liner= +Material_Weight_Notes_Ins_Slot_Base= +Notes_Mat&Weight_Ins_Slot_Base= +Material_Weight_Notes_Ins_Tooth_Side= +Notes_Mat&Weight_Ins_Tooth_Side= +Material_Weight_Notes_Magnet= +Notes_Mat&Weight_Magnet= +Material_Weight_Notes_Embedded_Magnet_Pole= +Notes_Mat&Weight_Embedded_Magnet_Pole= +Material_Weight_Notes_Inter_Magnet_Gap= +Notes_Mat&Weight_Inter_Magnet_Gap= +Material_Weight_Notes_Rotor_Lam_Back_Iron= +Notes_Mat&Weight_Rotor_Lam_Back_Iron= +Material_Weight_Notes_Rotor_Hub= +Material_Weight_Notes_Rotor_Lam_Tooth= +Notes_Mat&Weight_Rotor_Lam_Tooth= +Material_Weight_Notes_Rotor_Lam= +Notes_Mat&Weight_Rotor_Lam= +Material_Weight_Notes_Banding= +Notes_Mat&Weight_Magnet_Banding= +Material_Weight_Notes_Sleeve= +Notes_Mat&Weight_Stator_Bore_Sleeve= +Material_Weight_Notes_Shaft_Active= +Notes_Mat&Weight_Shaft_[A]= +Material_Weight_Notes_Shaft_Front= +Notes_Mat&Weight_Shaft_[F]= +Material_Weight_Notes_Shaft_Rear= +Notes_Mat&Weight_Shaft_[R]= +Material_Weight_Notes_Shaft_Total= +Notes_Mat&Weight_Shaft_[T]= +Material_Weight_Notes_Axle_Active= +Notes_Mat&Weight_Axle_[A]= +Material_Weight_Notes_Axle_Front= +Notes_Mat&Weight_Axle_[F]= +Material_Weight_Notes_Axle_Rear= +Notes_Mat&Weight_Axle_[R]= +Material_Weight_Notes_Rotor_Cup_OH= +Notes_Mat&Weight_Rotor_Cup_OH= +Material_Weight_Notes_Rotor_Cup_Base= +Notes_Mat&Weight_Rotor_Cup_Base= +Material_Weight_Notes_Axle_Total= +Notes_Mat&Weight_Axle_[T]= +Material_Weight_Notes_Bearing_Front= +Notes_Mat&Weight_Bearing_[F]= +Material_Weight_Notes_Bearing_Rear= +Notes_Mat&Weight_Bearing_[R]= +Material_Weight_Notes_Plate= +Notes_Mat&Weight_Flange_Plate= +Material_Weight_Notes_Axle_Plate_F= +Notes_Mat&Weight_Axle_Plate_[F]= +Material_Weight_Notes_Axle_Plate_R= +Notes_Mat&Weight_Axle_Plate_[R]= +Material_Weight_Notes_Base= +Notes_Mat&Weight_Base_Plate= +Material_Weight_Notes_Feet= +Notes_Mat&Weight_Feet= +Material_Weight_Notes_Encoder= +Notes_Mat&Weight_Encoder= +Material_Weight_Notes_EncCase= +Notes_Mat&Weight_Encoder_Case= +Material_Weight_Notes_Enc_Barrier= +Notes_Mat&Weight_Encoder_Barrier= +Material_Weight_Notes_Rotor_Cage= +Notes_Mat&Weight_Rotor_Cage= +Material_Weight_Notes_Rotor_Copper= +Notes_Mat&Weight_Rotor_Copper= +Material_Weight_Notes_Rotor_Liner= +Notes_Mat&Weight_Rotor_Liner= +Material_Weight_Notes_Rotor_Impreg= +Notes_Mat&Weight_Rotor_Impreg= +Material_Weight_Notes_Rotor_Ins= +Notes_Mat&Weight_Rotor_Insulation= +Material_Weight_Notes_Damper_Bars= +Material_Weight_Notes_Damper_End_F= +Material_Weight_Notes_Damper_End_R= +Material_Weight_Notes_Damper_Opening= +Material_Weight_Notes_Damper_Cage= +Material_Weight_Notes_Comm_Bars= +Notes_Mat&Weight_Comm_Bars= +Material_Weight_Notes_Comm_Insulation= +Notes_Mat&Weight_Comm_Insulation= +Material_Weight_Notes_Brushes= +Notes_Mat&Weight_Brushes= +Material_Weight_Notes_Brush_Holder= +Notes_Mat&Weight_Brush_Holder= +Material_Weight_Notes_Brush_Holder_Insulation= +Notes_Mat&Weight_Brush_Holder_Insulation= +Material_Weight_Notes_Housing_Cover= +Notes_Mat&Weight_Housing_Cover= +Material_Weight_Notes_Weight_Total=Weight [Total] +Notes_Mat_&_Weight_Total=Weight [Total] +Material_Weight_Notes_Slot_Water_Jacket_Wall= +Notes_Mat&Weight_Slot_WJ_Wall= +Material_Weight_Notes_Slot_Water_Jacket_Insulation= +Notes_Mat&Weight_Slot_WJ_Insulation= +Material_Weight_Notes_FieldDivider= + +[Miscellaneous] +ProximityLosses_ShowDetail=False +ProximityLossModel=0 +AirgapConvectiveHTCMultiplier=1 +AIRGAP_CONDUCTIVITY_MULTIPLIER=1 +EncGapConductivityMultiplier=1 +ENCODER_-_ENCCASE_CONDUCTIVITY_MULTIPLIER=1 +FinSideBaseNatConvWeighting=1 +AXIAL_FIN_HORIZ_MOUNT_SIDE/BASE_WEIGHTING=1 +ShaftSpeed=1000 +Shaft_Speed=1000 +Shaft_Speed_Ref=1000 +Reference_shaft_speed=1000 +T_Ambient=40 +Ambient_Temperature=40 +Altitude=0 +T_Ambient_Radiation=40 +Plate_Temperature=100 +Base_Temperature=100 +Shaft_F_Temperature=100 +Shaft[F]_Temperature=100 +Shaft_R_Temperature=100 +Shaft[R]_Temperature=100 +Axle_F_Temperature=100 +Axle[F]_Temperature=100 +Axle_R_Temperature=100 +Axle[R]_Temperature=100 +Endcap_F_Temperature=100 +Endcap[F]_Temperature=100 +Endcap_R_Temperature=100 +Endcap[R]_Temperature=100 +Air_Property_Temperature=100 +Stacking_Factor_Stator=0,97 +Stacking_Factor_[Stator]=0,97 +Stacking_Factor_Rotor=0,97 +Stacking_Factor_[Rotor]=0,97 + +[User_Options] +SteadyStateResultsEnabled=False +TransientResultsEnabled=False +TestDataFile=No File Selected +SteadyStateResultsDecimalSeparator= +TransientResultsDecimalSeparator= +ThermalCalcType=0 +ThermalModelType=0 +ThermalModelSize=0 +Rotation3D_X=406 +Rotation3D_Y=514 +TVentFluidTempCheck=False +AutomaticFileBackup=False +HintDisplayTime=2,5 +PreviewFolderLocation=C:\Users\TEMP\Downloads\OhmMotor v_ResistanceProblem\Preview\ +AxialCuboidTempDisplay=0 +FreqDomain_MinAmplitude_ForceDensity=1000 +GeometryEditor_SelectedRegions_EMag=Standard,Armature;Standard,Field; +GeometryEditor_FocusedRegion=0 +GeometryEditor_SelectedRegions_Thermal=Standard,Armature;Standard,Field; +GeometryEditor_SelectedRegions_Mech=Standard,Armature;Standard,Field; +CoordinateSystem=0 +GeometryEngine_UniqueNaming=1 +Maxwell_RotorPocket_Subtraction=1 +WeightCalculationMethod=0 +DrawVirtualBoundaries=False +AdaptiveScript_ExternalIDE_Enabled=False + +[Shaft_Jacket_Data] +SGManualFrictionFactor=0 +SGFrictionFactor_F=1E-7 +SGFrictionFactor_R=1E-7 +SGFrictionFactor_A=1E-7 + +[Blown_Over] +SubmersibleCooling=False +FloodedCooling=False +BlownOverDirection=0 +BlownOverGraphSelection=0 +BlownOverLeakageDefinition=0 +BlownOverCurvatureX=0,1 +BlownOverCurvatureY=0,1 +BlownOverEndLeakage=0,2 +BlownOver_FluidFlowNotes_Housing_Active_No_Fins= +BlownOver_FluidFlowNotes_Housing_Active_Fin_Base= +BlownOver_FluidFlowNotes_Housing_Active_Fin_Sides= +BlownOver_FluidFlowNotes_Housing_Active_Fin_Tips= +BlownOver_FluidFlowNotes_Housing_Active_Fin_Channel= +BlownOver_FluidFlowNotes_Housing_Active_Corner_Cutout= +BlownOver_FluidFlowNotes_Housing_Front_No_Fins= +BlownOver_FluidFlowNotes_Housing_Front_Fin_Base= +BlownOver_FluidFlowNotes_Housing_Front_Fin_Sides= +BlownOver_FluidFlowNotes_Housing_Front_Fin_Tips= +BlownOver_FluidFlowNotes_Housing_Front_Fin_Channel= +BlownOver_FluidFlowNotes_Housing_Front_Corner_Cutout= +BlownOver_FluidFlowNotes_Housing_Rear_No_Fins= +BlownOver_FluidFlowNotes_Housing_Rear_Fin_Base= +BlownOver_FluidFlowNotes_Housing_Rear_Fin_Sides= +BlownOver_FluidFlowNotes_Housing_Rear_Fin_Tips= +BlownOver_FluidFlowNotes_Housing_Rear_Fin_Channel= +BlownOver_FluidFlowNotes_Housing_Rear_Corner_Cutout= +BlownOver_FluidFlowNotes_Endcap_Front_Radial= +BlownOver_FluidFlowNotes_Endcap_Front_Axial= +BlownOver_FluidFlowNotes_Endcap_Rear_Radial= +BlownOver_FluidFlowNotes_Endcap_Rear_Axial= +BlownOver_FluidFlowNotes_Plate= +BlownOver_FluidFlowNotes_Axle_Plate_F= +BlownOver_FluidFlowNotes_Axle_Plate_R= +BlownOver_FluidFlowNotes_Base= +BlownOver_FluidFlowNotes_EncCase_Radial= +BlownOver_FluidFlowNotes_EncCase_Axial= +BlownOver4Kw=False +BlownOver75Kw=False +iBlownOver75Kw=False +BlownOver15Kw=False +BlownOver30Kw=False +BlownOver55Kw=False +BlownOverDiGerlando2Pole=False +BlownOverDiGerlando4Pole=False +BlownOverKovalev=False +BlownOverTurbulenceFactorSetting=0 +Grill_Pattern=0 + +[Magnetics] +NumLoadPoints=0 +MultiForceExportFile= +RomaxFile= +NumForcePointsPerNode_Stator=10 +NumForcePointsPerNode_Rotor=10 +MultiForceLoadPointDefinition=0 +RomaxLoadPointDefinition=0 +MultiForceMinEnvelopeSpeed=0 +MultiForceMaxEnvelopeSpeed=20000 +RomaxMaxEnvelopeSpeed=20000 +MultiForceEnvelopePoints=20 +RomaxEnvelopePoints=20 +MultiForceEnvelopeStepSize=1000 +RomaxEnvelopeStepSize=1000 +MultiForceEnvelopeSetOperatingPoints=0 +ForceExportFormat=0 +ForceExport_DataType=0 +ForceExportCycleType=1 +AnsysMechanicalExport_ForceType=0 +AnsysMechanicalExport_Xoffset=0 +AnsysMechanicalExport_Yoffset=0 +AnsysMechanicalExport_Zoffset=0 +Envelope_Speed_Array[0]=0 +Envelope_Speed_Array[1]=0 +Envelope_Speed_Array[2]=0 +Envelope_Speed_Array[3]=0 +Envelope_Speed_Array[4]=0 +Envelope_Speed_Array[5]=0 +Envelope_Speed_Array[6]=0 +Envelope_Speed_Array[7]=0 +Envelope_Speed_Array[8]=0 +Envelope_Speed_Array[9]=0 +Envelope_Speed_Array[10]=0 +Envelope_Speed_Array[11]=0 +Envelope_Speed_Array[12]=0 +Envelope_Speed_Array[13]=0 +Envelope_Speed_Array[14]=0 +Envelope_Speed_Array[15]=0 +Envelope_Speed_Array[16]=0 +Envelope_Speed_Array[17]=0 +Envelope_Speed_Array[18]=0 +Envelope_Speed_Array[19]=0 +Envelope_Torque_Array[0]=0 +Envelope_Torque_Array[1]=0 +Envelope_Torque_Array[2]=0 +Envelope_Torque_Array[3]=0 +Envelope_Torque_Array[4]=0 +Envelope_Torque_Array[5]=0 +Envelope_Torque_Array[6]=0 +Envelope_Torque_Array[7]=0 +Envelope_Torque_Array[8]=0 +Envelope_Torque_Array[9]=0 +Envelope_Torque_Array[10]=0 +Envelope_Torque_Array[11]=0 +Envelope_Torque_Array[12]=0 +Envelope_Torque_Array[13]=0 +Envelope_Torque_Array[14]=0 +Envelope_Torque_Array[15]=0 +Envelope_Torque_Array[16]=0 +Envelope_Torque_Array[17]=0 +Envelope_Torque_Array[18]=0 +Envelope_Torque_Array[19]=0 +MultiForceThreading=1 +RomaxThreading=1 +MultiForce_LoadPointToAnalyse=0 +SupplyDefinition=0 +VoltageDefinition=0 +OperatingMode=0 +IMDriveMode=0 +IMSpeedDefinition=2 +IMTorqueSpeedNumPoints=501 +IMSlipRangeDefinition=0 +IMSlipMin=0 +IMSlipMax=1 +IMShaftSpeedMin=0 +IMShaftSpeedMax=3000 +IMSlip=0,03 +IMOnLoadTorque_User=0,5 +IMOnLoadPower_User=40 +IMDriveFrequency=50 +IMRmsSupplyVoltage=100 +IMPeakSupplyVoltage=100 +IMPeakSupplyCurrent=5 +IMRmsSupplyCurrent=5 +IMDoubleRotorCageCalcMethod=2 +MagnetizingInductance_Multiplier=1 +StatorLeakageInductance_Multiplier=1 +RotorLeakageInductance_Multiplier=1 +RotorBarFillFactor_Top=1 +RotorBarFillFactor_Bottom=1 +IMLookup_ExtensionFactor=2 +IMSaturationConvergenceTolerance=0,001 +IMSaturationRelaxationFactor=0,15 +IMInitialSaturationFactor=1,6 +IMSaturationCalcMethod=0 +LastIMSaturationCalcMethod=-1 +LastIMLookupPoints_Saturation=20 +LastIMSupplyDefinition_SaturationCalc=-1 +IMMaxPeakCurrent_SaturationCalc=5 +LastIMMaxPeakCurrent_SaturationCalc=-1 +IMMaxRMSCurrent_SaturationCalc=5 +LastIMMaxRMSCurrent_SaturationCalc=-1 +IMMaxPeakVoltage_SaturationCalc=100 +LastIMMaxPeakVoltage_SaturationCalc=-1 +IMMaxRMSVoltage_SaturationCalc=100 +LastIMMaxRMSVoltage_SaturationCalc=-1 +LastIMNoLoadMagnetizingCurrent=0 +IMLookup_LastExtensionFactor=-1 +IMRecalculateSaturationModel=False +IMEquivalentCircuitTolerance=0,01 +IMEquivalentCircuitMaxIterations=100 +IMEquivalentCircuitAveragingMethod=0 +IMCircuitIterationsBeforeAverage=30 +IMCircuitCyclesAtEachAverage=5 +IMCircuitMaxIterationsInAverage=10 +IMLookup_Imag[0]=0 +IMLookup_Imag[1]=0 +IMLookup_Imag[2]=0 +IMLookup_Imag[3]=0 +IMLookup_Imag[4]=0 +IMLookup_Imag[5]=0 +IMLookup_Imag[6]=0 +IMLookup_Imag[7]=0 +IMLookup_Imag[8]=0 +IMLookup_Imag[9]=0 +IMLookup_Imag[10]=0 +IMLookup_Imag[11]=0 +IMLookup_Imag[12]=0 +IMLookup_Imag[13]=0 +IMLookup_Imag[14]=0 +IMLookup_Imag[15]=0 +IMLookup_Imag[16]=0 +IMLookup_Imag[17]=0 +IMLookup_Imag[18]=0 +IMLookup_Imag[19]=0 +IMLookup_SaturationFactor[0]=0 +IMLookup_SaturationFactor[1]=0 +IMLookup_SaturationFactor[2]=0 +IMLookup_SaturationFactor[3]=0 +IMLookup_SaturationFactor[4]=0 +IMLookup_SaturationFactor[5]=0 +IMLookup_SaturationFactor[6]=0 +IMLookup_SaturationFactor[7]=0 +IMLookup_SaturationFactor[8]=0 +IMLookup_SaturationFactor[9]=0 +IMLookup_SaturationFactor[10]=0 +IMLookup_SaturationFactor[11]=0 +IMLookup_SaturationFactor[12]=0 +IMLookup_SaturationFactor[13]=0 +IMLookup_SaturationFactor[14]=0 +IMLookup_SaturationFactor[15]=0 +IMLookup_SaturationFactor[16]=0 +IMLookup_SaturationFactor[17]=0 +IMLookup_SaturationFactor[18]=0 +IMLookup_SaturationFactor[19]=0 +IMLookup_Magnetizing_Reactance[0]=0 +IMLookup_MagnetizingInductance[0]=0 +IMLookup_Magnetizing_Reactance[1]=0 +IMLookup_MagnetizingInductance[1]=0 +IMLookup_Magnetizing_Reactance[2]=0 +IMLookup_MagnetizingInductance[2]=0 +IMLookup_Magnetizing_Reactance[3]=0 +IMLookup_MagnetizingInductance[3]=0 +IMLookup_Magnetizing_Reactance[4]=0 +IMLookup_MagnetizingInductance[4]=0 +IMLookup_Magnetizing_Reactance[5]=0 +IMLookup_MagnetizingInductance[5]=0 +IMLookup_Magnetizing_Reactance[6]=0 +IMLookup_MagnetizingInductance[6]=0 +IMLookup_Magnetizing_Reactance[7]=0 +IMLookup_MagnetizingInductance[7]=0 +IMLookup_Magnetizing_Reactance[8]=0 +IMLookup_MagnetizingInductance[8]=0 +IMLookup_Magnetizing_Reactance[9]=0 +IMLookup_MagnetizingInductance[9]=0 +IMLookup_Magnetizing_Reactance[10]=0 +IMLookup_MagnetizingInductance[10]=0 +IMLookup_Magnetizing_Reactance[11]=0 +IMLookup_MagnetizingInductance[11]=0 +IMLookup_Magnetizing_Reactance[12]=0 +IMLookup_MagnetizingInductance[12]=0 +IMLookup_Magnetizing_Reactance[13]=0 +IMLookup_MagnetizingInductance[13]=0 +IMLookup_Magnetizing_Reactance[14]=0 +IMLookup_MagnetizingInductance[14]=0 +IMLookup_Magnetizing_Reactance[15]=0 +IMLookup_MagnetizingInductance[15]=0 +IMLookup_Magnetizing_Reactance[16]=0 +IMLookup_MagnetizingInductance[16]=0 +IMLookup_Magnetizing_Reactance[17]=0 +IMLookup_MagnetizingInductance[17]=0 +IMLookup_Magnetizing_Reactance[18]=0 +IMLookup_MagnetizingInductance[18]=0 +IMLookup_Magnetizing_Reactance[19]=0 +IMLookup_MagnetizingInductance[19]=0 +IMLookup_Magnetizing_Inductance[0]=0 +IMLookup_Magnetizing_Inductance[1]=0 +IMLookup_Magnetizing_Inductance[2]=0 +IMLookup_Magnetizing_Inductance[3]=0 +IMLookup_Magnetizing_Inductance[4]=0 +IMLookup_Magnetizing_Inductance[5]=0 +IMLookup_Magnetizing_Inductance[6]=0 +IMLookup_Magnetizing_Inductance[7]=0 +IMLookup_Magnetizing_Inductance[8]=0 +IMLookup_Magnetizing_Inductance[9]=0 +IMLookup_Magnetizing_Inductance[10]=0 +IMLookup_Magnetizing_Inductance[11]=0 +IMLookup_Magnetizing_Inductance[12]=0 +IMLookup_Magnetizing_Inductance[13]=0 +IMLookup_Magnetizing_Inductance[14]=0 +IMLookup_Magnetizing_Inductance[15]=0 +IMLookup_Magnetizing_Inductance[16]=0 +IMLookup_Magnetizing_Inductance[17]=0 +IMLookup_Magnetizing_Inductance[18]=0 +IMLookup_Magnetizing_Inductance[19]=0 +IMLookup_StatorLeakageInductance[0]=0 +IMLookup_StatorLeakageInductance[1]=0 +IMLookup_StatorLeakageInductance[2]=0 +IMLookup_StatorLeakageInductance[3]=0 +IMLookup_StatorLeakageInductance[4]=0 +IMLookup_StatorLeakageInductance[5]=0 +IMLookup_StatorLeakageInductance[6]=0 +IMLookup_StatorLeakageInductance[7]=0 +IMLookup_StatorLeakageInductance[8]=0 +IMLookup_StatorLeakageInductance[9]=0 +IMLookup_StatorLeakageInductance[10]=0 +IMLookup_StatorLeakageInductance[11]=0 +IMLookup_StatorLeakageInductance[12]=0 +IMLookup_StatorLeakageInductance[13]=0 +IMLookup_StatorLeakageInductance[14]=0 +IMLookup_StatorLeakageInductance[15]=0 +IMLookup_StatorLeakageInductance[16]=0 +IMLookup_StatorLeakageInductance[17]=0 +IMLookup_StatorLeakageInductance[18]=0 +IMLookup_StatorLeakageInductance[19]=0 +IMLookup_Phase_Inductance[0]=0 +IMLookup_Phase_Inductance[1]=0 +IMLookup_Phase_Inductance[2]=0 +IMLookup_Phase_Inductance[3]=0 +IMLookup_Phase_Inductance[4]=0 +IMLookup_Phase_Inductance[5]=0 +IMLookup_Phase_Inductance[6]=0 +IMLookup_Phase_Inductance[7]=0 +IMLookup_Phase_Inductance[8]=0 +IMLookup_Phase_Inductance[9]=0 +IMLookup_Phase_Inductance[10]=0 +IMLookup_Phase_Inductance[11]=0 +IMLookup_Phase_Inductance[12]=0 +IMLookup_Phase_Inductance[13]=0 +IMLookup_Phase_Inductance[14]=0 +IMLookup_Phase_Inductance[15]=0 +IMLookup_Phase_Inductance[16]=0 +IMLookup_Phase_Inductance[17]=0 +IMLookup_Phase_Inductance[18]=0 +IMLookup_Phase_Inductance[19]=0 +IMLookupMethod=1 +Date_Calculated_IMLookupCurves= +Time_Calculated_IMLookupCurves= +LastIMSaturationCalcMethod_Backup=-1 +LastIMLookupPoints_Saturation_Backup=20 +LastIMSupplyDefinition_SaturationCalc_Backup=-1 +LastIMMaxPeakCurrent_SaturationCalc_Backup=-1 +LastIMMaxRMSCurrent_SaturationCalc_Backup=-1 +LastIMMaxPeakVoltage_SaturationCalc_Backup=-1 +LastIMMaxRMSVoltage_SaturationCalc_Backup=-1 +IMInductance_Points=5 +IMInductance_CurrentProp[0]=0,1 +IMInductance_CurrentProp[1]=0,2 +IMInductance_CurrentProp[2]=0,5 +IMInductance_CurrentProp[3]=0,8 +IMInductance_CurrentProp[4]=1 +IMCoreLoss_Points=5 +IMCoreLoss_CurrentProp[0]=0,1 +IMCoreLoss_CurrentProp[1]=0,2 +IMCoreLoss_CurrentProp[2]=0,5 +IMCoreLoss_CurrentProp[3]=0,8 +IMCoreLoss_CurrentProp[4]=1 +IMRotorFluxDensityCalc=1 +IMRotorEddyLossMethod=0 +IMReferredRotorParametersMethod=2 +IMSeriesEquivalentInductanceMethod=1 +IMEquivCircMultipliersDefinition=0 +IMMaxPeakVoltage_Calibration=100 +IMMaxRMSVoltage_Calibration=70,71 +IMCalibratedLookupDataEnabled=True +IMCalibrationFactor_Lm_Points=0 +IMUserData_Lm_Points=0 +IMCalibrationFactor_Rfe_Points=0 +IMCalibrationFactor_L1_Points=0 +IMCalibrationFactor_L2_Points=0 +IMCalibrationFactor_R2_Points=0 +IMUserData_Rfe_Points=0 +IMUserData_Load_Points=0 +ParallelPaths_Aux=1 +IM1PH_Starting_ControlStrategy=0 +IM1PH_Starting_CutoffSpeed=1125 +IM1PH_Motor_Type=0 +IM1PH_Start_Capacitance=8E-5 +IM1PH_Start_Resistance=25 +IM1PH_Run_Capacitance=2E-5 +IM1PH_Run_Resistance=25 +MagnetizingInductance_Aux_Multiplier=1 +StatorLeakageInductance_Aux_Multiplier=1 +ArmatureEWdgMLT_Aux_Multiplier=1 +ArmatureEWdgInductance_Aux_Multiplier=1 +IM1PHEquivalentCircuitSolverMethod=1 +IMEquivalentCircuitHarmonicOrders=3 +IM1PH_NumHarmonicOrders=1 +PeakCurrent=4,24264068711929 +DCCurrent=5 +RMSCurrent=3 +ConverterLosses=0 +DCFieldCurrent=10 +DCRotorCurrent=10 +RMSCurrentDensity=15,278874536822 +DCCurrentDensity=0 +FieldCurrentDensity=0 +RotorCurrentDensity=0 +CurrentDefinition=1 +DCDriveDefinition=0 +DCCurrentDefinition=0 +FieldCurrentDefinition=0 +RotorCurrentDefinition=0 +PhaseAdvance=0 +DCBusVoltage=400 +DriveModulation=0 +DriveSwitchResistance=0 +CalculatedCurrentsDriveCircuit=1 +SupplyInternalResistance=0 +SupplyVoltage=400 +SupplyFilterCapacitance=0 +DriveSwitchVoltage=0,8 +DriveSwitchingAngle=120 +DriveDiodeVoltage=0,6 +DriveEffectiveSwitchingFrequency=100000 +DriveDutyCycle=1 +DriveChoppingMode=0 +SpaceVectorDriveGainFactorG2=0,1 +DriveSwitchingFrequencyDefinition=0 +PassiveGeneratorLoadType=0 +DCLoadType=0 +DCLoadResistance=100 +DCLoadVoltage=100 +DCFilterInductance=0,001 +DCFilterCapacitance=1E-6 +RectifierOutputResistance=1 +ACLoadWindingConnection=0 +ACLoadResistance=100 +ACLoadInductance=0,001 +ACLoadAdjustmentPhase2=1 +ACLoadAdjustmentPhase3=1 +WindingConnection=0 +CustomDriveCyclePointReduction=1 +CustomDriveDefinition=1 +NumHarmonicDataPoints=1 +HarmonicOrder_Array[0]=1 +HarmonicAmplitude_Array[0]=1 +HarmonicAngle_Array[0]=0 +UseSpecifiedRefTemp=False +MagnetRefTempItem=0 +MagnetRefTemp_Defined=20 +HalbachDefinition=2 +ExternalLine_Definition=0 +ExternalLine_Resistance=0 +ExternalLine_Area=1 +ExternalLine_Length=100 +InputCircuit=0 +SineFilter_Capacitance=0 +SineFilter_Inductance=0 +MagneticContextVisible=True +PhysicalModelType=1 +DisplayCoggingTorqueCE=False +ShaftHole_Inertia_Calc=1 +BPMDriveMode=0 +DriveType_BPM=0 +ContinuousSkewMethod=1 +FluxSkewFactor=1 +SkewAngle_FluxSkewFactor=0 +DemagCurveMethod=1 +DemagCondition=1 +SinglePointDemagCalcMethod=1 +NumDemagCurveTemperatures=8 +DemagCurveTemperatures[0]=-40 +DemagCurveTemperatures[1]=0 +DemagCurveTemperatures[2]=20 +DemagCurveTemperatures[3]=60 +DemagCurveTemperatures[4]=100 +DemagCurveTemperatures[5]=140 +DemagCurveTemperatures[6]=180 +DemagCurveTemperatures[7]=220 +Magnet_Br_at_RefTemp=1,26 +Magnet_Br_at_20=1,26 +Magnet_TBr_Coeff=-0,12 +Magnet_ur=1,05 +Magnet_HcJ_at_RefTemp=1990000 +Magnet_RefTemp=20 +Magnet_THcJ_Coeff=-0,465 +Magnet_SquarenessFactor=6E-5 +Magnetization=0 +HalbachMagnetization=0 +HalbachMagnetizationBr1Function= +HalbachMagnetizationBr2Function= +SkewType=0 +StatorSkew=0 +RotorSkewSlices=1 +RotorSkewAngle_Array[0]=0 +RotorSkewAngle_Array[1]=0 +RotorSkewAngle_Array[2]=0 +RotorSkewAngle_Array[3]=0 +RotorSkewAngle_Array[4]=0 +RotorSkewAngle_Array[5]=0 +RotorSkewAngle_Array[6]=0 +RotorSkewAngle_Array[7]=0 +RotorSkewAngle_Array[8]=0 +RotorSkewAngle_Array[9]=0 +RotorSkewAngle_Array[10]=0 +RotorSkewAngle_Array[11]=0 +RotorSkewAngle_Array[12]=0 +RotorSkewAngle_Array[13]=0 +RotorSkewAngle_Array[14]=0 +RotorSkewLengthProp_Array[0]=1 +RotorSkewLengthProp_Array[1]=1 +RotorSkewLengthProp_Array[2]=1 +RotorSkewLengthProp_Array[3]=1 +RotorSkewLengthProp_Array[4]=1 +RotorSkewLengthProp_Array[5]=1 +RotorSkewLengthProp_Array[6]=1 +RotorSkewLengthProp_Array[7]=1 +RotorSkewLengthProp_Array[8]=1 +RotorSkewLengthProp_Array[9]=1 +RotorSkewLengthProp_Array[10]=1 +RotorSkewLengthProp_Array[11]=1 +RotorSkewLengthProp_Array[12]=1 +RotorSkewLengthProp_Array[13]=1 +RotorSkewLengthProp_Array[14]=1 +WindingLayers=2 +EWdgThermalWindingLayers_F=1 +EWdgThermalWindingLayers_R=1 +WindingSchematic_Style=0 +HarmonicView=0 +ACConductorLossUserRatio[0]=0 +ACConductorLossUserRatio[1]=0 +MagneticWindingType=0 +MagneticWindingTypeHairpin=1 +ParallelPaths_Hairpin=1 +HairpinPathPattern[0]= +MagPhaseDistribution=0 +MagTurnsConductor=125 +MagThrow=1 +MagWindingOffset=1 +MultiplexOffset=0 +MagPathType=0 +NumberOfCoils=6 +CoilsPerPath_Array[0]=6 +CoilsPerPath_Array[1]=6 +CoilsPerPath_Array[2]=6 +CoilsPerPath_Array[3]=6 +CoilsPerPath_Array[4]=6 +CoilsPerPath_Array[5]=6 +CoilsPerPath_Array[6]=6 +CoilsPerPath_Array[7]=6 +CoilsPerPath_Array[8]=6 +CoilsPerPath_Array[9]=6 +CoilsPerPath_Array[10]=6 +CoilsPerPath_Array[11]=6 +CoilsPerPath_Array[12]=6 +CoilsPerPath_Array[13]=6 +CoilsPerPath_Array[14]=6 +ParallelPaths=1 +NumberStrandsHand=1 +NumberStrandsHand_2=1 +NumberStrandsHand_3=1 +NumberStrandsHand_Aux=1 +MagPhases=3 +MagTurnsConductorField=50 +MagTurnsConductorRotor=50 +ParallelPaths_Field=1 +ParallelPaths_Rotor=1 +NumberStrandsHand_Field=1 +NumberStrandsHand_Rotor=1 +IronLossCalculationType=0 +Magnet2D3DCalculation=1 +Magnet2D3DWidth_Calc=2 +RotorHysterisisCalculation=0 +RotorHysterisisCalculation_SRM=1 +MagneticShaft=False +GeometryMeshEnabled=True +OpenCircuitCalculation=False +OnLoadCalculation=True +QAxisCurrentCalculation=True +TorqueCalculation=True +BackEMFCalculation=False +CoggingTorqueCalculation=False +TorqueSpeedCalculation=False +DemagnetizationCalc=False +ElectromagneticForcesCalc_OC=False +ElectromagneticForcesCalc_Load=False +InductanceCalc=False +CentrifugalForceCalc=False +BPMShortCircuitCalc=False +FluxSkewFactorCalc=True +OnLoadLossCalculation=False +BackEMFLossCalculation=False +IMCoreLossCalc=False +IMSingleLoadPointFEACalc_Rotating=False +IMSingleLoadPointFEACalc_Full=False +IMSingleLoadNumberCycles_Initial=2 +IMSingleLoadNumberCycles_InitialRotating=1 +IMSingleLoadPointFEACalc_Rotating_Initialisation=1 +IMSingleLoadPointFEACalc_Full_Initialisation=1 +IMSingleLoadPointFEACalc=False +IMTorqueSpeedCalc=True +IMLockedRotorCalc=False +IMLockedRotorAnalyticCalc=True +IMNoLoadAnalyticCalc=True +IMBreakdownPointAnalyticCalc=False +ArmatureEWdgMLT_Multiplier=0,5 +StatorEWdgMLT_Multiplier=0,5 +ArmatureEWdgInductance_Multiplier=1 +StatorEWdgInductance_Multiplier=1 +FieldEWdgMLT_Multiplier=1 +RotorEWdgMLT_Multiplier=1 +StrayLoadLossPercentage_OutputPower=0 +StrayLoadLossPercentage_Resistance=0 +IronLossBuildFactorDefinition=0 +StatorIronLossBuildFactor=1 +RotorIronLossBuildFactor=1 +HysteresisLossBuildFactor=1 +EddyLossBuildFactor=1 +ShaftLossBuildFactor=1 +MagnetLossBuildFactor=1 +Magnet_Br_Multiplier=1 +FluxLinkageMultiplier_D=1 +FluxLinkageMultiplier_Q=1 +StatorSaturationMultiplier=1 +RotorSaturationMultiplier=1 +MagneticAxialLengthMultiplier=1 +SleeveAxialLengthMultiplier=1 +ArmatureConductor_Temperature=106,7 +StatorConductor_Temperature=106,7 +ArmatureConductor_ResistivityAt20C=1,724E-8 +StatorConductor_ResistivityAt20C=1,724E-8 +ArmatureConductor_ResistivityAt20C_Aux=1,724E-8 +FieldConductor_Temperature=40 +RotorConductor_Temperature=40 +FieldConductor_ResistivityAt20C=0 +RotorConductor_ResistivityAt20C=0 +RotorBar_Temperature=140 +RotorBar_ResistivityAt20=1,724E-8 +EndRing_Temperature=140 +EndRing_ResistivityAt20=1,724E-8 +DamperBar_Temperature=40 +DamperEnd_Temperature=40 +DamperBar_ResistivityAt20=1,724E-8 +DamperEnd_ResistivityAt20=1,724E-8 +DamperEnd_F_ResistivityAt20=1,724E-8 +DamperEnd_R_ResistivityAt20=1,724E-8 +DamperOpening_ResistivityAt20=1,724E-8 +Magnet_Temperature=87,67 +Magnet_ResistivityAt20C=1,8E-6 +StatorLam_Temperature=106,8 +StatorLam_ResistivityAt20C=2,3E-7 +RotorLam_Temperature=87,2 +RotorLam_ResistivityAt20C=1,43E-7 +Shaft_Temperature=85,57 +Shaft_ResistivityAt20C=0 +Brush_Temperature=20 +Brush_ResistivityAt20C=0,0025 +Sleeve_Temperature=20 +Sleeve_ResistivityAt20C=1,724E-8 +Banding_Temperature=20 +Banding_ResistivityAt20C=1,724E-8 +Wedge_Temperature=104,1 +Wedge_ResistivityAt20C=1E20 +Housing_Temperature=20 +Housing_ResistivityAt20C=1,724E-8 +Bearing_Temperature_F=82,26 +Bearing_Temperature_R=81 +Airgap_Temperature=97,33 +MagneticThermalMaxIterations=5 +MagneticThermalMaxError=1 +MagneticThermalCoupling=3 +TemperaturesInEmagThermCoupling=1 +MagnetTempLinkMethod=1 +MagneticSymmetry=0 +MagneticSymmetryFactor=6 +MagnetisationCurveSymmetry=0 +RotorLaminations=1 +StatorLaminations=0 +StackingFactor_Magnetics=2 +IMRotorBarRegionType=0 +IronLossCoefficientDataPoints=0 +CustomDriveCycle_PeakRMS_Method=2 +CustomDriveCyclePoints=361 +CustomDriveCycleFile=No File Selected +SinglePointRotorAngle=0 +HousingOverhangFactor=1 +IMAccelerationCalc=True +IMAccelerationDuration=1 +IMAccelerationPoints=25000 +IMAccelerationLoadTorqueAt0rpm=0 +IMAccelerationLoadTorqueAtRpm=0 +IMAccelerationLoadTorqueRpmRef=3000 +IMAccelerationLoadTorqueCoef=1 +IMAccelerationLoadInertia=0 +IMAccelerationFanInertia=0 +FluxLinkageLookupCalc=False +AnalyticTorqueCalc_SRM=True +FEATorqueCalc_SRM=False +TurnOnAngle_SRM=30 +TurnOffAngle_SRM=150 +ZeroVoltageAngle_SRM=150 +DwellAngle_SRM=120 +SwitchingAngleDefinition_SRM=0 +ZeroVoltageLoop_SRM=0 +MaxCurrent_Calculated_MagnetisationCurves=0 +CurrentPoints_Calculated_MagnetisationCurves=0 +PositionPoints_Calculated_MagnetisationCurves=0 +TotalPoints_Calculated_MagnetisationCurves=0 +Date_Calculated_MagnetisationCurves= +MagnetisationCurves_File= +MagnetisationCurvesPlotSelect=0 +CoilSidesPerLayer=1 +Multiplicity=1 +DCArmatureWindingStyle=0 +DCArmatureWindingSense=0 +BrushContactVoltageDrop=1,5 +TotalExternalResistance=0 +MagThreads_Option=0 +MagThreads_AutoNumber=True +MagThreads_Number=8 +Lab_Threads_Enabled=True +Multimodel_Threads_MaxNumber=14 +ACLosses_BundleAspectRatio=1 +FEAMeasurePath_NumPaths=0 +PhasorDiagram_PhaseAdvanceSetting=0 +PhasorDiagram_PhaseAdvanceAngle=0 +RotorEccentricityType=0 +RotorCentreOffset_R=0 +RotorCentreOffset_T=0 +ShaftCentreOffset_R=0 +ShaftCentreOffset_T=0 +TopRotorBar_ResistivityAt20=1,724E-8 +TopRotorBarOpening_ResistivityAt20=1,724E-8 +BottomRotorBar_ResistivityAt20=1,724E-8 +BottomRotorBarOpening_ResistivityAt20=1,724E-8 +IMSkinEffectApplication=0 +BPMShortCircuitPoints=10000 +BPMShortCircuitDuration=0,1 +BPMShortCircuitLoadInertia=0 +Winding_Layers=1 +MagWindingType=0 + +[Airgap] +InnerAirgapBoundary_Drawing=1 +TurbulentUpperLimit=5000 +VortexUpperLimitMult=1,2 + +[Cowling] +Grill_Diameter_Outer=140 +Grill_Diameter_Inner=20 +Grill_HoleSize=8 +Grill_HoleSeparation=2 +Grill_Swirl=5 +Grill_SlotsPerLayer=6 +Cowling_Length=70 +Cowling_Thickness=2 +Cowling_Axial_Gap=50 +Cowling_Radial_Gap=3 +CowlingType=0 +Cowling_Type=No_Cowling + +[Dimensions] +DamperBar_Number=0 +DamperBar_Depth=1 +DamperBar_Opening=0 +DamperBar_Diameter=3 +DamperBar_Pitch=90 +Damper_Thickness_F=6 +Damper_Thickness_R=6 +Damper_Extension_F=4 +Damper_Extension_R=4 +Damper_Inner_Add_F=2 +Damper_Inner_Add_R=2 +Damper_Outer_Add_F=2 +Damper_Outer_Add_R=2 +Housing_Dia=160 +Stator_Lam_Dia=135 +Ins_Tooth_Width=0,5 +Slot_Width_Bottom=8 +Slot_Width_Top=6 +EndRing_Thickness_F=10 +EndRing_Extension_F=0 +EndRing_Inner_Add_F=5 +EndRing_Outer_Add_F=0 +EndRing_Thickness_R=10 +EndRing_Extension_R=0 +EndRing_Inner_Add_R=5 +EndRing_Outer_Add_R=0 +RotorPlate_Thickness_F=0 +RotorPlate_Thickness_R=0 +Wafter_Inner_Add_F=0 +Wafter_Inner_Add_R=0 +Wafter_Outer_Add_F=0 +Wafter_Outer_Add_R=0 +Wafter_Number_F=0 +Wafter_Number_R=0 +Wafter_Length_F=10 +Wafter_Length_R=10 +Wafter_Depth_Reduct_F=4 +Wafter_Depth_Reduct_R=4 +Wafter_Thickness_F=2 +Wafter_Thickness_R=2 +CoilDividerOffset=0 +StatorClampPlateThickness_F=0 +StatorClampPlateThickness_R=0 +SyncRotorSlot_Width=15 +SyncRotorSlot_Depth=18,5 +PoleTipAngle=0 +PoleSideAngle=30 +Pole_Tip_Angle=30 +RotorPoleTaper=0 +RotorSlotFilletRadius=0 +PoleTipRadialDepth=2 +AxleOHang_F=0 +AxleOHang_R=0 +Potting-Housing_[F]=0 +Potting-Housing_[R]=0 +Gap_Potting-Axle_[F]=0 +Gap_Potting-Axle_[R]=0 +BarT_Opening_Radius=1 +Bar_Opening_[T]=1,5 +Bar_Opening_Depth_[T]=1,5 +Bar_Depth_[T]=10 +Bar_Width_[T]=4 +Rotor_Tooth_Width_T=4 +Rotor_Tooth_Width=4 +Bar_Corner_Radius[T]=1,33 +Bar_Corner_Radius=1,33 +Bar_Tip_Angle_[T]=20 +BarB_Opening_Radius=1 +Bar_Opening_[B]=2 +Bar_Opening_Depth_[B]=2 +Bar_Depth_[B]=4 +Bar_Width_[B]=4 +Rotor_Tooth_Width_B=3 +BarB_Corner_Radius=1 +BarB_Tip_Angle=20 +Slot_WJ_Duct_Height=3 +Slot_WJ_Wall_Thickness=0,2 +Slot_WJ_Insulation_Thickness=0,2 +Slot_WJ_Duct_Parallel_Paths=1 +Slot_WJ_Duct_Width=3 +CalculateInputWJFlowChannels=0 +MinBackIronThickness=0,1 +MinMagnetSeparation=0,1 +MinShaftSeparation=0,1 +MinVMagnetAspectRatio=1 +MinUMagnetAspectRatio_Outer=0 +MinUMagnetAspectRatio_Inner=1 +MinRotorBarSeparation=0,1 +MinRotorBarWidth=1 +MinBottomRotorBarOpening=0,1 +Fan_AxialPosition=188 +Fan_Diameter=125 +Fan_Blade_Axial_Offset=0 +Fan_Blade_Width=10 +Fan_BackPlate_Width=12 +Fan_BackPlate_Dia=90 +Fan_Blade_Thickness=2 +Fan_Hub_Diameter=35 +Fan_Hub_Extension=5 +FormWound_WedgeDepth=1 +FormWound_WedgeInset=1 +FormWound_WedgeThickness=1 +FormWound_GapLinerSlotWall=0,1 +FormWound_GapSlotBaseSpacerSlotBase=0,1 +FormWound_GapSlotTopSpacerSlotTop=0,1 +FormWound_ThicknessSlotBaseSpacer=0,5 +FormWound_ThicknessSlotTopSpacer=0,5 +FormWound_ThicknessSlotLinerOuterLayer=0,2 +FormWound_ThicknessCoilInsulation=0,2 +FormWound_ThicknessPhaseSeparator=0,5 +FormWound_CopperInsulationThickness=0,1 +FormWound_CoilHeight=6,7 +FormWound_CoilWidth=6,2 +FormWound_ConductorHeight=0,95 +FormWound_ConductorWidth=2,5 +FormWound_RowsConductors=5 +FormWound_ColumnsConductors=2 +NumStatorVarSlotDepths=1 +ShaftType=0 +SpiderRadialThickness=4 +SpiderArmLength=15 +SpiderArmWidth=10 +SlotDepth_Outer=10 +SquareStatorLam_Width=200 +SquareStatorLam_Height=170 +ToothWidth_Outer=20 +ToothTipAngle_Outer=-5 +ToothTipDepth_Outer=10 +BackIronThickness_Outer=10 +PoleNumber_Outer=4 +CoilDividerWidth_Outer=20 +BackIronShape_WFC=0 +ToothArc_Outer=80 +WindingFill_Outer=80 +RoundStatorDiameter_WFC_Outer=200 +SquareStatorLam_CornerRadius=30 +StepHouseInner_F=0 +Housing_Step_[F]=0 +StepHouseInner_R=0 +Housing_Step_[R]=0 +StepHouseOuter_F=0 +StepHouseOuter_R=0 +RadialDuctType=0 +StatorGridNumber=6 +StatorGridInnerDiameter=90 +StatorGridHeight=5 +StatorGridDepth=1 +RotorGridNumber=6 +RotorGridOuterDiameter=50 +RotorGridHeight=5 +RotorGridDepth=1 +CoilDivider_DepthReduction_Stator=0 +CoilDivider_DepthReduction_Rotor=0 +RotorDiameter=82,9 +PoleNotchDepth=0 +PoleNotchArc_Outer=20 +PoleNotchArc_Inner=20 +RotorSlots=4 +RotorLaminationInset=0 +SyncPoleArc=100 +StatorPole_TaperAngle=0 +Shaft_Dia=36 +Pole_Width=20 +Rotor_Lam_Length=20 +Stator_Bore=85,9 +Tooth_Width=8 +Slot_Depth=21,5 +Slot_Corner_Radius=0,5 +Tooth_Tip_Depth=0,55 +Slot_Opening=3 +Tooth_Tip_Angle=45 +Sleeve_Thickness=0 +Pole_Number=12 +Airgap=1,5 +Banding_Thickness=0 +Motor_Length=48 +Slot_Number=18 +Stator_Poles=18 +Fin_Extension=10 +Fin_Thickness=2 +Slot_Width=7 +Corner_Cutout_Add=0 +Plate_Height=350 +Plate_Width=350 +Flange_Dia=96 +Flange_Extension=0 +Stator_Pole_Angle=30 +Housing_Thickness=5 +Magnet_Arc_[ED]=129 +Corner_Cutout_[%]=40 +Fin_Pitch/Thick=5 +Fin_Number_[Quadrant]=0 +Fin_Number_[Total]=0 +Fin_Spacing_[Fin_Base]=0 +Shaft_Dia_[F]=19 +Shaft_Dia_[R]=9 +Axle_Dia_[F]=35 +Axle_Dia_[R]=35 +Axle_Plate_Height_[F]=350 +Axle_Plate_Height_[R]=350 +Axle_Plate_Width_[R]=350 +EWdg-Housing_[F]=5 +EWdg-Housing_[R]=5 +EWdg-Bore_[F]=2 +EWdg-Bore_[R]=2 +EWdg_Insulation_[F]=0 +EWdg_Insulation_[R]=0 +Bearing_Dia_[F]=29 +Bearing_Dia_[R]=29 +Enc_Shaft_Dia=10 +Enc_Case_Dia=100 +Enc_Case_Thick=5 +Enc_Radial_Gap=5 +Shaft_Height=80 +Feet_Width_[Motor]=20 +Feet_Width_[Base]=30 +Feet_Length=100 +Base_Width=150 +Base_Thickness=10 +Base_Length=300 +Shaft_Extension_[F]=49 +Shaft_Extension_[R]=35 +Axle_Extension_[F]=30 +Axle_Extension_[R]=30 +Stator_Axial_Offset=0 +Magnet_Axial_Offset=0 +Rotor_Axial_Offset=0 +EWdg_Overhang_[F]=3 +EWdg_Overhang_[R]=3 +EWdg_Overhang_Mult_[F]=0,1 +EWdg_Overhang_Mult_[R]=0,1 +Wdg_Extension_[F]=2 +Wdg_Extension_[R]=2 +Endcap_Length_[F]=10 +Endcap_Length_[R]=10 +EWdg-Endcap_[F]=11 +EWdg-Endcap_[R]=11 +Flange_Depth=3 +Bearing_Width_[F]=7 +Bearing_Width_[R]=7 +Bearing_Offset_[F]=0 +Bearing_Offset_[R]=0 +Plate_Thickness=23 +Axle_Plate_Thickness_[F]=20 +Axle_Plate_Thickness_[R=20 +Enc_Length=30 +Enc_Case_Length=50 +Enc_Barrier_Length=5 +Enc_Axial_Gap=2 +Magnet_Embed_Depth=2 +Axle_Plate_Width_[F]=350 +Stator_Lam_Length=20 +Rotor_Bars=26 +Wdg_Add_[Outer_F]=0 +Wdg_Add_[Inner_F]=0 +Wdg_Add_[Outer_R]=0 +Wdg_Add_[Inner_R]=0 +Endcap_Thickness_[F]=5 +Endcap_Thickness_[R]=5 +Gap_[Endcap-Comm]=10 +Gap_[Comm-Winding]=5 +Comm_Length=15 +Comm_Dia=50 +Comm_Cu_Thickness=2 +Comm_Connections=30 +Comm_Connection_Lmult=1 +Brush_Number=2 +Brush_Length=10 +Brush_Width=10 +Brush_Height=20 +Br_Holder_Comm_Gap=5 +Br_Holder_Outer_Dia=20 +Br_Holder_Ins_Thick=3 +Br_Holder_Height=35 +Rotor_Pole_Angle=30 +Stator_Pole_Depth=15 +Rotor_Slot_Depth=10 +Stator_Pole_Radius=2 +Pole_Depth=12 +Pole_Tip_Width=10 +Pole_Tip_Depth=8 +Pole_Tip_Radius=0 +Pole_Base_Radius=0 +Pole_Surface_Offset=0 +Pole_Surface_Radius=39 +Liner_Pole_Side=2 +Liner_Pole_Tip=1 +Liner_Coil_Base=1 +Rotor_Coil_Width=7,5 +Rotor_Coil_Depth=10 +Rotor_Pole_Arc=130 +Rotor_Pole_Tip_Side=2,5 +Shaft_To_Pole_Min=2,5 +Wdg_Separator_Low_[%]=10 +Wdg_Separator_Up_[%]=90 +Wdg_Separator_Total_[%]=100 +Winding_Separators=3 +Wdg_Separator_Length=10 +Sync_L_Separator_Radius=0 +Sync_L_Separator_Embed=0 +Liner_Rotor_EWdg=1 +Rotor_EWdg_Ohang=10 +Sync_L_Separator_Width=1 +Claw_Pole_Pairs=8 +Claw_Pole_Length=50 +Claw_Pole_Depth=10 +Claw_Tooth_Depth=5 +Claw_Coil_Length=60 +Claw_Coil_Depth=10 +Claw_Liner_Base=0,5 +Claw_Liner_Side=0,5 +Claw_Back_Iron=5 +Claw_Pole_Spacing=10 +Claw_Tooth_Width=3 +Armature_Diameter=110 +Back_Iron_Thickness=5 +Fin_Base_Thickness=1,5 +Fin_Cover_Thickness=1,5 +WJ_Channel-Lam=1 +WJ_Channel_Height=3 +WJ_Channel_Width=10 +WJ_Channel_Spacing=10 +WJ_Parallel_Paths=1 +WJ_Channel_Number=1 +Shaft_Groove_Wall=1,5 +Shaft_Groove_Height=4 +Shaft_Groove_Width=10 +Shaft_Groove_Spacing=10 +Rotor_WJ_Duct_Diameter=0 +Cover_Ins_Length=90 +Cover_Ins_Thickness=10 +Cup_Axial_Thickness=5 +Cup_Radial_Thickness=5 +Cup_Axial_Length=140 +Gap_H-Cup_[Radial]=1 +Gap_H-Cup_[Axial]=10 +Gap_Shaft-Axle=2 +Gap_Shaft-Axle_[F]=2 +Gap_Shaft-Axle_[R]=2 +Axle_Dia=35 +CornerRoundingRadius_Rotor=0,1 +CornerRoundingRadius_Magnets=0,1 +StatorMidSlotTooth_Depth=0 +StatorMidSlotTooth_Width_Base=0 +StatorMidSlotTooth_Width_Top=0 +Potting-Endcap_[F]=0 +Potting-Endcap_[R]=0 +Magnet_Length=20 +Magnet_Thickness=5 +MagnetOpening=2 +MagnetDepth=10 +MagnetInset=3 +CircumferentialSegments=1 +FlatMagnetSegments=1 +SpokeMagnetSegments=1 +AxialSegments=1 +BandingAxialSegments=1 +SleeveAxialSegments=1 +Bridge_Thickness=2 +Magnet_Width_Reduction=-12,0780374103995 +Web_Thickness=2 +Web_Length=2 +Pole_V_Angle=130 +Pole_Arc=150 +WebAngle=0 +Magnet_Separation=0 +Magnet_Width=45 +Magnet_Post=0 +Magnet_Layers=2 +UShape_OuterAngleOffset_Array[0]=0 +UShape_OuterAngleOffset_Array[1]=0 +UShape_OuterAngleOffset_Array[2]=0 +UShape_OuterAngleOffset_Array[3]=0 +UShape_OuterAngleOffset_Array[4]=0 +UShape_OuterAngleOffset_Array[5]=0 +UShape_Thickness_Inner_Array[0]=4 +UShape_Thickness_Inner_Array[1]=4 +UShape_Thickness_Inner_Array[2]=4 +UShape_Thickness_Inner_Array[3]=4 +UShape_Thickness_Inner_Array[4]=4 +UShape_Thickness_Inner_Array[5]=4 +UShape_Thickness_Outer_Array[0]=4 +UShape_Thickness_Outer_Array[1]=4 +UShape_Thickness_Outer_Array[2]=4 +UShape_Thickness_Outer_Array[3]=4 +UShape_Thickness_Outer_Array[4]=4 +UShape_Thickness_Outer_Array[5]=4 +UMagnet_Length_Inner_Array[0]=10 +UMagnet_Length_Inner_Array[1]=8 +UMagnet_Length_Inner_Array[2]=6 +UMagnet_Length_Inner_Array[3]=4 +UMagnet_Length_Inner_Array[4]=1 +UMagnet_Length_Inner_Array[5]=0 +UMagnet_Length_Outer_Array[0]=13 +UMagnet_Length_Outer_Array[1]=9 +UMagnet_Length_Outer_Array[2]=5 +UMagnet_Length_Outer_Array[3]=0 +UMagnet_Length_Outer_Array[4]=2 +UMagnet_Length_Outer_Array[5]=11 +UMagnet_Offset_Inner_Array[0]=0 +UMagnet_Offset_Inner_Array[1]=0 +UMagnet_Offset_Inner_Array[2]=0 +UMagnet_Offset_Inner_Array[3]=0 +UMagnet_Offset_Inner_Array[4]=0 +UMagnet_Offset_Inner_Array[5]=0 +UMagnet_Offset_Outer_Array[0]=0 +UMagnet_Offset_Outer_Array[1]=0 +UMagnet_Offset_Outer_Array[2]=0 +UMagnet_Offset_Outer_Array[3]=0 +UMagnet_Offset_Outer_Array[4]=0 +UMagnet_Offset_Outer_Array[5]=0 +UMagnetInner_ClearanceI_Array[0]=0 +UMagnet_Clearance_Inner_Array[0]=0 +UMagnetInner_ClearanceI_Array[1]=0 +UMagnet_Clearance_Inner_Array[1]=0 +UMagnetInner_ClearanceI_Array[2]=0 +UMagnet_Clearance_Inner_Array[2]=0 +UMagnetInner_ClearanceI_Array[3]=0 +UMagnet_Clearance_Inner_Array[3]=0 +UMagnetInner_ClearanceI_Array[4]=0 +UMagnet_Clearance_Inner_Array[4]=0 +UMagnetInner_ClearanceI_Array[5]=0 +UMagnet_Clearance_Inner_Array[5]=0 +UMagnetInner_ClearanceO_Array[0]=0 +UMagnetInner_ClearanceO_Array[1]=0 +UMagnetInner_ClearanceO_Array[2]=0 +UMagnetInner_ClearanceO_Array[3]=0 +UMagnetInner_ClearanceO_Array[4]=0 +UMagnetInner_ClearanceO_Array[5]=0 +UMagnetOuter_ClearanceI_Array[0]=0 +UMagnet_Clearance_Outer_Array[0]=0 +UMagnetOuter_ClearanceI_Array[1]=0 +UMagnet_Clearance_Outer_Array[1]=0 +UMagnetOuter_ClearanceI_Array[2]=0 +UMagnet_Clearance_Outer_Array[2]=0 +UMagnetOuter_ClearanceI_Array[3]=0 +UMagnet_Clearance_Outer_Array[3]=0 +UMagnetOuter_ClearanceI_Array[4]=0 +UMagnet_Clearance_Outer_Array[4]=0 +UMagnetOuter_ClearanceI_Array[5]=0 +UMagnet_Clearance_Outer_Array[5]=0 +UMagnetOuter_ClearanceO_Array[0]=0 +UMagnetOuter_ClearanceO_Array[1]=0 +UMagnetOuter_ClearanceO_Array[2]=0 +UMagnetOuter_ClearanceO_Array[3]=0 +UMagnetOuter_ClearanceO_Array[4]=0 +UMagnetOuter_ClearanceO_Array[5]=0 +UShape_CentrePost_Array[0]=0 +UShape_CentrePost_Array[1]=0 +UShape_CentrePost_Array[2]=0 +UShape_CentrePost_Array[3]=0 +UShape_CentrePost_Array[4]=0 +UShape_CentrePost_Array[5]=0 +UShape_InnerDiameter_Array[0]=30 +UShape_InnerDiameter_Array[1]=42 +UShape_InnerDiameter_Array[2]=54 +UShape_InnerDiameter_Array[3]=66 +UShape_InnerDiameter_Array[4]=78 +UShape_InnerDiameter_Array[5]=90 +UShape_WebThickness_Array[0]=2 +UShape_WebThickness_Array[1]=14 +UShape_WebThickness_Array[2]=26 +UShape_WebThickness_Array[3]=38 +UShape_WebThickness_Array[4]=50 +UShape_WebThickness_Array[5]=62 +UShape_BridgeThickness_Array[0]=2 +UShape_BridgeThickness_Array[1]=2 +UShape_BridgeThickness_Array[2]=2 +UShape_BridgeThickness_Array[3]=2 +UShape_BridgeThickness_Array[4]=2 +UShape_BridgeThickness_Array[5]=2 +UShape_MagnetSegments_Inner_Array[0]=1 +UShape_MagnetSegments_Inner_Array[1]=1 +UShape_MagnetSegments_Inner_Array[2]=1 +UShape_MagnetSegments_Inner_Array[3]=1 +UShape_MagnetSegments_Inner_Array[4]=1 +UShape_MagnetSegments_Inner_Array[5]=1 +UShape_MagnetSegments_Outer_Array[0]=1 +UShape_MagnetSegments_Outer_Array[1]=1 +UShape_MagnetSegments_Outer_Array[2]=1 +UShape_MagnetSegments_Outer_Array[3]=1 +UShape_MagnetSegments_Outer_Array[4]=1 +UShape_MagnetSegments_Outer_Array[5]=1 +UShape_Post_Inner_Array[0]=0 +UShape_Post_Inner_Array[1]=0 +UShape_Post_Inner_Array[2]=0 +UShape_Post_Inner_Array[3]=0 +UShape_Post_Inner_Array[4]=0 +UShape_Post_Inner_Array[5]=0 +UShape_Post_Outer_Array[0]=0 +UShape_Post_Outer_Array[1]=0 +UShape_Post_Outer_Array[2]=0 +UShape_Post_Outer_Array[3]=0 +UShape_Post_Outer_Array[4]=0 +UShape_Post_Outer_Array[5]=0 +UShape_Post_Inner_Offset[0]=0 +UShape_Post_Inner_Offset[1]=0 +UShape_Post_Inner_Offset[2]=0 +UShape_Post_Inner_Offset[3]=0 +UShape_Post_Inner_Offset[4]=0 +UShape_Post_Inner_Offset[5]=0 +UShape_Post_Outer_Offset[0]=0 +UShape_Post_Outer_Offset[1]=0 +UShape_Post_Outer_Offset[2]=0 +UShape_Post_Outer_Offset[3]=0 +UShape_Post_Outer_Offset[4]=0 +UShape_Post_Outer_Offset[5]=0 +VMagnet_Layers=1 +WebLength_Array[0]=2 +WebLength_Array[1]=0,8 +WebLength_Array[2]=0,32 +WebLength_Array[3]=1,2 +WebThickness_Array[0]=2 +WebThickness_Array[1]=13,3622541704805 +WebThickness_Array[2]=20,2707651282476 +WebThickness_Array[3]=29,4676603260535 +BridgeThickness_Array[0]=2 +BridgeThickness_Array[1]=2,2 +BridgeThickness_Array[2]=2,2 +BridgeThickness_Array[3]=2 +MagnetThickness_Array[0]=4 +MagnetThickness_Array[1]=2 +MagnetThickness_Array[2]=1,6 +MagnetThickness_Array[3]=1,2 +MagnetSeparation_Array[0]=0 +MagnetSeparation_Array[1]=0 +MagnetSeparation_Array[2]=0 +MagnetSeparation_Array[3]=0 +PoleVAngle_Array[0]=130 +PoleVAngle_Array[1]=143 +PoleVAngle_Array[2]=157,3 +PoleVAngle_Array[3]=180 +PoleArc_Array[0]=150 +PoleArc_Array[1]=130 +PoleArc_Array[2]=97,5 +PoleArc_Array[3]=73,125 +MagnetBarWidth_Array[0]=22 +MagnetBarWidth_Array[1]=16,6800652740135 +MagnetBarWidth_Array[2]=12,3924505195662 +MagnetBarWidth_Array[3]=9,28497951580719 +VSimpleMagnetPost_Array[0]=0,1 +VSimpleMagnetPost_Array[1]=0,5 +VSimpleMagnetPost_Array[2]=0,5 +VSimpleMagnetPost_Array[3]=0,5 +VShapeMagnetPost_Array[0]=0 +VShapeMagnetPost_Array[1]=0 +VShapeMagnetPost_Array[2]=0 +VShapeMagnetPost_Array[3]=0 +VSimpleWidth_Array[0]=22 +VSimpleWidth_Array[1]=16,6800652740135 +VSimpleWidth_Array[2]=12,3924505195662 +VSimpleWidth_Array[3]=9,28497951580719 +VSimpleMagShift_Array[0]=0 +VSimpleMagShift_Array[1]=0 +VSimpleMagShift_Array[2]=0 +VSimpleMagShift_Array[3]=0 +VSimpleEndRegion_Inner_Array[0]=2 +VSimpleEndRegion_Inner_Array[1]=1 +VSimpleEndRegion_Inner_Array[2]=0,8 +VSimpleEndRegion_Inner_Array[3]=0,6 +VSimpleEndRegion_Outer_Array[0]=2 +VSimpleEndRegion_Outer_Array[1]=1 +VSimpleEndRegion_Outer_Array[2]=0,8 +VSimpleEndRegion_Outer_Array[3]=0,6 +VSimpleOffsetT_Array[0]=0 +VSimpleOffsetT_Array[1]=0 +VSimpleOffsetT_Array[2]=0 +VSimpleOffsetT_Array[3]=0 +VShapeMagnetSegments_Array[0]=1 +VShapeMagnetSegments_Array[1]=1 +VShapeMagnetSegments_Array[2]=1 +VShapeMagnetSegments_Array[3]=1 +VShape_Magnet_ClearanceInner[0]=0 +VShapeMagnetClearance_Array[0]=0 +VShape_Magnet_ClearanceInner[1]=0 +VShapeMagnetClearance_Array[1]=0 +VShape_Magnet_ClearanceInner[2]=0 +VShapeMagnetClearance_Array[2]=0 +VShape_Magnet_ClearanceInner[3]=0 +VShapeMagnetClearance_Array[3]=0 +VShape_Magnet_ClearanceOuter[0]=0 +VShape_Magnet_ClearanceOuter[1]=0 +VShape_Magnet_ClearanceOuter[2]=0 +VShape_Magnet_ClearanceOuter[3]=0 +MagnetReduction=0 +MagnetCentralArc_HalbachRing=120 +MagnetClearance=0 +StatorRadialDuct_Width=5 +StatorRadialDuct_Number=4 +RotorRadialDuct_Width=5 +RotorRadialDuct_Number=4 +AxialWJFinNumberCalc=1 +BearingInner_Diameter=35 +BearingMount_Thickness=5 +BearingMount_Length=15 +BearingMount_Gap=1 +Gap_StatorPlateMount_F=20 +Gap_StatorPlateMount_R=0 +StatorPlateThickness_F=5 +StatorPlateThickness_R=5 +StatorPlateOffset_F=0 +StatorPlateOffset_R=0 +StatorPlateChannelWall_F=1 +StatorPlateChannelWall_R=1 +StatorPlateChannelWidth_F=4 +StatorPlateChannelWidth_R=4 +StatorPlateChannelHeight_F=10 +StatorPlateChannelHeight_R=10 +StatorPlateChannelSpacing_F=1 +StatorPlateChannelSpacing_R=1 +StatorPlateChannels_F=2 +StatorPlateChannels_R=2 +Calculate_Input_WJ_Flow_Channels=Calculate_WJ_Flow_Channels + +[Custom_Outputs] +NumberCustomOutputs=0 +NumberCustomOutputs_Python=0 +CustomOutputType=0 + +[Discovery] +Discovery_ModelType=0 +Discovery_SymmetryOption=1 +Discovery_ConvertToSolids=True +Discovery_SetColours=True +Discovery_GroupComponents=True +Discovery_Stator=True +Discovery_Rotor=True +Discovery_Housing=True +Discovery_FileName=Discovery_Export.py +Discovery_MinArcDistance=0,001 +Discovery_SmallUnits=False + +[Imported_DXF_Geometry] +DXFDivision_Method=0 +DXFDivision_ImportType=0 +DXFDivision_Stator_Radius_Inner=40 +DXFDivision_Stator_Radius_Outer=65 +DXFDivision_Stator_Angle_Start=0 +DXFDivision_Stator_Angle_End=20 +DXFDivision_Rotor_Radius_Inner=0 +DXFDivision_Rotor_Radius_Outer=39,5 +DXFDivision_Rotor_Angle_Start=0 +DXFDivision_Rotor_Angle_End=90 +DXFDivision_PointIdent_Method=0 +ImportedDXFGeometry_Magnetic= +ImportedDXFGeometry= +ImportedDXFGeometry_Mechanical= +DXFAutoCentre=False +ImportedDXFGeometry_Thermal= +SpokeMagFullDXFImportMethod=1 +DXFAirgapClosureWidth_Stator=0 +DXFAirgapClosureWidth_Rotor=0 +DXFAirgapClosure_Stator=0 +DXFAirgapClosure_Rotor=0 +DXFImportView=0 +DXFImportView_Scale=1 +DXFImportView_Rotation=0 +DXFImportView_XOffset=0 +DXFImportView_YOffset=0 + +[Emissivity] +Emissivity_Airgap_Cup_Endcap_Outer_Surface=0,9 +Emissivity_Airgap_Cup_Endcap_Inner_Surface=0,9 +Emissivity_EWdgF_Endcap_Outer_Surface=0,9 +Emissivity_EWdgF_Endcap_Inner_Surface=0,9 +Emissivity_EWdgR_Endcap_Outer_Surface=0,9 +Emissivity_EWdgR_Endcap_Inner_Surface=0,9 +Emissivity_EWdgR_Cup_Base_Outer_Surface=0,9 +Emissivity_EWdgR_Cup_Base_Inner_Surface=0,9 +Emissivity_EWdgF_Housing_Outer_Surface=0,9 +Emissivity_EWdgF_Housing_Inner_Surface=0,9 +Emissivity_EWdgR_Housing_Outer_Surface=0,9 +Emissivity_EWdgR_Housing_Inner_Surface=0,9 +Emissivity_EWdgR_Cup_OH_Outer_Surface=0,9 +Emissivity_EWdgR_Cup_OH_Inner_Surface=0,9 +Emissivity_Rotor_Endcap_F_Outer_Surface=0,9 +Emissivity_Rotor_Endcap_F_Inner_Surface=0,9 +Emissivity_Rotor_Endcap_R_Outer_Surface=0,9 +Emissivity_Rotor_Endcap_R_Inner_Surface=0,9 +Emissivity_Magnet_Endcap_F_Outer_Surface=0,9 +Emissivity_Magnet_Endcap_F_Inner_Surface=0,9 +Emissivity_Magnet_Endcap_R_Outer_Surface=0,9 +Emissivity_Magnet_Endcap_R_Inner_Surface=0,9 +Emissivity_Housing_Active=0,9 +Emissivity_Housing_[A]=0,9 +Emissivity_Housing_Front=0,9 +Emissivity_Housing_[F]=0,9 +Emissivity_Housing_Rear=0,9 +Emissivity_Housing_[R]=0,9 +Emissivity_EndCap_Front=0,9 +Emissivity_Endcap_[F]=0,9 +Emissivity_EndCap_Rear=0,9 +Emissivity_Endcap_[R]=0,9 +Emissivity_Plate=0,9 +Emissivity_Flange_Plate=0,9 +Emissivity_Axle_Plate_F=0,9 +Emissivity_Axle_Plate_[F]=0,9 +Emissivity_Axle_Plate_R=0,9 +Emissivity_Axle_Plate_[R]=0,9 +Emissivity_Base=0,9 +Emissivity_Base_Plate=0,9 +Emissivity_EncCase=0,9 +Emissivity_Encoder_Case=0,9 +Emissivity_Airgap_Inner_Surface=0,9 +Emissivity_Airgap_Outer_Surface=0,9 +Emissivity_Airgap_Shaft_Axle_Active_Inner_Surface=0,9 +Emissivity_Shaft_[Active]=0,9 +Emissivity_Airgap_Shaft_Axle_Active_Outer_Surface=0,9 +Emissivity_Axle_[Active]=0,9 +Emissivity_Airgap_Shaft_Axle_Front_Inner_Surface=0,9 +Emissivity_Shaft_[Front]=0,9 +Emissivity_Airgap_Shaft_Axle_Front_Outer_Surface=0,9 +Emissivity_Axle_[Front]=0,9 +Emissivity_Airgap_Shaft_Axle_Rear_Inner_Surface=0,9 +Emissivity_Shaft_[Rear]=0,9 +Emissivity_Airgap_Shaft_Axle_Rear_Outer_Surface=0,9 +Emissivity_Axle_[Rear]=0,9 +Emissivity_Airgap_Cup_Housing_Active_Inner_Surface=0,9 +Emissivity_Cup_[Active]=0,9 +Emissivity_Airgap_Cup_Housing_Active_Outer_Surface=0,9 +Emissivity_Housing_Inner_Surface_[Active]=0,9 +Emissivity_Airgap_Cup_Housing_OH_Inner_Surface=0,9 +Emissivity_Cup_[Oh]=0,9 +Emissivity_Airgap_Cup_Housing_OH_Outer_Surface=0,9 +Emissivity_Housing_Inner_Surface_[Oh]=0,9 + +[View_Factor] +View_Factor_Airgap_Cup_Endcap=1 +View_Factor_EWdgF_Endcap=1 +View_Factor_EWdgR_Endcap=1 +View_Factor_EWdgR_Cup_Base=1 +View_Factor_EWdgF_Housing=1 +View_Factor_EWdgR_Housing=1 +View_Factor_EWdgR_Cup_OH=1 +View_Factor_Rotor_Endcap_F=1 +View_Factor_Rotor_Endcap_R=1 +View_Factor_Magnet_Endcap_F=1 +View_Factor_Magnet_Endcap_R=1 +View_Factor_Housing_Active_No_Fins=1 +View_Factor_Housing_[A]_-_No_Fins=1 +View_Factor_Housing_Active_Fin_Base=1 +View_Factor_Housing_[A]_-_Fin_Base=1 +View_Factor_Housing_Active_Fin_Sides=0 +View_Factor_Housing_[A]_-_Fin_Sides=0 +View_Factor_Housing_Active_Fin_Tips=1 +View_Factor_Housing_[A]_-_Fin_Tips=1 +View_Factor_Housing_Active_Fin_Channel=1 +View_Factor_Housing_[A]_-_Fin_Channel=1 +View_Factor_Housing_Active_Corner_Cutout=1 +View_Factor_Housing_[A]_-_Corner_Cutout=1 +View_Factor_Housing_Front_No_Fins=1 +View_Factor_Housing_[F]_-_No_Fins=1 +View_Factor_Housing_Front_Fin_Base=1 +View_Factor_Housing_[F]_-_Fin_Base=1 +View_Factor_Housing_Front_Fin_Sides=0 +View_Factor_Housing_[F]_-_Fin_Sides=0 +View_Factor_Housing_Front_Fin_Tips=1 +View_Factor_Housing_[F]_-_Fin_Tips=1 +View_Factor_Housing_Front_Fin_Channel=1 +View_Factor_Housing_[F]_-_Fin_Channel=1 +View_Factor_Housing_Front_Corner_Cutout=1 +View_Factor_Housing_[F]_-_Corner_Cutout=1 +View_Factor_Housing_Rear_No_Fins=1 +View_Factor_Housing_[R]_-_No_Fins=1 +View_Factor_Housing_Rear_Fin_Base=1 +View_Factor_Housing_[R]_-_Fin_Base=1 +View_Factor_Housing_Rear_Fin_Sides=0 +View_Factor_Housing_[R]_-_Fin_Sides=0 +View_Factor_Housing_Rear_Fin_Tips=1 +View_Factor_Housing_[R]_-_Fin_Tips=1 +View_Factor_Housing_Rear_Fin_Channel=1 +View_Factor_Housing_[R]_-_Fin_Channel=1 +View_Factor_Housing_Rear_Corner_Cutout=1 +View_Factor_Housing_[R]_-_Corner_Cutout=1 +View_Factor_Endcap_Front_Radial=1 +View_Factor_Endcap_[F]_-_Radial=1 +View_Factor_Endcap_Front_Axial=1 +View_Factor_Endcap_[F]_-_Axial=1 +View_Factor_Endcap_Rear_Radial=1 +View_Factor_Endcap_[R]_-_Radial=1 +View_Factor_Endcap_Rear_Axial=1 +View_Factor_Endcap_[R]_-_Axial=1 +View_Factor_Plate=1 +View_Factor_Flange_Plate=1 +View_Factor_Axle_Plate_F=1 +View_Factor_Axle_Plate_[F]=1 +View_Factor_Axle_Plate_R=1 +View_Factor_Axle_Plate_[R]=1 +View_Factor_Base=1 +View_Factor_Base_Plate=1 +View_Factor_EncCase_Radial=1 +View_Factor_Encoder_Case_-_Radial=1 +View_Factor_EncCase_Axial=1 +View_Factor_Encoder_Case_-_Axial=1 +View_Factor_Airgap=1 +View_Factor_-_Airgap=1 +View_Factor_Airgap_Shaft_Axle_Active=1 +View_Factor_-_Shaft_Axle_[Active]=1 +View_Factor_Airgap_Shaft_Axle_Front=1 +View_Factor_-_Shaft_Axle_[Front]=1 +View_Factor_Airgap_Shaft_Axle_Rear=1 +View_Factor_-_Shaft_Axle_[Rear]=1 +View_Factor_Airgap_Cup_Housing_Active=1 +View_Factor_-_Cup_Housing_[Active]=1 +View_Factor_Airgap_Cup_Housing_OH=1 +View_Factor_-_Cup_Housing_[OH]=1 + +[Radiation_Notes] +Radiation_Notes_Airgap_Cup_Endcap_Inner_Surface= +Radiation_Notes_Airgap_Cup_Endcap_Outer_Surface= +Radiation_Notes_EWdgF_Endcap_Inner_Surface= +Radiation_Notes_EWdgF_Endcap_Outer_Surface= +Radiation_Notes_EWdgR_Endcap_Inner_Surface= +Radiation_Notes_EWdgR_Endcap_Outer_Surface= +Radiation_Notes_EWdgR_Cup_Base_Inner_Surface= +Radiation_Notes_EWdgR_Cup_Base_Outer_Surface= +Radiation_Notes_EWdgF_Housing_Inner_Surface= +Radiation_Notes_EWdgF_Housing_Outer_Surface= +Radiation_Notes_EWdgR_Housing_Inner_Surface= +Radiation_Notes_EWdgR_Housing_Outer_Surface= +Radiation_Notes_EWdgR_Cup_OH_Inner_Surface= +Radiation_Notes_EWdgR_Cup_OH_Outer_Surface= +Radiation_Notes_Rotor_Endcap_F_Inner_Surface= +Radiation_Notes_Rotor_Endcap_F_Outer_Surface= +Radiation_Notes_Rotor_Endcap_R_Inner_Surface= +Radiation_Notes_Rotor_Endcap_R_Outer_Surface= +Radiation_Notes_Magnet_Endcap_F_Inner_Surface= +Radiation_Notes_Magnet_Endcap_F_Outer_Surface= +Radiation_Notes_Magnet_Endcap_R_Inner_Surface= +Radiation_Notes_Magnet_Endcap_R_Outer_Surface= +Radiation_Notes_Housing_Active_No_Fins= +Notes_Radiation_Housing_[A]_-_No_Fins= +Radiation_Notes_Housing_Active_Fin_Base= +Notes_Radiation_Housing_[A]_-_Fin_Base= +Radiation_Notes_Housing_Active_Fin_Sides= +Notes_Radiation_Housing_[A]_-_Fin_Sides= +Radiation_Notes_Housing_Active_Fin_Tips= +Notes_Radiation_Housing_[A]_-_Fin_Tips= +Radiation_Notes_Housing_Active_Fin_Channel= +Notes_Radiation_Housing_[A]_-_Fin_Channel= +Radiation_Notes_Housing_Active_Corner_Cutout= +Notes_Radiation_Housing_[A]_-_Corner_Cutout= +Radiation_Notes_Housing_Front_No_Fins= +Notes_Radiation_Housing_[F]_-_No_Fins= +Radiation_Notes_Housing_Front_Fin_Base= +Notes_Radiation_Housing_[F]_-_Fin_Base= +Radiation_Notes_Housing_Front_Fin_Sides= +Notes_Radiation_Housing_[F]_-_Fin_Sides= +Radiation_Notes_Housing_Front_Fin_Tips= +Notes_Radiation_Housing_[F]_-_Fin_Tips= +Radiation_Notes_Housing_Front_Fin_Channel= +Notes_Radiation_Housing_[F]_-_Fin_Channel= +Radiation_Notes_Housing_Front_Corner_Cutout= +Notes_Radiation_Housing_[F]_-_Corner_Cutout= +Radiation_Notes_Housing_Rear_No_Fins= +Notes_Radiation_Housing_[R]_-_No_Fins= +Radiation_Notes_Housing_Rear_Fin_Base= +Notes_Radiation_Housing_[R]_-_Fin_Base= +Radiation_Notes_Housing_Rear_Fin_Sides= +Notes_Radiation_Housing_[R]_-_Fin_Sides= +Radiation_Notes_Housing_Rear_Fin_Tips= +Notes_Radiation_Housing_[R]_-_Fin_Tips= +Radiation_Notes_Housing_Rear_Fin_Channel= +Notes_Radiation_Housing_[R]_-_Fin_Channel= +Radiation_Notes_Housing_Rear_Corner_Cutout= +Notes_Radiation_Housing_[R]_-_Corner_Cutout= +Radiation_Notes_Endcap_Front_Radial= +Notes_Radiation_Endcap_[F]_-_Radial= +Radiation_Notes_Endcap_Front_Axial= +Notes_Radiation_Endcap_[F]_-_Axial= +Radiation_Notes_Endcap_Rear_Radial= +Notes_Radiation_Endcap_[R]_-_Radial= +Radiation_Notes_Endcap_Rear_Axial= +Notes_Radiation_Endcap_[R]_-_Axial= +Radiation_Notes_Plate= +Notes_Radiation_Flange_Plate= +Radiation_Notes_Axle_Plate_F= +Notes_Radiation_Axle_Plate_[F]= +Radiation_Notes_Axle_Plate_R= +Notes_Radiation_Axle_Plate_[R]= +Radiation_Notes_Base= +Notes_Radiation_Base_Plate= +Radiation_Notes_EncCase_Radial= +Notes_Radiation_Encoder_Case_-_Radial= +Radiation_Notes_EncCase_Axial= +Notes_Radiation_Encoder_Case_-_Axial= +Radiation_Notes_Airgap_Inner_Surface= +Notes_Radiation_Airgap_Inner_Surface= +Radiation_Notes_Airgap_Outer_Surface= +Notes_Radiation_Airgap_Outer_Surface= +Radiation_Notes_Airgap_Shaft_Axle_Active_Inner_Surface= +Radiation_Notes_Airgap_Shaft_Axle_Active_Outer_Surface= +Radiation_Notes_Airgap_Shaft_Axle_Front_Inner_Surface= +Radiation_Notes_Airgap_Shaft_Axle_Front_Outer_Surface= +Radiation_Notes_Airgap_Shaft_Axle_Rear_Inner_Surface= +Radiation_Notes_Airgap_Shaft_Axle_Rear_Outer_Surface= +Radiation_Notes_Airgap_Cup_Housing_Active_Inner_Surface= +Radiation_Notes_Airgap_Cup_Housing_Active_Outer_Surface= +Radiation_Notes_Airgap_Cup_Housing_OH_Inner_Surface= +Radiation_Notes_Airgap_Cup_Housing_OH_Outer_Surface= + +[Surface_Area] +Airgap_Cup_Endcap_Radiation_Exchange_Factor_Inner_Outer=0 +Airgap_Cup_Endcap_Radiation_Exchange_Factor_Outer_Inner=0 +EWdgF_Endcap_Radiation_Exchange_Factor_Inner_Outer=0 +EWdgF_Endcap_Radiation_Exchange_Factor_Outer_Inner=0 +EWdgR_Endcap_Radiation_Exchange_Factor_Inner_Outer=0 +EWdgR_Endcap_Radiation_Exchange_Factor_Outer_Inner=0 +EWdgR_Cup_Base_Radiation_Exchange_Factor_Inner_Outer=0 +EWdgR_Cup_Base_Radiation_Exchange_Factor_Outer_Inner=0 +EWdgF_Housing_Radiation_Exchange_Factor_Inner_Outer=0 +EWdgF_Housing_Radiation_Exchange_Factor_Outer_Inner=0 +EWdgR_Housing_Radiation_Exchange_Factor_Inner_Outer=0 +EWdgR_Housing_Radiation_Exchange_Factor_Outer_Inner=0 +EWdgR_Cup_OH_Radiation_Exchange_Factor_Inner_Outer=0 +EWdgR_Cup_OH_Radiation_Exchange_Factor_Outer_Inner=0 +Rotor_Endcap_F_Radiation_Exchange_Factor_Inner_Outer=0 +Rotor_Endcap_F_Radiation_Exchange_Factor_Outer_Inner=0 +Rotor_Endcap_R_Radiation_Exchange_Factor_Inner_Outer=0 +Rotor_Endcap_R_Radiation_Exchange_Factor_Outer_Inner=0 +Magnet_Endcap_F_Radiation_Exchange_Factor_Inner_Outer=0 +Magnet_Endcap_F_Radiation_Exchange_Factor_Outer_Inner=0 +Magnet_Endcap_R_Radiation_Exchange_Factor_Inner_Outer=0 +Magnet_Endcap_R_Radiation_Exchange_Factor_Outer_Inner=0 + +[End_Space] +K1_ES_EndRing_Bore_F=15 +K2_ES_EndRing_Bore_F=0,4 +K3_ES_EndRing_Bore_F=0,9 +Vel_Mult_ES_EndRing_Bore_F=1 +Notes_ES_EndRing_Bore_F= +K1_ES_EndRing_Outer_F=15 +K2_ES_EndRing_Outer_F=0,4 +K3_ES_EndRing_Outer_F=0,9 +Vel_Mult_ES_EndRing_Outer_F=1 +Notes_ES_EndRing_Outer_F= +K1_ES_EndRing_End_F=15 +K2_ES_EndRing_End_F=0,4 +K3_ES_EndRing_End_F=0,9 +Vel_Mult_ES_EndRing_End_F=1 +Notes_ES_EndRing_End_F= +K1_ES_EndRing_ExtBore_F=15 +K2_ES_EndRing_ExtBore_F=0,4 +K3_ES_EndRing_ExtBore_F=0,9 +Vel_Mult_ES_EndRing_ExtBore_F=1 +Notes_ES_EndRing_ExtBore_F= +K1_ES_EndRing_ExtOuter_F=15 +K2_ES_EndRing_ExtOuter_F=0,4 +K3_ES_EndRing_ExtOuter_F=0,9 +Vel_Mult_ES_EndRing_ExtOuter_F=1 +Notes_ES_EndRing_ExtOuter_F= +K1_ES_EndRing_ExtInter_F=0 +K2_ES_EndRing_ExtInter_F=0,4 +K3_ES_EndRing_ExtInter_F=0,9 +Vel_Mult_ES_EndRing_ExtInter_F=1 +Notes_ES_EndRing_ExtInter_F=default = blocked channel (k1 = 0) +K1_ES_EndRing_Bore_R=15 +K2_ES_EndRing_Bore_R=0,4 +K3_ES_EndRing_Bore_R=0,9 +Vel_Mult_ES_EndRing_Bore_R=1 +Notes_ES_EndRing_Bore_R= +K1_ES_EndRing_Outer_R=15 +K2_ES_EndRing_Outer_R=0,4 +K3_ES_EndRing_Outer_R=0,9 +Vel_Mult_ES_EndRing_Outer_R=1 +Notes_ES_EndRing_Outer_R= +K1_ES_EndRing_End_R=15 +K2_ES_EndRing_End_R=0,4 +K3_ES_EndRing_End_R=0,9 +Vel_Mult_ES_EndRing_End_R=1 +Notes_ES_EndRing_End_R= +K1_ES_EndRing_ExtBore_R=15 +K2_ES_EndRing_ExtBore_R=0,4 +K3_ES_EndRing_ExtBore_R=0,9 +Vel_Mult_ES_EndRing_ExtBore_R=1 +Notes_ES_EndRing_ExtBore_R= +K1_ES_EndRing_ExtOuter_R=15 +K2_ES_EndRing_ExtOuter_R=0,4 +K3_ES_EndRing_ExtOuter_R=0,9 +Vel_Mult_ES_EndRing_ExtOuter_R=1 +Notes_ES_EndRing_ExtOuter_R= +K1_ES_EndRing_ExtInter_R=0 +K2_ES_EndRing_ExtInter_R=0,4 +K3_ES_EndRing_ExtInter_R=0,9 +Vel_Mult_ES_EndRing_ExtInter_R=1 +Notes_ES_EndRing_ExtInter_R=default = blocked channel (k1 = 0) +K1_ES_Rotor_EWdg_F=15 +K2_ES_Rotor_EWdg_F=0,4 +K3_ES_Rotor_EWdg_F=0,9 +Vel_Mult_ES_Rotor_EWdg_F=1 +Notes_ES_Rotor_EWdg_F= +K1_ES_Rotor_EWdg_R=15 +K2_ES_Rotor_EWdg_R=0,4 +K3_ES_Rotor_EWdg_R=0,9 +Vel_Mult_ES_Rotor_EWdg_R=1 +Notes_ES_Rotor_EWdg_R= +EndcapVentInletTempSettingFront=0 +EndcapVentInletTempSettingRear=0 +EndcapVentInletTempFront=40 +EndcapVentInletTempRear=40 +EndcapVentFlowDefinition_F=0 +EndcapVentFlowDefinition_R=0 +EndcapVentRefShaftSpeed_F=10 +EndcapVentRefFlowVel_F=10 +EndcapVentRefShaftSpeed_R=10 +EndcapVentRefFlowVel_R=10 +K1_ES_DividerWedge_F=15 +K2_ES_DividerWedge_F=0,4 +K3_ES_DividerWedge_F=0,9 +Vel_Mult_ES_DividerWedge_F=0,1 +Notes_ES_DividerWedge_F= +K1_ES_DividerWedge_R=15 +K2_ES_DividerWedge_R=0,4 +K3_ES_DividerWedge_R=0,9 +Vel_Mult_ES_DividerWedge_R=0,1 +Notes_ES_DividerWedge_R= +ESpaceVelocityMultSetting_F=1 +ESpaceVelocityMultSetting_R=1 +K1_ES_ExtShaftOuter_F=15 +K2_ES_ExtShaftOuter_F=0,4 +K3_ES_ExtShaftOuter_F=0,9 +Vel_Mult_ES_ExtShaftOuter_F=1 +Notes_ES_ExtShaftOuter_F= +K1_ES_ExtShaftEnd_F=0 +K2_ES_ExtShaftEnd_F=0,4 +K3_ES_ExtShaftEnd_F=0,9 +Vel_Mult_ES_ExtShaftEnd_F=1 +Notes_ES_ExtShaftEnd_F=default = shaft end not exposed (k1 = 0) +K1_ES_ExtShaftOuter_R=15 +K2_ES_ExtShaftOuter_R=0,4 +K3_ES_ExtShaftOuter_R=0,9 +Vel_Mult_ES_ExtShaftOuter_R=1 +Notes_ES_ExtShaftOuter_R= +K1_ES_ExtShaftEnd_R=15 +K2_ES_ExtShaftEnd_R=0,4 +K3_ES_ExtShaftEnd_R=0,9 +Vel_Mult_ES_ExtShaftEnd_R=1 +Notes_ES_ExtShaftEnd_R= +K1_ES_ExtFan=15 +K2_ES_ExtFan=0,4 +K3_ES_ExtFan=0,9 +Vel_Mult_ES_ExtFan=1 +Notes_ES_ExtFan= +K1_ES_StatorClampPlate_F=15 +K2_ES_StatorClampPlate_F=0,4 +K3_ES_StatorClampPlate_F=0,9 +Vel_Mult_ES_StatorClampPlate_F=0,5 +Notes_ES_StatorClampPlate_F= +K1_ES_StatorClampPlate_R=15 +K2_ES_StatorClampPlate_R=0,4 +K3_ES_StatorClampPlate_R=0,9 +Vel_Mult_ES_StatorClampPlate_R=0,5 +Notes_ES_StatorClampPlate_R= +K1_ES_EWdg_Inner_F[0]=15 +K2_ES_EWdg_Inner_F[0]=0,4 +K3_ES_EWdg_Inner_F[0]=0,9 +Vel_Mult_ES_EWdg_Inner_F[0]=1 +Notes_ES_EWdg_Inner_F[0]= +K1_ES_EWdg_Outer_F[0]=15 +K2_ES_EWdg_Outer_F[0]=0,4 +K3_ES_EWdg_Outer_F[0]=0,9 +Vel_Mult_ES_EWdg_Outer_F[0]=0,2 +Notes_ES_EWdg_Outer_F[0]= +K1_ES_EWdg_Front_F[0]=15 +K2_ES_EWdg_Front_F[0]=0,4 +K3_ES_EWdg_Front_F[0]=0,9 +Vel_Mult_ES_EWdg_Front_F[0]=0,5 +Notes_ES_EWdg_Front_F[0]= +K1_ES_EWdg_Rear_F[0]=15 +K2_ES_EWdg_Rear_F[0]=0,4 +K3_ES_EWdg_Rear_F[0]=0,9 +Vel_Mult_ES_EWdg_Rear_F[0]=0,1 +Notes_ES_EWdg_Rear_F[0]= +K1_ES_EWdg_Inner_R[0]=15 +K2_ES_EWdg_Inner_R[0]=0,4 +K3_ES_EWdg_Inner_R[0]=0,9 +Vel_Mult_ES_EWdg_Inner_R[0]=1 +Notes_ES_EWdg_Inner_R[0]= +K1_ES_EWdg_Outer_R[0]=15 +K2_ES_EWdg_Outer_R[0]=0,4 +K3_ES_EWdg_Outer_R[0]=0,9 +Vel_Mult_ES_EWdg_Outer_R[0]=0,2 +Notes_ES_EWdg_Outer_R[0]= +K1_ES_EWdg_Front_R[0]=15 +K2_ES_EWdg_Front_R[0]=0,4 +K3_ES_EWdg_Front_R[0]=0,9 +Vel_Mult_ES_EWdg_Front_R[0]=0,1 +Notes_ES_EWdg_Front_R[0]= +K1_ES_EWdg_Rear_R[0]=15 +K2_ES_EWdg_Rear_R[0]=0,4 +K3_ES_EWdg_Rear_R[0]=0,9 +Vel_Mult_ES_EWdg_Rear_R[0]=0,5 +Notes_ES_EWdg_Rear_R[0]= +ESpaceFluidWeightCalc=1 +CombineSprayAndConvectionCooling=1 +Area_Mult_ES_EWdg_Inner_F[0]=1 +Area_Mult_ES_EWdg_Inner_R[0]=1 +Area_Mult_ES_EWdg_Outer_F[0]=1 +Area_Mult_ES_EWdg_Outer_R[0]=1 +Area_Mult_ES_EWdg_Front_F[0]=1 +Area_Mult_ES_EWdg_Front_R[0]=1 +Area_Mult_ES_EWdg_Rear_F[0]=1 +Area_Mult_ES_EWdg_Rear_R[0]=1 +Area_Mult_ES_Housing_F=1 +Area_Mult_ES_Housing_R=1 +Area_Mult_ES_Endcap_F=1 +Area_Mult_ES_Endcap_R=1 +Area_Mult_ES_Bearing_F=1 +Area_Mult_ES_Bearing_R=1 +Area_Mult_ES_Axle_F=1 +Area_Mult_ES_Axle_R=1 +Area_Mult_ES_Cup_Base=1 +Area_Mult_ES_Cup_OH=1 +Area_Mult_ES_Shaft_F=1 +Area_Mult_ES_Shaft_R=1 +Area_Mult_ES_Rotor_F=1 +Area_Mult_ES_Rotor_R=1 +Area_Mult_ES_Stator_F=1 +Area_Mult_ES_Stator_R=1 +Area_Mult_ES_Magnet_F=1 +Area_Mult_ES_Magnet_R=1 +Area_Mult_ES_EndRing_Bore_F=1 +Area_Mult_ES_EndRing_Bore_R=1 +Area_Mult_ES_EndRing_Outer_F=1 +Area_Mult_ES_EndRing_Outer_R=1 +Area_Mult_ES_EndRing_End_F=1 +Area_Mult_ES_EndRing_End_R=1 +Area_Mult_ES_EndRing_ExtBore_F=1 +Area_Mult_ES_EndRing_ExtBore_R=1 +Area_Mult_ES_EndRing_ExtOuter_F=1 +Area_Mult_ES_EndRing_ExtOuter_R=1 +Area_Mult_ES_EndRing_ExtInter_F=1 +Area_Mult_ES_EndRing_ExtInter_R=1 +Area_Mult_ES_EW_Ext_F=1 +Area_Mult_ES_EW_Ext_R=1 +Area_Mult_ES_StatorClampPlate_F=1 +Area_Mult_ES_StatorClampPlate_R=1 +Area_Mult_ES_Comm=1 +Area_Mult_ES_Brushes=1 +Area_Mult_ES_StatorPlate_F=1 +Area_Mult_ES_StatorPlate_R=1 +Area_Mult_ES_ExtShaftOuter_F=1 +Area_Mult_ES_ExtShaftEnd_F=1 +Area_Mult_ES_ExtShaftOuter_R=1 +Area_Mult_ES_ExtShaftEnd_R=1 +Area_Mult_ES_ExtFan=1 +Area_Mult_ES_DividerWedge_F=1 +Area_Mult_ES_DividerWedge_R=1 +Area_Mult_ES_Rotor_EWdg_F=1 +Area_Mult_ES_Rotor_EWdg_R=1 +Area_Mult_ES_RotorEwdg_Outer_F=1 +Area_Mult_ES_RotorEwdg_Inner_F=1 +Area_Mult_ES_RotorEwdg_End_F=1 +Area_Mult_ES_RotorEwdg_internal_F=1 +Area_Mult_ES_RotorEwdg_Outer_R=1 +Area_Mult_ES_RotorEwdg_Inner_R=1 +Area_Mult_ES_RotorEwdg_End_R=1 +Area_Mult_ES_RotorEwdg_internal_R=1 +Include_EndSpace_Altitude_Effects=True +ESpaceFluidHTCScaling=2 +ImprovedShaftExtResistance=True +FluidHTCScalingTempVariation=0 +FluidHTCScalingTemp=100 +EndcapAreaCalc=1 +K1_ES_StatorPlate_F=15 +K2_ES_StatorPlate_F=0,4 +K3_ES_StatorPlate_F=0,9 +Vel_Mult_ES_StatorPlate_F=1 +Notes_ES_StatorPlate_F= +K1_ES_StatorPlate_R=15 +K2_ES_StatorPlate_R=0,4 +K3_ES_StatorPlate_R=0,9 +Vel_Mult_ES_StatorPlate_R=1 +Notes_ES_StatorPlate_R= +GapEndW_Plate_F=0 +GapEndW_Plate_R=0 +K1_ES_RotorEwdg_Outer_F=15 +K2_ES_RotorEwdg_Outer_F=0,4 +K3_ES_RotorEwdg_Outer_F=0,9 +Vel_Mult_ES_RotorEwdg_Outer_F=1 +Notes_ES_RotorEwdg_Outer_F= +K1_ES_RotorEwdg_inner_F=15 +K2_ES_RotorEwdg_inner_F=0,4 +K3_ES_RotorEwdg_inner_F=0,9 +Vel_Mult_ES_RotorEwdg_inner_F=1 +Notes_ES_RotorEwdg_inner_F= +K1_ES_RotorEwdg_end_F=15 +K2_ES_RotorEwdg_end_F=0,4 +K3_ES_RotorEwdg_end_F=0,9 +Vel_Mult_ES_RotorEwdg_end_F=1 +Notes_ES_RotorEwdg_end_F= +K1_ES_RotorEwdg_internal_F=15 +K2_ES_RotorEwdg_internal_F=0,4 +K3_ES_RotorEwdg_internal_F=0,9 +Vel_Mult_ES_RotorEwdg_internal_F=1 +Notes_ES_RotorEwdg_internal_F= +K1_ES_RotorEwdg_Outer_R=15 +K2_ES_RotorEwdg_Outer_R=0,4 +K3_ES_RotorEwdg_Outer_R=0,9 +Vel_Mult_ES_RotorEwdg_Outer_R=1 +Notes_ES_RotorEwdg_Outer_R= +K1_ES_RotorEwdg_inner_R=15 +K2_ES_RotorEwdg_inner_R=0,4 +K3_ES_RotorEwdg_inner_R=0,9 +Vel_Mult_ES_RotorEwdg_inner_R=1 +Notes_ES_RotorEwdg_inner_R= +K1_ES_RotorEwdg_end_R=15 +K2_ES_RotorEwdg_end_R=0,4 +K3_ES_RotorEwdg_end_R=0,9 +Vel_Mult_ES_RotorEwdg_end_R=1 +Notes_ES_RotorEwdg_end_R= +K1_ES_RotorEwdg_internal_R=15 +K2_ES_RotorEwdg_internal_R=0,4 +K3_ES_RotorEwdg_internal_R=0,9 +Vel_Mult_ES_RotorEwdg_internal_R=1 +Notes_ES_RotorEwdg_internal_R= +End_Space_Velocity_Multiplier_F=0,5 +End_Space_Velocity_Multiplier_[Front]=0,5 +End_Space_Velocity_Multiplier_R=0,5 +End_Space_Velocity_Multiplier_[Rear]=0,5 +Volume_Flow_Rate_ESpace_Fluid_Front=0,02 +Volume_Flow_Rate_ESpace_Fluid_Rear=0,02 +Endwinding_Roughness_F=1 +End_Winding_Area_Adjustment_Factor_[Front]=1 +Endwinding_Roughness_R=1 +End_winding_area_adjustment_factor_[Rear]=1 +K1_ES_Housing_F=15 +ESpace_K1_-_Housing_[Front]=15 +K1_ES_Housing_R=15 +ESpace_K1_-_Housing_[Rear]=15 +K1_ES_Endcap_F=15 +ESpace_K1_-_Endcap_[Front]=15 +K1_ES_Endcap_R=15 +ESpace_K1_-_Endcap_[Rear]=15 +K1_ES_Bearing_F=15 +ESpace_K1_-_Bearing_[Front]=15 +K1_ES_Bearing_R=15 +ESpace_K1_-_Bearing_[Rear]=15 +K1_ES_Shaft_F=15 +ESpace_K1_-_Shaft_[Front]=15 +K1_ES_Shaft_R=15 +ESpace_K1_-_Shaft_[Rear]=15 +K1_ES_Axle_F=15 +ESpace_K1_-_Axle_[Front]=15 +K1_ES_Axle_R=15 +ESpace_K1_-_Axle_[Rear]=15 +K1_ES_Cup_Base=15 +ESpace_K1_-_Cup_Base=15 +K1_ES_Cup_OH=15 +ESpace_K1_-_Cup_OH=15 +K1_ES_Rotor_F=15 +ESpace_K1_-_Rotor_[Front]=15 +K1_ES_Rotor_R=15 +ESpace_K1_-_Rotor_[Rear]=15 +K1_ES_Rotor_Coil=15 +ESpace_K1_-_Rotor_Coil=15 +K1_ES_Stator_F=15 +ESpace_K1_-_Stator_[Front]=15 +K1_ES_Stator_R=15 +ESpace_K1_-_Stator_[Rear]=15 +K1_ES_Magnet_F=15 +ESpace_K1_-_Magnet_[Front]=15 +K1_ES_Magnet_R=15 +ESpace_K1_-_Magnet_[Rear]=15 +K1_ES_EW_Ext_F=0 +ESpace_K1_-_EW_Ext_[Front]=0 +K1_ES_EW_Ext_R=0 +ESpace_K1_-_EW_Ext_[Rear]=0 +K1_ES_Comm=15 +ESpace_K1_-_Comm_[Rear]=15 +K1_ES_Brushes=15 +ESpace_K1_-_Brushes=15 +K2_ES_Housing_F=0,4 +ESpace_K2_-_Housing_[Front]=0,4 +K2_ES_Housing_R=0,4 +ESpace_K2_-_Housing_[Rear]=0,4 +K2_ES_Endcap_F=0,4 +ESpace_K2_-_Endcap_[Front]=0,4 +K2_ES_Endcap_R=0,4 +ESpace_K2_-_Endcap_[Rear]=0,4 +K2_ES_Bearing_F=0,4 +ESpace_K2_-_Bearing_[Front]=0,4 +K2_ES_Bearing_R=0,4 +ESpace_K2_-_Bearing_[Rear]=0,4 +K2_ES_Shaft_F=0,4 +ESpace_K2_-_Shaft_[Front]=0,4 +K2_ES_Shaft_R=0,4 +ESpace_K2_-_Shaft_[Rear]=0,4 +K2_ES_Axle_F=0,4 +ESpace_K2_-_Axle_[Front]=0,4 +K2_ES_Axle_R=0,4 +ESpace_K2_-_Axle_[Rear]=0,4 +K2_ES_Cup_Base=0,4 +ESpace_K2_-_Cup_Base=0,4 +K2_ES_Cup_OH=0,4 +ESpace_K2_-_Cup_OH=0,4 +K2_ES_Rotor_F=0,4 +ESpace_K2_-_Rotor_[Front]=0,4 +K2_ES_Rotor_R=0,4 +ESpace_K2_-_Rotor_[Rear]=0,4 +K2_ES_Rotor_Coil=0,4 +ESpace_K2_-_Rotor_Coil=0,4 +K2_ES_Stator_F=0,4 +ESpace_K2_-_Stator_[Front]=0,4 +K2_ES_Stator_R=0,4 +ESpace_K2_-_Stator_[Rear]=0,4 +K2_ES_Magnet_F=0,4 +ESpace_K2_-_Magnet_[Front]=0,4 +K2_ES_Magnet_R=0,4 +ESpace_K2_-_Magnet_[Rear]=0,4 +K2_ES_EW_Ext_F=0,4 +ESpace_K2_-_EW_Ext_[Front]=0,4 +K2_ES_EW_EXt_R=0,4 +ESpace_K2_-_EW_Ext_[Rear]=0,4 +K2_ES_Comm=0,4 +ESpace_K2_-_Comm_[Rear]=0,4 +K2_ES_Brushes=0,4 +ESpace_K2_-_Brushes=0,4 +K3_ES_Housing_F=0,9 +ESpace_K3_-_Housing_[Front]=0,9 +K3_ES_Housing_R=0,9 +ESpace_K3_-_Housing_[Rear]=0,9 +K3_ES_Endcap_F=0,9 +ESpace_K3_-_Endcap_[Front]=0,9 +K3_ES_Endcap_R=0,9 +ESpace_K3_-_Endcap_[Rear]=0,9 +K3_ES_Bearing_F=0,9 +ESpace_K3_-_Bearing_[Front]=0,9 +K3_ES_Bearing_R=0,9 +ESpace_K3_-_Bearing_[Rear]=0,9 +K3_ES_Shaft_F=0,9 +ESpace_K3_-_Shaft_[Front]=0,9 +K3_ES_Shaft_R=0,9 +ESpace_K3_-_Shaft_[Rear]=0,9 +K3_ES_Axle_F=0,9 +ESpace_K3_-_Axle_[Front]=0,9 +K3_ES_Axle_R=0,9 +ESpace_K3_-_Axle_[Rear]=0,9 +K3_ES_Cup_Base=0,9 +ESpace_K3_-_Cup_Base=0,9 +K3_ES_Cup_OH=0,9 +ESpace_K3_-_Cup_OH=0,9 +K3_ES_Rotor_F=0,9 +ESpace_K3_-_Rotor_[Front]=0,9 +K3_ES_Rotor_R=0,9 +ESpace_K3_-_Rotor_[Rear]=0,9 +K3_ES_Rotor_Coil=0,9 +ESpace_K3_-_Rotor_Coil=0,9 +K3_ES_Stator_F=0,9 +ESpace_K3_-_Stator_[Front]=0,9 +K3_ES_Stator_R=0,9 +ESpace_K3_-_Stator_[Rear]=0,9 +K3_ES_Magnet_F=0,9 +ESpace_K3_-_Magnet_[Front]=0,9 +K3_ES_Magnet_R=0,9 +ESpace_K3_-_Magnet_[Rear]=0,9 +K3_ES_EW_Ext_F=0,9 +ESpace_K3_-_EW_Ext_[Front]=0,9 +K3_ES_EW_Ext_R=0,9 +ESpace_K3_-_EW_Ext_[Rear]=0,9 +K3_ES_Comm=0,9 +ESpace_K3_-_Comm_[Rear]=0,9 +K3_ES_Brushes=0,9 +ESpace_K3_-_Brushes=0,9 +Vel_Mult_ES_Housing_F=0,2 +ESpace_Vel_Mult_-_Housing_[Front]=0,2 +Vel_Mult_ES_Housing_R=0,2 +ESpace_Vel_Mult_-_Housing_[Rear]=0,2 +Vel_Mult_ES_Endcap_F=0,7 +ESpace_Vel_Mult_-_Endcap_[Front]=0,7 +Vel_Mult_ES_Endcap_R=0,7 +ESpace_Vel_Mult_-_Endcap_[Rear]=0,7 +Vel_Mult_ES_Bearing_F=1 +ESpace_Vel_Mult_-_Bearing_[Front]=1 +Vel_Mult_ES_Bearing_R=1 +ESpace_Vel_Mult_-_Bearing_[Rear]=1 +Vel_Mult_ES_Shaft_F=1 +ESpace_Vel_Mult_-_Shaft_[Front]=1 +Vel_Mult_ES_Shaft_R=1 +ESpace_Vel_Mult_-_Shaft_[Rear]=1 +Vel_Mult_ES_Axle_F=0 +ESpace_Vel_Mult_-_Axle_[Front]=0 +Vel_Mult_ES_Axle_R=0 +ESpace_Vel_Mult_-_Axle_[Rear]=0 +Vel_Mult_ES_Cup_Base=0 +ESpace_Vel_Mult_-_Cup_Base=0 +Vel_Mult_ES_Cup_OH=0 +ESpace_Vel_Mult_-_Cup_OH=0 +Vel_Mult_ES_Rotor_F=1 +ESpace_Vel_Mult_-_Rotor_[Front]=1 +Vel_Mult_ES_Rotor_R=1 +ESpace_Vel_Mult_-_Rotor_[Rear]=1 +Vel_Mult_ES_Rotor_Coil=1 +ESpace_Vel_Mult_-_Rotor_Coil=1 +Vel_Mult_ES_Stator_F=1 +ESpace_Vel_Mult_-_Stator_[Front]=1 +Vel_Mult_ES_Stator_R=1 +ESpace_Vel_Mult_-_Stator_[Rear]=1 +Vel_Mult_ES_Magnet_F=1 +ESpace_Vel_Mult_-_Magnet_[Front]=1 +Vel_Mult_ES_Magnet_R=1 +ESpace_Vel_Mult_-_Magnet_[Rear]=1 +Vel_Mult_ES_EW_Ext_F=0,5 +ESpace_Vel_Mult_-_EW_Ext_[Front]=0,5 +Vel_Mult_ES_EW_Ext_R=0,5 +ESpace_Vel_Mult_-_EW_Ext_[Rear]=0,5 +Vel_Mult_ES_Comm=1 +ESpace_Vel_Mult_-_Comm_[Rear]=1 +Vel_Mult_ES_Brushes=1 +ESpace_Vel_Mult_-_Brushes=1 +Notes_ES_Housing_F= +ESpace_Notes_-_Housing_[Front]= +Notes_ES_Housing_R= +ESpace_Notes_-_Housing_[Rear]= +Notes_ES_Endcap_F= +ESpace_Notes_-_Endcap_[Front]= +Notes_ES_Endcap_R= +ESpace_Notes_-_Endcap_[Rear]= +Notes_ES_Bearing_F= +ESpace_Notes_-_Bearing_[Front]= +Notes_ES_Bearing_R= +ESpace_Notes_-_Bearing_[Rear]= +Notes_ES_Shaft_F= +ESpace_Notes_-_Shaft_[Front]= +Notes_ES_Shaft_R= +ESpace_Notes_-_Shaft_[Rear]= +Notes_ES_Axle_F= +ESpace_Notes_-_Axle_[Front]= +Notes_ES_Axle_R= +ESpace_Notes_-_Axle_[Rear]= +Notes_ES_Cup_Base= +ESpace_Notes_-_Cup_Base= +Notes_ES_Cup_OH= +ESpace_Notes_-_Cup_OH= +Notes_ES_Rotor_F= +ESpace_Notes_-_Rotor_[Front]= +Notes_ES_Rotor_R= +ESpace_Notes_-_Rotor_[Rear]= +Notes_ES_Rotor_Coil= +ESpace_Notes_-_Rotor_Coil= +Notes_ES_Stator_F= +ESpace_Notes_-_Stator_[Front]= +Notes_ES_Stator_R= +ESpace_Notes_-_Stator_[Rear]= +Notes_ES_Magnet_F= +ESpace_Notes_-_Magnet_[Front]= +Notes_ES_Magnet_R= +ESpace_Notes_-_Magnet_[Rear]= +Notes_ES_EW_Ext_F=default = blocked channel (k1 = 0) +ESpace_Notes_-_EW_Ext_[Front]=default = blocked channel (k1 = 0) +Notes_ES_EW_Ext_R=default = blocked channel (k1 = 0) +ESpace_Notes_-_EW_Ext_[Rear]=default = blocked channel (k1 = 0) +Notes_ES_Comm= +ESpace_Notes_-_Comm_[Rear]= +Notes_ES_Brushes= +ESpace_Notes_-_Brushes= +Area_Mult_ES_EW_Bore_F=1 +Area_Mult_ES_EW_Bore_R=1 +Area_Mult_ES_EW_Outer_F=1 +Area_Mult_ES_EW_Outer_R=1 +Area_Mult_ES_EW_End_F=1 +Area_Mult_ES_EW_End_R=1 +ESpace_K1_-_EW_Bore_[Front]=15 +ESpace_K2_-_EW_Bore_[Front]=0,4 +ESpace_K3_-_EW_Bore_[Front]=0,9 +ESpace_Vel_Mult_-_EW_Bore_[Front]=1 +ESpace_Notes_-_EW_Bore_[Front]= +ESpace_K1_-_EW_Outer_[Front]=15 +ESpace_K2_-_EW_Outer_[Front]=0,4 +ESpace_K3_-_EW_Outer_[Front]=0,9 +ESpace_Vel_Mult_-_EW_Outer_[Front]=0,2 +ESpace_Notes_-_EW_Outer_[Front]= +ESpace_K1_-_EW_End_[Front]=15 +ESpace_K2_-_EW_End_[Front]=0,4 +ESpace_K3_-_EW_End_[Front]=0,9 +ESpace_Vel_Mult_-_EW_End_[Front]=0,5 +ESpace_Notes_-_EW_End_[Front]= +ESpace_K1_-_EW_Bore_[Rear]=15 +ESpace_K2_-_EW_Bore_[Rear]=0,4 +ESpace_K3_-_EW_Bore_[Rear]=0,9 +ESpace_Vel_Mult_-_EW_Bore_[Rear]=1 +ESpace_Notes_-_EW_Bore_[Rear]= +ESpace_K1_-_EW_Outer_[Rear]=15 +ESpace_K2_-_EW_Outer_[Rear]=0,4 +ESpace_K3_-_EW_Outer_[Rear]=0,9 +ESpace_Vel_Mult_-_EW_Outer_[Rear]=0,2 +ESpace_Notes_-_EW_Outer_[Rear]= +ESpace_K1_-_EW_End_[Rear]=15 +ESpace_K2_-_EW_End_[Rear]=0,4 +ESpace_K3_-_EW_End_[Rear]=0,9 +ESpace_Vel_Mult_-_EW_End_[Rear]=0,5 +ESpace_Notes_-_EW_End_[Rear]= + +[FEA_Settings] +FEAMaxValue_Thermal=180 +FEAMinValue_Thermal=40 +FEAAutoShading_Thermal=True +FEAHighlightMin_Thermal=True +FEAHighlightMax_Thermal=True +FEAMaxValue_Magnetic=2,2 +FEAMinValue_Magnetic=0 +FEAAutoShading_Magnetic=True +FEAHighlightMin_Magnetic=True +FEAHighlightMax_Magnetic=True +FEAMaxValue_Mechanical=0,05 +FEAMinValue_Mechanical=0 +FEAAutoShading_Mechanical=True +FEAHighlightMin_Mechanical=True +FEAHighlightMax_Mechanical=True +FEAAreaSelect=0 +FEANumEquipotentialLines_EMag=20 +FEANumEquipotentialLines_Therm=20 +FEANumEquipotentialLines_Mechanical=0 +FEALengthVectors_EMag=0 +FEALengthVectors_Therm=0 +FEALengthVectors_Mechanical=0 +UseDXFImportForFEA_Magnetic=False +UseDXFImportForFEA=False +DXFImportType=0 +CustomFEARegions_Magnetic= +CustomRegionMagNames_Method=1 +UseCustomFEARegions_Magnetic=False +CustomFEARegions_ThermalSlot= +UseCustomFEARegions_ThermalSlot=False +CustomFEARegions_ThermalPole= +UseCustomFEARegions_ThermalPole=False +UseDXFImportForFEA_Mechanical=False +CustomFEARegions_Mechanical= +UseCustomFEARegions_Mechanical=False +ShowModelAirgap=False +GeometryTestMode=0 +UseDXFImportForFEA_Thermal=False +CustomFEARegions_ThermalDXF= +VerboseFEAOutput=False +VerboseFEAMessageOutput=False +VerboseMessageOutput=False +VerboseFlag_TimedInfo=False +VerboseFlag_Info=False +VerboseFlag_IOInfo=False +VerboseFlag_ScriptInfo=False +VerboseFlag_Results=False +VerboseFlag_Warning=True +VerboseFlag_Error=True +FEASchematicNodeRadius=0,2 +CustomLoadPointSettings= +FeaSys_Suffix= +FEAScalingFactor=3 +FEABndFactor=1,8 +FEAMaxAngle=95 +FEASolutionCycle=0 +MechanicalMeshLength_RotorLam=1 +MechanicalMeshLength_Magnets=1 +MechanicalMeshLength_RotorBars=1 +MechanicalMeshLength_RotorVoids=0,1 +MechanicalMeshLength_DamperBars=1 +MechanicalOption_Magnets=0 +AdhesionFactor_Magnets=0,2 +EnableMechanicalMesh_RotorBars=0 +RotorBarAdhesionFactor=0,2 +EnableMechanicalMesh_FieldWdg=0 +FieldWdgAdhesionFactor=0,2 +EnableMechanicalMesh_DamperBars=0 +AdhesionFactor_DamperBars=0,2 +MechanicalOption_InnerBoundaryCondition=0 +MechanicalOption_OuterBoundaryCondition=0 +MechanicalInnerBoundaryStress=0 +MechanicalOuterBoundaryStress=0 +AirgapMeshPoints_layers=720 +AirgapMeshPoints_mesh=720 +AirgapLayersMethod=1 +AirgapMesh_NumLayers=4 +MagnetMeshLength=0 +RotorPocketMeshLength=0 +RotorBarMeshLength=0 +RotorLamMeshLength=0 +ShaftMeshLength=0 +StatorLamMeshLength=0 +StatorSlotMeshLength=0 +FEAMinPointSeparation=0,005 +FEAEddyCurrentCalcMethod=1 +FEASmallAngleMethod=2 +FEASmallAngleSize=2 + +[h_Forced_Con_Input] +Velocity_Forced_Conv_Housing_Active_Fin_Channel_Multiplier[0]=1 +Velocity_Forced_Conv_Housing_Active_Fin_Channel_Multiplier[1]=1 +Velocity_Forced_Conv_Housing_Active_Fin_Channel_Multiplier[2]=1 +Velocity_Forced_Conv_Housing_Active_Fin_Channel_Multiplier[3]=1 +Velocity_Forced_Conv_Housing_Active_Fin_Channel_Multiplier[4]=1 +Velocity_Forced_Conv_Housing_Active_Fin_Channel_Multiplier[5]=1 +Velocity_Forced_Conv_Housing_Active_Fin_Channel_Multiplier[6]=1 +Velocity_Forced_Conv_Housing_Active_Fin_Channel_Multiplier[7]=1 +Velocity_Forced_Conv_Housing_Active_Fin_Channel_Multiplier[8]=1 +h_Forced_Conv_Housing_Active_No_Fins_Input[0]=0 +h_Forced_Conv_Housing_Active_No_Fins_Input[1]=0 +h_Forced_Conv_Housing_Active_No_Fins_Input[2]=0 +h_Forced_Conv_Housing_Active_No_Fins_Input[3]=0 +h_Forced_Conv_Housing_Active_No_Fins_Input[4]=0 +h_Forced_Conv_Housing_Active_No_Fins_Input[5]=0 +h_Forced_Conv_Housing_Active_No_Fins_Input[6]=0 +h_Forced_Conv_Housing_Active_No_Fins_Input[7]=0 +h_Forced_Conv_Housing_Active_No_Fins_Input[8]=0 +h_Forced_Conv_Housing_Active_No_Fins_Adjust[0]=1 +h_Forced_Conv_Housing_Active_No_Fins_Adjust[1]=1 +h_Forced_Conv_Housing_Active_No_Fins_Adjust[2]=1 +h_Forced_Conv_Housing_Active_No_Fins_Adjust[3]=1 +h_Forced_Conv_Housing_Active_No_Fins_Adjust[4]=1 +h_Forced_Conv_Housing_Active_No_Fins_Adjust[5]=1 +h_Forced_Conv_Housing_Active_No_Fins_Adjust[6]=1 +h_Forced_Conv_Housing_Active_No_Fins_Adjust[7]=1 +h_Forced_Conv_Housing_Active_No_Fins_Adjust[8]=1 +Calc_Input_h_Forced_Conv_Housing_Active_No_Fins[0]=0 +Calc_Input_h_Forced_Conv_Housing_Active_No_Fins[1]=0 +Calc_Input_h_Forced_Conv_Housing_Active_No_Fins[2]=0 +Calc_Input_h_Forced_Conv_Housing_Active_No_Fins[3]=0 +Calc_Input_h_Forced_Conv_Housing_Active_No_Fins[4]=0 +Calc_Input_h_Forced_Conv_Housing_Active_No_Fins[5]=0 +Calc_Input_h_Forced_Conv_Housing_Active_No_Fins[6]=0 +Calc_Input_h_Forced_Conv_Housing_Active_No_Fins[7]=0 +Calc_Input_h_Forced_Conv_Housing_Active_No_Fins[8]=0 +Velocity_Forced_Conv_Housing_Active_No_Fins_Multiplier[0]=0,316736 +Velocity_Forced_Conv_Housing_Active_No_Fins_Multiplier[1]=0 +Velocity_Forced_Conv_Housing_Active_No_Fins_Multiplier[2]=0 +Velocity_Forced_Conv_Housing_Active_No_Fins_Multiplier[3]=0 +Velocity_Forced_Conv_Housing_Active_No_Fins_Multiplier[4]=0 +Velocity_Forced_Conv_Housing_Active_No_Fins_Multiplier[5]=0 +Velocity_Forced_Conv_Housing_Active_No_Fins_Multiplier[6]=0 +Velocity_Forced_Conv_Housing_Active_No_Fins_Multiplier[7]=0 +Velocity_Forced_Conv_Housing_Active_No_Fins_Multiplier[8]=0 +Forced_Conv_Notes_Housing_Active_No_Fins[0]= +Forced_Conv_Notes_Housing_Active_No_Fins[1]= +Forced_Conv_Notes_Housing_Active_No_Fins[2]= +Forced_Conv_Notes_Housing_Active_No_Fins[3]= +Forced_Conv_Notes_Housing_Active_No_Fins[4]= +Forced_Conv_Notes_Housing_Active_No_Fins[5]= +Forced_Conv_Notes_Housing_Active_No_Fins[6]= +Forced_Conv_Notes_Housing_Active_No_Fins[7]= +Forced_Conv_Notes_Housing_Active_No_Fins[8]= +h_Forced_Conv_Housing_Active_Fin_Base_Input[0]=0 +h_Forced_Conv_Housing_Active_Fin_Base_Input[1]=0 +h_Forced_Conv_Housing_Active_Fin_Base_Input[2]=0 +h_Forced_Conv_Housing_Active_Fin_Base_Input[3]=0 +h_Forced_Conv_Housing_Active_Fin_Base_Input[4]=0 +h_Forced_Conv_Housing_Active_Fin_Base_Input[5]=0 +h_Forced_Conv_Housing_Active_Fin_Base_Input[6]=0 +h_Forced_Conv_Housing_Active_Fin_Base_Input[7]=0 +h_Forced_Conv_Housing_Active_Fin_Base_Input[8]=0 +h_Forced_Conv_Housing_Active_Fin_Base_Adjust[0]=1 +h_Forced_Conv_Housing_Active_Fin_Base_Adjust[1]=1 +h_Forced_Conv_Housing_Active_Fin_Base_Adjust[2]=1 +h_Forced_Conv_Housing_Active_Fin_Base_Adjust[3]=1 +h_Forced_Conv_Housing_Active_Fin_Base_Adjust[4]=1 +h_Forced_Conv_Housing_Active_Fin_Base_Adjust[5]=1 +h_Forced_Conv_Housing_Active_Fin_Base_Adjust[6]=1 +h_Forced_Conv_Housing_Active_Fin_Base_Adjust[7]=1 +h_Forced_Conv_Housing_Active_Fin_Base_Adjust[8]=1 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Base[0]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Base[1]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Base[2]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Base[3]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Base[4]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Base[5]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Base[6]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Base[7]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Base[8]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Base_Multiplier[0]=0,316736 +Velocity_Forced_Conv_Housing_Active_Fin_Base_Multiplier[1]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Base_Multiplier[2]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Base_Multiplier[3]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Base_Multiplier[4]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Base_Multiplier[5]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Base_Multiplier[6]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Base_Multiplier[7]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Base_Multiplier[8]=0 +Forced_Conv_Notes_Housing_Active_Fin_Base[0]= +Forced_Conv_Notes_Housing_Active_Fin_Base[1]= +Forced_Conv_Notes_Housing_Active_Fin_Base[2]= +Forced_Conv_Notes_Housing_Active_Fin_Base[3]= +Forced_Conv_Notes_Housing_Active_Fin_Base[4]= +Forced_Conv_Notes_Housing_Active_Fin_Base[5]= +Forced_Conv_Notes_Housing_Active_Fin_Base[6]= +Forced_Conv_Notes_Housing_Active_Fin_Base[7]= +Forced_Conv_Notes_Housing_Active_Fin_Base[8]= +h_Forced_Conv_Housing_Active_Fin_Sides_Input[0]=0 +h_Forced_Conv_Housing_Active_Fin_Sides_Input[1]=0 +h_Forced_Conv_Housing_Active_Fin_Sides_Input[2]=0 +h_Forced_Conv_Housing_Active_Fin_Sides_Input[3]=0 +h_Forced_Conv_Housing_Active_Fin_Sides_Input[4]=0 +h_Forced_Conv_Housing_Active_Fin_Sides_Input[5]=0 +h_Forced_Conv_Housing_Active_Fin_Sides_Input[6]=0 +h_Forced_Conv_Housing_Active_Fin_Sides_Input[7]=0 +h_Forced_Conv_Housing_Active_Fin_Sides_Input[8]=0 +h_Forced_Conv_Housing_Active_Fin_Sides_Adjust[0]=1 +h_Forced_Conv_Housing_Active_Fin_Sides_Adjust[1]=1 +h_Forced_Conv_Housing_Active_Fin_Sides_Adjust[2]=1 +h_Forced_Conv_Housing_Active_Fin_Sides_Adjust[3]=1 +h_Forced_Conv_Housing_Active_Fin_Sides_Adjust[4]=1 +h_Forced_Conv_Housing_Active_Fin_Sides_Adjust[5]=1 +h_Forced_Conv_Housing_Active_Fin_Sides_Adjust[6]=1 +h_Forced_Conv_Housing_Active_Fin_Sides_Adjust[7]=1 +h_Forced_Conv_Housing_Active_Fin_Sides_Adjust[8]=1 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Sides[0]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Sides[1]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Sides[2]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Sides[3]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Sides[4]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Sides[5]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Sides[6]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Sides[7]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Sides[8]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Sides_Multiplier[0]=0,316736 +Velocity_Forced_Conv_Housing_Active_Fin_Sides_Multiplier[1]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Sides_Multiplier[2]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Sides_Multiplier[3]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Sides_Multiplier[4]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Sides_Multiplier[5]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Sides_Multiplier[6]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Sides_Multiplier[7]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Sides_Multiplier[8]=0 +Forced_Conv_Notes_Housing_Active_Fin_Sides[0]= +Forced_Conv_Notes_Housing_Active_Fin_Sides[1]= +Forced_Conv_Notes_Housing_Active_Fin_Sides[2]= +Forced_Conv_Notes_Housing_Active_Fin_Sides[3]= +Forced_Conv_Notes_Housing_Active_Fin_Sides[4]= +Forced_Conv_Notes_Housing_Active_Fin_Sides[5]= +Forced_Conv_Notes_Housing_Active_Fin_Sides[6]= +Forced_Conv_Notes_Housing_Active_Fin_Sides[7]= +Forced_Conv_Notes_Housing_Active_Fin_Sides[8]= +h_Forced_Conv_Housing_Active_Fin_Tips_Input[0]=0 +h_Forced_Conv_Housing_Active_Fin_Tips_Input[1]=0 +h_Forced_Conv_Housing_Active_Fin_Tips_Input[2]=0 +h_Forced_Conv_Housing_Active_Fin_Tips_Input[3]=0 +h_Forced_Conv_Housing_Active_Fin_Tips_Input[4]=0 +h_Forced_Conv_Housing_Active_Fin_Tips_Input[5]=0 +h_Forced_Conv_Housing_Active_Fin_Tips_Input[6]=0 +h_Forced_Conv_Housing_Active_Fin_Tips_Input[7]=0 +h_Forced_Conv_Housing_Active_Fin_Tips_Input[8]=0 +h_Forced_Conv_Housing_Active_Fin_Tips_Adjust[0]=1 +h_Forced_Conv_Housing_Active_Fin_Tips_Adjust[1]=1 +h_Forced_Conv_Housing_Active_Fin_Tips_Adjust[2]=1 +h_Forced_Conv_Housing_Active_Fin_Tips_Adjust[3]=1 +h_Forced_Conv_Housing_Active_Fin_Tips_Adjust[4]=1 +h_Forced_Conv_Housing_Active_Fin_Tips_Adjust[5]=1 +h_Forced_Conv_Housing_Active_Fin_Tips_Adjust[6]=1 +h_Forced_Conv_Housing_Active_Fin_Tips_Adjust[7]=1 +h_Forced_Conv_Housing_Active_Fin_Tips_Adjust[8]=1 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Tips[0]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Tips[1]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Tips[2]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Tips[3]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Tips[4]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Tips[5]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Tips[6]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Tips[7]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Tips[8]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Tips_Multiplier[0]=0,316736 +Velocity_Forced_Conv_Housing_Active_Fin_Tips_Multiplier[1]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Tips_Multiplier[2]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Tips_Multiplier[3]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Tips_Multiplier[4]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Tips_Multiplier[5]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Tips_Multiplier[6]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Tips_Multiplier[7]=0 +Velocity_Forced_Conv_Housing_Active_Fin_Tips_Multiplier[8]=0 +Forced_Conv_Notes_Housing_Active_Fin_Tips[0]= +Forced_Conv_Notes_Housing_Active_Fin_Tips[1]= +Forced_Conv_Notes_Housing_Active_Fin_Tips[2]= +Forced_Conv_Notes_Housing_Active_Fin_Tips[3]= +Forced_Conv_Notes_Housing_Active_Fin_Tips[4]= +Forced_Conv_Notes_Housing_Active_Fin_Tips[5]= +Forced_Conv_Notes_Housing_Active_Fin_Tips[6]= +Forced_Conv_Notes_Housing_Active_Fin_Tips[7]= +Forced_Conv_Notes_Housing_Active_Fin_Tips[8]= +h_Forced_Conv_Housing_Active_Fin_Channel_Input[0]=0 +h_Forced_Conv_Housing_Active_Fin_Channel_Input[1]=0 +h_Forced_Conv_Housing_Active_Fin_Channel_Input[2]=0 +h_Forced_Conv_Housing_Active_Fin_Channel_Input[3]=0 +h_Forced_Conv_Housing_Active_Fin_Channel_Input[4]=0 +h_Forced_Conv_Housing_Active_Fin_Channel_Input[5]=0 +h_Forced_Conv_Housing_Active_Fin_Channel_Input[6]=0 +h_Forced_Conv_Housing_Active_Fin_Channel_Input[7]=0 +h_Forced_Conv_Housing_Active_Fin_Channel_Input[8]=0 +h_Forced_Conv_Housing_Active_Fin_Channel_Adjust[0]=1 +h_Forced_Conv_Housing_Active_Fin_Channel_Adjust[1]=1 +h_Forced_Conv_Housing_Active_Fin_Channel_Adjust[2]=1 +h_Forced_Conv_Housing_Active_Fin_Channel_Adjust[3]=1 +h_Forced_Conv_Housing_Active_Fin_Channel_Adjust[4]=1 +h_Forced_Conv_Housing_Active_Fin_Channel_Adjust[5]=1 +h_Forced_Conv_Housing_Active_Fin_Channel_Adjust[6]=1 +h_Forced_Conv_Housing_Active_Fin_Channel_Adjust[7]=1 +h_Forced_Conv_Housing_Active_Fin_Channel_Adjust[8]=1 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Channel[0]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Channel[1]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Channel[2]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Channel[3]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Channel[4]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Channel[5]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Channel[6]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Channel[7]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Fin_Channel[8]=0 +Forced_Conv_Notes_Housing_Active_Fin_Channel[0]= +Forced_Conv_Notes_Housing_Active_Fin_Channel[1]= +Forced_Conv_Notes_Housing_Active_Fin_Channel[2]= +Forced_Conv_Notes_Housing_Active_Fin_Channel[3]= +Forced_Conv_Notes_Housing_Active_Fin_Channel[4]= +Forced_Conv_Notes_Housing_Active_Fin_Channel[5]= +Forced_Conv_Notes_Housing_Active_Fin_Channel[6]= +Forced_Conv_Notes_Housing_Active_Fin_Channel[7]= +Forced_Conv_Notes_Housing_Active_Fin_Channel[8]= +h_Forced_Conv_Housing_Active_Corner_Cutout_Input[0]=0 +h_Forced_Conv_Housing_Active_Corner_Cutout_Input[1]=0 +h_Forced_Conv_Housing_Active_Corner_Cutout_Input[2]=0 +h_Forced_Conv_Housing_Active_Corner_Cutout_Input[3]=0 +h_Forced_Conv_Housing_Active_Corner_Cutout_Input[4]=0 +h_Forced_Conv_Housing_Active_Corner_Cutout_Input[5]=0 +h_Forced_Conv_Housing_Active_Corner_Cutout_Input[6]=0 +h_Forced_Conv_Housing_Active_Corner_Cutout_Input[7]=0 +h_Forced_Conv_Housing_Active_Corner_Cutout_Input[8]=0 +h_Forced_Conv_Housing_Active_Corner_Cutout_Adjust[0]=1 +h_Forced_Conv_Housing_Active_Corner_Cutout_Adjust[1]=1 +h_Forced_Conv_Housing_Active_Corner_Cutout_Adjust[2]=1 +h_Forced_Conv_Housing_Active_Corner_Cutout_Adjust[3]=1 +h_Forced_Conv_Housing_Active_Corner_Cutout_Adjust[4]=1 +h_Forced_Conv_Housing_Active_Corner_Cutout_Adjust[5]=1 +h_Forced_Conv_Housing_Active_Corner_Cutout_Adjust[6]=1 +h_Forced_Conv_Housing_Active_Corner_Cutout_Adjust[7]=1 +h_Forced_Conv_Housing_Active_Corner_Cutout_Adjust[8]=1 +Calc_Input_h_Forced_Conv_Housing_Active_Corner_Cutout[0]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Corner_Cutout[1]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Corner_Cutout[2]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Corner_Cutout[3]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Corner_Cutout[4]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Corner_Cutout[5]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Corner_Cutout[6]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Corner_Cutout[7]=0 +Calc_Input_h_Forced_Conv_Housing_Active_Corner_Cutout[8]=0 +Velocity_Forced_Conv_Housing_Active_Corner_Cutout_Multiplier[0]=0,316736 +Velocity_Forced_Conv_Housing_Active_Corner_Cutout_Multiplier[1]=0 +Velocity_Forced_Conv_Housing_Active_Corner_Cutout_Multiplier[2]=0 +Velocity_Forced_Conv_Housing_Active_Corner_Cutout_Multiplier[3]=0 +Velocity_Forced_Conv_Housing_Active_Corner_Cutout_Multiplier[4]=0 +Velocity_Forced_Conv_Housing_Active_Corner_Cutout_Multiplier[5]=0 +Velocity_Forced_Conv_Housing_Active_Corner_Cutout_Multiplier[6]=0 +Velocity_Forced_Conv_Housing_Active_Corner_Cutout_Multiplier[7]=0 +Velocity_Forced_Conv_Housing_Active_Corner_Cutout_Multiplier[8]=0 +Forced_Conv_Notes_Housing_Active_Corner_Cutout[0]= +Forced_Conv_Notes_Housing_Active_Corner_Cutout[1]= +Forced_Conv_Notes_Housing_Active_Corner_Cutout[2]= +Forced_Conv_Notes_Housing_Active_Corner_Cutout[3]= +Forced_Conv_Notes_Housing_Active_Corner_Cutout[4]= +Forced_Conv_Notes_Housing_Active_Corner_Cutout[5]= +Forced_Conv_Notes_Housing_Active_Corner_Cutout[6]= +Forced_Conv_Notes_Housing_Active_Corner_Cutout[7]= +Forced_Conv_Notes_Housing_Active_Corner_Cutout[8]= +h_Forced_Conv_Housing_Front_No_Fins_Input=30 +Input_Value_H[Fc]_Housing_[F]_-_No_Fins=30 +h_Forced_Conv_Housing_Front_Fin_Base_Input=30 +Input_Value_H[Fc]_Housing_[F]_-_Fin_Base=30 +h_Forced_Conv_Housing_Front_Fin_Sides_Input=30 +Input_Value_H[Fc]_Housing_[F]_-_Fin_Sides=30 +h_Forced_Conv_Housing_Front_Fin_Tips_Input=30 +Input_Value_H[Fc]_Housing_[F]_-_Fin_Tips=30 +h_Forced_Conv_Housing_Front_Fin_Channel_Input=30 +Input_Value_H[Fc]_Housing_[F]_-_Fin_Channel=30 +h_Forced_Conv_Housing_Front_Corner_Cutout_Input=30 +Input_Value_H[Fc]_Housing_[F]_-_Corner_Cutout=30 +h_Forced_Conv_Housing_Rear_No_Fins_Input=30 +Input_Value_H[Fc]_Housing_[R]_-_No_Fins=30 +h_Forced_Conv_Housing_Rear_Fin_Base_Input=30 +Input_Value_H[Fc]_Housing_[R]_-_Fin_Base=30 +h_Forced_Conv_Housing_Rear_Fin_Sides_Input=30 +Input_Value_H[Fc]_Housing_[R]_-_Fin_Sides=30 +h_Forced_Conv_Housing_Rear_Fin_Tips_Input=30 +Input_Value_H[Fc]_Housing_[R]_-_Fin_Tips=30 +h_Forced_Conv_Housing_Rear_Fin_Channel_Input=30 +Input_Value_H[Fc]_Housing_[R]_-_Fin_Channel=30 +h_Forced_Conv_Housing_Rear_Corner_Cutout_Input=30 +Input_Value_H[Fc]_Housing_[R]_-_Corner_Cutout=30 +h_Forced_Conv_Endcap_Front_Radial_Input=30 +Input_Value_H[Fc]_Endcap_[F]_-_Radial=30 +h_Forced_Conv_Endcap_Front_Axial_Input=30 +Input_Value_H[Fc]_Endcap_[F]_-_Axial=30 +h_Forced_Conv_Endcap_Rear_Radial_Input=30 +Input_Value_H[Fc]_Endcap_[R]_-_Radial=30 +h_Forced_Conv_Endcap_Rear_Axial_Input=30 +Input_Value_H[Fc]_Endcap_[R]_-_Axial=30 +h_Forced_Conv_Plate_Input=30 +Input_Value_H[Fc]_Flange_Plate=30 +h_Forced_Conv_Axle_Plate_F_Input=30 +Input_Value_H[Fc]_Axle_Plate_[F]=30 +h_Forced_Conv_Axle_Plate_R_Input=30 +Input_Value_H[Fc]_Axle_Plate_[R]=30 +h_Forced_Conv_Base_Input=30 +Input_Value_H[Fc]_Base_Plate=30 +h_Forced_Conv_EncCase_Radial_Input=30 +Input_Value_H[Fc]_Encoder_Case_-_Radial=30 +h_Forced_Conv_EncCase_Axial_Input=30 +Input_Value_H[Fc]_Encoder_Case_-_Axial=30 + +[Interface_Gaps] +FeedbackType=0 +Gap_Plate_RotorLam_F=0 +Gap_Plate_RotorLam_R=0 +Gap_Plate_Magnet_F=0 +Gap_Plate_Magnet_R=0 +Gap_Magnet_Magnet=0,005 +Gap_StatorClampPlate_StatorLam_F=0,005 +Gap_StatorClampPlate_Housing_F=0,005 +Gap_StatorClampPlate_StatorLam_R=0,005 +Gap_StatorClampPlate_Housing_R=0,005 +ShaftFan_Gap_R=0,005 +Stator_Lam_-_Housing=0,03 +Stator_Lam_-_Axle=0,03 +HOUSING_-_OHANG_[F]=0 +HOUSING_-_OHANG_[R]=0 +HOUSING_-_ENDCAP_[F]=0,005 +HOUSING_-_ENDCAP_[R]=0,005 +ENDCAP_-_PLATE=0,005 +Axle_-_Plate_[F]=0,005 +Axlep_-_Plate_[F]=0,005 +Axle_-_Plate_[R]=0,005 +Axlep_-_Plate_[R]=0,005 +Endcap_-_Encoder=0,005 +Housing_-_Feet=0,005 +Feet_-_Base=0,005 +Banding_-_Rotor=0,005 +Sleeve_-_Stator=0,005 +Magnet_-_Rotor_Lam=0,005 +Rotor_Lam_-_Shaft=0,005 +Shaft_-_Rotor_Cup=0,005 +Bearing_-_Endcap_[F]=0,0073 +Bearing_-_Endcap_[R]=0,0073 +Bearing_-_Shaft_[F]=0,0112 +Bearing_-_Shaft_[R]=0,0112 +Bearing_-_Axle_[F]=0,0112 +Bearing_-_Axle_[R]=0,0112 +Bearing_Effective_Gap_[F]=0,4 +Bearing_Effective_Gap_[R]=0,4 +Endcap_-_Axle_[F]=0,005 +Shaft_-_Enc_Shaft=0,005 +Cage_-_Rotor_Lam=0,01 +Comm_-_Shaft=0,005 +Comm_-_Brush=0,005 +Brush_Holder_-_Brush=0,1 +Brush_Holder_-_Housing=0,005 +Sleeve_-_Rotor=0,005 +Banding_-_Stator=0,005 +Magnet_-_Stator=0,005 +Rotor_-_Housing=0,005 +Housing_-_Cover=0,005 +Gap_Stator_H_Comment=Lamination-Metal - Average surface Contact +Gap_Stator_Axle_Comment=Lamination-Metal - Average surface Contact +Gap_H_HOH_Front_Comment=No Gap - Perfect surface Contact +Gap_H_HOH_Rear_Comment=No Gap - Perfect surface Contact +Gap_H_EndCap_Front_Comment=Metal-Metal - Average surface Contact +Gap_H_EndCap_Rear_Comment=Metal-Metal - Average surface Contact +Gap_EndCap_Plate_Comment=Metal-Metal - Average surface Contact +Gap_Axle_Plate_F_Comment=Metal-Metal - Average surface Contact +Gap_Axle_Plate_R_Comment=Metal-Metal - Average surface Contact +Gap_EndCap_EncCase_Comment=Metal-Metal - Average surface Contact +Gap_H_Feet_Comment=Metal-Metal - Average surface Contact +Gap_Feet_Base_Comment=Metal-Metal - Average surface Contact +Gap_Banding_Rotor_Comment=Metal-Metal - Average surface Contact +Gap_Sleeve_Stator_Comment=Metal-Metal - Average surface Contact +Gap_Magnet_Rotor_Comment=Metal-Metal - Average surface Contact +Gap_Rotor_Shaft_Comment=Metal-Metal - Average surface Contact +Gap_Shaft_Cup_Comment=Metal-Metal - Average surface Contact +Gap_Bearing_EndCap_Front_Comment=Stainless-Aluminium - Medium surface Contact +Gap_Bearing_EndCap_Rear_Comment=Stainless-Aluminium - Medium surface Contact +Gap_Bearing_Shaft_Front_Comment=Stainless-Stainless - Medium surface Contact +Gap_Bearing_Shaft_Rear_Comment=Stainless-Stainless - Medium surface Contact +Gap_Bearing_Axle_Front_Comment=Stainless-Stainless - Medium surface Contact +Gap_Bearing_Axle_Rear_Comment=Stainless-Stainless - Medium surface Contact +Bearing_Effective_Gap_Front_Comment=High Effective Gap [Torino Testing] +Bearing_Effective_Gap_Rear_Comment=High Effective Gap [Torino Testing] +Gap_Endcap_Axle_Front_Comment=Metal-Metal - Average surface Contact +Gap_Shaft_Enc_Comment=Metal-Metal - Average surface Contact +Gap_Cage_Rotor_Comment= +Gap_Comm_Shaft_Comment=Metal-Metal - Average surface Contact +Gap_Comm_Brush_Comment=Metal-Metal - Average surface Contact +Gap_Brush_Holder_Brush_Comment= +Gap_Brush_Holder_Housing_Comment=Metal-Metal - Average surface Contact +Gap_Sleeve_Rotor_Comment=Metal-Metal - Average surface Contact +Gap_Banding_Stator_Comment=Metal-Metal - Average surface Contact +Gap_Magnet_Stator_Comment=Metal-Metal - Average surface Contact +Gap_Rotor_Housing_Comment=Metal-Metal - Average surface Contact +Gap_Housing_Cover_Comment=Metal-Metal - Average surface Contact +Gap_Bearing_Mount_Comment=Stainless-Aluminium - Medium surface Contact +Gap_StatorPlateMount_F_Comment= +Gap_StatorPlateMount_R_Comment= +Front_Potting_Housing_Gap_Comment=No Gap - Perfect surface Contact +Rear_Potting_Housing_Gap_Comment=No Gap - Perfect surface Contact +Front_Potting_Axle_Gap_Comment=No Gap - Perfect surface Contact +Rear_Potting_Axle_Gap_Comment=No Gap - Perfect surface Contact +Front_Potting_Endcap_Gap_Comment=No Gap - Perfect surface Contact +Rear_Potting_Endcap_Gap_Comment=No Gap - Perfect surface Contact +Comment_Plate_RotorLam_F=No Gap - Perfect surface Contact +Comment_Plate_RotorLam_R=No Gap - Perfect surface Contact +Comment_Plate_Magnet_F=No Gap - Perfect surface Contact +Comment_Plate_Magnet_R=No Gap - Perfect surface Contact +Comment_Magnet_Magnet=Metal-Metal - Average surface Contact +Comment_Gap_StatorClampPlate_StatorLam_F=Metal-Metal - Average surface Contact +Comment_StatorClampPlate_Housing_F=Metal-Metal - Average surface Contact +Comment_Gap_StatorClampPlate_StatorLam_R=Metal-Metal - Average surface Contact +Comment_Gap_StatorClampPlate_Housing_R=Metal-Metal - Average surface Contact +ShaftFan_Gap_Comments_R=Metal-Metal - Average surface Contact +Notes_Plate_RotorLam_F= +Notes_Plate_RotorLam_R= +Notes_Plate_Magnet_F= +Notes_Plate_Magnet_R= +Notes_Magnet_Magnet= +Notes_Gap_StatorClampPlate_StatorLam_F= +Notes_StatorClampPlate_Housing_F= +Notes_Gap_StatorClampPlate_StatorLam_R= +Notes_Gap_StatorClampPlate_Housing_R= +ShaftFan_Gap_Notes_R= +Notes_Front_Potting_Endcap_Gap= +Notes_Rear_Potting_Endcap_Gap= +Notes_Front_Potting_Housing_Gap= +Rear_Potting_Housing_Gap_Notes= +Notes_Front_Potting_Axle_Gap= +Notes_Rear_Potting_Axle_Gap= +Notes_(Stator_Lam_-_Housing)= +Notes_(Stator_Lam_-_Axle)= +Notes_(Housing_-_OHang_[F])= +Notes_(Housing_-_OHang_[R])= +Notes_(Housing_-_Endcap_[F])= +Notes_(Housing_-_Endcap_[R])= +Notes_(Endcap_-_Plate)= +Notes_(Axle_-_Plate_[F])= +Notes_(Axle_-_Plate_[R])= +Notes_(Endcap_-_Encoder)= +Notes_(Housing_-_Feet)= +Notes_(Feet_-_Base)= +Notes_(Banding_-_Rotor)= +Notes_(Sleeve_-_Stator)= +Notes_(Magnet_-_Rotor_Lam)= +Notes_(Rotor_Lam_-_Shaft)= +Notes_(Shaft_-_Rotor_Cup)= +Notes_(Bearing_-_Endcap_[F])= +Notes_(Bearing_-_Endcap_[R])= +Notes_(Bearing_-_Shaft_[F])= +Notes_(Bearing_-_Shaft_[R])= +Notes_(Bearing_-_Axle_[F])= +Notes_(Bearing_-_Axle_[R])= +Notes_Bearing_Effective_Gap_[F]= +Notes_Bearing_Effective_Gap_[R]= +Notes_(Endcap_-_Axle_[F])= +Notes_(Shaft_-_Enc_Shaft)= +Notes_(Cage_-_Rotor_Lam)= +Notes_(Comm_-_Shaft)= +Notes_(Comm_-_Brush)= +Notes_(Brush_Holder_-_Brush)= +Notes_(Brush_Holder_-_Housing)= +Notes_(Sleeve_-_Rotor)= +Notes_(Banding_-_Stator)= +Notes_(Magnet_-_Stator)= +Notes_(Rotor_-_Housing)= +Notes_(Housing_-_Cover)= +Gap_Material_H_HOH_Front=Air (Motor-CAD model) +Gap_Material_H_HOH_Rear=Air (Motor-CAD model) +Gap_Material_H_EndCap_Front=Air (Motor-CAD model) +Gap_Material_H_EndCap_Rear=Air (Motor-CAD model) +Gap_Material_EndCap_Plate=Air (Motor-CAD model) +Gap_Material_Axle_Plate_F=Air (Motor-CAD model) +Gap_Material_Axle_Plate_R=Air (Motor-CAD model) +Gap_Material_EndCap_EncCase=Air (Motor-CAD model) +Gap_Material_H_Feet=Air (Motor-CAD model) +Gap_Material_Feet_Base=Air (Motor-CAD model) +Gap_Material_Banding_Rotor=Air (Motor-CAD model) +Gap_Material_Sleeve_Stator=Air (Motor-CAD model) +Gap_Material_Magnet_Rotor=Air (Motor-CAD model) +Gap_Material_Magnet_Magnet=Air (Motor-CAD model) +Gap_Material_Shaft_Cup=Air (Motor-CAD model) +Gap_Material_Endcap_Axle_Front=Air (Motor-CAD model) +Gap_Material_Shaft_Enc=Air (Motor-CAD model) +Gap_Material_Cage_Rotor=Air (Motor-CAD model) +Gap_Material_Comm_Shaft=Air (Motor-CAD model) +Gap_Material_Comm_Brush=Air (Motor-CAD model) +Gap_Material_Brush_Holder_Brush=Air (Motor-CAD model) +Gap_Material_Brush_Holder_Housing=Air (Motor-CAD model) +Gap_Material_Sleeve_Rotor=Air (Motor-CAD model) +Gap_Material_Banding_Stator=Air (Motor-CAD model) +Gap_Material_Magnet_Stator=Air (Motor-CAD model) +Gap_Material_Rotor_Housing=Air (Motor-CAD model) +Gap_Material_Housing_Cover=Air (Motor-CAD model) +Gap_Material_Bearing_EndCap_Front=Air (Motor-CAD model) +Gap_Material_Bearing_EndCap_Rear=Air (Motor-CAD model) +Gap_Material_Bearing_Shaft_Front=Air (Motor-CAD model) +Gap_Material_Bearing_Shaft_Rear=Air (Motor-CAD model) +Gap_Material_Bearing_Axle_Front=Air (Motor-CAD model) +Gap_Material_Bearing_Axle_Rear=Air (Motor-CAD model) +Gap_Material_Front_Potting_Housing=Air (Motor-CAD model) +Gap_Material_Rear_Potting_Housing=Air (Motor-CAD model) +Gap_Material_Front_Potting_Endcap=Air (Motor-CAD model) +Gap_Material_Rear_Potting_Endcap=Air (Motor-CAD model) +Gap_Material_Front_Potting_Axle=Air (Motor-CAD model) +Gap_Material_Rear_Potting_Axle=Air (Motor-CAD model) +Gap_Material_StatorPlateMount_F=Air (Motor-CAD model) +Gap_Material_StatorPlateMount_R=Air (Motor-CAD model) +Gap_Material_Plate_RotorLam_F=Air (Motor-CAD model) +Gap_Material_Plate_RotorLam_R=Air (Motor-CAD model) +Gap_Material_Plate_Magnet_F=Air (Motor-CAD model) +Gap_Material_Plate_Magnet_R=Air (Motor-CAD model) +Gap_Material_Bearing_Mount=Air (Motor-CAD model) +Gap_Material_StatorClampPlate_StatorLam_F=Air (Motor-CAD model) +Gap_Material_StatorClampPlate_StatorLam_R=Air (Motor-CAD model) +Gap_Material_StatorClampPlate_Housing_F=Air (Motor-CAD model) +Gap_Material_StatorClampPlate_Housing_R=Air (Motor-CAD model) +Gap_Material_ShaftFan_R=Air (Motor-CAD model) +Gap_Material_Stator_H=Air (Motor-CAD model) +Gap_Material_Stator_Axle=Air (Motor-CAD model) +Gap_Material_Rotor_Shaft=Air (Motor-CAD model) +Gap_Material_Bearing_Effective_Front=Air (Motor-CAD model) +Gap_Material_Bearing_Effective_Rear=Air (Motor-CAD model) +Gap_MaterialConductivity_Magnet_Rotor=0,03171454723964 +Gap_Bearing_Mount=0 +Notes_Gap_Bearing_Mount= +Notes_Gap_Plate_Mount_F= +Notes_Gap_Plate_Mount_R= +EWdg_Cavity=Not_Potted + +[Ratios] +GeometryParameterisation=0 +Ratio_Bore=0,636296296296296 +Ratio_SlotDepth_ParallelTooth=0,879345603271984 +Ratio_SlotDepth_ParallelSlot=0,909198414132715 +Ratio_SlotWidth=0,47462399508981 +Ratio_SlotOpening_ParallelSlot=0,428571428571429 +Ratio_SlotOpening_ParallelTooth=0,418835752466676 +Ratio_ToothTip=0,6 +Ratio_ToothWidth=0,529542113392518 +Ratio_SleeveThickness=0 +Ratio_RotorD=0,614074074074074 +Ratio_BandingThickness=0 +Ratio_ShaftD=0,493827160493827 +Ratio_ShaftHole=0 +Ratio_MagnetThickness=0,6 +Ratio_MagnetArc=0,716666666666667 +Ratio_MagnetReduction=0 +Ratio_BarT_Depth=0,6 +Ratio_BarT_Opening_Depth=0,6 +Ratio_BarT_Opening_Depth_Round=0,6 +Ratio_Rotor_Tooth_Width_T=0,6 +Ratio_BarT_Width_Round=0,6 +Ratio_BarT_Width_Rectangular=0,6 +Ratio_BarT_Opening_ParallelTooth=0,6 +Ratio_BarT_Opening_Round=0,6 +Ratio_BarT_Opening_Rectangular=0,6 +Ratio_BarT_Opening_PearCircular=0,6 +Ratio_BarT_Corner_Radius_Pear=0,6 +Ratio_BarT_Corner_Radius_ParallelTooth=0,6 +Ratio_BarT_Corner_Radius_PearCircular=0,6 +Ratio_BarT_Opening_Radius=0,6 +Ratio_BarT_Opening_Radius_PearCircular=0,6 +Ratio_BarT_Tip_Angle=0,6 +Ratio_BarB_Tip_Angle=0,6 +Ratio_BarB_Depth=0,6 +Ratio_BarB_Opening_Depth=0,6 +Ratio_BarB_Opening_Depth_Round=0,6 +Ratio_Rotor_Tooth_Width_B=0,6 +Ratio_BarB_Width_Round=0,6 +Ratio_BarB_Width_Rectangular=0,6 +Ratio_BarB_Opening_ParallelTooth=0,6 +Ratio_BarB_Opening_Round=0,6 +Ratio_BarB_Opening_Rectangular=0,6 +Ratio_BarB_Opening_PearCircular=0,6 +Ratio_BarB_Corner_Radius_Pear=0,6 +Ratio_BarB_Corner_Radius_ParallelTooth=0,6 +Ratio_BarB_Corner_Radius_PearCircular=0,6 +Ratio_BarB_Opening_Radius=0,6 +Ratio_BarB_Opening_Radius_PearCircular=0,6 +Ratio_SyncPoleSurfaceRadius=0,6 +Ratio_SyncPoleSurfaceOffset=0,6 +Ratio_PoleTipRadialDepth=0,6 +Ratio_PoleTipAngle=0,6 +Ratio_SyncPoleTipDepth=0,6 +Ratio_SyncRotorSlot_Depth=0,6 +Ratio_SyncRotorSlot_Width=0,6 +Ratio_SyncPoleArc=0,6 +Ratio_SyncOuterPoleArc=0,6 +Ratio_SyncPoleWidth=0,6 +Ratio_SyncPoleTipWidth=0,6 +Ratio_SyncPoleDepth=0,6 +Ratio_SyncRotorCoilDepth=0,6 +Ratio_SyncRotorCoilWidth=0,6 +Ratio_WdgSeparatorLower=0,6 +Ratio_WdgSeparatorUpper=0,6 +Ratio_WdgSeparatorTotal=0,6 +Ratio_Sync_L_Separator_Width=0,6 +Ratio_Sync_L_Separator_Embed=0,6 +Ratio_PoleTipRadius=0,6 +Ratio_PoleBaseRadius=0,6 +Ratio_PoleSideAngle=0,6 +Ratio_DamperBar_Depth=0,6 +Ratio_DamperBar_Pitch=0,6 +Ratio_DamperBar_Opening=0,6 +RatioArray_MagnetBarWidth[0]=0,6 +RatioArray_MagnetVWidth[0]=0,6 +RatioArray_MagnetShift[0]=0,6 +RatioArray_WebLength[0]=0,6 +RatioArray_VWebBarWidth[0]=0,6 +RatioArray_WebThickness[0]=0,6 +RatioArray_PoleArc[0]=0,6 +RatioArray_UMagnetOuterOffset[0]=0,6 +RatioArray_UMagnetOuterOffset[1]=0,6 +RatioArray_UMagnetInnerOffset[0]=0,6 +RatioArray_UMagnetInnerOffset[1]=0,6 +RatioArray_UMagnetOuterLength[0]=0,6 +RatioArray_UMagnetOuterLength[1]=0,6 +RatioArray_UMagnetInnerLength[0]=0,6 +RatioArray_UMagnetInnerLength[1]=0,6 +RatioArray_UMagnetDiameter[0]=0,6 +RatioArray_UMagnetDiameter[1]=0,6 +RatioArray_UMagnetWebThickness[0]=0,6 +RatioArray_UMagnetWebThickness[1]=0,6 + +[Proximity_Loss] +HybridModel_PolynomialPower=2,5 +HybridModel_TotalLines=30 +HybridModel_FEAFluxLinePoints=10 +HybridAdjustmentFactor_ACLosses=1 + +[Losses_At_RPM_Ref] +Armature_Copper_Loss_@Ref_Speed=9,24667872620577 +Stator_Copper_Loss_@Ref_Speed=9,24667872620577 +Armature_Copper_Freq_Component_Loss_@Ref_Speed=0 +Stator_Copper_Freq_Component_Loss_@Ref_Speed=0 +Main_Winding_Copper_Loss_@Ref_Speed=60 +Aux_Winding_Copper_Loss_@Ref_Speed=60 +Stator_Iron_Loss_@Ref_Speed_[Back_Iron]=4,04843253760101 +Stator_Iron_Loss_@Ref_Speed=4,04843253760101 +Stator_Iron_Loss_@Ref_Speed_[Tooth]=6,43017984747492 +Stator_Iron_Loss_@Ref_Speed_[Tooth_Tip]=0 +Windage_Loss_@Ref_Speed=0 +Windage_Loss_(Ext_Fan)_@Ref_Speed=0 +Friction_Loss_[F]_@Ref_Speed=0 +Friction_Loss_[R]_@Ref_Speed=0 +Magnet_Iron_Loss_@Ref_Speed=0,0260238915220077 +Magnet_Banding_Loss_@Ref_Speed=0 +Stator_Bore_Sleeve_Loss_@Ref_Speed=0 +Rotor_Iron_Loss_@Ref_Speed_[Embedded_Magnet_Pole]=0 +Encoder_Loss_@Ref_Speed=1 +Rotor_Iron_Loss_@Ref_Speed_[Back_Iron]=3,08640562195384 +Rotor_Iron_Loss_@Ref_Speed_[Tooth]=0 +Rotor_Copper_Loss_@Ref_Speed=0 +Stator_Iron_Stray_Load_Loss_@Ref_Speed=0 +Rotor_Iron_Stray_Load_Loss_@Ref_Speed=0 +Stator_Copper_Stray_Load_Loss_@Ref_Speed=0 +Rotor_Copper_Stray_Load_Loss_@Ref_Speed=0 +Brush_Friction_Loss_@Ref_Speed=5 +Brush_VI_Loss_@Ref_Speed=0 +RotorWindingTemperatureAtWhichPcuInput=20 +RotorCopperTempCoefResistivity=0,00393 +StatorCopperTempCoefResistivity=0,00393 +StatorCopperFreqCompTempCoefResistivity=0,00393 +StatorCopperFreqCompTempExponent=0,5 +StatorIronStrayLoadTempCoefResistivity=0 +RotorIronStrayLoadTempCoefResistivity=0 +StatorCopperStrayLoadTempCoefResistivity=0 +RotorCopperStrayLoadTempCoefResistivity=0 +Single_Value_Of_Speed_Ref=False +Losses_for_single_reference_speed=False + +[Loss_RPM_Ref] +RPM_ref_1ph_Main_Armature_Copper_Loss=3000 +Ref_Speed_-_Main_Winding_Copper_Loss=3000 +RPM_ref_1ph_Aux_Armature_Copper_Loss=3000 +Ref_Speed_-_Aux_Winding_Copper_Loss=3000 +RPM_ref_Armature_Copper_Loss=1000 +Ref_Speed_-_Armature_Copper_Loss=1000 +RPM_ref_Armature_Copper_Freq_Comp_Loss=1000 +Ref_Speed_-_Stator_Copper_Freq_Component_Loss=1000 +Ref_Speed_-_Rotor_Iron_Loss_[Back_Iron]=1000 +RPM_ref_RotorIronLoss_EmbeddedMagnetPole=1000 +Ref_Speed_-_Rotor_Iron_Loss_[Tooth]=1000 +Ref_Speed_-_Rotor_Copper_Loss=1000 +Ref_Speed_-_Stator_Iron_Loss_[Back_Iron]=1000 +Ref_Speed_-_Stator_Iron_Loss_[Tooth]=1000 +Ref_Speed_-_Stator_Iron_Loss_[Tooth_Tip]=1000 +Ref_Speed_-_Windage_Loss=3000 +Ref_Speed_-_Windage_Loss_(Ext_Fan)=3000 +Ref_Speed_-_Friction_Loss_[F]=3000 +Ref_Speed_-_Friction_Loss_[R]=3000 +Ref_Speed_-_Magnet_Iron_Loss=1000 +Ref_Speed_-_Magnet_Banding_Iron_Loss=1000 +Ref_Speed_-_Stator_Bore_Sleeve_Iron_Loss=1000 +Ref_Speed_-_Encoder_Loss=3000 +Ref_Speed_-_Stator_iron_stray_load_Loss=3000 +Ref_Speed_-_Rotor_iron_stray_load_Loss=3000 +Ref_Speed_-_Stator_copper_stray_load_Loss=3000 +Ref_Speed_-_Rotor_copper_stray_load_Loss=3000 +Ref_Speed_-_Brush_Friction_Loss=3000 +Ref_Speed_-_Brush_VI_Loss=3000 + +[Loss_RPM_Coeff] +RPM_Coef_1ph_Main_Armature_Copper_Loss=0 +Speed_Coeff_-_Main_Winding_Copper_Loss=0 +RPM_Coef_1ph_Aux_Armature_Copper_Loss=0 +Speed_Coeff_-_Aux_Winding_Copper_Loss=0 +RPM_Coef_Armature_Copper_Loss=0 +Speed_Coeff_-_Stator_Copper_Loss=0 +RPM_Coef_Armature_Copper_Freq_Comp_Loss=2 +Speed_Coeff_-_Stator_Copper_Freq_Component_Loss=2 +Speed_Coeff_-_Rotor_Iron_Loss_[Back_iron]=0 +Speed_Coeff_-_Rotor_Iron_Loss_[Embedded_Magnet_Pole]=0 +Speed_Coeff_-_Rotor_Iron_Loss_[Tooth]=0 +Speed_Coeff_-_Rotor_Copper_Loss=1,5 +Speed_Coeff_-_Stator_Iron_Loss_[Back_Iron]=1,5 +Speed_Coeff_-_Stator_Iron_Loss_[Tooth]=1,5 +Speed_Coeff_-_Stator_Iron_Loss_[Tooth_Tip]=1,5 +Speed_Coeff_-_Windage_Loss=3 +Speed_Coeff_-_Windage_Loss_(Ext_Fan)=3 +Speed_Coeff_-_Friction_Loss_[F]=1 +Speed_Coeff_-_Friction_Loss_[R]=1 +Speed_Coeff_-_Magnet_Iron_Loss=0 +Speed_Coeff_-_Magnet_Banding_Iron_Loss=0 +Speed_Coeff_-_Stator_Bore_Sleeve_Iron_Loss=1,5 +Speed_Coeff_-_Encoder_Loss=1 +Speed_Coeff_-_Stator_iron_stray_load_Loss=1 +Speed_Coeff_-_Rotor_iron_stray_load_Loss=1 +Speed_Coeff_-_Stator_copper_stray_load_Loss=1 +Speed_Coeff_-_Rotor_copper_stray_load_Loss=1 +Speed_Coeff_-_Brush_Friction_Loss=1 +Speed_Coeff_-_Brush_VI_Loss=1 + +[Copper_Loss_Distribution] +NumberSlotsPhaseBelt=3 + +[Loss_Distribution] +Normal_Loss_Distribution[0]=0,333333333333333 +Normal_Loss_Distribution[1]=0,333333333333333 +Normal_Loss_Distribution[2]=0,333333333333333 +Fault_Loss_Distribution[0]=0,333333333333333 +Fault_Loss_Distribution[1]=0,333333333333333 +Fault_Loss_Distribution[2]=0,333333333333333 +Stall_Loss_Distribution[0]=0,333333333333333 +Stall_Loss_Distribution[1]=0,333333333333333 +Stall_Loss_Distribution[2]=0,333333333333333 +Aux_Loss_Distribution[0]=0,333333333333333 +Aux_Loss_Distribution[1]=0,333333333333333 +Aux_Loss_Distribution[2]=0,333333333333333 + +[CycleParameters_MotorLAB] +WheelInertia=0 +DCExtDataType_Lab=0 +DCExtDataType_MotorLAB=0 +DrivCycle_MotorLAB=0 +Duty_Cycle_Vehicle_MassMethod=1 +Mass_MotorLAB=1360 +A_f_MotorLAB=1,746 +R_w_MotorLAB=0,3 +K_r_MotorLAB=0,0054 +C_d_MotorLAB=0,26 +M_o_MotorLAB=1,04 +rho_MotorLAB=1,225 +N_d_MotorLAB=4,113 +T_cont_MotorLAB=1 +B_cont_MotorLAB=1 +TorqueCapTrue_MotorLAB=False +SpeedCapTrue_MotorLAB=False +TorqueCap_MotorLAB=500 +SpeedCap_MotorLAB=20000 +DutyCycleType_Lab=0 +Duty_Cycle_SyncCurrentLimit_Method_Lab=1 +DriveCycleCalcComplete_MotorLAB=False +IncludeMotorInertiaInVehicleModel=True +WheelInertiaTorqueMethod=1 +DutyCycleCalcStatus_MotorLAB= + +[Rotor_Winding] +FieldConductorsPerSlot=100 +Rotor_Conductors_Slot=100 +Field_EWdg_Fill=0,3 +Rotor_EWdg_Fill=0,3 +Field_Slot_Fill=0,4 +Rotor_Slot_Fill=0,4 +Field_Impreg_Goodness_Active=0,8 +Rotor_Impreg_Goodness_[Active]=0,8 +Field_Impreg_Goodness_EWdg=0,8 +Rotor_Impreg_Goodness_[EWdg]=0,8 +Field_Impreg_Goodness_Liner_Lam=0,8 +Rotor_Impreg_Goodness_[Liner-Lam]=0,8 +Field_Gap_Liner_Lam=0 +Rotor_Gap_Liner_Lam=0 +Field_WindingType=1 +Field_Winding_Definition=2 +Field_Wire_Diameter=0,714 +ROTOR_WIRE_DIAMETER=0,714 +Field_Copper_Diameter=0,65 +ROTOR_COPPER_DIAMETER=0,65 +Field_Liner_Thickness=0 +ROTOR_LINER_THICKNESS=0 +Field_Copper_Depth_Perc=100 +Rotor_Copper_Depth_[%]=100 +Field_Coil_Divider=2 +Rotor_Coil_Divider_Width=2 +FieldCoilDivider_Validation=1 +Wire_Type_Rotor=0 +AWG_WireGaugeIndex_Rotor=44 +Rotor_Last_AWG_Wire_Table_Entry_Number=44 +SWG_WireGaugeIndex_Rotor=48 +Rotor_Last_SWG_Wire_Table_Entry_Number=48 +Metric_WireGaugeIndex_Rotor=20 +Rotor_Last_Metric_Wire_Table_Entry_Number=20 +Rotor_Wire_Type=AWG_Table +Rotor_Winding_Type=Solid_Divider +Rotor_Wdg_Definition=Copper_Slot_Fill +Rotor_EWdg_Definition=EWdg_MLT + +[Winding] +FormWoundWindingDefinitionCalc=1 +EWdgEffectiveKCalc=1 +Kt_LitzBundle_Radial=0 +Kt_LitzBundle_Tangential=0 +Kt_LitzBundle_Axial=0 +RequestedGrossSlotFillFactor=0,221825181903331 +RequestedNetSlotFillFactor=0,4 +RequestedLitzFillFactor=0,85 +WindingView=1 +ConductiveWedge=0 +RequestedGrossSlotFillFactorField=0,4 +RequestedGrossSlotFillFactorRotor=0,4 +FieldConductorSeparation=0,1 +RotorConductorSeparation=0,1 +FieldConductorPlacement=0 +RotorConductorPlacement=0 +FormWoundVerticalGap=0,1 +FormWoundHorizontalGap=0,1 +FieldWindingView=1 +RotorWindingView=1 +SyncRotorCuboid_X=0 +SyncRotorCuboid_Y=0 +RotorInsSlotBaseThickness=0 +RotorInsToothSideThickness=0 +FieldConductorsSlotBase=0,1 +RotorConductorsSlotBase=0,1 +FieldConductorsSlotTooth=0,1 +RotorConductorsSlotTooth=0,1 +FieldConductorsVertical=0,1 +RotorConductorsVertical=0,1 +FieldConductorsHorizontal=0,1 +RotorConductorsHorizontal=0,1 +CuboidPositionSetting=0 + +[Fluids] +VolumetricExpansionCoefCalc=1 +ExternalFluid_Volumetric_Expansion_Coef=0,00275368305108082 +RetainFluidPowerValues_Transient=1 + +[Mechanical] +HoopStressMethod_Spoke=1 +YoungsCoefficient_RotorLam=0 +PoissonsRatio_RotorLam=0 +YieldStress_RotorLam=0 +YoungsCoefficient_Embedded_Magnet_Pole=0 +PoissonsRatio_Embedded_Magnet_Pole=0 +YieldStress_Embedded_Magnet_Pole=0 +YoungsCoefficient_RotorHub=0 +PoissonsRatio_RotorHub=0 +YieldStress_RotorHub=0 +YoungsCoefficient_RotorWedge=0 +PoissonsRatio_RotorWedge=0 +YieldStress_RotorWedge=0 +YoungsCoefficient_Magnet=160000 +PoissonsRatio_Magnet=0,24 +YieldStress_Magnet=0 +YoungsCoefficient_Pocket=0 +PoissonsRatio_Pocket=0 +YieldStress_Pocket=0 +YoungsCoefficient_TopBar=0 +PoissonsRatio_TopBar=0 +YieldStress_TopBar=0 +YoungsCoefficient_BottomBar=0 +PoissonsRatio_BottomBar=0 +YieldStress_BottomBar=0 +YoungsCoefficient_TopBarOpening=0 +PoissonsRatio_TopBarOpening=0 +YieldStress_TopBarOpening=0 +YoungsCoefficient_BottomBarOpening=0 +PoissonsRatio_BottomBarOpening=0 +YieldStress_BottomBarOpening=0 +YoungsCoefficient_FieldWdg=0 +PoissonsRatio_FieldWdg=0 +YieldStress_FieldWdg=0 +YoungsCoefficient_FieldLiner=3000 +PoissonsRatio_FieldLiner=0,334 +YieldStress_FieldLiner=0 +YieldStress_Damper_Bars=0 +YieldStress_Damper_End_F=0 +YieldStress_Damper_End_R=0 +YieldStress_Damper_Opening=0 +PoissonsRatio_Damper_Bars=0,334 +PoissonsRatio_Damper_End_F=0,334 +PoissonsRatio_Damper_End_R=0,334 +PoissonsRatio_Damper_Opening=0,334 +YoungsCoefficient_Damper_Bars=69000 +YoungsCoefficient_Damper_End_F=69000 +YoungsCoefficient_Damper_End_R=69000 +YoungsCoefficient_Damper_Opening=69000 +YoungsCoefficient_FieldSeparator=3000 +PoissonsRatio_FieldSeparator=0,334 +YieldStress_FieldSeparator=0 +DensityAdjustment_FieldWdg_User=1 +AvStressRadialLocation_Post=0,666 +AvStressRadialLocation_Bridge=0,25 +AvStress_ViewPoints=False +AvStress_PostLocationMethod=1 +YoungsCoefficient_FieldDivider=3000 +PoissonsRatio_FieldDivider=0,334 +YieldStress_FieldDivider=0 + +[FileParameters_MotorLAB] +BPM_FilePath_MotorLAB= +BPM_FileDir_MotorLAB= +LabModelExportFilePath= +SpeedLoad_MotorLAB=False +ElectroLink_MotorLAB=Motor-CAD EMag +CurrentSpec_MotorLAB=0 +MotorType_MotorLAB=BPM +CurrentMotFilePath_MotorLAB=C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +CurrentMotFileDir_MotorLAB=C:\Users\promerogomb\Desktop\fluxcontrol\motores\ + +[CalibrationParameters_MotorLAB] +TestType_MotorLAB=0 +TestSpeedMin_MotorLAB=10 +TestSpeedInc_MotorLAB=10 +TestSpeedMax_MotorLAB=1000 +ExpData_MotorLAB=False +ExpDataType_MotorLAB=0 +ExpDataPath_MotorLAB= + +[ModelParameters_MotorLAB] +PsiQ_coeff_MotorLAB[0]=0 +PsiQ_coeff_MotorLAB[1]=0 +PsiQ_coeff_MotorLAB[2]=0 +PsiQ_coeff_MotorLAB[3]=0 +PsiQ_coeff_MotorLAB[4]=0 +PsiQ_coeff_MotorLAB[5]=0 +PsiQ_coeff_MotorLAB[6]=0 +PsiQ_coeff_MotorLAB[7]=0 +PsiQ_coeff_MotorLAB[8]=0 +PsiQ_coeff_MotorLAB[9]=0 +PsiQ_coeff_MotorLAB[10]=0 +PsiQ_coeff_MotorLAB[11]=0 +PsiD_coeff_MotorLAB[0]=0 +PsiD_coeff_MotorLAB[1]=0 +PsiD_coeff_MotorLAB[2]=0 +PsiD_coeff_MotorLAB[3]=0 +PsiD_coeff_MotorLAB[4]=0 +PsiD_coeff_MotorLAB[5]=0 +PsiD_coeff_MotorLAB[6]=0 +PsiD_coeff_MotorLAB[7]=0 +PsiD_coeff_MotorLAB[8]=0 +PsiD_coeff_MotorLAB[9]=0 +PsiD_coeff_MotorLAB[10]=0 +PsiD_coeff_MotorLAB[11]=0 +EndWindingResistance_Lab=0,001 +EndWindingResistance_Field_Lab=0,001 +EndWindingInductance_Lab=0,001 +Ld_MotorLAB=0 +Lq_MotorLAB=0 +LamM_MotorLAB=0 +Isc_MotorLAB=0 +ModulationIndex_MotorLAB=1 +ModelType_MotorLAB=1 +Pole_MotorLAB=2 +XEndLeak_MotorLAB=1 +Vdrop_MotorLAB=True +SatModelPoints_MotorLAB=0 +Sync_ModelPoints_Lab=0 +ModelBuildGammaDistribution_Lab=1 +SpeedVariationType_Lab=0 +ModelBuildPoints_Current_Lab=6 +ModelBuildPoints_RotorCurrent_Lab=5 +ModelBuildPoints_Gamma_Lab=5 +ModelBuildPoints_Speed_Lab=4 +ACLossModelBuildPoints_Current_Lab=4 +ACLossModelBuildPoints_Gamma_Lab=4 +ACLossModelBuildPoints_Speed_Lab=4 +SatModelBuildPoints_Lab=0 +Sync_SatModelBuildPoints_Lab=0 +SaturationModelMethod_Lab=0 +SaturationModelInterpolation_Lab=0 +SyncRel_MotorLAB=False +LEndWdg_MotorLAB=0 +LossModelBuildPoints_Lab=0 +Sync_LossModelBuildPoints_Lab=0 +ACLossModelBuildPoints_Lab=0 +NumberOfCuboids_LossModel_Lab=2 +SleeveLossCoefficient_Lab=0 +SleeveLossCalc_Lab=0 +BandingLossCalc_Lab=0 +FEALossMap_RefSpeed_Lab=500 +BandingLossCoefficient_Lab=0 +IM_IphLmArray_MotorLAB[0]=0 +IM_IphLmArray_MotorLAB[1]=0 +IM_IphLmArray_MotorLAB[2]=0 +IM_IphLmArray_MotorLAB[3]=0 +IM_IphLmArray_MotorLAB[4]=0 +IM_IphLmArray_MotorLAB[5]=0 +IM_IphLmArray_MotorLAB[6]=0 +IM_IphLmArray_MotorLAB[7]=0 +IM_IphLmArray_MotorLAB[8]=0 +IM_IphLmArray_MotorLAB[9]=0 +IM_IphLmArray_MotorLAB[10]=0 +IM_IphLmArray_MotorLAB[11]=0 +IM_IphLmArray_MotorLAB[12]=0 +IM_IphLmArray_MotorLAB[13]=0 +IM_IphLmArray_MotorLAB[14]=0 +IM_IphLmArray_MotorLAB[15]=0 +IM_IphLmArray_MotorLAB[16]=0 +IM_IphLmArray_MotorLAB[17]=0 +IM_IphLmArray_MotorLAB[18]=0 +IM_IphLmArray_MotorLAB[19]=0 +IM_IphLmArray_MotorLAB[20]=0 +IronLossModelSplit_Lab=0 +IM_IronLossModelSplit_MotorLAB=0 +IronLossModelSplit_Stator_Lab=0 +IronLossModelSplit_Rotor_Lab=0 +IM_FeLossModelPoints_MotorLAB=10 +IM_IphFeArray_MotorLAB[0]=0 +IM_IphFeArray_MotorLAB[1]=0 +IM_IphFeArray_MotorLAB[2]=0 +IM_IphFeArray_MotorLAB[3]=0 +IM_IphFeArray_MotorLAB[4]=0 +IM_IphFeArray_MotorLAB[5]=0 +IM_IphFeArray_MotorLAB[6]=0 +IM_IphFeArray_MotorLAB[7]=0 +IM_IphFeArray_MotorLAB[8]=0 +IM_IphFeArray_MotorLAB[9]=0 +Slots_MotorLAB=4 +TwindingCalc_MotorLAB=20 +TmagnetCalc_MotorLAB=20 +WindingAlpha_MotorLAB=0,00393 +IM_R1_MotorLAB=0 +IM_R2_MotorLAB=0 +IM_L1_MotorLAB=0 +IM_L2_MotorLAB=0 +IM_RtrBarH_MotorLAB=0 +IM_RtrBarC_MotorLAB=0 +IM_SlipFixedModelParameters_Lab=0,01 +IM_RotorLeakage_Points_Lab=5 +IM_RotorLeakageInductanceModel_Is_Lab[0]=0 +IM_RotorLeakageInductanceModel_Is_Lab[1]=0 +IM_RotorLeakageInductanceModel_Is_Lab[2]=0 +IM_RotorLeakageInductanceModel_Is_Lab[3]=0 +IM_RotorLeakageInductanceModel_Is_Lab[4]=0 +IM_ParallelInductanceModel_Lab[0]=0 +IM_ParallelInductanceModel_Lab[1]=0 +IM_ParallelInductanceModel_Lab[2]=0 +IM_ParallelInductanceModel_Lab[3]=0 +IM_ParallelInductanceModel_Lab[4]=0 +IM_RotorResistance_Points_Lab=5 +IM_RotorResistanceModel_Fr_Lab[0]=0 +IM_RotorResistanceModel_Fr_Lab[1]=0 +IM_RotorResistanceModel_Fr_Lab[2]=0 +IM_RotorResistanceModel_Fr_Lab[3]=0 +IM_RotorResistanceModel_Fr_Lab[4]=0 +IM_ParallelResistanceModel_Lab[0]=0 +IM_ParallelResistanceModel_Lab[1]=0 +IM_ParallelResistanceModel_Lab[2]=0 +IM_ParallelResistanceModel_Lab[3]=0 +IM_ParallelResistanceModel_Lab[4]=0 +IM_NoPointsPerCycle_AdvancedFEA_Lab=30 +IM_ConvergenceTolerance_AdvancedFEA_Lab=5 +IM_AirgapMeshPoints_AdvancedFEA_Lab=360 +IM_RotorBarsMeshSize_AdvancedFEA_Lab=0 +IM_LmCurve_MotorLAB=False +IM_SaturationModelType_Lab=1 +IM_RotorResistanceModelType_Lab=0 +IMFixedModelParametersMethod_Lab=1 +IMStatorLeakageInductanceFEALookupMethod=1 +IMMagnetizingInductanceFEAMethod_Lab=1 +IMEndringCurrentMethod_Lab=1 +TurnsRef_MotorLAB=1 +TurnsCalc_MotorLAB=1 +Length_Ref_Lab=90 +Length_Ref_Resistance_Lab=90 +Length_Calc_Lab=90 +MaxModelCurrent_MotorLAB=150 +MaxModelCurrent_RMS_MotorLAB=106,066 +InitialImport_MotorLAB=True +BuildSatModel_MotorLAB=True +ModelBuildSpeed_MotorLAB=6000 +ModelBuildSpeed_Min_Lab=50 +ResultsPath_MotorLAB=C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\Lab\ +AutoShowResults_MotorLAB=True +ComparisonPath_Lab= +IM_SlipRes_MotorLAB=1E-6 +FastRotorSkew_Lab=1 +SaturationModelGoodness_Lab=0 +TimeoutMultiplier_Lab=1 +RotorWindingTemp_Ref_Lab=20 +RotorWindingTemp_Calc_Lab=20 +RotorWindingTempCoeffResistivity_Lab=0 +DCCurrentLimitExternaLine_Method_Lab=1 +NumCustomLossesInternal_Lab=0 +NumCustomLosses_Lab=0 +NumCustomLossesExternal_Lab=0 +CustomLoss_AllowedValues_Lab=1 +LabModel_Saturation_Date= +LabModel_Saturation_Method=-1 +LabModel_Saturation_NumPoints=-1 +LabModel_Saturation_StatorCurrent_Peak=0 +LabModel_Saturation_StatorCurrent_RMS=0 +LabModel_Saturation_RotorCurrent=0 +LabModel_IronLoss_Date= +LabModel_IronLoss_Method=-1 +LabModel_IronLoss_StatorCurrent_Peak=0 +LabModel_IronLoss_StatorCurrent_RMS=0 +LabModel_IronLoss_RotorCurrent=0 +LabModel_ACLoss_Date= +LabModel_ACLoss_Method=-1 +LabModel_ACLoss_CalculationMethod=0 +LabModel_ACLoss_StatorCurrent_Peak=0 +LabModel_ACLoss_StatorCurrent_RMS=0 +LabModel_ACLoss_RotorCurrent=0 +LabModel_ACLoss_MaxSpeed=0 +LabModel_MagnetLoss_Date= +LabModel_MagnetLoss_Method=-1 +LabModel_MagnetLoss_StatorCurrent_Peak=0 +LabModel_MagnetLoss_StatorCurrent_RMS=0 +LabModel_MagnetLoss_RotorCurrent=0 +LabModel_SleeveLoss_Date= +LabModel_SleeveLoss_Method=-1 +LabModel_SleeveLoss_StatorCurrent_Peak=0 +LabModel_SleeveLoss_StatorCurrent_RMS=0 +LabModel_SleeveLoss_RotorCurrent=0 +LabModel_BandingLoss_Date= +LabModel_BandingLoss_Method=-1 +LabModel_BandingLoss_StatorCurrent_Peak=0 +LabModel_BandingLoss_StatorCurrent_RMS=0 +LabModel_BandingLoss_RotorCurrent=0 +MaxModelCurrent_Rotor_Lab=12 +Sync_MaxModelCurrent_Rotor_Lab=12 +Sync_SaturationModelType_Lab=0 +RotorCopperLossCalc_Lab=0 +Sync_RotorWindingLossCalc_Lab=0 +RotorWindingResistance_Lab=0 +Sync_RotorWindingResistance_Lab=0 +Sync_ModelSkewMethod_Lab=1 +Sync_NumIrPoints_Lab=0 +ModelDesignName_Maxwell_Lab= +NoDesignNames_Maxwell=0 +MaxwellModelPath_Lab= +AEDTPath_Lab= +AnsysEDPath_Lab= +MaxwellToolkitLibPath_Lab= +NumElecCycles_Lab=2 +PointsPerElecCycle_Lab=30 +ACLossMethod_Maxwell_Lab=0 +InitialPhaseAlignment_Maxwell_Lab=0 +InitialPhaseoffsetAngle_Maxwell_Lab=0 +MachineComponentType_Maxwell_BPM=0 +MachineComponentType_Maxwell_SYNC=0 +NoWindingGroups_Maxwell=0 +NoWindingGroups_FEAACLoss_Maxwell=0 +NoStatorWindings_SYNC_Maxwell=0 +RotorWindingName_Maxwell_Lab= +NoMaxwellComponents=0 +NoMagnetComponents_Maxwell=0 +SleeveComponentName_Maxwell_Lab= +BandingComponentName_Maxwell_Lab= +StatorWindingResistivityAt20C_Maxwell_Lab=1,724E-8 +ACLosses_BundleHeight_Maxwell_Lab=0 +NoEntries_AnalyticalACLoss_Maxwell=0 +FastRotorSkew_MotorLAB=True + +[SimulationParameters_MotorLAB] +PrevCalcImax_MotorLAB=0 +PrevCalcImin_MotorLAB=0 +PrevCalcIinc_MotorLAB=1 +CalcComplete_MotorLAB=False +CalCalcComplete_MotorLAB=False +SpeedMax_MotorLAB=6000 +Speedinc_MotorLAB=500 +SpeedMin_MotorLAB=0 +Imax_MotorLAB=150 +Imax_RMS_MotorLAB=106,066017 +Iinc_MotorLAB=10 +Imin_MotorLAB=50 +Imin_RMS_MotorLAB=35,355339 +NonSalient_MotorLAB=False +TorqueDemand_MotorLAB=10 +PhaseAdvanceDemand_Lab=0 +SlipDemand_Lab=0,01 +StatorCurrentDemand_Lab=150 +StatorCurrentDemand_RMS_Lab=106,066017 +SpeedDemand_MotorLAB=6000 +StatorTempDemand_Lab=160 +RotorTempDemand_Lab=140 +CancelCalc_MotorLAB=False +OperatingMode_Lab=0 +GenMode_MotorLAB=0 +SmoothMap_MotorLAB=False +ControlStrat_MotorLAB=0 +NumControlStrategyPoints_Lab=3 +ControlStrat_Speed_Lab[0]=0 +ControlStrat_Speed_Lab[1]=1000 +ControlStrat_Speed_Lab[2]=2000 +ControlStrat_PhaseAdvance_Lab[0]=0 +ControlStrat_PhaseAdvance_Lab[1]=15 +ControlStrat_PhaseAdvance_Lab[2]=30 +DCCurrentLimit_Lab=0 +MaxDCCurrent_Lab=80 +StatorCurrentLimit_Lab=1 +IM_StatorCurrentLimit_Lab=1 +InitialCurrentMethod_Lab=2 +PowerLimVal_MotorLAB=0 +PowerLim_MotorLAB=False +IM_InitialSlip_MotorLAB=0,01 +EMCalcStatus_MotorLAB= +CalCalcStatus_MotorLAB= +ResistanceTurnsRef_MotorLAB=1 +LabThermalCoupling=0 +LabThermalCoupling_DutyCycle=0 +LabMagneticCoupling=0 +OpPointSpec_MotorLAB=0 +MaxNumAltStartPoints_Lab=2 +MinTorque_MotorLAB=10 +TorqueInc_MotorLAB=10 +TorqueMax_MotorLAB=100 +EmagneticCalcType_Lab=0 +NumCustomLossVariablesInternal_Lab=0 +NumCustomLossVariables_Lab=0 +NumCustomLossVariablesExternal_Lab=0 +MaxRotorTemp_Lab=160 +Sync_RotorTempMax_Lab=160 +RotorCurrentEstimate_Lab=6 +Sync_RotorCurrentEstimate_Lab=6 +RotorCurrentDemand_Lab=6 +Sync_RotorCurrentDemand_Lab=6 +Sync_RotorCurrentMax_Lab=12 +Sync_StatorCurrentMax_Lab=150 +Sync_StatorCurrentMax_RMS_Lab=106,066017 +Sync_CurrentIncs_Lab=10 +Sync_MinTorqueLevel_Lab=2,5 +Sync_InitialGamma_Lab=10 +Sync_ControlStrategy_Lab=0 +Sync_StatorRotorLossBiasRatio_Lab=1 +Sync_ConvergenceMethod_Lab=1 +Sync_OptimiserMethod_Lab=1 +Sync_ConvergenceTolerance_Lab=1 +Sync_MaxIterations_Lab=40 +Sync_IterationsBeforeAverage_Lab=5 +Sync_IterationsInAverage_Lab=2 + +[LossParameters_MotorLAB] +IronLossCalc_Lab=0 +CalcTypeCuLoss_MotorLAB=0 +ACLossMethod_Lab=0 +MagnetLossCalc_Lab=0 +Resistance_MotorLAB=0,01 +Ah_MotorLAB=0 +Ae_MotorLAB=0 +Bh_MotorLAB=0 +Be_MotorLAB=0 +n2ac_MotorLAB=500 +Wmag_MotorLAB=0 +Imag_MotorLAB=0 +Nmag_MotorLAB=0 +WmagOC_MotorLAB=0 +MagLossCoeff_MotorLAB=2 +RotorIronEddyLossExponent_Lab=2 +AcLossFreq_MotorLAB=2 +RacRdc_MotorLAB=2 +ACConductorLossSplit_Lab=0 +ACLossSpeedScalingMethod_Lab=1 +ACLossGeneratorMethod_Lab=1 +IM_IronLossCalc_MotorLAB=0 +ACConductorLossProportion_Lab[0]=0 +ACConductorLossProportion_Lab[1]=0 +IM_LmArray_MotorLAB[0]=0 +IM_LmArray_MotorLAB[1]=0 +IM_LmArray_MotorLAB[2]=0 +IM_LmArray_MotorLAB[3]=0 +IM_LmArray_MotorLAB[4]=0 +IM_LmArray_MotorLAB[5]=0 +IM_LmArray_MotorLAB[6]=0 +IM_LmArray_MotorLAB[7]=0 +IM_LmArray_MotorLAB[8]=0 +IM_LmArray_MotorLAB[9]=0 +IM_LmArray_MotorLAB[10]=0 +IM_LmArray_MotorLAB[11]=0 +IM_LmArray_MotorLAB[12]=0 +IM_LmArray_MotorLAB[13]=0 +IM_LmArray_MotorLAB[14]=0 +IM_LmArray_MotorLAB[15]=0 +IM_LmArray_MotorLAB[16]=0 +IM_LmArray_MotorLAB[17]=0 +IM_LmArray_MotorLAB[18]=0 +IM_LmArray_MotorLAB[19]=0 +IM_LmArray_MotorLAB[20]=0 +IM_FeHysLossArray_MotorLAB[0]=0 +IM_FeHysLossArray_MotorLAB[1]=0 +IM_FeHysLossArray_MotorLAB[2]=0 +IM_FeHysLossArray_MotorLAB[3]=0 +IM_FeHysLossArray_MotorLAB[4]=0 +IM_FeHysLossArray_MotorLAB[5]=0 +IM_FeHysLossArray_MotorLAB[6]=0 +IM_FeHysLossArray_MotorLAB[7]=0 +IM_FeHysLossArray_MotorLAB[8]=0 +IM_FeHysLossArray_MotorLAB[9]=0 +IM_FeEddyLossArray_MotorLAB[0]=0 +IM_FeEddyLossArray_MotorLAB[1]=0 +IM_FeEddyLossArray_MotorLAB[2]=0 +IM_FeEddyLossArray_MotorLAB[3]=0 +IM_FeEddyLossArray_MotorLAB[4]=0 +IM_FeEddyLossArray_MotorLAB[5]=0 +IM_FeEddyLossArray_MotorLAB[6]=0 +IM_FeEddyLossArray_MotorLAB[7]=0 +IM_FeEddyLossArray_MotorLAB[8]=0 +IM_FeEddyLossArray_MotorLAB[9]=0 +IM_FeLoss_StatorBackIronHys_MotorLAB[0]=0 +IM_FeLoss_StatorBackIronHys_MotorLAB[1]=0 +IM_FeLoss_StatorBackIronHys_MotorLAB[2]=0 +IM_FeLoss_StatorBackIronHys_MotorLAB[3]=0 +IM_FeLoss_StatorBackIronHys_MotorLAB[4]=0 +IM_FeLoss_StatorBackIronHys_MotorLAB[5]=0 +IM_FeLoss_StatorBackIronHys_MotorLAB[6]=0 +IM_FeLoss_StatorBackIronHys_MotorLAB[7]=0 +IM_FeLoss_StatorBackIronHys_MotorLAB[8]=0 +IM_FeLoss_StatorBackIronHys_MotorLAB[9]=0 +IM_FeLoss_StatorBackIronEddy_MotorLAB[0]=0 +IM_FeLoss_StatorBackIronEddy_MotorLAB[1]=0 +IM_FeLoss_StatorBackIronEddy_MotorLAB[2]=0 +IM_FeLoss_StatorBackIronEddy_MotorLAB[3]=0 +IM_FeLoss_StatorBackIronEddy_MotorLAB[4]=0 +IM_FeLoss_StatorBackIronEddy_MotorLAB[5]=0 +IM_FeLoss_StatorBackIronEddy_MotorLAB[6]=0 +IM_FeLoss_StatorBackIronEddy_MotorLAB[7]=0 +IM_FeLoss_StatorBackIronEddy_MotorLAB[8]=0 +IM_FeLoss_StatorBackIronEddy_MotorLAB[9]=0 +IM_FeLoss_StatorToothHys_MotorLAB[0]=0 +IM_FeLoss_StatorToothHys_MotorLAB[1]=0 +IM_FeLoss_StatorToothHys_MotorLAB[2]=0 +IM_FeLoss_StatorToothHys_MotorLAB[3]=0 +IM_FeLoss_StatorToothHys_MotorLAB[4]=0 +IM_FeLoss_StatorToothHys_MotorLAB[5]=0 +IM_FeLoss_StatorToothHys_MotorLAB[6]=0 +IM_FeLoss_StatorToothHys_MotorLAB[7]=0 +IM_FeLoss_StatorToothHys_MotorLAB[8]=0 +IM_FeLoss_StatorToothHys_MotorLAB[9]=0 +IM_FeLoss_StatorToothEddy_MotorLAB[0]=0 +IM_FeLoss_StatorToothEddy_MotorLAB[1]=0 +IM_FeLoss_StatorToothEddy_MotorLAB[2]=0 +IM_FeLoss_StatorToothEddy_MotorLAB[3]=0 +IM_FeLoss_StatorToothEddy_MotorLAB[4]=0 +IM_FeLoss_StatorToothEddy_MotorLAB[5]=0 +IM_FeLoss_StatorToothEddy_MotorLAB[6]=0 +IM_FeLoss_StatorToothEddy_MotorLAB[7]=0 +IM_FeLoss_StatorToothEddy_MotorLAB[8]=0 +IM_FeLoss_StatorToothEddy_MotorLAB[9]=0 +IM_FeLoss_RotorBackIronHys_MotorLAB[0]=0 +IM_FeLoss_RotorBackIronHys_MotorLAB[1]=0 +IM_FeLoss_RotorBackIronHys_MotorLAB[2]=0 +IM_FeLoss_RotorBackIronHys_MotorLAB[3]=0 +IM_FeLoss_RotorBackIronHys_MotorLAB[4]=0 +IM_FeLoss_RotorBackIronHys_MotorLAB[5]=0 +IM_FeLoss_RotorBackIronHys_MotorLAB[6]=0 +IM_FeLoss_RotorBackIronHys_MotorLAB[7]=0 +IM_FeLoss_RotorBackIronHys_MotorLAB[8]=0 +IM_FeLoss_RotorBackIronHys_MotorLAB[9]=0 +IM_FeLoss_RotorBackIronEddy_MotorLAB[0]=0 +IM_FeLoss_RotorBackIronEddy_MotorLAB[1]=0 +IM_FeLoss_RotorBackIronEddy_MotorLAB[2]=0 +IM_FeLoss_RotorBackIronEddy_MotorLAB[3]=0 +IM_FeLoss_RotorBackIronEddy_MotorLAB[4]=0 +IM_FeLoss_RotorBackIronEddy_MotorLAB[5]=0 +IM_FeLoss_RotorBackIronEddy_MotorLAB[6]=0 +IM_FeLoss_RotorBackIronEddy_MotorLAB[7]=0 +IM_FeLoss_RotorBackIronEddy_MotorLAB[8]=0 +IM_FeLoss_RotorBackIronEddy_MotorLAB[9]=0 +IM_FeLoss_RotorToothHys_MotorLAB[0]=0 +IM_FeLoss_RotorToothHys_MotorLAB[1]=0 +IM_FeLoss_RotorToothHys_MotorLAB[2]=0 +IM_FeLoss_RotorToothHys_MotorLAB[3]=0 +IM_FeLoss_RotorToothHys_MotorLAB[4]=0 +IM_FeLoss_RotorToothHys_MotorLAB[5]=0 +IM_FeLoss_RotorToothHys_MotorLAB[6]=0 +IM_FeLoss_RotorToothHys_MotorLAB[7]=0 +IM_FeLoss_RotorToothHys_MotorLAB[8]=0 +IM_FeLoss_RotorToothHys_MotorLAB[9]=0 +IM_FeLoss_RotorToothEddy_MotorLAB[0]=0 +IM_FeLoss_RotorToothEddy_MotorLAB[1]=0 +IM_FeLoss_RotorToothEddy_MotorLAB[2]=0 +IM_FeLoss_RotorToothEddy_MotorLAB[3]=0 +IM_FeLoss_RotorToothEddy_MotorLAB[4]=0 +IM_FeLoss_RotorToothEddy_MotorLAB[5]=0 +IM_FeLoss_RotorToothEddy_MotorLAB[6]=0 +IM_FeLoss_RotorToothEddy_MotorLAB[7]=0 +IM_FeLoss_RotorToothEddy_MotorLAB[8]=0 +IM_FeLoss_RotorToothEddy_MotorLAB[9]=0 +BuildLossModel_MotorLAB=True +LossModel_Lab=0 +ElectricalCustomLoss_Method_Lab=1 +Sync_IronLossCalc_Lab=0 + +[ThermalParameters_MotorLAB] +ThermEnvBuilt_MotorLAB=False +ThermMapBuilt_MotorLAB=False +MaxSpeedTherm_MotorLAB=6000 +SpeedStepTherm_MotorLAB=500 +MinSpeedTherm_Lab=0 +MaxWindTemp_MotorLAB=160 +ThermCalcType_MotorLAB=0 +MaxWindingSpec_MotorLAB=0 +ThermalConvergenceMethod_Lab=1 +ThermalEnvelopeSensitivity_Lab=1 +ThermalStatorWindingTemperatureMethod_Lab=1 +Thermal_TemperaturesForEMag_Lab=1 +IncludeSpeedScaling_UserDefinedLoss_Lab=True +RotorTemperatureTolerance_Lab=1 +RotorTemperatureMaxIterations_Lab=20 +RotorTemperatureIterationsBeforeAverage_Lab=4 +RotorTemperatureIterationsInAverage_Lab=3 +RotorTemperatureMaxDivergingSteps_Lab=5 +BrTempCoeff_MotorLAB=-0,12 +Iest_MotorLAB=100 +Iest_RMS_MotorLAB=70,716781 +Tmag_MotorLAB=20 +Twdg_MotorLAB=20 +WindingTemp_ACLoss_Ref_Lab=20 +LossProp_Stator_Lab=0,9 +LossProp_Rotor_Lab=0,1 +Rotor_MotorLAB=0,1 +LossProp_StatorBackIron_Lab=0,45 +LossProp_StatorTooth_Lab=0,55 +LossProp_RotorBackIron_Lab=1 +LossProp_RotorPole_Lab=0 +TempLimit_MotorLAB=1 +MaxMagnet_MotorLAB=140 +ThermMaxCurrentLim_MotorLAB=False +IM_SllStatorSplit_MotorLAB=0,95 +IM_SllRotorSplit_MotorLAB=0,05 +ThermalCalcStatus_MotorLAB= +ThermalMapType_Lab=0 +NumCustomThermalLimits_Lab=0 + +[GeneratorParameters_Lab] +Generator_CalcComplete_Lab=False +Generator_CalcStatus_Lab= +Gen_Load_Definition_Lab=0 +Gen_Load_Connection_Lab=0 +Gen_Speed_Fixed_Lab=False +Gen_Speed_Max_Lab=6000 +Gen_Speed_Min_Lab=0 +Gen_Speed_Step_Lab=500 +Gen_Impedance_Fixed_Lab=False +Gen_Impedance_Max_Lab=10 +Gen_Impedance_Min_Lab=1 +Gen_Impedance_Step_Lab=1 +Gen_PF_Fixed_Lab=True +Gen_PF_Max_Lab=1 +Gen_PF_Min_Lab=0,5 +Gen_PF_Step_Lab=0,1 +Gen_Resistance_Fixed_Lab=False +Gen_Resistance_Max_Lab=10 +Gen_Resistance_Min_Lab=1 +Gen_Resistance_Step_Lab=1 +Gen_Inductance_Fixed_Lab=True +Gen_Inductance_Max_Lab=0,01 +Gen_Inductance_Min_Lab=0,001 +Gen_Inductance_Step_Lab=0,001 +Gen_Sync_Rotor_Current_Lab=12 + +[OptimisationParameters] +OptislangExportDirectory= +OptislangSettingsOption=0 +OptislangPeakTemp=40 +OptislangDutyCycleTemp=40 +OptislangContinuousTemp_Rotor=140 +OptislangContinuousTemp_Winding=160 +OptislangSetting_SaveScreenshots=False +OptislangSetting_RestartMotorCAD=True +OptislangSetting_ScaleHousing=True + +[OutputSheets] +NumAxialSliceTempGraphs=0 +NumCuboidalTempGraphs=0 +NumAxialTempGraphs=46 +AxialTempGraphsName_Array[0]=Housing +AxialTempGraphsName_Array[1]=Housing_OH_F +AxialTempGraphsName_Array[2]=Endcap_F +AxialTempGraphsName_Array[3]=Housing_OH_R +AxialTempGraphsName_Array[4]=Endcap_R +AxialTempGraphsName_Array[5]=Shaft_F +AxialTempGraphsName_Array[6]=Shaft_R +AxialTempGraphsName_Array[7]=Stator_Yoke +AxialTempGraphsName_Array[8]=Housing_F +AxialTempGraphsName_Array[9]=Rotor_ES_F +AxialTempGraphsName_Array[10]=Bearing_Front +AxialTempGraphsName_Array[11]=Housing_R +AxialTempGraphsName_Array[12]=Rotor_ES_R +AxialTempGraphsName_Array[13]=Bearing_Rear +AxialTempGraphsName_Array[14]=Tooth(C1) +AxialTempGraphsName_Array[15]=Stator_Surface +AxialTempGraphsName_Array[16]=Rot_Surface +AxialTempGraphsName_Array[17]=Tooth(C2) +AxialTempGraphsName_Array[18]=Magnet +AxialTempGraphsName_Array[19]=Rot_Lam_Yoke +AxialTempGraphsName_Array[20]=Magnet_F +AxialTempGraphsName_Array[21]=Magnet_R +AxialTempGraphsName_Array[22]=Shaft_Centre +AxialTempGraphsName_Array[23]=Rotor_F +AxialTempGraphsName_Array[24]=Rotor_R +AxialTempGraphsName_Array[25]=Shaft_OH_F +AxialTempGraphsName_Array[26]=Shaft_OH_R +AxialTempGraphsName_Array[27]=EWdg_Outer_F(C1) +AxialTempGraphsName_Array[28]=EWdg_Front_F(C1) +AxialTempGraphsName_Array[29]=Wedge +AxialTempGraphsName_Array[30]=EWdg_Inner_F(C2) +AxialTempGraphsName_Array[31]=EWdg_Front_F(C2) +AxialTempGraphsName_Array[32]=EWdg_Outer_R(C1) +AxialTempGraphsName_Array[33]=EWdg_Rear_R(C1) +AxialTempGraphsName_Array[34]=EWdg_Inner_R(C2) +AxialTempGraphsName_Array[35]=EWdg_Rear_R(C2) +AxialTempGraphsName_Array[36]=EWdg_Rear_F(C1) +AxialTempGraphsName_Array[37]=EWdg_Front_R(C1) +AxialTempGraphsName_Array[38]=EWdg_Rear_F(C2) +AxialTempGraphsName_Array[39]=EWdg_Front_R(C2) +AxialTempGraphsName_Array[40]=Winding (Avg)(C1) +AxialTempGraphsName_Array[41]=EWdg_F (Average)(C1) +AxialTempGraphsName_Array[42]=EWdg_R (Average)(C1) +AxialTempGraphsName_Array[43]=Winding (Avg)(C2) +AxialTempGraphsName_Array[44]=EWdg_F (Average)(C2) +AxialTempGraphsName_Array[45]=EWdg_R (Average)(C2) +AxialTempGraphsGraph_Array[0]=True +AxialTempGraphsGraph_Array[1]=True +AxialTempGraphsGraph_Array[2]=True +AxialTempGraphsGraph_Array[3]=True +AxialTempGraphsGraph_Array[4]=True +AxialTempGraphsGraph_Array[5]=True +AxialTempGraphsGraph_Array[6]=True +AxialTempGraphsGraph_Array[7]=True +AxialTempGraphsGraph_Array[8]=True +AxialTempGraphsGraph_Array[9]=True +AxialTempGraphsGraph_Array[10]=True +AxialTempGraphsGraph_Array[11]=True +AxialTempGraphsGraph_Array[12]=True +AxialTempGraphsGraph_Array[13]=True +AxialTempGraphsGraph_Array[14]=True +AxialTempGraphsGraph_Array[15]=True +AxialTempGraphsGraph_Array[16]=True +AxialTempGraphsGraph_Array[17]=True +AxialTempGraphsGraph_Array[18]=True +AxialTempGraphsGraph_Array[19]=True +AxialTempGraphsGraph_Array[20]=True +AxialTempGraphsGraph_Array[21]=True +AxialTempGraphsGraph_Array[22]=True +AxialTempGraphsGraph_Array[23]=True +AxialTempGraphsGraph_Array[24]=True +AxialTempGraphsGraph_Array[25]=True +AxialTempGraphsGraph_Array[26]=True +AxialTempGraphsGraph_Array[27]=True +AxialTempGraphsGraph_Array[28]=True +AxialTempGraphsGraph_Array[29]=True +AxialTempGraphsGraph_Array[30]=True +AxialTempGraphsGraph_Array[31]=True +AxialTempGraphsGraph_Array[32]=True +AxialTempGraphsGraph_Array[33]=True +AxialTempGraphsGraph_Array[34]=True +AxialTempGraphsGraph_Array[35]=True +AxialTempGraphsGraph_Array[36]=True +AxialTempGraphsGraph_Array[37]=True +AxialTempGraphsGraph_Array[38]=True +AxialTempGraphsGraph_Array[39]=True +AxialTempGraphsGraph_Array[40]=True +AxialTempGraphsGraph_Array[41]=True +AxialTempGraphsGraph_Array[42]=True +AxialTempGraphsGraph_Array[43]=True +AxialTempGraphsGraph_Array[44]=True +AxialTempGraphsGraph_Array[45]=True +NumRadialTempGraphs=14 +RadialTempGraphsName_Array[0]=Winding (Max) +RadialTempGraphsName_Array[1]=Winding (Av) +RadialTempGraphsName_Array[2]=Winding (Min) +RadialTempGraphsName_Array[3]=Housing +RadialTempGraphsName_Array[4]=Stator_Yoke +RadialTempGraphsName_Array[5]=Tooth(C1) +RadialTempGraphsName_Array[6]=Stator_Surface +RadialTempGraphsName_Array[7]=Rot_Surface +RadialTempGraphsName_Array[8]=Tooth(C2) +RadialTempGraphsName_Array[9]=Magnet +RadialTempGraphsName_Array[10]=Rot_Lam_Yoke +RadialTempGraphsName_Array[11]=Shaft_Centre +RadialTempGraphsName_Array[12]=Winding (Avg)(C2) +RadialTempGraphsName_Array[13]=Winding (Avg)(C1) +RadialTempGraphsGraph_Array[0]=True +RadialTempGraphsGraph_Array[1]=True +RadialTempGraphsGraph_Array[2]=True +RadialTempGraphsGraph_Array[3]=True +RadialTempGraphsGraph_Array[4]=True +RadialTempGraphsGraph_Array[5]=True +RadialTempGraphsGraph_Array[6]=True +RadialTempGraphsGraph_Array[7]=True +RadialTempGraphsGraph_Array[8]=True +RadialTempGraphsGraph_Array[9]=True +RadialTempGraphsGraph_Array[10]=True +RadialTempGraphsGraph_Array[11]=True +RadialTempGraphsGraph_Array[12]=True +RadialTempGraphsGraph_Array[13]=True + +[Radiation] +Emissivity_UseSingleValue=True +Emissivity_SingleValue=0,9 + +[SaturationMap] +SaturationMap_ExportFile= +SaturationMap_Export=True +LossMap_Export=True +SaturationMap_ExportToCSV=False +SaturationMap_InputDefinition=0 +SaturationMap_CalculationMethod=0 +SaturationMap_FEACalculationType=1 +SaturationMap_ResultType=0 +SaturationMap_FieldCurrentDefinition=0 +SaturationMap_StatorCurrentMax=150 +SaturationMap_StatorCurrentStep=30 +SaturationMap_StatorCurrentMin=0 +SaturationMap_PhaseAdvanceMax=90 +SaturationMap_PhaseAdvanceStep=22,5 +SaturationMap_PhaseAdvanceMin=0 +SaturationMap_Current_D_Max=0 +SaturationMap_Current_D_Step=30 +SaturationMap_Current_D_Min=-150 +SaturationMap_Current_Q_Max=150 +SaturationMap_Current_Q_Step=30 +SaturationMap_Current_Q_Min=0 +SaturationMap_FieldCurrentMax=12 +SaturationMap_FieldCurrentStep=4 +SaturationMap_FieldCurrentMin=0 +LossMap_Speed=3000 +SaturationMap_CalculationStatus= +SaturationMap_CalculationComplete=False + +[Termination] +Include_Termination_F=False +Include_Termination_R=False +Termination_Wires_F=3 +Termination_Wires_R=3 +Termination_Wire_Diameter_F=2 +Termination_Wire_Diameter_R=2 +Termination_Wire_Length_F=200 +Termination_Wire_Length_R=200 + +[Cuboidal_Model] +Winding_Cuboid_Width[0]=2,82126248119311 +Winding_Cuboid_Width[1]=2,3438180612989 +Winding_Cuboid_Height[0]=9,1 +Winding_Cuboid_Height[1]=9,1 + +[Reduced_Node_Model] +ReducedNodeRecordPowerSpread=False +ReducedNodeSelection=1 +ReducedNodeAutoLoadSelection=False +ReducedNodeNumber=0 +ReducedNodeMaxResistance=10000000 +ReducedNodeCapacitanceScale=1 + +[Phasor_Diagram] +PhasorShowCurrents=True +PhasorShowFluxLinkages=True +PhasorShowVoltages=True +PhasorTextDisplay=0 +PhasorLabelSelection=0 + +[EquivalentCircuit_Diagram] +IMEquivalentTextDisplay=4 +IMEquivalentCircuitView=0 + +[Geometry_Export] +GeometryExportFormat=0 +DXFView_Export=0 +DXFComponent_Rotor=True +DXFComponent_Stator=False +DXFComponent_Housing=False +DXFOption_SegmentOutlines=True +DXFOption_SeparateCoils=True +DXFOption_ClosedSlotOpening=True +DXFOption_ClosedMagnetGap=True +DXFOption_Conductors=False +DXFOption_SlotLiner=False +DXFOption_WireInsulation=False +DXFOption_SlotDucts=True +DXFOption_CoilDivider=True +DXFWindingOption_SlotTeeth=True +STL_FormatOptions=0 + +[Ansys] +AnsysExportFormat=1 +AnsysModelType=0 +AnsysAirgapMesh=0 +AnsysSolve=0 +AnsysReplaceArcEntities=False +AnsysReplaceArcEntities_MinimumSweep=0,1 +Ansys_ArcType=1 +Ansys_WindingGroups=0 +Ansys_NonStandardRegions_Number=0 +Maxwell_PolylineCircles=1 +Ansys_MagnetThermalData=1 +Ansys_DemagCurve=0 + +[Region_Options] +Maxwell_PolylinePointTolerance=0,0001 +Region_PointTolerance=0,0001 +GeometryTolerance=0,001 +GeometryToleranceMethod=0 +GeometryTolerance_Angle=1E-5 +GeometryRegion_MinimumArea=1E-5 +Region_ArcSegments_Number=2 + +[Rt] +RtEwdgCoilInsCalc_FormWound=1 + +[Transient] +TransientCalculationType=0 +Duty_Cycle_Definition=1 +Duty_Cycle_Input_Type=0 +Duty_Cycle_Drive_Type=0 +Duty_Cycle_DC_Bus_Voltage_Definition=0 +Duty_Cycle_Gear_Ratio_Definition=0 +Simple_Transient_Definition=0 +Simple_Transient_Torque=10 +Simple_Transient_Period=140 +TRANSIENT_TIME_PERIOD=140 +Simple_Transient_Number_Points=50 +NUMBER_TRANSIENT_POINTS=50 +EndPoint_TimeBetweenPoints=2,8 +Transient_Number_Cycles=1 +Transient_Loss_Calculation=0 +External_Duty_Cycle_File= +SaveDutyCycleDataInMot=False +ExternalDutyCycleDataInMot=False +DutyCycle_LossValue_Used=2 +Transient_Fluid_Capacitance=1 +UseEndPointTempLimit_Magnet=False +EndPointTempLimit_Magnet=180 +UseEndPointTempLimit_Bearing=False +EndPointTempLimit_Bearing=180 +UseEndPointTempLimit_ArmatureWdg=True +EndPointTempLimit_ArmatureWdg=180 +UseEndPointTempLimit_FieldWdg=False +EndPointTempLimit_FieldWdg=180 +UseEndPointTempLimit_Commutator=False +EndPointTempLimit_Commutator=180 +UseEndPointTempLimit_Brushes=False +EndPointTempLimit_Brushes=180 +UseEndPointTempLimit_Cage=False +EndPointTempLimit_Cage=180 +UseEndPointTempLimit_Encoder=False +EndPointTempLimit_Encoder=180 +EndPoint_Definition=0 +EndPoint_SimplePoints=10 +EndPoint_StableSeconds=10 +EndPoint_StableConvergenceErrorTolerance=0,001 +Endpoint_DutyPoints=10 +Duty_Cycle_Num_Periods=5 +Duty_Cycle_Points[0]=4 +Duty_Cycle_Points[1]=4 +Duty_Cycle_Points[2]=4 +Duty_Cycle_Points[3]=5 +Duty_Cycle_Points[4]=3 +Duty_Cycle_Time[0]=20 +Duty_Cycle_Time[1]=40 +Duty_Cycle_Time[2]=30 +Duty_Cycle_Time[3]=40 +Duty_Cycle_Time[4]=10 +Duty_Cycle_Vehicle_Speed_Start[0]=15 +Duty_Cycle_Vehicle_Speed_Start[1]=15 +Duty_Cycle_Vehicle_Speed_Start[2]=15 +Duty_Cycle_Vehicle_Speed_Start[3]=15 +Duty_Cycle_Vehicle_Speed_Start[4]=15 +Duty_Cycle_Vehicle_Speed_End[0]=15 +Duty_Cycle_Vehicle_Speed_End[1]=15 +Duty_Cycle_Vehicle_Speed_End[2]=15 +Duty_Cycle_Vehicle_Speed_End[3]=15 +Duty_Cycle_Vehicle_Speed_End[4]=15 +Duty_Cycle_Speed_Start[0]=3000 +Duty_Cycle_Speed_Start[1]=3000 +Duty_Cycle_Speed_Start[2]=6000 +Duty_Cycle_Speed_Start[3]=0 +Duty_Cycle_Speed_Start[4]=4000 +Duty_Cycle_Speed_End[0]=3000 +Duty_Cycle_Speed_End[1]=6000 +Duty_Cycle_Speed_End[2]=0 +Duty_Cycle_Speed_End[3]=4000 +Duty_Cycle_Speed_End[4]=3000 +Duty_Cycle_Fault[0]=0 +Duty_Cycle_Fault[1]=0 +Duty_Cycle_Fault[2]=0 +Duty_Cycle_Fault[3]=0 +Duty_Cycle_Fault[4]=0 +Duty_Cycle_Ambient_Temp[0]=40 +Duty_Cycle_Ambient_Temp[1]=40 +Duty_Cycle_Ambient_Temp[2]=40 +Duty_Cycle_Ambient_Temp[3]=40 +Duty_Cycle_Ambient_Temp[4]=40 +Duty_Cycle_Altitude[0]=0 +Duty_Cycle_Altitude[1]=0 +Duty_Cycle_Altitude[2]=0 +Duty_Cycle_Altitude[3]=0 +Duty_Cycle_Altitude[4]=0 +Duty_Cycle_Gradient[0]=0 +Duty_Cycle_Gradient[1]=0 +Duty_Cycle_Gradient[2]=0 +Duty_Cycle_Gradient[3]=0 +Duty_Cycle_Gradient[4]=0 +Duty_Cycle_Stator_Back_Iron_Loss[0]=1 +Duty_Cycle_Stator_Back_Iron_Loss[1]=1 +Duty_Cycle_Stator_Back_Iron_Loss[2]=1 +Duty_Cycle_Stator_Back_Iron_Loss[3]=1 +Duty_Cycle_Stator_Back_Iron_Loss[4]=1 +Duty_Cycle_Stator_Tooth_Loss[0]=0 +Duty_Cycle_Stator_Tooth_Loss[1]=0 +Duty_Cycle_Stator_Tooth_Loss[2]=0 +Duty_Cycle_Stator_Tooth_Loss[3]=0 +Duty_Cycle_Stator_Tooth_Loss[4]=0 +Duty_Cycle_Torque_Start[0]=1 +Duty_Cycle_Torque_Start[1]=2,5 +Duty_Cycle_Torque_Start[2]=0,1 +Duty_Cycle_Torque_Start[3]=3 +Duty_Cycle_Torque_Start[4]=0,3 +Duty_Cycle_Torque_End[0]=1 +Duty_Cycle_Torque_End[1]=2,5 +Duty_Cycle_Torque_End[2]=0,1 +Duty_Cycle_Torque_End[3]=3 +Duty_Cycle_Torque_End[4]=0,3 +Duty_Cycle_Current_Start[0]=1 +Duty_Cycle_Current_Start[1]=2,5 +Duty_Cycle_Current_Start[2]=0,1 +Duty_Cycle_Current_Start[3]=3 +Duty_Cycle_Current_Start[4]=0,3 +Duty_Cycle_Current_End[0]=1 +Duty_Cycle_Current_End[1]=2,5 +Duty_Cycle_Current_End[2]=0,1 +Duty_Cycle_Current_End[3]=3 +Duty_Cycle_Current_End[4]=0,3 +Duty_Cycle_DC_Bus_Voltage[0]=100 +Duty_Cycle_DC_Bus_Voltage[1]=100 +Duty_Cycle_DC_Bus_Voltage[2]=100 +Duty_Cycle_DC_Bus_Voltage[3]=100 +Duty_Cycle_DC_Bus_Voltage[4]=100 +Duty_Cycle_Gear_Ratio[0]=4,113 +Duty_Cycle_Gear_Ratio[1]=4,113 +Duty_Cycle_Gear_Ratio[2]=4,113 +Duty_Cycle_Gear_Ratio[3]=4,113 +Duty_Cycle_Gear_Ratio[4]=4,113 +Duty_Cycle_Armature_Copper_Loss_DC[0]=0,5 +Duty_Cycle_Armature_Copper_Loss_DC[1]=2,5 +Duty_Cycle_Armature_Copper_Loss_DC[2]=0,1 +Duty_Cycle_Armature_Copper_Loss_DC[3]=3 +Duty_Cycle_Armature_Copper_Loss_DC[4]=0,3 +Duty_Cycle_Armature_Copper_Loss_AC[0]=1 +Duty_Cycle_Armature_Copper_Loss_AC[1]=1 +Duty_Cycle_Armature_Copper_Loss_AC[2]=1 +Duty_Cycle_Armature_Copper_Loss_AC[3]=1 +Duty_Cycle_Armature_Copper_Loss_AC[4]=1 +Duty_Cycle_Armature_Copper_Loss_DC_Aux[0]=0 +Duty_Cycle_Armature_Copper_Loss_DC_Aux[1]=0 +Duty_Cycle_Armature_Copper_Loss_DC_Aux[2]=0 +Duty_Cycle_Armature_Copper_Loss_DC_Aux[3]=0 +Duty_Cycle_Armature_Copper_Loss_DC_Aux[4]=0 +Duty_Cycle_Field_Copper_Loss_DC[0]=0,7 +Duty_Cycle_Field_Copper_Loss_DC[1]=3 +Duty_Cycle_Field_Copper_Loss_DC[2]=0,1 +Duty_Cycle_Field_Copper_Loss_DC[3]=3,5 +Duty_Cycle_Field_Copper_Loss_DC[4]=0,3 +Duty_Cycle_Magnet_Loss[0]=0 +Duty_Cycle_Magnet_Loss[1]=0 +Duty_Cycle_Magnet_Loss[2]=0 +Duty_Cycle_Magnet_Loss[3]=0 +Duty_Cycle_Magnet_Loss[4]=0 +Duty_Cycle_Rotor_Back_Iron_Loss[0]=0,7 +Duty_Cycle_Rotor_Back_Iron_Loss[1]=1,5 +Duty_Cycle_Rotor_Back_Iron_Loss[2]=0,1 +Duty_Cycle_Rotor_Back_Iron_Loss[3]=2 +Duty_Cycle_Rotor_Back_Iron_Loss[4]=0,3 +Duty_Cycle_Embedded_Magnet_Pole_Loss[0]=0 +Duty_Cycle_Embedded_Magnet_Pole_Loss[1]=0 +Duty_Cycle_Embedded_Magnet_Pole_Loss[2]=0 +Duty_Cycle_Embedded_Magnet_Pole_Loss[3]=0 +Duty_Cycle_Embedded_Magnet_Pole_Loss[4]=0 +Duty_Cycle_Rotor_Tooth_Loss[0]=0 +Duty_Cycle_Rotor_Tooth_Loss[1]=0 +Duty_Cycle_Rotor_Tooth_Loss[2]=0 +Duty_Cycle_Rotor_Tooth_Loss[3]=0 +Duty_Cycle_Rotor_Tooth_Loss[4]=0 +Duty_Cycle_Friction_Loss_F[0]=0 +Duty_Cycle_Friction_Loss_F[1]=0 +Duty_Cycle_Friction_Loss_F[2]=0 +Duty_Cycle_Friction_Loss_F[3]=0 +Duty_Cycle_Friction_Loss_F[4]=0 +Duty_Cycle_Friction_Loss_R[0]=0 +Duty_Cycle_Friction_Loss_R[1]=0 +Duty_Cycle_Friction_Loss_R[2]=0 +Duty_Cycle_Friction_Loss_R[3]=0 +Duty_Cycle_Friction_Loss_R[4]=0 +Duty_Cycle_Windage_Loss[0]=0 +Duty_Cycle_Windage_Loss[1]=0 +Duty_Cycle_Windage_Loss[2]=0 +Duty_Cycle_Windage_Loss[3]=0 +Duty_Cycle_Windage_Loss[4]=0 +Duty_Cycle_Windage_Loss_Ext_Fan[0]=0 +Duty_Cycle_Windage_Loss_Ext_Fan[1]=0 +Duty_Cycle_Windage_Loss_Ext_Fan[2]=0 +Duty_Cycle_Windage_Loss_Ext_Fan[3]=0 +Duty_Cycle_Windage_Loss_Ext_Fan[4]=0 +Duty_Cycle_Brush_Electrical_Loss[0]=0 +Duty_Cycle_Brush_Electrical_Loss[1]=0 +Duty_Cycle_Brush_Electrical_Loss[2]=0 +Duty_Cycle_Brush_Electrical_Loss[3]=0 +Duty_Cycle_Brush_Electrical_Loss[4]=0 +Duty_Cycle_Brush_Friction_Loss[0]=0 +Duty_Cycle_Brush_Friction_Loss[1]=0 +Duty_Cycle_Brush_Friction_Loss[2]=0 +Duty_Cycle_Brush_Friction_Loss[3]=0 +Duty_Cycle_Brush_Friction_Loss[4]=0 +Duty_Cycle_Encoder_Loss[0]=0 +Duty_Cycle_Encoder_Loss[1]=0 +Duty_Cycle_Encoder_Loss[2]=0 +Duty_Cycle_Encoder_Loss[3]=0 +Duty_Cycle_Encoder_Loss[4]=0 +Duty_Cycle_Stray_Load_Stator_Iron_Loss[0]=0 +Duty_Cycle_Stray_Load_Stator_Iron_Loss[1]=0 +Duty_Cycle_Stray_Load_Stator_Iron_Loss[2]=0 +Duty_Cycle_Stray_Load_Stator_Iron_Loss[3]=0 +Duty_Cycle_Stray_Load_Stator_Iron_Loss[4]=0 +Duty_Cycle_Stray_Load_Rotor_Iron_Loss[0]=0 +Duty_Cycle_Stray_Load_Rotor_Iron_Loss[1]=0 +Duty_Cycle_Stray_Load_Rotor_Iron_Loss[2]=0 +Duty_Cycle_Stray_Load_Rotor_Iron_Loss[3]=0 +Duty_Cycle_Stray_Load_Rotor_Iron_Loss[4]=0 +Duty_Cycle_Stray_Load_Armature_Copper_Loss[0]=0 +Duty_Cycle_Stray_Load_Armature_Copper_Loss[1]=0 +Duty_Cycle_Stray_Load_Armature_Copper_Loss[2]=0 +Duty_Cycle_Stray_Load_Armature_Copper_Loss[3]=0 +Duty_Cycle_Stray_Load_Armature_Copper_Loss[4]=0 +Duty_Cycle_Stray_Load_Field_Copper_Loss[0]=0 +Duty_Cycle_Stray_Load_Field_Copper_Loss[1]=0 +Duty_Cycle_Stray_Load_Field_Copper_Loss[2]=0 +Duty_Cycle_Stray_Load_Field_Copper_Loss[3]=0 +Duty_Cycle_Stray_Load_Field_Copper_Loss[4]=0 +Duty_Cycle_Banding_Loss[0]=0 +Duty_Cycle_Banding_Loss[1]=0 +Duty_Cycle_Banding_Loss[2]=0 +Duty_Cycle_Banding_Loss[3]=0 +Duty_Cycle_Banding_Loss[4]=0 +Duty_Cycle_Sleeve_Loss[0]=0 +Duty_Cycle_Sleeve_Loss[1]=0 +Duty_Cycle_Sleeve_Loss[2]=0 +Duty_Cycle_Sleeve_Loss[3]=0 +Duty_Cycle_Sleeve_Loss[4]=0 +Reference_Shaft_Torque=1,21387188184284 +Reference_Line_Current_RMS=0,687223392972767 +dT_Ambient_To_Time_End=0 +dTambient_Over_Transient_Time_Period=0 +Fault_Phases=3 +number_of_phases=3 +Transient_Calculation_Type=Simple_Transient +Duty_Cycle_Pcu_Value_or_pu_Input=Duty_Cycle_Pcu_pu_Input +Duty_Cycle_Data_Definition=Duty_Cycle_Loss_Speed + +[Transient_Settings] +TransientResultsAnalysisEnabled=False +TransientResultsAnalysisFile= +TransientResultsAnalysisPeriod=1 +EnableTemperatureVariationWithinStep=True +TemperatureVariationWithinStep=2 +AllowableTemperatureVariation=0,1 +AllowableTimeVariation=0,1 +FluidTemperatureCalculation=2 +TransientResultsView=0 + +[h_Nat_Con_Adjust] +h_Nat_Conv_Housing_Active_No_Fins_Adjust=1 +Adjustment_H[Nc]_Housing_[A]_-_No_Fins=1 +h_Nat_Conv_Housing_Active_Fin_Base_Adjust=1 +Adjustment_H[Nc]_Housing_[A]_-_Fin_Base=1 +h_Nat_Conv_Housing_Active_Fin_Sides_Adjust=1 +Adjustment_H[Nc]_Housing_[A]_-_Fin_Sides=1 +h_Nat_Conv_Housing_Active_Fin_Tips_Adjust=1 +Adjustment_H[Nc]_Housing_[A]_-_Fin_Tips=1 +h_Nat_Conv_Housing_Active_Fin_Channel_Adjust=1 +Adjustment_H[Nc]_Housing_[A]_-_Fin_Channel=1 +h_Nat_Conv_Housing_Active_Corner_Cutout_Adjust=1 +Adjustment_H[Nc]_Housing_[A]_-_Corner_Cutout=1 +h_Nat_Conv_Housing_Front_No_Fins_Adjust=1 +Adjustment_H[Nc]_Housing_[F]_-_No_Fins=1 +h_Nat_Conv_Housing_Front_Fin_Base_Adjust=1 +Adjustment_H[Nc]_Housing_[F]_-_Fin_Base=1 +h_Nat_Conv_Housing_Front_Fin_Sides_Adjust=1 +Adjustment_H[Nc]_Housing_[F]_-_Fin_Sides=1 +h_Nat_Conv_Housing_Front_Fin_Tips_Adjust=1 +Adjustment_H[Nc]_Housing_[F]_-_Fin_Tips=1 +h_Nat_Conv_Housing_Front_Fin_Channel_Adjust=1 +Adjustment_H[Nc]_Housing_[F]_-_Fin_Channel=1 +h_Nat_Conv_Housing_Front_Corner_Cutout_Adjust=1 +Adjustment_H[Nc]_Housing_[F]_-_Corner_Cutout=1 +h_Nat_Conv_Housing_Rear_No_Fins_Adjust=1 +Adjustment_H[Nc]_Housing_[R]_-_No_Fins=1 +h_Nat_Conv_Housing_Rear_Fin_Base_Adjust=1 +Adjustment_H[Nc]_Housing_[R]_-_Fin_Base=1 +h_Nat_Conv_Housing_Rear_Fin_Sides_Adjust=1 +Adjustment_H[Nc]_Housing_[R]_-_Fin_Sides=1 +h_Nat_Conv_Housing_Rear_Fin_Tips_Adjust=1 +Adjustment_H[Nc]_Housing_[R]_-_Fin_Tips=1 +h_Nat_Conv_Housing_Rear_Fin_Channel_Adjust=1 +Adjustment_H[Nc]_Housing_[R]_-_Fin_Channel=1 +h_Nat_Conv_Housing_Rear_Corner_Cutout_Adjust=1 +Adjustment_H[Nc]_Housing_[R]_-_Corner_Cutout=1 +h_Nat_Conv_Endcap_Front_Radial_Adjust=1 +Adjustment_H[Nc]_Endcap_[F]_-_Radial=1 +h_Nat_Conv_Endcap_Front_Axial_Adjust=1 +Adjustment_H[Nc]_Endcap_[F]_-_Axial=1 +h_Nat_Conv_Endcap_Rear_Radial_Adjust=1 +Adjustment_H[Nc]_Endcap_[R]_-_Radial=1 +h_Nat_Conv_Endcap_Rear_Axial_Adjust=1 +Adjustment_H[Nc]_Endcap_[R]_-_Axial=1 +h_Nat_Conv_Plate_Adjust=1 +Adjustment_H[Nc]_Flange_Plate=1 +h_Nat_Conv_Axle_Plate_F_Adjust=1 +Adjustment_H[Nc]_Axle_Plate_[F]=1 +h_Nat_Conv_Axle_Plate_R_Adjust=1 +Adjustment_H[Nc]_Axle_Plate_[R]=1 +h_Nat_Conv_Base_Adjust=1 +Adjustment_H[Nc]_Base_Plate=1 +h_Nat_Conv_EncCase_Radial_Adjust=1 +Adjustment_H[Nc]_Encoder_Case_-_Radial=1 +h_Nat_Conv_EncCase_Axial_Adjust=1 +Adjustment_H[Nc]_Encoder_Case_-_Axial=1 + +[h_Nat_Con_Input] +h_Nat_Conv_Housing_Active_No_Fins_Input=6 +Input_Value_H[Nc]_Housing_[A]_-_No_Fins=6 +h_Nat_Conv_Housing_Active_Fin_Base_Input=6 +Input_Value_H[Nc]_Housing_[A]_-_Fin_Base=6 +h_Nat_Conv_Housing_Active_Fin_Sides_Input=6 +Input_Value_H[Nc]_Housing_[A]_-_Fin_Sides=6 +h_Nat_Conv_Housing_Active_Fin_Tips_Input=6 +Input_Value_H[Nc]_Housing_[A]_-_Fin_Tips=6 +h_Nat_Conv_Housing_Active_Fin_Channel_Input=6 +Input_Value_H[Nc]_Housing_[A]_-_Fin_Channel=6 +h_Nat_Conv_Housing_Active_Corner_Cutout_Input=6 +Input_Value_H[Nc]_Housing_[A]_-_Corner_Cutout=6 +h_Nat_Conv_Housing_Front_No_Fins_Input=6 +Input_Value_H[Nc]_Housing_[F]_-_No_Fins=6 +h_Nat_Conv_Housing_Front_Fin_Base_Input=6 +Input_Value_H[Nc]_Housing_[F]_-_Fin_Base=6 +h_Nat_Conv_Housing_Front_Fin_Sides_Input=6 +Input_Value_H[Nc]_Housing_[F]_-_Fin_Sides=6 +h_Nat_Conv_Housing_Front_Fin_Tips_Input=6 +Input_Value_H[Nc]_Housing_[F]_-_Fin_Tips=6 +h_Nat_Conv_Housing_Front_Fin_Channel_Input=6 +Input_Value_H[Nc]_Housing_[F]_-_Fin_Channel=6 +h_Nat_Conv_Housing_Front_Corner_Cutout_Input=6 +Input_Value_H[Nc]_Housing_[F]_-_Corner_Cutout=6 +h_Nat_Conv_Housing_Rear_No_Fins_Input=6 +Input_Value_H[Nc]_Housing_[R]_-_No_Fins=6 +h_Nat_Conv_Housing_Rear_Fin_Base_Input=6 +Input_Value_H[Nc]_Housing_[R]_-_Fin_Base=6 +h_Nat_Conv_Housing_Rear_Fin_Sides_Input=6 +Input_Value_H[Nc]_Housing_[R]_-_Fin_Sides=6 +h_Nat_Conv_Housing_Rear_Fin_Tips_Input=6 +Input_Value_H[Nc]_Housing_[R]_-_Fin_Tips=6 +h_Nat_Conv_Housing_Rear_Fin_Channel_Input=6 +Input_Value_H[Nc]_Housing_[R]_-_Fin_Channel=6 +h_Nat_Conv_Housing_Rear_Corner_Cutout_Input=6 +Input_Value_H[Nc]_Housing_[R]_-_Corner_Cutout=6 +h_Nat_Conv_Endcap_Front_Radial_Input=6 +Input_Value_H[Nc]_Endcap_[F]_-_Radial=6 +h_Nat_Conv_Endcap_Front_Axial_Input=6 +Input_Value_H[Nc]_Endcap_[F]_-_Axial=6 +h_Nat_Conv_Endcap_Rear_Radial_Input=6 +Input_Value_H[Nc]_Endcap_[R]_-_Radial=6 +h_Nat_Conv_Endcap_Rear_Axial_Input=6 +Input_Value_H[Nc]_Endcap_[R]_-_Axial=6 +h_Nat_Conv_Plate_Input=6 +Input_Value_H[Nc]_Flange_Plate=6 +h_Nat_Conv_Axle_Plate_F_Input=6 +Input_Value_H[Nc]_Axle_Plate_[F]=6 +h_Nat_Conv_Axle_Plate_R_Input=6 +Input_Value_H[Nc]_Axle_Plate_[R]=6 +h_Nat_Conv_Base_Input=6 +Input_Value_H[Nc]_Base_Plate=6 +h_Nat_Conv_EncCase_Radial_Input=6 +Input_Value_H[Nc]_Encoder_Case_-_Radial=6 +h_Nat_Conv_EncCase_Axial_Input=6 +Input_Value_H[Nc]_Encoder_Case_-_Axial=6 + +[Nat_Con_Notes] +Nat_Conv_Notes_Housing_Active_No_Fins= +Notes_H[Nc]_Housing_[A]_-_No_Fins= +Nat_Conv_Notes_Housing_Active_Fin_Base= +Notes_H[Nc]_Housing_[A]_-_Fin_Base= +Nat_Conv_Notes_Housing_Active_Fin_Sides= +Notes_H[Nc]_Housing_[A]_-_Fin_Sides= +Nat_Conv_Notes_Housing_Active_Fin_Tips= +Notes_H[Nc]_Housing_[A]_-_Fin_Tips= +Nat_Conv_Notes_Housing_Active_Fin_Channel= +Notes_H[Nc]_Housing_[A]_-_Fin_Channel= +Nat_Conv_Notes_Housing_Active_Corner_Cutout= +Notes_H[Nc]_Housing_[A]_-_Corner_Cutout= +Nat_Conv_Notes_Housing_Front_No_Fins= +Notes_H[Nc]_Housing_[F]_-_No_Fins= +Nat_Conv_Notes_Housing_Front_Fin_Base= +Notes_H[Nc]_Housing_[F]_-_Fin_Base= +Nat_Conv_Notes_Housing_Front_Fin_Sides= +Notes_H[Nc]_Housing_[F]_-_Fin_Sides= +Nat_Conv_Notes_Housing_Front_Fin_Tips= +Notes_H[Nc]_Housing_[F]_-_Fin_Tips= +Nat_Conv_Notes_Housing_Front_Fin_Channel= +Notes_H[Nc]_Housing_[F]_-_Fin_Channel= +Nat_Conv_Notes_Housing_Front_Corner_Cutout= +Notes_H[Nc]_Housing_[F]_-_Corner_Cutout= +Nat_Conv_Notes_Housing_Rear_No_Fins= +Notes_H[Nc]_Housing_[R]_-_No_Fins= +Nat_Conv_Notes_Housing_Rear_Fin_Base= +Notes_H[Nc]_Housing_[R]_-_Fin_Base= +Nat_Conv_Notes_Housing_Rear_Fin_Sides= +Notes_H[Nc]_Housing_[R]_-_Fin_Sides= +Nat_Conv_Notes_Housing_Rear_Fin_Tips= +Notes_H[Nc]_Housing_[R]_-_Fin_Tips= +Nat_Conv_Notes_Housing_Rear_Fin_Channel= +Notes_H[Nc]_Housing_[R]_-_Fin_Channel= +Nat_Conv_Notes_Housing_Rear_Corner_Cutout= +Notes_H[Nc]_Housing_[R]_-_Corner_Cutout= +Nat_Conv_Notes_Endcap_Front_Radial= +Notes_H[Nc]_Endcap_[F]_-_Radial= +Nat_Conv_Notes_Endcap_Front_Axial= +Notes_H[Nc]_Endcap_[F]_-_Axial= +Nat_Conv_Notes_Endcap_Rear_Radial= +Notes_H[Nc]_Endcap_[R]_-_Radial= +Nat_Conv_Notes_Endcap_Rear_Axial= +Notes_H[Nc]_Endcap_[R]_-_Axial= +Nat_Conv_Notes_Plate= +Notes_H[Nc]_Flange_Plate= +Nat_Conv_Notes_Axle_Plate_F= +Notes_H[Nc]_Axle_Plate_[F]= +Nat_Conv_Notes_Axle_Plate_R= +Notes_H[Nc]_Axle_Plate_[R]= +Nat_Conv_Notes_Base= +Notes_H[Nc]_Base_Plate= +Nat_Conv_Notes_EncCase_Radial= +Notes_H[Nc]_Encoder_Case_-_Radial= +Nat_Conv_Notes_EncCase_Axial= +Notes_H[Nc]_Encoder_Case_-_Axial= + +[h_Forced_Con_Vel_Mult] +Velocity_Forced_Conv_Housing_Front_No_Fins_Multiplier=0,2384 +Velocity_Multiplier_H[Fc]_Housing_[F]_-_No_Fins=0,2384 +Velocity_Forced_Conv_Housing_Front_Fin_Base_Multiplier=0,2224 +Velocity_Multiplier_H[Fc]_Housing_[F]_-_Fin_Base=0,2224 +Velocity_Forced_Conv_Housing_Front_Fin_Sides_Multiplier=0,2224 +Velocity_Multiplier_H[Fc]_Housing_[F]_-_Fin_Sides=0,2224 +Velocity_Forced_Conv_Housing_Front_Fin_Tips_Multiplier=0,2224 +Velocity_Multiplier_H[Fc]_Housing_[F]_-_Fin_Tips=0,2224 +Velocity_Forced_Conv_Housing_Front_Fin_Channel_Multiplier=1 +Velocity_Multiplier_H[Fc]_Housing_[F]_-_Fin_Channel=1 +Velocity_Forced_Conv_Housing_Front_Corner_Cutout_Multiplier=0,2224 +Velocity_Multiplier_H[Fc]_Housing_[F]_-_Corner_Cutout=0,2224 +Velocity_Forced_Conv_Housing_Rear_No_Fins_Multiplier=0,4816 +Velocity_Multiplier_H[Fc]_Housing_[R]_-_No_Fins=0,4816 +Velocity_Forced_Conv_Housing_Rear_Fin_Base_Multiplier=0,5744 +Velocity_Multiplier_H[Fc]_Housing_[R]_-_Fin_Base=0,5744 +Velocity_Forced_Conv_Housing_Rear_Fin_Sides_Multiplier=0,5744 +Velocity_Multiplier_H[Fc]_Housing_[R]_-_Fin_Sides=0,5744 +Velocity_Forced_Conv_Housing_Rear_Fin_Tips_Multiplier=0,5744 +Velocity_Multiplier_H[Fc]_Housing_[R]_-_Fin_Tips=0,5744 +Velocity_Forced_Conv_Housing_Rear_Fin_Channel_Multiplier=1 +Velocity_Multiplier_H[Fc]_Housing_[R]_-_Fin_Channel=1 +Velocity_Forced_Conv_Housing_Rear_Corner_Cutout_Multiplier=0,5744 +Velocity_Multiplier_H[Fc]_Housing_[R]_-_Corner_Cutout=0,5744 +Velocity_Forced_Conv_Endcap_Front_Radial_Multiplier=0,211904 +Velocity_Multiplier_H[Fc]_Endcap_[F]_-_Radial=0,211904 +Velocity_Forced_Conv_Endcap_Front_Axial_Multiplier=0,211904 +Velocity_Multiplier_H[Fc]_Endcap_[F]_-_Axial=0,211904 +Velocity_Forced_Conv_Endcap_Rear_Radial_Multiplier=0,668864 +Velocity_Multiplier_H[Fc]_Endcap_[R]_-_Radial=0,668864 +Velocity_Forced_Conv_Endcap_Rear_Axial_Multiplier=1 +Velocity_Multiplier_H[Fc]_Endcap_[R]_-_Axial=1 +Velocity_Forced_Conv_Plate_Multiplier=0,201664 +Velocity_Multiplier_H[Fc]_Flange_Plate=0,201664 +Velocity_Forced_Conv_Axle_Plate_F_Multiplier=0 +Velocity_Multiplier_H[Fc]_Axle_Plate_[F]=0 +Velocity_Forced_Conv_Axle_Plate_R_Multiplier=0 +Velocity_Multiplier_H[Fc]_Axle_Plate_[R]=0 +Velocity_Forced_Conv_Base_Multiplier=0,2 +Velocity_Multiplier_H[Fc]_Base_Plate=0,2 +Velocity_Forced_Conv_EncCase_Radial_Multiplier=0,7 +Velocity_Multiplier_H[Fc]_Encoder_Case_-_Radial=0,7 +Velocity_Forced_Conv_EncCase_Axial_Multiplier=0,7 +Velocity_Multiplier_H[Fc]_Encoder_Case_-_Axial=0,7 + +[h_Forced_Con_Adjust] +Forced_Conv_Turbulence_Factor=1,7 +Turbulence_Factor=1,7 +h_Forced_Conv_Housing_Front_No_Fins_Adjust=1 +Adjustment_H[Fc]_Housing_[F]_-_No_Fins=1 +h_Forced_Conv_Housing_Front_Fin_Base_Adjust=1 +Adjustment_H[Fc]_Housing_[F]_-_Fin_Base=1 +h_Forced_Conv_Housing_Front_Fin_Sides_Adjust=1 +Adjustment_H[Fc]_Housing_[F]_-_Fin_Sides=1 +h_Forced_Conv_Housing_Front_Fin_Tips_Adjust=1 +Adjustment_H[Fc]_Housing_[F]_-_Fin_Tips=1 +h_Forced_Conv_Housing_Front_Fin_Channel_Adjust=1 +Adjustment_H[Fc]_Housing_[F]_-_Fin_Channel=1 +h_Forced_Conv_Housing_Front_Corner_Cutout_Adjust=1 +Adjustment_H[Fc]_Housing_[F]_-_Corner_Cutout=1 +h_Forced_Conv_Housing_Rear_No_Fins_Adjust=1 +Adjustment_H[Fc]_Housing_[R]_-_No_Fins=1 +h_Forced_Conv_Housing_Rear_Fin_Base_Adjust=1 +Adjustment_H[Fc]_Housing_[R]_-_Fin_Base=1 +h_Forced_Conv_Housing_Rear_Fin_Sides_Adjust=1 +Adjustment_H[Fc]_Housing_[R]_-_Fin_Sides=1 +h_Forced_Conv_Housing_Rear_Fin_Tips_Adjust=1 +Adjustment_H[Fc]_Housing_[R]_-_Fin_Tips=1 +h_Forced_Conv_Housing_Rear_Fin_Channel_Adjust=1 +Adjustment_H[Fc]_Housing_[R]_-_Fin_Channel=1 +h_Forced_Conv_Housing_Rear_Corner_Cutout_Adjust=1 +Adjustment_H[Fc]_Housing_[R]_-_Corner_Cutout=1 +h_Forced_Conv_Endcap_Front_Radial_Adjust=1 +Adjustment_H[Fc]_Endcap_[F]_-_Radial=1 +h_Forced_Conv_Endcap_Front_Axial_Adjust=1 +Adjustment_H[Fc]_Endcap_[F]_-_Axial=1 +h_Forced_Conv_Endcap_Rear_Radial_Adjust=1 +Adjustment_H[Fc]_Endcap_[R]_-_Radial=1 +h_Forced_Conv_Endcap_Rear_Axial_Adjust=1 +Adjustment_H[Fc]_Endcap_[R]_-_Axial=1 +h_Forced_Conv_Plate_Adjust=1 +Adjustment_H[Fc]_Flange_Plate=1 +h_Forced_Conv_Axle_Plate_F_Adjust=1 +Adjustment_H[Fc]_Axle_Plate_[F]=1 +h_Forced_Conv_Axle_Plate_R_Adjust=1 +Adjustment_H[Fc]_Axle_Plate_[R]=1 +h_Forced_Conv_Base_Adjust=1 +Adjustment_H[Fc]_Base_Plate=1 +h_Forced_Conv_EncCase_Radial_Adjust=1 +Adjustment_H[Fc]_Encoder_Case_-_Radial=1 +h_Forced_Conv_EncCase_Axial_Adjust=1 +Adjustment_H[Fc]_Encoder_Case_-_Axial=1 + +[Forced_Con_Notes] +Forced_Conv_Notes_Housing_Front_No_Fins[0]= +Notes_H[Fc]_Housing_[F]_-_No_Fins[0]= +Forced_Conv_Notes_Housing_Front_No_Fins[1]= +Notes_H[Fc]_Housing_[F]_-_No_Fins[1]= +Forced_Conv_Notes_Housing_Front_No_Fins[2]= +Notes_H[Fc]_Housing_[F]_-_No_Fins[2]= +Forced_Conv_Notes_Housing_Front_No_Fins[3]= +Notes_H[Fc]_Housing_[F]_-_No_Fins[3]= +Forced_Conv_Notes_Housing_Front_No_Fins[4]= +Notes_H[Fc]_Housing_[F]_-_No_Fins[4]= +Forced_Conv_Notes_Housing_Front_No_Fins[5]= +Notes_H[Fc]_Housing_[F]_-_No_Fins[5]= +Forced_Conv_Notes_Housing_Front_No_Fins[6]= +Notes_H[Fc]_Housing_[F]_-_No_Fins[6]= +Forced_Conv_Notes_Housing_Front_No_Fins[7]= +Notes_H[Fc]_Housing_[F]_-_No_Fins[7]= +Forced_Conv_Notes_Housing_Front_No_Fins[8]= +Notes_H[Fc]_Housing_[F]_-_No_Fins[8]= +Forced_Conv_Notes_Housing_Front_Fin_Base[0]= +Notes_H[Fc]_Housing_[F]_-_Fin_Base[0]= +Forced_Conv_Notes_Housing_Front_Fin_Base[1]= +Notes_H[Fc]_Housing_[F]_-_Fin_Base[1]= +Forced_Conv_Notes_Housing_Front_Fin_Base[2]= +Notes_H[Fc]_Housing_[F]_-_Fin_Base[2]= +Forced_Conv_Notes_Housing_Front_Fin_Base[3]= +Notes_H[Fc]_Housing_[F]_-_Fin_Base[3]= +Forced_Conv_Notes_Housing_Front_Fin_Base[4]= +Notes_H[Fc]_Housing_[F]_-_Fin_Base[4]= +Forced_Conv_Notes_Housing_Front_Fin_Base[5]= +Notes_H[Fc]_Housing_[F]_-_Fin_Base[5]= +Forced_Conv_Notes_Housing_Front_Fin_Base[6]= +Notes_H[Fc]_Housing_[F]_-_Fin_Base[6]= +Forced_Conv_Notes_Housing_Front_Fin_Base[7]= +Notes_H[Fc]_Housing_[F]_-_Fin_Base[7]= +Forced_Conv_Notes_Housing_Front_Fin_Base[8]= +Notes_H[Fc]_Housing_[F]_-_Fin_Base[8]= +Forced_Conv_Notes_Housing_Front_Fin_Sides[0]= +Notes_H[Fc]_Housing_[F]_-_Fin_Sides[0]= +Forced_Conv_Notes_Housing_Front_Fin_Sides[1]= +Notes_H[Fc]_Housing_[F]_-_Fin_Sides[1]= +Forced_Conv_Notes_Housing_Front_Fin_Sides[2]= +Notes_H[Fc]_Housing_[F]_-_Fin_Sides[2]= +Forced_Conv_Notes_Housing_Front_Fin_Sides[3]= +Notes_H[Fc]_Housing_[F]_-_Fin_Sides[3]= +Forced_Conv_Notes_Housing_Front_Fin_Sides[4]= +Notes_H[Fc]_Housing_[F]_-_Fin_Sides[4]= +Forced_Conv_Notes_Housing_Front_Fin_Sides[5]= +Notes_H[Fc]_Housing_[F]_-_Fin_Sides[5]= +Forced_Conv_Notes_Housing_Front_Fin_Sides[6]= +Notes_H[Fc]_Housing_[F]_-_Fin_Sides[6]= +Forced_Conv_Notes_Housing_Front_Fin_Sides[7]= +Notes_H[Fc]_Housing_[F]_-_Fin_Sides[7]= +Forced_Conv_Notes_Housing_Front_Fin_Sides[8]= +Notes_H[Fc]_Housing_[F]_-_Fin_Sides[8]= +Forced_Conv_Notes_Housing_Front_Fin_Tips[0]= +Notes_H[Fc]_Housing_[F]_-_Fin_Tips[0]= +Forced_Conv_Notes_Housing_Front_Fin_Tips[1]= +Notes_H[Fc]_Housing_[F]_-_Fin_Tips[1]= +Forced_Conv_Notes_Housing_Front_Fin_Tips[2]= +Notes_H[Fc]_Housing_[F]_-_Fin_Tips[2]= +Forced_Conv_Notes_Housing_Front_Fin_Tips[3]= +Notes_H[Fc]_Housing_[F]_-_Fin_Tips[3]= +Forced_Conv_Notes_Housing_Front_Fin_Tips[4]= +Notes_H[Fc]_Housing_[F]_-_Fin_Tips[4]= +Forced_Conv_Notes_Housing_Front_Fin_Tips[5]= +Notes_H[Fc]_Housing_[F]_-_Fin_Tips[5]= +Forced_Conv_Notes_Housing_Front_Fin_Tips[6]= +Notes_H[Fc]_Housing_[F]_-_Fin_Tips[6]= +Forced_Conv_Notes_Housing_Front_Fin_Tips[7]= +Notes_H[Fc]_Housing_[F]_-_Fin_Tips[7]= +Forced_Conv_Notes_Housing_Front_Fin_Tips[8]= +Notes_H[Fc]_Housing_[F]_-_Fin_Tips[8]= +Forced_Conv_Notes_Housing_Front_Fin_Channel[0]= +Notes_H[Fc]_Housing_[F]_-_Fin_Channel[0]= +Forced_Conv_Notes_Housing_Front_Fin_Channel[1]= +Notes_H[Fc]_Housing_[F]_-_Fin_Channel[1]= +Forced_Conv_Notes_Housing_Front_Fin_Channel[2]= +Notes_H[Fc]_Housing_[F]_-_Fin_Channel[2]= +Forced_Conv_Notes_Housing_Front_Fin_Channel[3]= +Notes_H[Fc]_Housing_[F]_-_Fin_Channel[3]= +Forced_Conv_Notes_Housing_Front_Fin_Channel[4]= +Notes_H[Fc]_Housing_[F]_-_Fin_Channel[4]= +Forced_Conv_Notes_Housing_Front_Fin_Channel[5]= +Notes_H[Fc]_Housing_[F]_-_Fin_Channel[5]= +Forced_Conv_Notes_Housing_Front_Fin_Channel[6]= +Notes_H[Fc]_Housing_[F]_-_Fin_Channel[6]= +Forced_Conv_Notes_Housing_Front_Fin_Channel[7]= +Notes_H[Fc]_Housing_[F]_-_Fin_Channel[7]= +Forced_Conv_Notes_Housing_Front_Fin_Channel[8]= +Notes_H[Fc]_Housing_[F]_-_Fin_Channel[8]= +Forced_Conv_Notes_Housing_Front_Corner_Cutout[0]= +Notes_H[Fc]_Housing_[F]_-_Corner_Cutout[0]= +Forced_Conv_Notes_Housing_Front_Corner_Cutout[1]= +Notes_H[Fc]_Housing_[F]_-_Corner_Cutout[1]= +Forced_Conv_Notes_Housing_Front_Corner_Cutout[2]= +Notes_H[Fc]_Housing_[F]_-_Corner_Cutout[2]= +Forced_Conv_Notes_Housing_Front_Corner_Cutout[3]= +Notes_H[Fc]_Housing_[F]_-_Corner_Cutout[3]= +Forced_Conv_Notes_Housing_Front_Corner_Cutout[4]= +Notes_H[Fc]_Housing_[F]_-_Corner_Cutout[4]= +Forced_Conv_Notes_Housing_Front_Corner_Cutout[5]= +Notes_H[Fc]_Housing_[F]_-_Corner_Cutout[5]= +Forced_Conv_Notes_Housing_Front_Corner_Cutout[6]= +Notes_H[Fc]_Housing_[F]_-_Corner_Cutout[6]= +Forced_Conv_Notes_Housing_Front_Corner_Cutout[7]= +Notes_H[Fc]_Housing_[F]_-_Corner_Cutout[7]= +Forced_Conv_Notes_Housing_Front_Corner_Cutout[8]= +Notes_H[Fc]_Housing_[F]_-_Corner_Cutout[8]= +Forced_Conv_Notes_Housing_Rear_No_Fins[0]= +Notes_H[Fc]_Housing_[R]_-_No_Fins[0]= +Forced_Conv_Notes_Housing_Rear_No_Fins[1]= +Notes_H[Fc]_Housing_[R]_-_No_Fins[1]= +Forced_Conv_Notes_Housing_Rear_No_Fins[2]= +Notes_H[Fc]_Housing_[R]_-_No_Fins[2]= +Forced_Conv_Notes_Housing_Rear_No_Fins[3]= +Notes_H[Fc]_Housing_[R]_-_No_Fins[3]= +Forced_Conv_Notes_Housing_Rear_No_Fins[4]= +Notes_H[Fc]_Housing_[R]_-_No_Fins[4]= +Forced_Conv_Notes_Housing_Rear_No_Fins[5]= +Notes_H[Fc]_Housing_[R]_-_No_Fins[5]= +Forced_Conv_Notes_Housing_Rear_No_Fins[6]= +Notes_H[Fc]_Housing_[R]_-_No_Fins[6]= +Forced_Conv_Notes_Housing_Rear_No_Fins[7]= +Notes_H[Fc]_Housing_[R]_-_No_Fins[7]= +Forced_Conv_Notes_Housing_Rear_No_Fins[8]= +Notes_H[Fc]_Housing_[R]_-_No_Fins[8]= +Forced_Conv_Notes_Housing_Rear_Fin_Base[0]= +Notes_H[Fc]_Housing_[R]_-_Fin_Base[0]= +Forced_Conv_Notes_Housing_Rear_Fin_Base[1]= +Notes_H[Fc]_Housing_[R]_-_Fin_Base[1]= +Forced_Conv_Notes_Housing_Rear_Fin_Base[2]= +Notes_H[Fc]_Housing_[R]_-_Fin_Base[2]= +Forced_Conv_Notes_Housing_Rear_Fin_Base[3]= +Notes_H[Fc]_Housing_[R]_-_Fin_Base[3]= +Forced_Conv_Notes_Housing_Rear_Fin_Base[4]= +Notes_H[Fc]_Housing_[R]_-_Fin_Base[4]= +Forced_Conv_Notes_Housing_Rear_Fin_Base[5]= +Notes_H[Fc]_Housing_[R]_-_Fin_Base[5]= +Forced_Conv_Notes_Housing_Rear_Fin_Base[6]= +Notes_H[Fc]_Housing_[R]_-_Fin_Base[6]= +Forced_Conv_Notes_Housing_Rear_Fin_Base[7]= +Notes_H[Fc]_Housing_[R]_-_Fin_Base[7]= +Forced_Conv_Notes_Housing_Rear_Fin_Base[8]= +Notes_H[Fc]_Housing_[R]_-_Fin_Base[8]= +Forced_Conv_Notes_Housing_Rear_Fin_Sides[0]= +Notes_H[Fc]_Housing_[R]_-_Fin_Sides[0]= +Forced_Conv_Notes_Housing_Rear_Fin_Sides[1]= +Notes_H[Fc]_Housing_[R]_-_Fin_Sides[1]= +Forced_Conv_Notes_Housing_Rear_Fin_Sides[2]= +Notes_H[Fc]_Housing_[R]_-_Fin_Sides[2]= +Forced_Conv_Notes_Housing_Rear_Fin_Sides[3]= +Notes_H[Fc]_Housing_[R]_-_Fin_Sides[3]= +Forced_Conv_Notes_Housing_Rear_Fin_Sides[4]= +Notes_H[Fc]_Housing_[R]_-_Fin_Sides[4]= +Forced_Conv_Notes_Housing_Rear_Fin_Sides[5]= +Notes_H[Fc]_Housing_[R]_-_Fin_Sides[5]= +Forced_Conv_Notes_Housing_Rear_Fin_Sides[6]= +Notes_H[Fc]_Housing_[R]_-_Fin_Sides[6]= +Forced_Conv_Notes_Housing_Rear_Fin_Sides[7]= +Notes_H[Fc]_Housing_[R]_-_Fin_Sides[7]= +Forced_Conv_Notes_Housing_Rear_Fin_Sides[8]= +Notes_H[Fc]_Housing_[R]_-_Fin_Sides[8]= +Forced_Conv_Notes_Housing_Rear_Fin_Tips[0]= +Notes_H[Fc]_Housing_[R]_-_Fin_Tips[0]= +Forced_Conv_Notes_Housing_Rear_Fin_Tips[1]= +Notes_H[Fc]_Housing_[R]_-_Fin_Tips[1]= +Forced_Conv_Notes_Housing_Rear_Fin_Tips[2]= +Notes_H[Fc]_Housing_[R]_-_Fin_Tips[2]= +Forced_Conv_Notes_Housing_Rear_Fin_Tips[3]= +Notes_H[Fc]_Housing_[R]_-_Fin_Tips[3]= +Forced_Conv_Notes_Housing_Rear_Fin_Tips[4]= +Notes_H[Fc]_Housing_[R]_-_Fin_Tips[4]= +Forced_Conv_Notes_Housing_Rear_Fin_Tips[5]= +Notes_H[Fc]_Housing_[R]_-_Fin_Tips[5]= +Forced_Conv_Notes_Housing_Rear_Fin_Tips[6]= +Notes_H[Fc]_Housing_[R]_-_Fin_Tips[6]= +Forced_Conv_Notes_Housing_Rear_Fin_Tips[7]= +Notes_H[Fc]_Housing_[R]_-_Fin_Tips[7]= +Forced_Conv_Notes_Housing_Rear_Fin_Tips[8]= +Notes_H[Fc]_Housing_[R]_-_Fin_Tips[8]= +Forced_Conv_Notes_Housing_Rear_Fin_Channel[0]= +Notes_H[Fc]_Housing_[R]_-_Fin_Channel[0]= +Forced_Conv_Notes_Housing_Rear_Fin_Channel[1]= +Notes_H[Fc]_Housing_[R]_-_Fin_Channel[1]= +Forced_Conv_Notes_Housing_Rear_Fin_Channel[2]= +Notes_H[Fc]_Housing_[R]_-_Fin_Channel[2]= +Forced_Conv_Notes_Housing_Rear_Fin_Channel[3]= +Notes_H[Fc]_Housing_[R]_-_Fin_Channel[3]= +Forced_Conv_Notes_Housing_Rear_Fin_Channel[4]= +Notes_H[Fc]_Housing_[R]_-_Fin_Channel[4]= +Forced_Conv_Notes_Housing_Rear_Fin_Channel[5]= +Notes_H[Fc]_Housing_[R]_-_Fin_Channel[5]= +Forced_Conv_Notes_Housing_Rear_Fin_Channel[6]= +Notes_H[Fc]_Housing_[R]_-_Fin_Channel[6]= +Forced_Conv_Notes_Housing_Rear_Fin_Channel[7]= +Notes_H[Fc]_Housing_[R]_-_Fin_Channel[7]= +Forced_Conv_Notes_Housing_Rear_Fin_Channel[8]= +Notes_H[Fc]_Housing_[R]_-_Fin_Channel[8]= +Forced_Conv_Notes_Housing_Rear_Corner_Cutout[0]= +Notes_H[Fc]_Housing_[R]_-_Corner_Cutout[0]= +Forced_Conv_Notes_Housing_Rear_Corner_Cutout[1]= +Notes_H[Fc]_Housing_[R]_-_Corner_Cutout[1]= +Forced_Conv_Notes_Housing_Rear_Corner_Cutout[2]= +Notes_H[Fc]_Housing_[R]_-_Corner_Cutout[2]= +Forced_Conv_Notes_Housing_Rear_Corner_Cutout[3]= +Notes_H[Fc]_Housing_[R]_-_Corner_Cutout[3]= +Forced_Conv_Notes_Housing_Rear_Corner_Cutout[4]= +Notes_H[Fc]_Housing_[R]_-_Corner_Cutout[4]= +Forced_Conv_Notes_Housing_Rear_Corner_Cutout[5]= +Notes_H[Fc]_Housing_[R]_-_Corner_Cutout[5]= +Forced_Conv_Notes_Housing_Rear_Corner_Cutout[6]= +Notes_H[Fc]_Housing_[R]_-_Corner_Cutout[6]= +Forced_Conv_Notes_Housing_Rear_Corner_Cutout[7]= +Notes_H[Fc]_Housing_[R]_-_Corner_Cutout[7]= +Forced_Conv_Notes_Housing_Rear_Corner_Cutout[8]= +Notes_H[Fc]_Housing_[R]_-_Corner_Cutout[8]= +Forced_Conv_Notes_Endcap_Front_Radial[0]= +Notes_H[Fc]_Endcap_[F]_-_Radial[0]= +Forced_Conv_Notes_Endcap_Front_Radial[1]= +Notes_H[Fc]_Endcap_[F]_-_Radial[1]= +Forced_Conv_Notes_Endcap_Front_Radial[2]= +Notes_H[Fc]_Endcap_[F]_-_Radial[2]= +Forced_Conv_Notes_Endcap_Front_Radial[3]= +Notes_H[Fc]_Endcap_[F]_-_Radial[3]= +Forced_Conv_Notes_Endcap_Front_Radial[4]= +Notes_H[Fc]_Endcap_[F]_-_Radial[4]= +Forced_Conv_Notes_Endcap_Front_Radial[5]= +Notes_H[Fc]_Endcap_[F]_-_Radial[5]= +Forced_Conv_Notes_Endcap_Front_Radial[6]= +Notes_H[Fc]_Endcap_[F]_-_Radial[6]= +Forced_Conv_Notes_Endcap_Front_Radial[7]= +Notes_H[Fc]_Endcap_[F]_-_Radial[7]= +Forced_Conv_Notes_Endcap_Front_Radial[8]= +Notes_H[Fc]_Endcap_[F]_-_Radial[8]= +Forced_Conv_Notes_Endcap_Front_Axial[0]= +Notes_H[Fc]_Endcap_[F]_-_Axial[0]= +Forced_Conv_Notes_Endcap_Front_Axial[1]= +Notes_H[Fc]_Endcap_[F]_-_Axial[1]= +Forced_Conv_Notes_Endcap_Front_Axial[2]= +Notes_H[Fc]_Endcap_[F]_-_Axial[2]= +Forced_Conv_Notes_Endcap_Front_Axial[3]= +Notes_H[Fc]_Endcap_[F]_-_Axial[3]= +Forced_Conv_Notes_Endcap_Front_Axial[4]= +Notes_H[Fc]_Endcap_[F]_-_Axial[4]= +Forced_Conv_Notes_Endcap_Front_Axial[5]= +Notes_H[Fc]_Endcap_[F]_-_Axial[5]= +Forced_Conv_Notes_Endcap_Front_Axial[6]= +Notes_H[Fc]_Endcap_[F]_-_Axial[6]= +Forced_Conv_Notes_Endcap_Front_Axial[7]= +Notes_H[Fc]_Endcap_[F]_-_Axial[7]= +Forced_Conv_Notes_Endcap_Front_Axial[8]= +Notes_H[Fc]_Endcap_[F]_-_Axial[8]= +Forced_Conv_Notes_Endcap_Rear_Radial[0]= +Notes_H[Fc]_Endcap_[R]_-_Radial[0]= +Forced_Conv_Notes_Endcap_Rear_Radial[1]= +Notes_H[Fc]_Endcap_[R]_-_Radial[1]= +Forced_Conv_Notes_Endcap_Rear_Radial[2]= +Notes_H[Fc]_Endcap_[R]_-_Radial[2]= +Forced_Conv_Notes_Endcap_Rear_Radial[3]= +Notes_H[Fc]_Endcap_[R]_-_Radial[3]= +Forced_Conv_Notes_Endcap_Rear_Radial[4]= +Notes_H[Fc]_Endcap_[R]_-_Radial[4]= +Forced_Conv_Notes_Endcap_Rear_Radial[5]= +Notes_H[Fc]_Endcap_[R]_-_Radial[5]= +Forced_Conv_Notes_Endcap_Rear_Radial[6]= +Notes_H[Fc]_Endcap_[R]_-_Radial[6]= +Forced_Conv_Notes_Endcap_Rear_Radial[7]= +Notes_H[Fc]_Endcap_[R]_-_Radial[7]= +Forced_Conv_Notes_Endcap_Rear_Radial[8]= +Notes_H[Fc]_Endcap_[R]_-_Radial[8]= +Forced_Conv_Notes_Endcap_Rear_Axial[0]= +Notes_H[Fc]_Endcap_[R]_-_Axial[0]= +Forced_Conv_Notes_Endcap_Rear_Axial[1]= +Notes_H[Fc]_Endcap_[R]_-_Axial[1]= +Forced_Conv_Notes_Endcap_Rear_Axial[2]= +Notes_H[Fc]_Endcap_[R]_-_Axial[2]= +Forced_Conv_Notes_Endcap_Rear_Axial[3]= +Notes_H[Fc]_Endcap_[R]_-_Axial[3]= +Forced_Conv_Notes_Endcap_Rear_Axial[4]= +Notes_H[Fc]_Endcap_[R]_-_Axial[4]= +Forced_Conv_Notes_Endcap_Rear_Axial[5]= +Notes_H[Fc]_Endcap_[R]_-_Axial[5]= +Forced_Conv_Notes_Endcap_Rear_Axial[6]= +Notes_H[Fc]_Endcap_[R]_-_Axial[6]= +Forced_Conv_Notes_Endcap_Rear_Axial[7]= +Notes_H[Fc]_Endcap_[R]_-_Axial[7]= +Forced_Conv_Notes_Endcap_Rear_Axial[8]= +Notes_H[Fc]_Endcap_[R]_-_Axial[8]= +Forced_Conv_Notes_Plate[0]= +Notes_H[Fc]_Flange_Plate[0]= +Forced_Conv_Notes_Plate[1]= +Notes_H[Fc]_Flange_Plate[1]= +Forced_Conv_Notes_Plate[2]= +Notes_H[Fc]_Flange_Plate[2]= +Forced_Conv_Notes_Plate[3]= +Notes_H[Fc]_Flange_Plate[3]= +Forced_Conv_Notes_Plate[4]= +Notes_H[Fc]_Flange_Plate[4]= +Forced_Conv_Notes_Plate[5]= +Notes_H[Fc]_Flange_Plate[5]= +Forced_Conv_Notes_Plate[6]= +Notes_H[Fc]_Flange_Plate[6]= +Forced_Conv_Notes_Plate[7]= +Notes_H[Fc]_Flange_Plate[7]= +Forced_Conv_Notes_Plate[8]= +Notes_H[Fc]_Flange_Plate[8]= +Forced_Conv_Notes_Axle_Plate_F[0]= +Forced_Conv_Notes_Axle_Plate_F[1]= +Forced_Conv_Notes_Axle_Plate_F[2]= +Forced_Conv_Notes_Axle_Plate_F[3]= +Forced_Conv_Notes_Axle_Plate_F[4]= +Forced_Conv_Notes_Axle_Plate_F[5]= +Forced_Conv_Notes_Axle_Plate_F[6]= +Forced_Conv_Notes_Axle_Plate_F[7]= +Forced_Conv_Notes_Axle_Plate_F[8]= +Forced_Conv_Notes_Axle_Plate_R[0]= +Forced_Conv_Notes_Axle_Plate_R[1]= +Forced_Conv_Notes_Axle_Plate_R[2]= +Forced_Conv_Notes_Axle_Plate_R[3]= +Forced_Conv_Notes_Axle_Plate_R[4]= +Forced_Conv_Notes_Axle_Plate_R[5]= +Forced_Conv_Notes_Axle_Plate_R[6]= +Forced_Conv_Notes_Axle_Plate_R[7]= +Forced_Conv_Notes_Axle_Plate_R[8]= +Forced_Conv_Notes_Base[0]= +Notes_H[Fc]_Base_Plate[0]= +Forced_Conv_Notes_Base[1]= +Notes_H[Fc]_Base_Plate[1]= +Forced_Conv_Notes_Base[2]= +Notes_H[Fc]_Base_Plate[2]= +Forced_Conv_Notes_Base[3]= +Notes_H[Fc]_Base_Plate[3]= +Forced_Conv_Notes_Base[4]= +Notes_H[Fc]_Base_Plate[4]= +Forced_Conv_Notes_Base[5]= +Notes_H[Fc]_Base_Plate[5]= +Forced_Conv_Notes_Base[6]= +Notes_H[Fc]_Base_Plate[6]= +Forced_Conv_Notes_Base[7]= +Notes_H[Fc]_Base_Plate[7]= +Forced_Conv_Notes_Base[8]= +Notes_H[Fc]_Base_Plate[8]= +Forced_Conv_Notes_EncCase_Radial[0]= +Notes_H[Fc]_Encoder_Case_-_Radial[0]= +Forced_Conv_Notes_EncCase_Radial[1]= +Notes_H[Fc]_Encoder_Case_-_Radial[1]= +Forced_Conv_Notes_EncCase_Radial[2]= +Notes_H[Fc]_Encoder_Case_-_Radial[2]= +Forced_Conv_Notes_EncCase_Radial[3]= +Notes_H[Fc]_Encoder_Case_-_Radial[3]= +Forced_Conv_Notes_EncCase_Radial[4]= +Notes_H[Fc]_Encoder_Case_-_Radial[4]= +Forced_Conv_Notes_EncCase_Radial[5]= +Notes_H[Fc]_Encoder_Case_-_Radial[5]= +Forced_Conv_Notes_EncCase_Radial[6]= +Notes_H[Fc]_Encoder_Case_-_Radial[6]= +Forced_Conv_Notes_EncCase_Radial[7]= +Notes_H[Fc]_Encoder_Case_-_Radial[7]= +Forced_Conv_Notes_EncCase_Radial[8]= +Notes_H[Fc]_Encoder_Case_-_Radial[8]= +Forced_Conv_Notes_EncCase_Axial[0]= +Notes_H[Fc]_Encoder_Case_-_Axial[0]= +Forced_Conv_Notes_EncCase_Axial[1]= +Notes_H[Fc]_Encoder_Case_-_Axial[1]= +Forced_Conv_Notes_EncCase_Axial[2]= +Notes_H[Fc]_Encoder_Case_-_Axial[2]= +Forced_Conv_Notes_EncCase_Axial[3]= +Notes_H[Fc]_Encoder_Case_-_Axial[3]= +Forced_Conv_Notes_EncCase_Axial[4]= +Notes_H[Fc]_Encoder_Case_-_Axial[4]= +Forced_Conv_Notes_EncCase_Axial[5]= +Notes_H[Fc]_Encoder_Case_-_Axial[5]= +Forced_Conv_Notes_EncCase_Axial[6]= +Notes_H[Fc]_Encoder_Case_-_Axial[6]= +Forced_Conv_Notes_EncCase_Axial[7]= +Notes_H[Fc]_Encoder_Case_-_Axial[7]= +Forced_Conv_Notes_EncCase_Axial[8]= +Notes_H[Fc]_Encoder_Case_-_Axial[8]= + +[NVH] +NVHDampingFactor=0,05 +NVHMagnitudeScaleType=0 +VibratoryRef_Displacement=1E-8 +VibratoryRef_Velocity=1E-8 +VibratoryRef_Acceleration=1E-5 +VibratoryRef_SoundPower=1E-12 +VibratoryRef_ForceDensity=1 +VibratoryRef_Force=1 +NVHStructural_Slice=0 +NVHFreqAxisType=0 +NVHTimeOrderType=0 +NVHMaxSpaceOrder_OL=25 +NVHMaxFrequencyOrder_OL=25 +NVHMaximumOrderDefinition=0 +SpeedOfSound=342 +NVHAirDensity=1,225 +RadiationEfficiency=1 +NVHCampbellSelection=0 +NVHSpatiogramSelection=0 +NVHOrderTrackingSelection=0 +NVHOrderTrackingHarmonics_Space=10 +NVHOrderTrackingHarmonics_Freq=10 +NVHOrderTrackingHarmonics_Space_Freq=10 +NVHMaximumSoundFrequency=25000 +NVHOrderTracking_XAxis=0 +ForceAnalysisElecCycles_Min_OL=1 +ForceAnalysisElecCycles_Min_OC=1 +ForceAnalysisElecCycles_Max_OL=1 +ForceAnalysisElecCycles_Max_OC=1 +ForceAnalysisElecCycles_Definition=0 +NVHNumInterpolationPoints=20 +NVHInterpolationMethod=1 +NVHMechanicalOrderMethodIM=1 +NVHNumColourInterpolationSegments=5 +NVHSkewModel=1 +ForceFFTScalingMethod=1 +NVHModal_IncludeWindingMass=False +NVHModal_IncludeHousing=False +NVHExport_Displacement_Static=True +NVHExport_Displacement_Dynamic=True +NVHExport_MagFactor=True +NVHExport_Velocity=True +NVHExport_Acceleration=True +NVHExport_RadiatedPower_N=True +NVHExport_RadiatedPower_M=True +NVHExport_RadiatedPower_MN=True +NVHExport_AnsysSound=True +NVHExportFile= +NVHRunModels_BPMOR=False +NVHAcousticModel=0 +NVHAcousticWeighting=0 +NVHSoundPressureDistance=1000 +NVHSoundPressureDirectivityFactor=1 +ShowDXFImportProcessingSettings=False +CalculateNVHModels=0 +Num_ModalOverride=0 + +[Copper_Loss_Vary] +Copper_Losses_Vary_With_Temperature=False +Winding_Temperature_at_which_Pcu_Input=106,755159371359 + +[h_Nat_Con_Model] +Calc_Input_h_Nat_Conv_Housing_Active_No_Fins=0 +Calc_Input_h_Nat_Conv_Housing_Active_Fin_Base=0 +Calc_Input_h_Nat_Conv_Housing_Active_Fin_Sides=0 +Calc_Input_h_Nat_Conv_Housing_Active_Fin_Tips=0 +Calc_Input_h_Nat_Conv_Housing_Active_Fin_Channel=0 +Calc_Input_h_Nat_Conv_Housing_Active_Corner_Cutout=0 +Calc_Input_h_Nat_Conv_Housing_Front_No_Fins=0 +Calc_Input_h_Nat_Conv_Housing_Front_Fin_Base=0 +Calc_Input_h_Nat_Conv_Housing_Front_Fin_Sides=0 +Calc_Input_h_Nat_Conv_Housing_Front_Fin_Tips=0 +Calc_Input_h_Nat_Conv_Housing_Front_Fin_Channel=0 +Calc_Input_h_Nat_Conv_Housing_Front_Corner_Cutout=0 +Calc_Input_h_Nat_Conv_Housing_Rear_No_Fins=0 +Calc_Input_h_Nat_Conv_Housing_Rear_Fin_Base=0 +Calc_Input_h_Nat_Conv_Housing_Rear_Fin_Sides=0 +Calc_Input_h_Nat_Conv_Housing_Rear_Fin_Tips=0 +Calc_Input_h_Nat_Conv_Housing_Rear_Fin_Channel=0 +Calc_Input_h_Nat_Conv_Housing_Rear_Corner_Cutout=0 +Calc_Input_h_Nat_Conv_Endcap_Front_Radial=0 +Calc_Input_h_Nat_Conv_Endcap_Front_Axial=0 +Calc_Input_h_Nat_Conv_Endcap_Rear_Radial=0 +Calc_Input_h_Nat_Conv_Endcap_Rear_Axial=0 +Calc_Input_h_Nat_Conv_Plate=0 +Calc_Input_h_Nat_Conv_Axle_Plate_F=0 +Calc_Input_h_Nat_Conv_Axle_Plate_R=0 +Calc_Input_h_Nat_Conv_Base=0 +Calc_Input_h_Nat_Conv_EncCase_Radial=0 +Calc_Input_h_Nat_Conv_EncCase_Axial=0 +Calc/Input_h[nc]_Housing_[A]_-_No_Fins=Calc_h_conv +Calc/Input_h[nc]_Housing_[A]_-_Fin_Base=Calc_h_conv +Calc/Input_h[nc]_Housing_[A]_-_Fin_Sides=Calc_h_conv +Calc/Input_h[nc]_Housing_[A]_-_Fin_Tips=Calc_h_conv +Calc/Input_h[nc]_Housing_[A]_-_Fin_Channel=Calc_h_conv +Calc/Input_h[nc]_Housing_[A]_-_Corner_Cutout=Calc_h_conv +Calc/Input_h[nc]_Housing_[F]_-_No_Fins=Calc_h_conv +Calc/Input_h[nc]_Housing_[F]_-_Fin_Base=Calc_h_conv +Calc/Input_h[nc]_Housing_[F]_-_Fin_Sides=Calc_h_conv +Calc/Input_h[nc]_Housing_[F]_-_Fin_Tips=Calc_h_conv +Calc/Input_h[nc]_Housing_[F]_-_Fin_Channel=Calc_h_conv +Calc/Input_h[nc]_Housing_[F]_-_Corner_Cutout=Calc_h_conv +Calc/Input_h[nc]_Housing_[R]_-_No_Fins=Calc_h_conv +Calc/Input_h[nc]_Housing_[R]_-_Fin_Base=Calc_h_conv +Calc/Input_h[nc]_Housing_[R]_-_Fin_Sides=Calc_h_conv +Calc/Input_h[nc]_Housing_[R]_-_Fin_Tips=Calc_h_conv +Calc/Input_h[nc]_Housing_[R]_-_Fin_Channel=Calc_h_conv +Calc/Input_h[nc]_Housing_[R]_-_Corner_Cutout=Calc_h_conv +Calc/Input_h[nc]_Endcap_[F]_-_Radial=Calc_h_conv +Calc/Input_h[nc]_Endcap_[F]_-_Axial=Calc_h_conv +Calc/Input_h[nc]_Endcap_[R]_-_Radial=Calc_h_conv +Calc/Input_h[nc]_Endcap_[R]_-_Axial=Calc_h_conv +Calc/Input_h[nc]_Flange_Plate=Calc_h_conv +Calc/Input_h[nc]_Axle_Plate_[F]=Calc_h_conv +Calc/Input_h[nc]_Axle_Plate_[R]=Calc_h_conv +Calc/Input_h[nc]_Base_Plate=Calc_h_conv +Calc/Input_h[nc]_Encoder_Case_-_Radial=Calc_h_conv +Calc/Input_h[nc]_Encoder_Case_-_Axial=Calc_h_conv + +[Calculation_Notes] +Calculation_Options_Notes=Type in user calculation option notes here +Notes_-_Calculation_Options_Data[1]=Type in user calculation option notes here + +[CoolingOptions_Notes] +CoolingOptions_Notes=Type in user Cooling notes here +Notes_-_Cooling_Options[1]=Type in user Cooling notes here + +[Losses_Notes] +Losses_Notes=Type in user Losses notes here +Notes_-_Losses[1]=Type in user Losses notes here + +[Transient_Notes] +TransientOptions_Notes=Type in user Duty Cycle notes here +Notes_-_Transient_Data[1]=Type in user Duty Cycle notes here + +[AdaptiveTemplates] +AdaptiveTemplates_Script[0]="" +AdaptiveTemplates_Script[1]="# Need to import pymotorcad to access Motor-CAD" +AdaptiveTemplates_Script[2]="import ansys.motorcad.core as pymotorcad" +AdaptiveTemplates_Script[3]="" +AdaptiveTemplates_Script[4]="# Connect to Motor-CAD" +AdaptiveTemplates_Script[5]="mc = pymotorcad.MotorCAD(open_new_instance=False)" +AdaptiveTemplates_Script[6]="" +AdaptiveTemplates_Script[7]="# Reset geometry to default" +AdaptiveTemplates_Script[8]="mc.reset_adaptive_geometry() " +AdaptiveTemplates_Script[9]=" " +AdaptiveTemplates_Script[10]="# add your geometry template here using PyMotorCAD " +AdaptiveTemplates_ScriptFileName= +AdaptiveTemplates_ScriptLines=11 +GeometryTemplateType=0 +Num_AdaptiveTemplates_Parameters=0 +GeometryEditor_SubRegionDuplication=0 +GeometryEditor_ViewType=0 +GeometryView_SymmetryFactor=1 + +[Transient_Graph] +HeatFlowChartTitle=Heat Flow +HeatFlowYaxisTitle=Heat Flow +HeatFlowXaxisTitle=Time +HeatFlowAutomaticTitles=True +HeatFlowAutomaticScale=True +HeatFlowXAxisInc=1 +HeatFlowYAxisInc=1 +HeatFlowXAxisMin=0 +HeatFlowYAxisMin=0 +HeatFlowXAxisMax=1 +HeatFlowYAxisMax=1 + +[Convergence_Graph_Setup] +Thermal_Convergence_Graph_Enabled[13]=True +Thermal_Convergence_Graph_Enabled[101]=True +Thermal_Max_Error_Graph_enabled=True + +[optiSlang_Inputs] +optiSLangInputCount=0 + +[optiSlang_Requirements] +optiSLangRequirementCount=0 + +[optiSlang_Objectives] +optiSLangObjectiveCount=0 + +[Conductor_Placement] +Missing_Rows_Left[0]=0 +Rows_Left[0]=27 +Missing_Rows_Left[1]=1 +Rows_Left[1]=27 +Missing_Rows_Left[2]=0 +Rows_Left[2]=28 +Missing_Rows_Left[3]=1 +Rows_Left[3]=27 +Missing_Rows_Left[4]=1 +Rows_Left[4]=16 +Missing_Rows_Right[0]=0 +Rows_Right[0]=27 +Missing_Rows_Right[1]=1 +Rows_Right[1]=27 +Missing_Rows_Right[2]=0 +Rows_Right[2]=28 +Missing_Rows_Right[3]=1 +Rows_Right[3]=27 +Missing_Rows_Right[4]=1 +Rows_Right[4]=16 + +[Magnetic_Winding] +Phase_1_Go1[0]=0 +Phase_1_Go2[0]=1 +Phase_1_Return1[0]=0 +Phase_1_Return2[0]=2 +Phase_1_Turns[0]=125 +Phase_1_Go1[1]=0 +Phase_1_Go2[1]=4 +Phase_1_Return1[1]=0 +Phase_1_Return2[1]=5 +Phase_1_Turns[1]=125 +Phase_1_Go1[2]=0 +Phase_1_Go2[2]=7 +Phase_1_Return1[2]=0 +Phase_1_Return2[2]=8 +Phase_1_Turns[2]=125 +Phase_1_Go1[3]=0 +Phase_1_Go2[3]=10 +Phase_1_Return1[3]=0 +Phase_1_Return2[3]=11 +Phase_1_Turns[3]=125 +Phase_1_Go1[4]=0 +Phase_1_Go2[4]=13 +Phase_1_Return1[4]=0 +Phase_1_Return2[4]=14 +Phase_1_Turns[4]=125 +Phase_1_Go1[5]=0 +Phase_1_Go2[5]=16 +Phase_1_Return1[5]=0 +Phase_1_Return2[5]=17 +Phase_1_Turns[5]=125 +Phase_2_Go1[0]=0 +Phase_2_Go2[0]=2 +Phase_2_Return1[0]=0 +Phase_2_Return2[0]=3 +Phase_2_Turns[0]=125 +Phase_2_Go1[1]=0 +Phase_2_Go2[1]=5 +Phase_2_Return1[1]=0 +Phase_2_Return2[1]=6 +Phase_2_Turns[1]=125 +Phase_2_Go1[2]=0 +Phase_2_Go2[2]=8 +Phase_2_Return1[2]=0 +Phase_2_Return2[2]=9 +Phase_2_Turns[2]=125 +Phase_2_Go1[3]=0 +Phase_2_Go2[3]=11 +Phase_2_Return1[3]=0 +Phase_2_Return2[3]=12 +Phase_2_Turns[3]=125 +Phase_2_Go1[4]=0 +Phase_2_Go2[4]=14 +Phase_2_Return1[4]=0 +Phase_2_Return2[4]=15 +Phase_2_Turns[4]=125 +Phase_2_Go1[5]=0 +Phase_2_Go2[5]=17 +Phase_2_Return1[5]=0 +Phase_2_Return2[5]=18 +Phase_2_Turns[5]=125 +Phase_3_Go1[0]=0 +Phase_3_Go2[0]=3 +Phase_3_Return1[0]=0 +Phase_3_Return2[0]=4 +Phase_3_Turns[0]=125 +Phase_3_Go1[1]=0 +Phase_3_Go2[1]=6 +Phase_3_Return1[1]=0 +Phase_3_Return2[1]=7 +Phase_3_Turns[1]=125 +Phase_3_Go1[2]=0 +Phase_3_Go2[2]=9 +Phase_3_Return1[2]=0 +Phase_3_Return2[2]=10 +Phase_3_Turns[2]=125 +Phase_3_Go1[3]=0 +Phase_3_Go2[3]=12 +Phase_3_Return1[3]=0 +Phase_3_Return2[3]=13 +Phase_3_Turns[3]=125 +Phase_3_Go1[4]=0 +Phase_3_Go2[4]=15 +Phase_3_Return1[4]=0 +Phase_3_Return2[4]=16 +Phase_3_Turns[4]=125 +Phase_3_Go1[5]=0 +Phase_3_Go2[5]=18 +Phase_3_Return1[5]=0 +Phase_3_Return2[5]=1 +Phase_3_Turns[5]=125 +Phase_1Path_1_GoSlot[0]=0 +Phase_1Path_1_GoRadialPosition[0]=0 +Phase_1Path_1_GoTangentialPosition[0]=C +Phase_1Path_1_ReturnSlot[0]=1 +Phase_1Path_1_ReturnRadialPosition[0]=0 +Phase_1Path_1_ReturnTangentialPosition[0]=C +Phase_1Path_1_Turns[0]=125 +Phase_1Path_1_GoSlot[1]=3 +Phase_1Path_1_GoRadialPosition[1]=0 +Phase_1Path_1_GoTangentialPosition[1]=C +Phase_1Path_1_ReturnSlot[1]=4 +Phase_1Path_1_ReturnRadialPosition[1]=0 +Phase_1Path_1_ReturnTangentialPosition[1]=C +Phase_1Path_1_Turns[1]=125 +Phase_1Path_1_GoSlot[2]=6 +Phase_1Path_1_GoRadialPosition[2]=0 +Phase_1Path_1_GoTangentialPosition[2]=C +Phase_1Path_1_ReturnSlot[2]=7 +Phase_1Path_1_ReturnRadialPosition[2]=0 +Phase_1Path_1_ReturnTangentialPosition[2]=C +Phase_1Path_1_Turns[2]=125 +Phase_1Path_1_GoSlot[3]=9 +Phase_1Path_1_GoRadialPosition[3]=0 +Phase_1Path_1_GoTangentialPosition[3]=C +Phase_1Path_1_ReturnSlot[3]=10 +Phase_1Path_1_ReturnRadialPosition[3]=0 +Phase_1Path_1_ReturnTangentialPosition[3]=C +Phase_1Path_1_Turns[3]=125 +Phase_1Path_1_GoSlot[4]=12 +Phase_1Path_1_GoRadialPosition[4]=0 +Phase_1Path_1_GoTangentialPosition[4]=C +Phase_1Path_1_ReturnSlot[4]=13 +Phase_1Path_1_ReturnRadialPosition[4]=0 +Phase_1Path_1_ReturnTangentialPosition[4]=C +Phase_1Path_1_Turns[4]=125 +Phase_1Path_1_GoSlot[5]=15 +Phase_1Path_1_GoRadialPosition[5]=0 +Phase_1Path_1_GoTangentialPosition[5]=C +Phase_1Path_1_ReturnSlot[5]=16 +Phase_1Path_1_ReturnRadialPosition[5]=0 +Phase_1Path_1_ReturnTangentialPosition[5]=C +Phase_1Path_1_Turns[5]=125 +Phase_2Path_1_GoSlot[0]=1 +Phase_2Path_1_GoRadialPosition[0]=0 +Phase_2Path_1_GoTangentialPosition[0]=C +Phase_2Path_1_ReturnSlot[0]=2 +Phase_2Path_1_ReturnRadialPosition[0]=0 +Phase_2Path_1_ReturnTangentialPosition[0]=C +Phase_2Path_1_Turns[0]=125 +Phase_2Path_1_GoSlot[1]=4 +Phase_2Path_1_GoRadialPosition[1]=0 +Phase_2Path_1_GoTangentialPosition[1]=C +Phase_2Path_1_ReturnSlot[1]=5 +Phase_2Path_1_ReturnRadialPosition[1]=0 +Phase_2Path_1_ReturnTangentialPosition[1]=C +Phase_2Path_1_Turns[1]=125 +Phase_2Path_1_GoSlot[2]=7 +Phase_2Path_1_GoRadialPosition[2]=0 +Phase_2Path_1_GoTangentialPosition[2]=C +Phase_2Path_1_ReturnSlot[2]=8 +Phase_2Path_1_ReturnRadialPosition[2]=0 +Phase_2Path_1_ReturnTangentialPosition[2]=C +Phase_2Path_1_Turns[2]=125 +Phase_2Path_1_GoSlot[3]=10 +Phase_2Path_1_GoRadialPosition[3]=0 +Phase_2Path_1_GoTangentialPosition[3]=C +Phase_2Path_1_ReturnSlot[3]=11 +Phase_2Path_1_ReturnRadialPosition[3]=0 +Phase_2Path_1_ReturnTangentialPosition[3]=C +Phase_2Path_1_Turns[3]=125 +Phase_2Path_1_GoSlot[4]=13 +Phase_2Path_1_GoRadialPosition[4]=0 +Phase_2Path_1_GoTangentialPosition[4]=C +Phase_2Path_1_ReturnSlot[4]=14 +Phase_2Path_1_ReturnRadialPosition[4]=0 +Phase_2Path_1_ReturnTangentialPosition[4]=C +Phase_2Path_1_Turns[4]=125 +Phase_2Path_1_GoSlot[5]=16 +Phase_2Path_1_GoRadialPosition[5]=0 +Phase_2Path_1_GoTangentialPosition[5]=C +Phase_2Path_1_ReturnSlot[5]=17 +Phase_2Path_1_ReturnRadialPosition[5]=0 +Phase_2Path_1_ReturnTangentialPosition[5]=C +Phase_2Path_1_Turns[5]=125 +Phase_3Path_1_GoSlot[0]=2 +Phase_3Path_1_GoRadialPosition[0]=0 +Phase_3Path_1_GoTangentialPosition[0]=C +Phase_3Path_1_ReturnSlot[0]=3 +Phase_3Path_1_ReturnRadialPosition[0]=0 +Phase_3Path_1_ReturnTangentialPosition[0]=C +Phase_3Path_1_Turns[0]=125 +Phase_3Path_1_GoSlot[1]=5 +Phase_3Path_1_GoRadialPosition[1]=0 +Phase_3Path_1_GoTangentialPosition[1]=C +Phase_3Path_1_ReturnSlot[1]=6 +Phase_3Path_1_ReturnRadialPosition[1]=0 +Phase_3Path_1_ReturnTangentialPosition[1]=C +Phase_3Path_1_Turns[1]=125 +Phase_3Path_1_GoSlot[2]=8 +Phase_3Path_1_GoRadialPosition[2]=0 +Phase_3Path_1_GoTangentialPosition[2]=C +Phase_3Path_1_ReturnSlot[2]=9 +Phase_3Path_1_ReturnRadialPosition[2]=0 +Phase_3Path_1_ReturnTangentialPosition[2]=C +Phase_3Path_1_Turns[2]=125 +Phase_3Path_1_GoSlot[3]=11 +Phase_3Path_1_GoRadialPosition[3]=0 +Phase_3Path_1_GoTangentialPosition[3]=C +Phase_3Path_1_ReturnSlot[3]=12 +Phase_3Path_1_ReturnRadialPosition[3]=0 +Phase_3Path_1_ReturnTangentialPosition[3]=C +Phase_3Path_1_Turns[3]=125 +Phase_3Path_1_GoSlot[4]=14 +Phase_3Path_1_GoRadialPosition[4]=0 +Phase_3Path_1_GoTangentialPosition[4]=C +Phase_3Path_1_ReturnSlot[4]=15 +Phase_3Path_1_ReturnRadialPosition[4]=0 +Phase_3Path_1_ReturnTangentialPosition[4]=C +Phase_3Path_1_Turns[4]=125 +Phase_3Path_1_GoSlot[5]=17 +Phase_3Path_1_GoRadialPosition[5]=0 +Phase_3Path_1_GoTangentialPosition[5]=C +Phase_3Path_1_ReturnSlot[5]=0 +Phase_3Path_1_ReturnRadialPosition[5]=0 +Phase_3Path_1_ReturnTangentialPosition[5]=C +Phase_3Path_1_Turns[5]=125 + +[CustomDriveCycle] +ElecAngleValue[0]=0 +CurrentValuePh1[0]=0 +CurrentValuePh2[0]=0 +CurrentValuePh3[0]=0 +ElecAngleValue[1]=1 +CurrentValuePh1[1]=0,0174524064372835 +CurrentValuePh2[1]=0 +CurrentValuePh3[1]=0 +ElecAngleValue[2]=2 +CurrentValuePh1[2]=0,034899496702501 +CurrentValuePh2[2]=0 +CurrentValuePh3[2]=0 +ElecAngleValue[3]=3 +CurrentValuePh1[3]=0,0523359562429438 +CurrentValuePh2[3]=0 +CurrentValuePh3[3]=0 +ElecAngleValue[4]=4 +CurrentValuePh1[4]=0,0697564737441253 +CurrentValuePh2[4]=0 +CurrentValuePh3[4]=0 +ElecAngleValue[5]=5 +CurrentValuePh1[5]=0,0871557427476582 +CurrentValuePh2[5]=0 +CurrentValuePh3[5]=0 +ElecAngleValue[6]=6 +CurrentValuePh1[6]=0,104528463267653 +CurrentValuePh2[6]=0 +CurrentValuePh3[6]=0 +ElecAngleValue[7]=7 +CurrentValuePh1[7]=0,121869343405147 +CurrentValuePh2[7]=0 +CurrentValuePh3[7]=0 +ElecAngleValue[8]=8 +CurrentValuePh1[8]=0,139173100960065 +CurrentValuePh2[8]=0 +CurrentValuePh3[8]=0 +ElecAngleValue[9]=9 +CurrentValuePh1[9]=0,156434465040231 +CurrentValuePh2[9]=0 +CurrentValuePh3[9]=0 +ElecAngleValue[10]=10 +CurrentValuePh1[10]=0,17364817766693 +CurrentValuePh2[10]=0 +CurrentValuePh3[10]=0 +ElecAngleValue[11]=11 +CurrentValuePh1[11]=0,190808995376545 +CurrentValuePh2[11]=0 +CurrentValuePh3[11]=0 +ElecAngleValue[12]=12 +CurrentValuePh1[12]=0,207911690817759 +CurrentValuePh2[12]=0 +CurrentValuePh3[12]=0 +ElecAngleValue[13]=13 +CurrentValuePh1[13]=0,224951054343865 +CurrentValuePh2[13]=0 +CurrentValuePh3[13]=0 +ElecAngleValue[14]=14 +CurrentValuePh1[14]=0,241921895599668 +CurrentValuePh2[14]=0 +CurrentValuePh3[14]=0 +ElecAngleValue[15]=15 +CurrentValuePh1[15]=0,258819045102521 +CurrentValuePh2[15]=0 +CurrentValuePh3[15]=0 +ElecAngleValue[16]=16 +CurrentValuePh1[16]=0,275637355816999 +CurrentValuePh2[16]=0 +CurrentValuePh3[16]=0 +ElecAngleValue[17]=17 +CurrentValuePh1[17]=0,292371704722737 +CurrentValuePh2[17]=0 +CurrentValuePh3[17]=0 +ElecAngleValue[18]=18 +CurrentValuePh1[18]=0,309016994374947 +CurrentValuePh2[18]=0 +CurrentValuePh3[18]=0 +ElecAngleValue[19]=19 +CurrentValuePh1[19]=0,325568154457157 +CurrentValuePh2[19]=0 +CurrentValuePh3[19]=0 +ElecAngleValue[20]=20 +CurrentValuePh1[20]=0,342020143325669 +CurrentValuePh2[20]=0 +CurrentValuePh3[20]=0 +ElecAngleValue[21]=21 +CurrentValuePh1[21]=0,3583679495453 +CurrentValuePh2[21]=0 +CurrentValuePh3[21]=0 +ElecAngleValue[22]=22 +CurrentValuePh1[22]=0,374606593415912 +CurrentValuePh2[22]=0 +CurrentValuePh3[22]=0 +ElecAngleValue[23]=23 +CurrentValuePh1[23]=0,390731128489274 +CurrentValuePh2[23]=0 +CurrentValuePh3[23]=0 +ElecAngleValue[24]=24 +CurrentValuePh1[24]=0,4067366430758 +CurrentValuePh2[24]=0 +CurrentValuePh3[24]=0 +ElecAngleValue[25]=25 +CurrentValuePh1[25]=0,422618261740699 +CurrentValuePh2[25]=0 +CurrentValuePh3[25]=0 +ElecAngleValue[26]=26 +CurrentValuePh1[26]=0,438371146789077 +CurrentValuePh2[26]=0 +CurrentValuePh3[26]=0 +ElecAngleValue[27]=27 +CurrentValuePh1[27]=0,453990499739547 +CurrentValuePh2[27]=0 +CurrentValuePh3[27]=0 +ElecAngleValue[28]=28 +CurrentValuePh1[28]=0,469471562785891 +CurrentValuePh2[28]=0 +CurrentValuePh3[28]=0 +ElecAngleValue[29]=29 +CurrentValuePh1[29]=0,484809620246337 +CurrentValuePh2[29]=0 +CurrentValuePh3[29]=0 +ElecAngleValue[30]=30 +CurrentValuePh1[30]=0,5 +CurrentValuePh2[30]=0 +CurrentValuePh3[30]=0 +ElecAngleValue[31]=31 +CurrentValuePh1[31]=0,515038074910054 +CurrentValuePh2[31]=0 +CurrentValuePh3[31]=0 +ElecAngleValue[32]=32 +CurrentValuePh1[32]=0,529919264233205 +CurrentValuePh2[32]=0 +CurrentValuePh3[32]=0 +ElecAngleValue[33]=33 +CurrentValuePh1[33]=0,544639035015027 +CurrentValuePh2[33]=0 +CurrentValuePh3[33]=0 +ElecAngleValue[34]=34 +CurrentValuePh1[34]=0,559192903470747 +CurrentValuePh2[34]=0 +CurrentValuePh3[34]=0 +ElecAngleValue[35]=35 +CurrentValuePh1[35]=0,573576436351046 +CurrentValuePh2[35]=0 +CurrentValuePh3[35]=0 +ElecAngleValue[36]=36 +CurrentValuePh1[36]=0,587785252292473 +CurrentValuePh2[36]=0 +CurrentValuePh3[36]=0 +ElecAngleValue[37]=37 +CurrentValuePh1[37]=0,601815023152048 +CurrentValuePh2[37]=0 +CurrentValuePh3[37]=0 +ElecAngleValue[38]=38 +CurrentValuePh1[38]=0,615661475325658 +CurrentValuePh2[38]=0 +CurrentValuePh3[38]=0 +ElecAngleValue[39]=39 +CurrentValuePh1[39]=0,629320391049837 +CurrentValuePh2[39]=0 +CurrentValuePh3[39]=0 +ElecAngleValue[40]=40 +CurrentValuePh1[40]=0,642787609686539 +CurrentValuePh2[40]=0 +CurrentValuePh3[40]=0 +ElecAngleValue[41]=41 +CurrentValuePh1[41]=0,656059028990507 +CurrentValuePh2[41]=0 +CurrentValuePh3[41]=0 +ElecAngleValue[42]=42 +CurrentValuePh1[42]=0,669130606358858 +CurrentValuePh2[42]=0 +CurrentValuePh3[42]=0 +ElecAngleValue[43]=43 +CurrentValuePh1[43]=0,681998360062498 +CurrentValuePh2[43]=0 +CurrentValuePh3[43]=0 +ElecAngleValue[44]=44 +CurrentValuePh1[44]=0,694658370458997 +CurrentValuePh2[44]=0 +CurrentValuePh3[44]=0 +ElecAngleValue[45]=45 +CurrentValuePh1[45]=0,707106781186547 +CurrentValuePh2[45]=0 +CurrentValuePh3[45]=0 +ElecAngleValue[46]=46 +CurrentValuePh1[46]=0,719339800338651 +CurrentValuePh2[46]=0 +CurrentValuePh3[46]=0 +ElecAngleValue[47]=47 +CurrentValuePh1[47]=0,73135370161917 +CurrentValuePh2[47]=0 +CurrentValuePh3[47]=0 +ElecAngleValue[48]=48 +CurrentValuePh1[48]=0,743144825477394 +CurrentValuePh2[48]=0 +CurrentValuePh3[48]=0 +ElecAngleValue[49]=49 +CurrentValuePh1[49]=0,754709580222772 +CurrentValuePh2[49]=0 +CurrentValuePh3[49]=0 +ElecAngleValue[50]=50 +CurrentValuePh1[50]=0,766044443118978 +CurrentValuePh2[50]=0 +CurrentValuePh3[50]=0 +ElecAngleValue[51]=51 +CurrentValuePh1[51]=0,777145961456971 +CurrentValuePh2[51]=0 +CurrentValuePh3[51]=0 +ElecAngleValue[52]=52 +CurrentValuePh1[52]=0,788010753606722 +CurrentValuePh2[52]=0 +CurrentValuePh3[52]=0 +ElecAngleValue[53]=53 +CurrentValuePh1[53]=0,798635510047293 +CurrentValuePh2[53]=0 +CurrentValuePh3[53]=0 +ElecAngleValue[54]=54 +CurrentValuePh1[54]=0,809016994374947 +CurrentValuePh2[54]=0 +CurrentValuePh3[54]=0 +ElecAngleValue[55]=55 +CurrentValuePh1[55]=0,819152044288992 +CurrentValuePh2[55]=0 +CurrentValuePh3[55]=0 +ElecAngleValue[56]=56 +CurrentValuePh1[56]=0,829037572555042 +CurrentValuePh2[56]=0 +CurrentValuePh3[56]=0 +ElecAngleValue[57]=57 +CurrentValuePh1[57]=0,838670567945424 +CurrentValuePh2[57]=0 +CurrentValuePh3[57]=0 +ElecAngleValue[58]=58 +CurrentValuePh1[58]=0,848048096156426 +CurrentValuePh2[58]=0 +CurrentValuePh3[58]=0 +ElecAngleValue[59]=59 +CurrentValuePh1[59]=0,857167300702112 +CurrentValuePh2[59]=0 +CurrentValuePh3[59]=0 +ElecAngleValue[60]=60 +CurrentValuePh1[60]=0,866025403784439 +CurrentValuePh2[60]=0 +CurrentValuePh3[60]=0 +ElecAngleValue[61]=61 +CurrentValuePh1[61]=0,874619707139396 +CurrentValuePh2[61]=0 +CurrentValuePh3[61]=0 +ElecAngleValue[62]=62 +CurrentValuePh1[62]=0,882947592858927 +CurrentValuePh2[62]=0 +CurrentValuePh3[62]=0 +ElecAngleValue[63]=63 +CurrentValuePh1[63]=0,891006524188368 +CurrentValuePh2[63]=0 +CurrentValuePh3[63]=0 +ElecAngleValue[64]=64 +CurrentValuePh1[64]=0,898794046299167 +CurrentValuePh2[64]=0 +CurrentValuePh3[64]=0 +ElecAngleValue[65]=65 +CurrentValuePh1[65]=0,90630778703665 +CurrentValuePh2[65]=0 +CurrentValuePh3[65]=0 +ElecAngleValue[66]=66 +CurrentValuePh1[66]=0,913545457642601 +CurrentValuePh2[66]=0 +CurrentValuePh3[66]=0 +ElecAngleValue[67]=67 +CurrentValuePh1[67]=0,92050485345244 +CurrentValuePh2[67]=0 +CurrentValuePh3[67]=0 +ElecAngleValue[68]=68 +CurrentValuePh1[68]=0,927183854566787 +CurrentValuePh2[68]=0 +CurrentValuePh3[68]=0 +ElecAngleValue[69]=69 +CurrentValuePh1[69]=0,933580426497202 +CurrentValuePh2[69]=0 +CurrentValuePh3[69]=0 +ElecAngleValue[70]=70 +CurrentValuePh1[70]=0,939692620785908 +CurrentValuePh2[70]=0 +CurrentValuePh3[70]=0 +ElecAngleValue[71]=71 +CurrentValuePh1[71]=0,945518575599317 +CurrentValuePh2[71]=0 +CurrentValuePh3[71]=0 +ElecAngleValue[72]=72 +CurrentValuePh1[72]=0,951056516295154 +CurrentValuePh2[72]=0 +CurrentValuePh3[72]=0 +ElecAngleValue[73]=73 +CurrentValuePh1[73]=0,956304755963035 +CurrentValuePh2[73]=0 +CurrentValuePh3[73]=0 +ElecAngleValue[74]=74 +CurrentValuePh1[74]=0,961261695938319 +CurrentValuePh2[74]=0 +CurrentValuePh3[74]=0 +ElecAngleValue[75]=75 +CurrentValuePh1[75]=0,965925826289068 +CurrentValuePh2[75]=0 +CurrentValuePh3[75]=0 +ElecAngleValue[76]=76 +CurrentValuePh1[76]=0,970295726275996 +CurrentValuePh2[76]=0 +CurrentValuePh3[76]=0 +ElecAngleValue[77]=77 +CurrentValuePh1[77]=0,974370064785235 +CurrentValuePh2[77]=0 +CurrentValuePh3[77]=0 +ElecAngleValue[78]=78 +CurrentValuePh1[78]=0,978147600733806 +CurrentValuePh2[78]=0 +CurrentValuePh3[78]=0 +ElecAngleValue[79]=79 +CurrentValuePh1[79]=0,981627183447664 +CurrentValuePh2[79]=0 +CurrentValuePh3[79]=0 +ElecAngleValue[80]=80 +CurrentValuePh1[80]=0,984807753012208 +CurrentValuePh2[80]=0 +CurrentValuePh3[80]=0 +ElecAngleValue[81]=81 +CurrentValuePh1[81]=0,987688340595138 +CurrentValuePh2[81]=0 +CurrentValuePh3[81]=0 +ElecAngleValue[82]=82 +CurrentValuePh1[82]=0,99026806874157 +CurrentValuePh2[82]=0 +CurrentValuePh3[82]=0 +ElecAngleValue[83]=83 +CurrentValuePh1[83]=0,992546151641322 +CurrentValuePh2[83]=0 +CurrentValuePh3[83]=0 +ElecAngleValue[84]=84 +CurrentValuePh1[84]=0,994521895368273 +CurrentValuePh2[84]=0 +CurrentValuePh3[84]=0 +ElecAngleValue[85]=85 +CurrentValuePh1[85]=0,996194698091746 +CurrentValuePh2[85]=0 +CurrentValuePh3[85]=0 +ElecAngleValue[86]=86 +CurrentValuePh1[86]=0,997564050259824 +CurrentValuePh2[86]=0 +CurrentValuePh3[86]=0 +ElecAngleValue[87]=87 +CurrentValuePh1[87]=0,998629534754574 +CurrentValuePh2[87]=0 +CurrentValuePh3[87]=0 +ElecAngleValue[88]=88 +CurrentValuePh1[88]=0,999390827019096 +CurrentValuePh2[88]=0 +CurrentValuePh3[88]=0 +ElecAngleValue[89]=89 +CurrentValuePh1[89]=0,999847695156391 +CurrentValuePh2[89]=0 +CurrentValuePh3[89]=0 +ElecAngleValue[90]=90 +CurrentValuePh1[90]=1 +CurrentValuePh2[90]=0 +CurrentValuePh3[90]=0 +ElecAngleValue[91]=91 +CurrentValuePh1[91]=0,999847695156391 +CurrentValuePh2[91]=0 +CurrentValuePh3[91]=0 +ElecAngleValue[92]=92 +CurrentValuePh1[92]=0,999390827019096 +CurrentValuePh2[92]=0 +CurrentValuePh3[92]=0 +ElecAngleValue[93]=93 +CurrentValuePh1[93]=0,998629534754574 +CurrentValuePh2[93]=0 +CurrentValuePh3[93]=0 +ElecAngleValue[94]=94 +CurrentValuePh1[94]=0,997564050259824 +CurrentValuePh2[94]=0 +CurrentValuePh3[94]=0 +ElecAngleValue[95]=95 +CurrentValuePh1[95]=0,996194698091746 +CurrentValuePh2[95]=0 +CurrentValuePh3[95]=0 +ElecAngleValue[96]=96 +CurrentValuePh1[96]=0,994521895368273 +CurrentValuePh2[96]=0 +CurrentValuePh3[96]=0 +ElecAngleValue[97]=97 +CurrentValuePh1[97]=0,992546151641322 +CurrentValuePh2[97]=0 +CurrentValuePh3[97]=0 +ElecAngleValue[98]=98 +CurrentValuePh1[98]=0,99026806874157 +CurrentValuePh2[98]=0 +CurrentValuePh3[98]=0 +ElecAngleValue[99]=99 +CurrentValuePh1[99]=0,987688340595138 +CurrentValuePh2[99]=0 +CurrentValuePh3[99]=0 +ElecAngleValue[100]=100 +CurrentValuePh1[100]=0,984807753012208 +CurrentValuePh2[100]=0 +CurrentValuePh3[100]=0 +ElecAngleValue[101]=101 +CurrentValuePh1[101]=0,981627183447664 +CurrentValuePh2[101]=0 +CurrentValuePh3[101]=0 +ElecAngleValue[102]=102 +CurrentValuePh1[102]=0,978147600733806 +CurrentValuePh2[102]=0 +CurrentValuePh3[102]=0 +ElecAngleValue[103]=103 +CurrentValuePh1[103]=0,974370064785235 +CurrentValuePh2[103]=0 +CurrentValuePh3[103]=0 +ElecAngleValue[104]=104 +CurrentValuePh1[104]=0,970295726275996 +CurrentValuePh2[104]=0 +CurrentValuePh3[104]=0 +ElecAngleValue[105]=105 +CurrentValuePh1[105]=0,965925826289068 +CurrentValuePh2[105]=0 +CurrentValuePh3[105]=0 +ElecAngleValue[106]=106 +CurrentValuePh1[106]=0,961261695938319 +CurrentValuePh2[106]=0 +CurrentValuePh3[106]=0 +ElecAngleValue[107]=107 +CurrentValuePh1[107]=0,956304755963036 +CurrentValuePh2[107]=0 +CurrentValuePh3[107]=0 +ElecAngleValue[108]=108 +CurrentValuePh1[108]=0,951056516295154 +CurrentValuePh2[108]=0 +CurrentValuePh3[108]=0 +ElecAngleValue[109]=109 +CurrentValuePh1[109]=0,945518575599317 +CurrentValuePh2[109]=0 +CurrentValuePh3[109]=0 +ElecAngleValue[110]=110 +CurrentValuePh1[110]=0,939692620785908 +CurrentValuePh2[110]=0 +CurrentValuePh3[110]=0 +ElecAngleValue[111]=111 +CurrentValuePh1[111]=0,933580426497202 +CurrentValuePh2[111]=0 +CurrentValuePh3[111]=0 +ElecAngleValue[112]=112 +CurrentValuePh1[112]=0,927183854566787 +CurrentValuePh2[112]=0 +CurrentValuePh3[112]=0 +ElecAngleValue[113]=113 +CurrentValuePh1[113]=0,92050485345244 +CurrentValuePh2[113]=0 +CurrentValuePh3[113]=0 +ElecAngleValue[114]=114 +CurrentValuePh1[114]=0,913545457642601 +CurrentValuePh2[114]=0 +CurrentValuePh3[114]=0 +ElecAngleValue[115]=115 +CurrentValuePh1[115]=0,90630778703665 +CurrentValuePh2[115]=0 +CurrentValuePh3[115]=0 +ElecAngleValue[116]=116 +CurrentValuePh1[116]=0,898794046299167 +CurrentValuePh2[116]=0 +CurrentValuePh3[116]=0 +ElecAngleValue[117]=117 +CurrentValuePh1[117]=0,891006524188368 +CurrentValuePh2[117]=0 +CurrentValuePh3[117]=0 +ElecAngleValue[118]=118 +CurrentValuePh1[118]=0,882947592858927 +CurrentValuePh2[118]=0 +CurrentValuePh3[118]=0 +ElecAngleValue[119]=119 +CurrentValuePh1[119]=0,874619707139396 +CurrentValuePh2[119]=0 +CurrentValuePh3[119]=0 +ElecAngleValue[120]=120 +CurrentValuePh1[120]=0,866025403784439 +CurrentValuePh2[120]=0 +CurrentValuePh3[120]=0 +ElecAngleValue[121]=121 +CurrentValuePh1[121]=0,857167300702112 +CurrentValuePh2[121]=0 +CurrentValuePh3[121]=0 +ElecAngleValue[122]=122 +CurrentValuePh1[122]=0,848048096156426 +CurrentValuePh2[122]=0 +CurrentValuePh3[122]=0 +ElecAngleValue[123]=123 +CurrentValuePh1[123]=0,838670567945424 +CurrentValuePh2[123]=0 +CurrentValuePh3[123]=0 +ElecAngleValue[124]=124 +CurrentValuePh1[124]=0,829037572555042 +CurrentValuePh2[124]=0 +CurrentValuePh3[124]=0 +ElecAngleValue[125]=125 +CurrentValuePh1[125]=0,819152044288992 +CurrentValuePh2[125]=0 +CurrentValuePh3[125]=0 +ElecAngleValue[126]=126 +CurrentValuePh1[126]=0,809016994374947 +CurrentValuePh2[126]=0 +CurrentValuePh3[126]=0 +ElecAngleValue[127]=127 +CurrentValuePh1[127]=0,798635510047293 +CurrentValuePh2[127]=0 +CurrentValuePh3[127]=0 +ElecAngleValue[128]=128 +CurrentValuePh1[128]=0,788010753606722 +CurrentValuePh2[128]=0 +CurrentValuePh3[128]=0 +ElecAngleValue[129]=129 +CurrentValuePh1[129]=0,777145961456971 +CurrentValuePh2[129]=0 +CurrentValuePh3[129]=0 +ElecAngleValue[130]=130 +CurrentValuePh1[130]=0,766044443118978 +CurrentValuePh2[130]=0 +CurrentValuePh3[130]=0 +ElecAngleValue[131]=131 +CurrentValuePh1[131]=0,754709580222772 +CurrentValuePh2[131]=0 +CurrentValuePh3[131]=0 +ElecAngleValue[132]=132 +CurrentValuePh1[132]=0,743144825477394 +CurrentValuePh2[132]=0 +CurrentValuePh3[132]=0 +ElecAngleValue[133]=133 +CurrentValuePh1[133]=0,731353701619171 +CurrentValuePh2[133]=0 +CurrentValuePh3[133]=0 +ElecAngleValue[134]=134 +CurrentValuePh1[134]=0,719339800338651 +CurrentValuePh2[134]=0 +CurrentValuePh3[134]=0 +ElecAngleValue[135]=135 +CurrentValuePh1[135]=0,707106781186548 +CurrentValuePh2[135]=0 +CurrentValuePh3[135]=0 +ElecAngleValue[136]=136 +CurrentValuePh1[136]=0,694658370458997 +CurrentValuePh2[136]=0 +CurrentValuePh3[136]=0 +ElecAngleValue[137]=137 +CurrentValuePh1[137]=0,681998360062498 +CurrentValuePh2[137]=0 +CurrentValuePh3[137]=0 +ElecAngleValue[138]=138 +CurrentValuePh1[138]=0,669130606358858 +CurrentValuePh2[138]=0 +CurrentValuePh3[138]=0 +ElecAngleValue[139]=139 +CurrentValuePh1[139]=0,656059028990507 +CurrentValuePh2[139]=0 +CurrentValuePh3[139]=0 +ElecAngleValue[140]=140 +CurrentValuePh1[140]=0,64278760968654 +CurrentValuePh2[140]=0 +CurrentValuePh3[140]=0 +ElecAngleValue[141]=141 +CurrentValuePh1[141]=0,629320391049837 +CurrentValuePh2[141]=0 +CurrentValuePh3[141]=0 +ElecAngleValue[142]=142 +CurrentValuePh1[142]=0,615661475325658 +CurrentValuePh2[142]=0 +CurrentValuePh3[142]=0 +ElecAngleValue[143]=143 +CurrentValuePh1[143]=0,601815023152048 +CurrentValuePh2[143]=0 +CurrentValuePh3[143]=0 +ElecAngleValue[144]=144 +CurrentValuePh1[144]=0,587785252292473 +CurrentValuePh2[144]=0 +CurrentValuePh3[144]=0 +ElecAngleValue[145]=145 +CurrentValuePh1[145]=0,573576436351046 +CurrentValuePh2[145]=0 +CurrentValuePh3[145]=0 +ElecAngleValue[146]=146 +CurrentValuePh1[146]=0,559192903470747 +CurrentValuePh2[146]=0 +CurrentValuePh3[146]=0 +ElecAngleValue[147]=147 +CurrentValuePh1[147]=0,544639035015027 +CurrentValuePh2[147]=0 +CurrentValuePh3[147]=0 +ElecAngleValue[148]=148 +CurrentValuePh1[148]=0,529919264233205 +CurrentValuePh2[148]=0 +CurrentValuePh3[148]=0 +ElecAngleValue[149]=149 +CurrentValuePh1[149]=0,515038074910054 +CurrentValuePh2[149]=0 +CurrentValuePh3[149]=0 +ElecAngleValue[150]=150 +CurrentValuePh1[150]=0,5 +CurrentValuePh2[150]=0 +CurrentValuePh3[150]=0 +ElecAngleValue[151]=151 +CurrentValuePh1[151]=0,484809620246337 +CurrentValuePh2[151]=0 +CurrentValuePh3[151]=0 +ElecAngleValue[152]=152 +CurrentValuePh1[152]=0,469471562785891 +CurrentValuePh2[152]=0 +CurrentValuePh3[152]=0 +ElecAngleValue[153]=153 +CurrentValuePh1[153]=0,453990499739547 +CurrentValuePh2[153]=0 +CurrentValuePh3[153]=0 +ElecAngleValue[154]=154 +CurrentValuePh1[154]=0,438371146789077 +CurrentValuePh2[154]=0 +CurrentValuePh3[154]=0 +ElecAngleValue[155]=155 +CurrentValuePh1[155]=0,4226182617407 +CurrentValuePh2[155]=0 +CurrentValuePh3[155]=0 +ElecAngleValue[156]=156 +CurrentValuePh1[156]=0,4067366430758 +CurrentValuePh2[156]=0 +CurrentValuePh3[156]=0 +ElecAngleValue[157]=157 +CurrentValuePh1[157]=0,390731128489274 +CurrentValuePh2[157]=0 +CurrentValuePh3[157]=0 +ElecAngleValue[158]=158 +CurrentValuePh1[158]=0,374606593415912 +CurrentValuePh2[158]=0 +CurrentValuePh3[158]=0 +ElecAngleValue[159]=159 +CurrentValuePh1[159]=0,3583679495453 +CurrentValuePh2[159]=0 +CurrentValuePh3[159]=0 +ElecAngleValue[160]=160 +CurrentValuePh1[160]=0,342020143325669 +CurrentValuePh2[160]=0 +CurrentValuePh3[160]=0 +ElecAngleValue[161]=161 +CurrentValuePh1[161]=0,325568154457157 +CurrentValuePh2[161]=0 +CurrentValuePh3[161]=0 +ElecAngleValue[162]=162 +CurrentValuePh1[162]=0,309016994374948 +CurrentValuePh2[162]=0 +CurrentValuePh3[162]=0 +ElecAngleValue[163]=163 +CurrentValuePh1[163]=0,292371704722737 +CurrentValuePh2[163]=0 +CurrentValuePh3[163]=0 +ElecAngleValue[164]=164 +CurrentValuePh1[164]=0,275637355816999 +CurrentValuePh2[164]=0 +CurrentValuePh3[164]=0 +ElecAngleValue[165]=165 +CurrentValuePh1[165]=0,258819045102521 +CurrentValuePh2[165]=0 +CurrentValuePh3[165]=0 +ElecAngleValue[166]=166 +CurrentValuePh1[166]=0,241921895599668 +CurrentValuePh2[166]=0 +CurrentValuePh3[166]=0 +ElecAngleValue[167]=167 +CurrentValuePh1[167]=0,224951054343865 +CurrentValuePh2[167]=0 +CurrentValuePh3[167]=0 +ElecAngleValue[168]=168 +CurrentValuePh1[168]=0,207911690817759 +CurrentValuePh2[168]=0 +CurrentValuePh3[168]=0 +ElecAngleValue[169]=169 +CurrentValuePh1[169]=0,190808995376545 +CurrentValuePh2[169]=0 +CurrentValuePh3[169]=0 +ElecAngleValue[170]=170 +CurrentValuePh1[170]=0,17364817766693 +CurrentValuePh2[170]=0 +CurrentValuePh3[170]=0 +ElecAngleValue[171]=171 +CurrentValuePh1[171]=0,156434465040231 +CurrentValuePh2[171]=0 +CurrentValuePh3[171]=0 +ElecAngleValue[172]=172 +CurrentValuePh1[172]=0,139173100960065 +CurrentValuePh2[172]=0 +CurrentValuePh3[172]=0 +ElecAngleValue[173]=173 +CurrentValuePh1[173]=0,121869343405148 +CurrentValuePh2[173]=0 +CurrentValuePh3[173]=0 +ElecAngleValue[174]=174 +CurrentValuePh1[174]=0,104528463267654 +CurrentValuePh2[174]=0 +CurrentValuePh3[174]=0 +ElecAngleValue[175]=175 +CurrentValuePh1[175]=0,0871557427476582 +CurrentValuePh2[175]=0 +CurrentValuePh3[175]=0 +ElecAngleValue[176]=176 +CurrentValuePh1[176]=0,0697564737441255 +CurrentValuePh2[176]=0 +CurrentValuePh3[176]=0 +ElecAngleValue[177]=177 +CurrentValuePh1[177]=0,0523359562429438 +CurrentValuePh2[177]=0 +CurrentValuePh3[177]=0 +ElecAngleValue[178]=178 +CurrentValuePh1[178]=0,0348994967025011 +CurrentValuePh2[178]=0 +CurrentValuePh3[178]=0 +ElecAngleValue[179]=179 +CurrentValuePh1[179]=0,0174524064372834 +CurrentValuePh2[179]=0 +CurrentValuePh3[179]=0 +ElecAngleValue[180]=180 +CurrentValuePh1[180]=1,22464679914735E-16 +CurrentValuePh2[180]=0 +CurrentValuePh3[180]=0 +ElecAngleValue[181]=181 +CurrentValuePh1[181]=-0,0174524064372836 +CurrentValuePh2[181]=0 +CurrentValuePh3[181]=0 +ElecAngleValue[182]=182 +CurrentValuePh1[182]=-0,0348994967025009 +CurrentValuePh2[182]=0 +CurrentValuePh3[182]=0 +ElecAngleValue[183]=183 +CurrentValuePh1[183]=-0,0523359562429436 +CurrentValuePh2[183]=0 +CurrentValuePh3[183]=0 +ElecAngleValue[184]=184 +CurrentValuePh1[184]=-0,0697564737441253 +CurrentValuePh2[184]=0 +CurrentValuePh3[184]=0 +ElecAngleValue[185]=185 +CurrentValuePh1[185]=-0,0871557427476579 +CurrentValuePh2[185]=0 +CurrentValuePh3[185]=0 +ElecAngleValue[186]=186 +CurrentValuePh1[186]=-0,104528463267654 +CurrentValuePh2[186]=0 +CurrentValuePh3[186]=0 +ElecAngleValue[187]=187 +CurrentValuePh1[187]=-0,121869343405147 +CurrentValuePh2[187]=0 +CurrentValuePh3[187]=0 +ElecAngleValue[188]=188 +CurrentValuePh1[188]=-0,139173100960066 +CurrentValuePh2[188]=0 +CurrentValuePh3[188]=0 +ElecAngleValue[189]=189 +CurrentValuePh1[189]=-0,156434465040231 +CurrentValuePh2[189]=0 +CurrentValuePh3[189]=0 +ElecAngleValue[190]=190 +CurrentValuePh1[190]=-0,17364817766693 +CurrentValuePh2[190]=0 +CurrentValuePh3[190]=0 +ElecAngleValue[191]=191 +CurrentValuePh1[191]=-0,190808995376545 +CurrentValuePh2[191]=0 +CurrentValuePh3[191]=0 +ElecAngleValue[192]=192 +CurrentValuePh1[192]=-0,20791169081776 +CurrentValuePh2[192]=0 +CurrentValuePh3[192]=0 +ElecAngleValue[193]=193 +CurrentValuePh1[193]=-0,224951054343865 +CurrentValuePh2[193]=0 +CurrentValuePh3[193]=0 +ElecAngleValue[194]=194 +CurrentValuePh1[194]=-0,241921895599668 +CurrentValuePh2[194]=0 +CurrentValuePh3[194]=0 +ElecAngleValue[195]=195 +CurrentValuePh1[195]=-0,258819045102521 +CurrentValuePh2[195]=0 +CurrentValuePh3[195]=0 +ElecAngleValue[196]=196 +CurrentValuePh1[196]=-0,275637355816999 +CurrentValuePh2[196]=0 +CurrentValuePh3[196]=0 +ElecAngleValue[197]=197 +CurrentValuePh1[197]=-0,292371704722737 +CurrentValuePh2[197]=0 +CurrentValuePh3[197]=0 +ElecAngleValue[198]=198 +CurrentValuePh1[198]=-0,309016994374947 +CurrentValuePh2[198]=0 +CurrentValuePh3[198]=0 +ElecAngleValue[199]=199 +CurrentValuePh1[199]=-0,325568154457157 +CurrentValuePh2[199]=0 +CurrentValuePh3[199]=0 +ElecAngleValue[200]=200 +CurrentValuePh1[200]=-0,342020143325669 +CurrentValuePh2[200]=0 +CurrentValuePh3[200]=0 +ElecAngleValue[201]=201 +CurrentValuePh1[201]=-0,3583679495453 +CurrentValuePh2[201]=0 +CurrentValuePh3[201]=0 +ElecAngleValue[202]=202 +CurrentValuePh1[202]=-0,374606593415912 +CurrentValuePh2[202]=0 +CurrentValuePh3[202]=0 +ElecAngleValue[203]=203 +CurrentValuePh1[203]=-0,390731128489274 +CurrentValuePh2[203]=0 +CurrentValuePh3[203]=0 +ElecAngleValue[204]=204 +CurrentValuePh1[204]=-0,4067366430758 +CurrentValuePh2[204]=0 +CurrentValuePh3[204]=0 +ElecAngleValue[205]=205 +CurrentValuePh1[205]=-0,422618261740699 +CurrentValuePh2[205]=0 +CurrentValuePh3[205]=0 +ElecAngleValue[206]=206 +CurrentValuePh1[206]=-0,438371146789077 +CurrentValuePh2[206]=0 +CurrentValuePh3[206]=0 +ElecAngleValue[207]=207 +CurrentValuePh1[207]=-0,453990499739547 +CurrentValuePh2[207]=0 +CurrentValuePh3[207]=0 +ElecAngleValue[208]=208 +CurrentValuePh1[208]=-0,469471562785891 +CurrentValuePh2[208]=0 +CurrentValuePh3[208]=0 +ElecAngleValue[209]=209 +CurrentValuePh1[209]=-0,484809620246337 +CurrentValuePh2[209]=0 +CurrentValuePh3[209]=0 +ElecAngleValue[210]=210 +CurrentValuePh1[210]=-0,5 +CurrentValuePh2[210]=0 +CurrentValuePh3[210]=0 +ElecAngleValue[211]=211 +CurrentValuePh1[211]=-0,515038074910054 +CurrentValuePh2[211]=0 +CurrentValuePh3[211]=0 +ElecAngleValue[212]=212 +CurrentValuePh1[212]=-0,529919264233205 +CurrentValuePh2[212]=0 +CurrentValuePh3[212]=0 +ElecAngleValue[213]=213 +CurrentValuePh1[213]=-0,544639035015027 +CurrentValuePh2[213]=0 +CurrentValuePh3[213]=0 +ElecAngleValue[214]=214 +CurrentValuePh1[214]=-0,559192903470747 +CurrentValuePh2[214]=0 +CurrentValuePh3[214]=0 +ElecAngleValue[215]=215 +CurrentValuePh1[215]=-0,573576436351046 +CurrentValuePh2[215]=0 +CurrentValuePh3[215]=0 +ElecAngleValue[216]=216 +CurrentValuePh1[216]=-0,587785252292473 +CurrentValuePh2[216]=0 +CurrentValuePh3[216]=0 +ElecAngleValue[217]=217 +CurrentValuePh1[217]=-0,601815023152048 +CurrentValuePh2[217]=0 +CurrentValuePh3[217]=0 +ElecAngleValue[218]=218 +CurrentValuePh1[218]=-0,615661475325658 +CurrentValuePh2[218]=0 +CurrentValuePh3[218]=0 +ElecAngleValue[219]=219 +CurrentValuePh1[219]=-0,629320391049838 +CurrentValuePh2[219]=0 +CurrentValuePh3[219]=0 +ElecAngleValue[220]=220 +CurrentValuePh1[220]=-0,642787609686539 +CurrentValuePh2[220]=0 +CurrentValuePh3[220]=0 +ElecAngleValue[221]=221 +CurrentValuePh1[221]=-0,656059028990507 +CurrentValuePh2[221]=0 +CurrentValuePh3[221]=0 +ElecAngleValue[222]=222 +CurrentValuePh1[222]=-0,669130606358858 +CurrentValuePh2[222]=0 +CurrentValuePh3[222]=0 +ElecAngleValue[223]=223 +CurrentValuePh1[223]=-0,681998360062498 +CurrentValuePh2[223]=0 +CurrentValuePh3[223]=0 +ElecAngleValue[224]=224 +CurrentValuePh1[224]=-0,694658370458997 +CurrentValuePh2[224]=0 +CurrentValuePh3[224]=0 +ElecAngleValue[225]=225 +CurrentValuePh1[225]=-0,707106781186547 +CurrentValuePh2[225]=0 +CurrentValuePh3[225]=0 +ElecAngleValue[226]=226 +CurrentValuePh1[226]=-0,719339800338651 +CurrentValuePh2[226]=0 +CurrentValuePh3[226]=0 +ElecAngleValue[227]=227 +CurrentValuePh1[227]=-0,73135370161917 +CurrentValuePh2[227]=0 +CurrentValuePh3[227]=0 +ElecAngleValue[228]=228 +CurrentValuePh1[228]=-0,743144825477394 +CurrentValuePh2[228]=0 +CurrentValuePh3[228]=0 +ElecAngleValue[229]=229 +CurrentValuePh1[229]=-0,754709580222772 +CurrentValuePh2[229]=0 +CurrentValuePh3[229]=0 +ElecAngleValue[230]=230 +CurrentValuePh1[230]=-0,766044443118978 +CurrentValuePh2[230]=0 +CurrentValuePh3[230]=0 +ElecAngleValue[231]=231 +CurrentValuePh1[231]=-0,777145961456971 +CurrentValuePh2[231]=0 +CurrentValuePh3[231]=0 +ElecAngleValue[232]=232 +CurrentValuePh1[232]=-0,788010753606722 +CurrentValuePh2[232]=0 +CurrentValuePh3[232]=0 +ElecAngleValue[233]=233 +CurrentValuePh1[233]=-0,798635510047293 +CurrentValuePh2[233]=0 +CurrentValuePh3[233]=0 +ElecAngleValue[234]=234 +CurrentValuePh1[234]=-0,809016994374947 +CurrentValuePh2[234]=0 +CurrentValuePh3[234]=0 +ElecAngleValue[235]=235 +CurrentValuePh1[235]=-0,819152044288992 +CurrentValuePh2[235]=0 +CurrentValuePh3[235]=0 +ElecAngleValue[236]=236 +CurrentValuePh1[236]=-0,829037572555042 +CurrentValuePh2[236]=0 +CurrentValuePh3[236]=0 +ElecAngleValue[237]=237 +CurrentValuePh1[237]=-0,838670567945424 +CurrentValuePh2[237]=0 +CurrentValuePh3[237]=0 +ElecAngleValue[238]=238 +CurrentValuePh1[238]=-0,848048096156426 +CurrentValuePh2[238]=0 +CurrentValuePh3[238]=0 +ElecAngleValue[239]=239 +CurrentValuePh1[239]=-0,857167300702112 +CurrentValuePh2[239]=0 +CurrentValuePh3[239]=0 +ElecAngleValue[240]=240 +CurrentValuePh1[240]=-0,866025403784439 +CurrentValuePh2[240]=0 +CurrentValuePh3[240]=0 +ElecAngleValue[241]=241 +CurrentValuePh1[241]=-0,874619707139396 +CurrentValuePh2[241]=0 +CurrentValuePh3[241]=0 +ElecAngleValue[242]=242 +CurrentValuePh1[242]=-0,882947592858927 +CurrentValuePh2[242]=0 +CurrentValuePh3[242]=0 +ElecAngleValue[243]=243 +CurrentValuePh1[243]=-0,891006524188368 +CurrentValuePh2[243]=0 +CurrentValuePh3[243]=0 +ElecAngleValue[244]=244 +CurrentValuePh1[244]=-0,898794046299167 +CurrentValuePh2[244]=0 +CurrentValuePh3[244]=0 +ElecAngleValue[245]=245 +CurrentValuePh1[245]=-0,90630778703665 +CurrentValuePh2[245]=0 +CurrentValuePh3[245]=0 +ElecAngleValue[246]=246 +CurrentValuePh1[246]=-0,913545457642601 +CurrentValuePh2[246]=0 +CurrentValuePh3[246]=0 +ElecAngleValue[247]=247 +CurrentValuePh1[247]=-0,92050485345244 +CurrentValuePh2[247]=0 +CurrentValuePh3[247]=0 +ElecAngleValue[248]=248 +CurrentValuePh1[248]=-0,927183854566787 +CurrentValuePh2[248]=0 +CurrentValuePh3[248]=0 +ElecAngleValue[249]=249 +CurrentValuePh1[249]=-0,933580426497202 +CurrentValuePh2[249]=0 +CurrentValuePh3[249]=0 +ElecAngleValue[250]=250 +CurrentValuePh1[250]=-0,939692620785908 +CurrentValuePh2[250]=0 +CurrentValuePh3[250]=0 +ElecAngleValue[251]=251 +CurrentValuePh1[251]=-0,945518575599317 +CurrentValuePh2[251]=0 +CurrentValuePh3[251]=0 +ElecAngleValue[252]=252 +CurrentValuePh1[252]=-0,951056516295154 +CurrentValuePh2[252]=0 +CurrentValuePh3[252]=0 +ElecAngleValue[253]=253 +CurrentValuePh1[253]=-0,956304755963035 +CurrentValuePh2[253]=0 +CurrentValuePh3[253]=0 +ElecAngleValue[254]=254 +CurrentValuePh1[254]=-0,961261695938319 +CurrentValuePh2[254]=0 +CurrentValuePh3[254]=0 +ElecAngleValue[255]=255 +CurrentValuePh1[255]=-0,965925826289068 +CurrentValuePh2[255]=0 +CurrentValuePh3[255]=0 +ElecAngleValue[256]=256 +CurrentValuePh1[256]=-0,970295726275996 +CurrentValuePh2[256]=0 +CurrentValuePh3[256]=0 +ElecAngleValue[257]=257 +CurrentValuePh1[257]=-0,974370064785235 +CurrentValuePh2[257]=0 +CurrentValuePh3[257]=0 +ElecAngleValue[258]=258 +CurrentValuePh1[258]=-0,978147600733806 +CurrentValuePh2[258]=0 +CurrentValuePh3[258]=0 +ElecAngleValue[259]=259 +CurrentValuePh1[259]=-0,981627183447664 +CurrentValuePh2[259]=0 +CurrentValuePh3[259]=0 +ElecAngleValue[260]=260 +CurrentValuePh1[260]=-0,984807753012208 +CurrentValuePh2[260]=0 +CurrentValuePh3[260]=0 +ElecAngleValue[261]=261 +CurrentValuePh1[261]=-0,987688340595138 +CurrentValuePh2[261]=0 +CurrentValuePh3[261]=0 +ElecAngleValue[262]=262 +CurrentValuePh1[262]=-0,99026806874157 +CurrentValuePh2[262]=0 +CurrentValuePh3[262]=0 +ElecAngleValue[263]=263 +CurrentValuePh1[263]=-0,992546151641322 +CurrentValuePh2[263]=0 +CurrentValuePh3[263]=0 +ElecAngleValue[264]=264 +CurrentValuePh1[264]=-0,994521895368273 +CurrentValuePh2[264]=0 +CurrentValuePh3[264]=0 +ElecAngleValue[265]=265 +CurrentValuePh1[265]=-0,996194698091746 +CurrentValuePh2[265]=0 +CurrentValuePh3[265]=0 +ElecAngleValue[266]=266 +CurrentValuePh1[266]=-0,997564050259824 +CurrentValuePh2[266]=0 +CurrentValuePh3[266]=0 +ElecAngleValue[267]=267 +CurrentValuePh1[267]=-0,998629534754574 +CurrentValuePh2[267]=0 +CurrentValuePh3[267]=0 +ElecAngleValue[268]=268 +CurrentValuePh1[268]=-0,999390827019096 +CurrentValuePh2[268]=0 +CurrentValuePh3[268]=0 +ElecAngleValue[269]=269 +CurrentValuePh1[269]=-0,999847695156391 +CurrentValuePh2[269]=0 +CurrentValuePh3[269]=0 +ElecAngleValue[270]=270 +CurrentValuePh1[270]=-1 +CurrentValuePh2[270]=0 +CurrentValuePh3[270]=0 +ElecAngleValue[271]=271 +CurrentValuePh1[271]=-0,999847695156391 +CurrentValuePh2[271]=0 +CurrentValuePh3[271]=0 +ElecAngleValue[272]=272 +CurrentValuePh1[272]=-0,999390827019096 +CurrentValuePh2[272]=0 +CurrentValuePh3[272]=0 +ElecAngleValue[273]=273 +CurrentValuePh1[273]=-0,998629534754574 +CurrentValuePh2[273]=0 +CurrentValuePh3[273]=0 +ElecAngleValue[274]=274 +CurrentValuePh1[274]=-0,997564050259824 +CurrentValuePh2[274]=0 +CurrentValuePh3[274]=0 +ElecAngleValue[275]=275 +CurrentValuePh1[275]=-0,996194698091746 +CurrentValuePh2[275]=0 +CurrentValuePh3[275]=0 +ElecAngleValue[276]=276 +CurrentValuePh1[276]=-0,994521895368273 +CurrentValuePh2[276]=0 +CurrentValuePh3[276]=0 +ElecAngleValue[277]=277 +CurrentValuePh1[277]=-0,992546151641322 +CurrentValuePh2[277]=0 +CurrentValuePh3[277]=0 +ElecAngleValue[278]=278 +CurrentValuePh1[278]=-0,99026806874157 +CurrentValuePh2[278]=0 +CurrentValuePh3[278]=0 +ElecAngleValue[279]=279 +CurrentValuePh1[279]=-0,987688340595138 +CurrentValuePh2[279]=0 +CurrentValuePh3[279]=0 +ElecAngleValue[280]=280 +CurrentValuePh1[280]=-0,984807753012208 +CurrentValuePh2[280]=0 +CurrentValuePh3[280]=0 +ElecAngleValue[281]=281 +CurrentValuePh1[281]=-0,981627183447664 +CurrentValuePh2[281]=0 +CurrentValuePh3[281]=0 +ElecAngleValue[282]=282 +CurrentValuePh1[282]=-0,978147600733806 +CurrentValuePh2[282]=0 +CurrentValuePh3[282]=0 +ElecAngleValue[283]=283 +CurrentValuePh1[283]=-0,974370064785235 +CurrentValuePh2[283]=0 +CurrentValuePh3[283]=0 +ElecAngleValue[284]=284 +CurrentValuePh1[284]=-0,970295726275997 +CurrentValuePh2[284]=0 +CurrentValuePh3[284]=0 +ElecAngleValue[285]=285 +CurrentValuePh1[285]=-0,965925826289068 +CurrentValuePh2[285]=0 +CurrentValuePh3[285]=0 +ElecAngleValue[286]=286 +CurrentValuePh1[286]=-0,961261695938319 +CurrentValuePh2[286]=0 +CurrentValuePh3[286]=0 +ElecAngleValue[287]=287 +CurrentValuePh1[287]=-0,956304755963035 +CurrentValuePh2[287]=0 +CurrentValuePh3[287]=0 +ElecAngleValue[288]=288 +CurrentValuePh1[288]=-0,951056516295154 +CurrentValuePh2[288]=0 +CurrentValuePh3[288]=0 +ElecAngleValue[289]=289 +CurrentValuePh1[289]=-0,945518575599317 +CurrentValuePh2[289]=0 +CurrentValuePh3[289]=0 +ElecAngleValue[290]=290 +CurrentValuePh1[290]=-0,939692620785908 +CurrentValuePh2[290]=0 +CurrentValuePh3[290]=0 +ElecAngleValue[291]=291 +CurrentValuePh1[291]=-0,933580426497202 +CurrentValuePh2[291]=0 +CurrentValuePh3[291]=0 +ElecAngleValue[292]=292 +CurrentValuePh1[292]=-0,927183854566787 +CurrentValuePh2[292]=0 +CurrentValuePh3[292]=0 +ElecAngleValue[293]=293 +CurrentValuePh1[293]=-0,92050485345244 +CurrentValuePh2[293]=0 +CurrentValuePh3[293]=0 +ElecAngleValue[294]=294 +CurrentValuePh1[294]=-0,913545457642601 +CurrentValuePh2[294]=0 +CurrentValuePh3[294]=0 +ElecAngleValue[295]=295 +CurrentValuePh1[295]=-0,90630778703665 +CurrentValuePh2[295]=0 +CurrentValuePh3[295]=0 +ElecAngleValue[296]=296 +CurrentValuePh1[296]=-0,898794046299167 +CurrentValuePh2[296]=0 +CurrentValuePh3[296]=0 +ElecAngleValue[297]=297 +CurrentValuePh1[297]=-0,891006524188368 +CurrentValuePh2[297]=0 +CurrentValuePh3[297]=0 +ElecAngleValue[298]=298 +CurrentValuePh1[298]=-0,882947592858927 +CurrentValuePh2[298]=0 +CurrentValuePh3[298]=0 +ElecAngleValue[299]=299 +CurrentValuePh1[299]=-0,874619707139396 +CurrentValuePh2[299]=0 +CurrentValuePh3[299]=0 +ElecAngleValue[300]=300 +CurrentValuePh1[300]=-0,866025403784439 +CurrentValuePh2[300]=0 +CurrentValuePh3[300]=0 +ElecAngleValue[301]=301 +CurrentValuePh1[301]=-0,857167300702112 +CurrentValuePh2[301]=0 +CurrentValuePh3[301]=0 +ElecAngleValue[302]=302 +CurrentValuePh1[302]=-0,848048096156426 +CurrentValuePh2[302]=0 +CurrentValuePh3[302]=0 +ElecAngleValue[303]=303 +CurrentValuePh1[303]=-0,838670567945424 +CurrentValuePh2[303]=0 +CurrentValuePh3[303]=0 +ElecAngleValue[304]=304 +CurrentValuePh1[304]=-0,829037572555042 +CurrentValuePh2[304]=0 +CurrentValuePh3[304]=0 +ElecAngleValue[305]=305 +CurrentValuePh1[305]=-0,819152044288992 +CurrentValuePh2[305]=0 +CurrentValuePh3[305]=0 +ElecAngleValue[306]=306 +CurrentValuePh1[306]=-0,809016994374948 +CurrentValuePh2[306]=0 +CurrentValuePh3[306]=0 +ElecAngleValue[307]=307 +CurrentValuePh1[307]=-0,798635510047293 +CurrentValuePh2[307]=0 +CurrentValuePh3[307]=0 +ElecAngleValue[308]=308 +CurrentValuePh1[308]=-0,788010753606722 +CurrentValuePh2[308]=0 +CurrentValuePh3[308]=0 +ElecAngleValue[309]=309 +CurrentValuePh1[309]=-0,777145961456971 +CurrentValuePh2[309]=0 +CurrentValuePh3[309]=0 +ElecAngleValue[310]=310 +CurrentValuePh1[310]=-0,766044443118978 +CurrentValuePh2[310]=0 +CurrentValuePh3[310]=0 +ElecAngleValue[311]=311 +CurrentValuePh1[311]=-0,754709580222772 +CurrentValuePh2[311]=0 +CurrentValuePh3[311]=0 +ElecAngleValue[312]=312 +CurrentValuePh1[312]=-0,743144825477395 +CurrentValuePh2[312]=0 +CurrentValuePh3[312]=0 +ElecAngleValue[313]=313 +CurrentValuePh1[313]=-0,73135370161917 +CurrentValuePh2[313]=0 +CurrentValuePh3[313]=0 +ElecAngleValue[314]=314 +CurrentValuePh1[314]=-0,719339800338651 +CurrentValuePh2[314]=0 +CurrentValuePh3[314]=0 +ElecAngleValue[315]=315 +CurrentValuePh1[315]=-0,707106781186548 +CurrentValuePh2[315]=0 +CurrentValuePh3[315]=0 +ElecAngleValue[316]=316 +CurrentValuePh1[316]=-0,694658370458998 +CurrentValuePh2[316]=0 +CurrentValuePh3[316]=0 +ElecAngleValue[317]=317 +CurrentValuePh1[317]=-0,681998360062498 +CurrentValuePh2[317]=0 +CurrentValuePh3[317]=0 +ElecAngleValue[318]=318 +CurrentValuePh1[318]=-0,669130606358858 +CurrentValuePh2[318]=0 +CurrentValuePh3[318]=0 +ElecAngleValue[319]=319 +CurrentValuePh1[319]=-0,656059028990507 +CurrentValuePh2[319]=0 +CurrentValuePh3[319]=0 +ElecAngleValue[320]=320 +CurrentValuePh1[320]=-0,64278760968654 +CurrentValuePh2[320]=0 +CurrentValuePh3[320]=0 +ElecAngleValue[321]=321 +CurrentValuePh1[321]=-0,629320391049838 +CurrentValuePh2[321]=0 +CurrentValuePh3[321]=0 +ElecAngleValue[322]=322 +CurrentValuePh1[322]=-0,615661475325658 +CurrentValuePh2[322]=0 +CurrentValuePh3[322]=0 +ElecAngleValue[323]=323 +CurrentValuePh1[323]=-0,601815023152048 +CurrentValuePh2[323]=0 +CurrentValuePh3[323]=0 +ElecAngleValue[324]=324 +CurrentValuePh1[324]=-0,587785252292473 +CurrentValuePh2[324]=0 +CurrentValuePh3[324]=0 +ElecAngleValue[325]=325 +CurrentValuePh1[325]=-0,573576436351046 +CurrentValuePh2[325]=0 +CurrentValuePh3[325]=0 +ElecAngleValue[326]=326 +CurrentValuePh1[326]=-0,559192903470747 +CurrentValuePh2[326]=0 +CurrentValuePh3[326]=0 +ElecAngleValue[327]=327 +CurrentValuePh1[327]=-0,544639035015027 +CurrentValuePh2[327]=0 +CurrentValuePh3[327]=0 +ElecAngleValue[328]=328 +CurrentValuePh1[328]=-0,529919264233205 +CurrentValuePh2[328]=0 +CurrentValuePh3[328]=0 +ElecAngleValue[329]=329 +CurrentValuePh1[329]=-0,515038074910054 +CurrentValuePh2[329]=0 +CurrentValuePh3[329]=0 +ElecAngleValue[330]=330 +CurrentValuePh1[330]=-0,5 +CurrentValuePh2[330]=0 +CurrentValuePh3[330]=0 +ElecAngleValue[331]=331 +CurrentValuePh1[331]=-0,484809620246337 +CurrentValuePh2[331]=0 +CurrentValuePh3[331]=0 +ElecAngleValue[332]=332 +CurrentValuePh1[332]=-0,469471562785891 +CurrentValuePh2[332]=0 +CurrentValuePh3[332]=0 +ElecAngleValue[333]=333 +CurrentValuePh1[333]=-0,453990499739547 +CurrentValuePh2[333]=0 +CurrentValuePh3[333]=0 +ElecAngleValue[334]=334 +CurrentValuePh1[334]=-0,438371146789078 +CurrentValuePh2[334]=0 +CurrentValuePh3[334]=0 +ElecAngleValue[335]=335 +CurrentValuePh1[335]=-0,422618261740699 +CurrentValuePh2[335]=0 +CurrentValuePh3[335]=0 +ElecAngleValue[336]=336 +CurrentValuePh1[336]=-0,4067366430758 +CurrentValuePh2[336]=0 +CurrentValuePh3[336]=0 +ElecAngleValue[337]=337 +CurrentValuePh1[337]=-0,390731128489274 +CurrentValuePh2[337]=0 +CurrentValuePh3[337]=0 +ElecAngleValue[338]=338 +CurrentValuePh1[338]=-0,374606593415912 +CurrentValuePh2[338]=0 +CurrentValuePh3[338]=0 +ElecAngleValue[339]=339 +CurrentValuePh1[339]=-0,358367949545301 +CurrentValuePh2[339]=0 +CurrentValuePh3[339]=0 +ElecAngleValue[340]=340 +CurrentValuePh1[340]=-0,342020143325669 +CurrentValuePh2[340]=0 +CurrentValuePh3[340]=0 +ElecAngleValue[341]=341 +CurrentValuePh1[341]=-0,325568154457157 +CurrentValuePh2[341]=0 +CurrentValuePh3[341]=0 +ElecAngleValue[342]=342 +CurrentValuePh1[342]=-0,309016994374948 +CurrentValuePh2[342]=0 +CurrentValuePh3[342]=0 +ElecAngleValue[343]=343 +CurrentValuePh1[343]=-0,292371704722737 +CurrentValuePh2[343]=0 +CurrentValuePh3[343]=0 +ElecAngleValue[344]=344 +CurrentValuePh1[344]=-0,275637355816999 +CurrentValuePh2[344]=0 +CurrentValuePh3[344]=0 +ElecAngleValue[345]=345 +CurrentValuePh1[345]=-0,258819045102521 +CurrentValuePh2[345]=0 +CurrentValuePh3[345]=0 +ElecAngleValue[346]=346 +CurrentValuePh1[346]=-0,241921895599668 +CurrentValuePh2[346]=0 +CurrentValuePh3[346]=0 +ElecAngleValue[347]=347 +CurrentValuePh1[347]=-0,224951054343865 +CurrentValuePh2[347]=0 +CurrentValuePh3[347]=0 +ElecAngleValue[348]=348 +CurrentValuePh1[348]=-0,20791169081776 +CurrentValuePh2[348]=0 +CurrentValuePh3[348]=0 +ElecAngleValue[349]=349 +CurrentValuePh1[349]=-0,190808995376545 +CurrentValuePh2[349]=0 +CurrentValuePh3[349]=0 +ElecAngleValue[350]=350 +CurrentValuePh1[350]=-0,17364817766693 +CurrentValuePh2[350]=0 +CurrentValuePh3[350]=0 +ElecAngleValue[351]=351 +CurrentValuePh1[351]=-0,156434465040231 +CurrentValuePh2[351]=0 +CurrentValuePh3[351]=0 +ElecAngleValue[352]=352 +CurrentValuePh1[352]=-0,139173100960066 +CurrentValuePh2[352]=0 +CurrentValuePh3[352]=0 +ElecAngleValue[353]=353 +CurrentValuePh1[353]=-0,121869343405147 +CurrentValuePh2[353]=0 +CurrentValuePh3[353]=0 +ElecAngleValue[354]=354 +CurrentValuePh1[354]=-0,104528463267653 +CurrentValuePh2[354]=0 +CurrentValuePh3[354]=0 +ElecAngleValue[355]=355 +CurrentValuePh1[355]=-0,0871557427476583 +CurrentValuePh2[355]=0 +CurrentValuePh3[355]=0 +ElecAngleValue[356]=356 +CurrentValuePh1[356]=-0,0697564737441256 +CurrentValuePh2[356]=0 +CurrentValuePh3[356]=0 +ElecAngleValue[357]=357 +CurrentValuePh1[357]=-0,0523359562429444 +CurrentValuePh2[357]=0 +CurrentValuePh3[357]=0 +ElecAngleValue[358]=358 +CurrentValuePh1[358]=-0,0348994967025008 +CurrentValuePh2[358]=0 +CurrentValuePh3[358]=0 +ElecAngleValue[359]=359 +CurrentValuePh1[359]=-0,0174524064372836 +CurrentValuePh2[359]=0 +CurrentValuePh3[359]=0 +ElecAngleValue[360]=360 +CurrentValuePh1[360]=-2,44929359829471E-16 +CurrentValuePh2[360]=0 +CurrentValuePh3[360]=0 + +[Plastic (ABS)] +Type=Fixed_Solid +Solid Type=General +Thermal Conductivity=0,25 +Specific Heat=1260 +Density=1014 +YieldStress=0 +PoissonsRatio=0 +YoungsCoefficient=0 +ElectricalResistivity=1E12 +TempCoefElectricalResistivity=0 + +[Polycarbonate (PC)] +Type=Fixed_Solid +Solid Type=General +Thermal Conductivity=0,29 +Specific Heat=1250 +Density=1200 +YieldStress=0 +PoissonsRatio=0 +YoungsCoefficient=0 +ElectricalResistivity=1E12 +TempCoefElectricalResistivity=0 + +[M800-50A] +Type=Fixed_Solid +Solid Type=Steel +Thermal Conductivity=30 +Specific Heat=460 +Density=7650 +YieldStress=300 +PoissonsRatio=0,3 +YoungsCoefficient=210000 +KcValue=0,65 +ElectricalResistivity=2,3E-07 +TempCoefElectricalResistivity=0 +LaminationThickness=0,5 +KhValue_Steinmetz=0,05318 +KhValue_Bertotti=0,007231 +KhValue_Bertotti_Maxwell=0,02074 +KeddyValue_Steinmetz=1E-05 +KexcValue=0,007605 +KexcValue_Maxwell=0,004306 +alphaValue_Steinmetz=1,713 +alphaValue_Bertotti=3,447 +alphaValue_Bertotti_Maxwell=2 +betavalue_Steinmetz=0 +BValue[0]=0 +HValue[0]=0 +BValue[1]=0,1 +HValue[1]=49,4217 +BValue[2]=0,2 +HValue[2]=91,7567 +BValue[3]=0,3 +HValue[3]=118,7541 +BValue[4]=0,4 +HValue[4]=135,6164 +BValue[5]=0,5 +HValue[5]=146,0186 +BValue[6]=0,6 +HValue[6]=156,966 +BValue[7]=0,7 +HValue[7]=168,252 +BValue[8]=0,8 +HValue[8]=180,8315 +BValue[9]=0,9 +HValue[9]=195,0656 +BValue[10]=1 +HValue[10]=213,5262 +BValue[11]=1,1 +HValue[11]=237,706 +BValue[12]=1,2 +HValue[12]=277,5238 +BValue[13]=1,3 +HValue[13]=345,8256 +BValue[14]=1,4 +HValue[14]=514,7918 +BValue[15]=1,5 +HValue[15]=1046,9084 +BValue[16]=1,6 +HValue[16]=2414,3523 +BValue[17]=1,7 +HValue[17]=4944,6712 +BValue[18]=1,8 +HValue[18]=9210,2309 +BValue[19]=1,9 +HValue[19]=15812,3447 +BValue[20]=2 +HValue[20]=24353,3644 +BValue[21]=2,1 +HValue[21]=34708,362 +BValue[22]=2,2 +HValue[22]=46723,5557 +BValue[23]=2,3 +HValue[23]=60861,7778 +BHExtrapolationEnabled=0 +Frequency[0]=50 +LossDensity[0]=0,05 +FluxDensity[0]=0,1 +Frequency[1]=50 +LossDensity[1]=0,18 +FluxDensity[1]=0,2 +Frequency[2]=50 +LossDensity[2]=0,43 +FluxDensity[2]=0,3 +Frequency[3]=50 +LossDensity[3]=0,7 +FluxDensity[3]=0,4 +Frequency[4]=50 +LossDensity[4]=1,01 +FluxDensity[4]=0,5 +Frequency[5]=50 +LossDensity[5]=1,35 +FluxDensity[5]=0,6 +Frequency[6]=50 +LossDensity[6]=1,72 +FluxDensity[6]=0,7 +Frequency[7]=50 +LossDensity[7]=2,13 +FluxDensity[7]=0,8 +Frequency[8]=50 +LossDensity[8]=2,56 +FluxDensity[8]=0,9 +Frequency[9]=50 +LossDensity[9]=3,05 +FluxDensity[9]=1 +Frequency[10]=50 +LossDensity[10]=3,59 +FluxDensity[10]=1,1 +Frequency[11]=50 +LossDensity[11]=4,2 +FluxDensity[11]=1,2 +Frequency[12]=50 +LossDensity[12]=4,91 +FluxDensity[12]=1,3 +Frequency[13]=50 +LossDensity[13]=5,7 +FluxDensity[13]=1,4 +Frequency[14]=50 +LossDensity[14]=6,6 +FluxDensity[14]=1,5 +Frequency[15]=50 +LossDensity[15]=7,54 +FluxDensity[15]=1,6 +Frequency[16]=50 +LossDensity[16]=8,3 +FluxDensity[16]=1,7 +Frequency[17]=50 +LossDensity[17]=8,83 +FluxDensity[17]=1,8 + +[Copper (Pure)] +Type=Fixed_Solid +Solid Type=General +Thermal Conductivity=401 +Specific Heat=385 +Density=8933 +YieldStress=180 +PoissonsRatio=0,355 +YoungsCoefficient=117000 +ElectricalResistivity=1,724E-08 +TempCoefElectricalResistivity=0,003862 + +[Stahl 37] +Type=Fixed_Solid +Solid Type=Steel +Thermal Conductivity=25 +Specific Heat=450 +Density=7800 +YieldStress=0 +PoissonsRatio=0 +YoungsCoefficient=0 +KcValue=0,65 +ElectricalResistivity=1,43E-07 +TempCoefElectricalResistivity=0 +LaminationThickness=0 +KhValue_Steinmetz=0 +KhValue_Bertotti=0 +KhValue_Bertotti_Maxwell=0 +KeddyValue_Steinmetz=0 +KexcValue=0 +KexcValue_Maxwell=0 +alphaValue_Steinmetz=0 +alphaValue_Bertotti=0 +alphaValue_Bertotti_Maxwell=2 +betavalue_Steinmetz=0 +BValue[0]=0 +HValue[0]=0 +BValue[1]=0,1 +HValue[1]=10 +BValue[2]=0,2 +HValue[2]=25 +BValue[3]=0,3 +HValue[3]=50,5 +BValue[4]=0,4 +HValue[4]=100 +BValue[5]=0,5 +HValue[5]=150 +BValue[6]=0,6 +HValue[6]=210 +BValue[7]=0,7 +HValue[7]=330 +BValue[8]=0,8 +HValue[8]=480 +BValue[9]=0,9 +HValue[9]=620 +BValue[10]=1 +HValue[10]=750 +BValue[11]=1,1 +HValue[11]=870 +BValue[12]=1,2 +HValue[12]=1080 +BValue[13]=1,3 +HValue[13]=1340 +BValue[14]=1,4 +HValue[14]=1850 +BValue[15]=1,5 +HValue[15]=2800 +BValue[16]=1,6 +HValue[16]=4350 +BValue[17]=1,7 +HValue[17]=6800 +BValue[18]=1,8 +HValue[18]=10800 +BValue[19]=1,9 +HValue[19]=18200,1514 +BValue[20]=2 +HValue[20]=29000 +BValue[21]=2,1 +HValue[21]=45000 +BHExtrapolationEnabled=0 + +[N38UH] +Type=Fixed_Solid +Solid Type=Magnet +Thermal Conductivity=7,6 +Specific Heat=460 +Density=7500 +YieldStress=0 +PoissonsRatio=0,24 +YoungsCoefficient=160000 +ElectricalResistivity=1,8E-06 +TempCoefElectricalResistivity=0 +MagnetBrValue=1,26 +MagneturValue=1,05 +MagnetTempCoefBr=-0,12 +BKneeDefined=0 +KneePointMethod=1 +MagnetHcJValue=1990000 +MagnetRefTemp=20 +ValidMagnetTemperature_Min=20 +ValidMagnetTemperature_Max=180 +MagnetTempCoefHcJ=-0,465 +MagnetSquarenessFactor=6E-05 +UrCalculationMethod=0 +UrToDefineUr=1,05 +HcToCalculateUr=0 +BrToCalculateUr=0 +H1ToCalculateUr=0 +B1ToCalculateUr=0 +H2ToCalculateUr=0 +B2ToCalculateUr=0 +HcAtRefTempToCalculateUr=0 + diff --git a/motores/PLACond/FEResultsData/OnLoadLoss_result_1.mes b/motores/PLACond/FEResultsData/OnLoadLoss_result_1.mes new file mode 100644 index 0000000..b712695 Binary files /dev/null and b/motores/PLACond/FEResultsData/OnLoadLoss_result_1.mes differ diff --git a/motores/PLACond/FEResultsData/OnLoadTorque_result_1.mes b/motores/PLACond/FEResultsData/OnLoadTorque_result_1.mes new file mode 100644 index 0000000..0e3bf46 Binary files /dev/null and b/motores/PLACond/FEResultsData/OnLoadTorque_result_1.mes differ diff --git a/motores/PLACond/FEResultsData/OnLoadTorque_result_1.ugf b/motores/PLACond/FEResultsData/OnLoadTorque_result_1.ugf new file mode 100644 index 0000000..80d3a1d Binary files /dev/null and b/motores/PLACond/FEResultsData/OnLoadTorque_result_1.ugf differ diff --git a/motores/PLACond/FEResultsData/StaticLoad_result_1.mes b/motores/PLACond/FEResultsData/StaticLoad_result_1.mes new file mode 100644 index 0000000..5c4fb1e Binary files /dev/null and b/motores/PLACond/FEResultsData/StaticLoad_result_1.mes differ diff --git a/motores/PLACond/FEResultsData/StaticLoad_result_1.ugf b/motores/PLACond/FEResultsData/StaticLoad_result_1.ugf new file mode 100644 index 0000000..32cc49b Binary files /dev/null and b/motores/PLACond/FEResultsData/StaticLoad_result_1.ugf differ diff --git a/motores/PLACond/FEResultsData/StaticOC_result_1.mes b/motores/PLACond/FEResultsData/StaticOC_result_1.mes new file mode 100644 index 0000000..1263e98 Binary files /dev/null and b/motores/PLACond/FEResultsData/StaticOC_result_1.mes differ diff --git a/motores/PLACond/FEResultsData/StaticOC_result_1.ugf b/motores/PLACond/FEResultsData/StaticOC_result_1.ugf new file mode 100644 index 0000000..56bc223 Binary files /dev/null and b/motores/PLACond/FEResultsData/StaticOC_result_1.ugf differ diff --git a/motores/PLACond/FEResultsData/Steel_Material_BH_Magnetic_Properties_Autofile.bh b/motores/PLACond/FEResultsData/Steel_Material_BH_Magnetic_Properties_Autofile.bh new file mode 100644 index 0000000..9e6b359 --- /dev/null +++ b/motores/PLACond/FEResultsData/Steel_Material_BH_Magnetic_Properties_Autofile.bh @@ -0,0 +1,2491 @@ +Material BH characteristics 27/03/2025 14:08:16 14:08:16 +Code:1 (Stator) Material: M800-50A +24 +1 0 0 +2 49.4217 0.09700186315 +3 91.7567 0.1940034591 +4 118.7541 0.2910044769 +5 135.6164 0.3880051126 +6 146.0186 0.4850055048 +7 156.966 0.5820059175 +8 168.252 0.679006343 +9 180.8315 0.7760068172 +10 195.0656 0.8730073538 +11 213.5262 0.9700080497 +12 237.706 1.067008961 +13 277.5238 1.164010462 +14 345.8256 1.261013037 +15 514.7918 1.358019407 +16 1046.9084 1.455039468 +17 2414.3523 1.552091019 +18 4944.6712 1.64918641 +19 9210.2309 1.746347218 +20 15812.3447 1.843596111 +21 24353.3644 1.9409181 +22 34708.362 2.038308474 +23 46723.5557 2.135761437 +24 60861.7778 2.233294435 +Code:2 (Rotor) Material: Stahl 37 +22 +1 0 0 +2 10 0.1 +3 25 0.2 +4 50.5 0.3 +5 100 0.4 +6 150 0.5 +7 210 0.6 +8 330 0.7 +9 480 0.8 +10 620 0.9 +11 750 1 +12 870 1.1 +13 1080 1.2 +14 1340 1.3 +15 1850 1.4 +16 2800 1.5 +17 4350 1.6 +18 6800 1.7 +19 10800 1.8 +20 18200.1514 1.9 +21 29000 2 +22 45000 2.1 +Code:3 (Shaft) No BH: +2 +1 0 0 +2 7957747.15459477 10 +Code:11 Regions:1Magnet1N1 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:12 Regions:1Magnet1S2 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:13 Regions:1Magnet1N2 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:14 Regions:1Magnet1S3 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:15 Regions:1Magnet1N3 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:16 Regions:1Magnet1S4 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:17 Regions:1Magnet1N4 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:18 Regions:1Magnet1S5 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:19 Regions:1Magnet1N5 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:20 Regions:1Magnet1S6 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:21 Regions:1Magnet1N6 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 +Code:22 Regions:1Magnet1S1 Method:PB_Brem_var Material:N38UH +201 +1 -1363815.7 -1.7138213 +2 -1363496.4 -1.693059 +3 -1363169.6 -1.6722102 +4 -1362835.2 -1.6512837 +5 -1362492.9 -1.6302885 +6 -1362142.7 -1.609234 +7 -1361784.2 -1.58813 +8 -1361417.4 -1.5669863 +9 -1361042 -1.5458132 +10 -1360657.7 -1.5246213 +11 -1360264.5 -1.5034212 +12 -1359862.1 -1.482224 +13 -1359450.2 -1.4610409 +14 -1359028.8 -1.4398833 +15 -1358597.4 -1.4187631 +16 -1358155.9 -1.3976919 +17 -1357704.1 -1.3766818 +18 -1357241.8 -1.3557449 +19 -1356768.6 -1.3348936 +20 -1356284.3 -1.3141403 +21 -1355788.7 -1.2934974 +22 -1355281.5 -1.2729775 +23 -1354762.4 -1.252593 +24 -1354231.2 -1.2323567 +25 -1353687.5 -1.212281 +26 -1353131.1 -1.1923784 +27 -1352561.7 -1.1726613 +28 -1351978.9 -1.153142 +29 -1351382.5 -1.1338327 +30 -1350772.1 -1.1147452 +31 -1350147.5 -1.0958914 +32 -1349508.2 -1.0772827 +33 -1348854 -1.0589303 +34 -1348184.4 -1.040845 +35 -1347499.2 -1.0230375 +36 -1346797.9 -1.0055179 +37 -1346080.2 -0.98829579 +38 -1345345.7 -0.9713805 +39 -1344594 -0.95478079 +40 -1343824.7 -0.93850486 +41 -1343037.4 -0.9225604 +42 -1342231.7 -0.90695449 +43 -1341407.1 -0.89169357 +44 -1340563.1 -0.87678348 +45 -1339699.5 -0.86222934 +46 -1338815.6 -0.84803559 +47 -1337911 -0.83420597 +48 -1336985.3 -0.82074345 +49 -1336037.9 -0.80765026 +50 -1335068.2 -0.79492785 +51 -1334075.9 -0.7825769 +52 -1333060.4 -0.7705973 +53 -1332021.1 -0.75898813 +54 -1330957.4 -0.74774769 +55 -1329868.9 -0.73687349 +56 -1328754.9 -0.72636223 +57 -1327614.8 -0.71620984 +58 -1326448 -0.70641151 +59 -1325253.8 -0.69696164 +60 -1324031.8 -0.68785393 +61 -1322781.1 -0.67908136 +62 -1321501.1 -0.67063623 +63 -1320191.2 -0.6625102 +64 -1318850.6 -0.65469432 +65 -1317478.6 -0.64717905 +66 -1316074.5 -0.63995432 +67 -1314637.5 -0.63300955 +68 -1313166.9 -0.62633373 +69 -1311661.9 -0.61991543 +70 -1310121.6 -0.61374286 +71 -1308545.2 -0.60780393 +72 -1306932 -0.60208628 +73 -1305281 -0.59657735 +74 -1303591.3 -0.59126443 +75 -1301862.1 -0.58613468 +76 -1300092.4 -0.58117523 +77 -1298281.2 -0.57637319 +78 -1296427.7 -0.57171571 +79 -1294530.8 -0.56719001 +80 -1292589.4 -0.56278347 +81 -1290602.6 -0.55848363 +82 -1288569.3 -0.55427823 +83 -1286488.4 -0.55015525 +84 -1284358.8 -0.54610297 +85 -1282179.3 -0.54210996 +86 -1279948.8 -0.53816513 +87 -1277666.1 -0.53425773 +88 -1275329.9 -0.5303774 +89 -1272939 -0.52651415 +90 -1270492.2 -0.5226584 +91 -1267988.1 -0.51880095 +92 -1265425.3 -0.51493303 +93 -1262802.6 -0.51104626 +94 -1260118.4 -0.50713267 +95 -1257371.4 -0.50318466 +96 -1254560.1 -0.49919506 +97 -1251683 -0.49515702 +98 -1248738.6 -0.49106409 +99 -1245725.1 -0.48691013 +100 -1242641.2 -0.48268934 +101 -1239485 -0.47839622 +102 -1236255 -0.47402554 +103 -1232949.3 -0.46957235 +104 -1229566.3 -0.46503191 +105 -1226104 -0.46039973 +106 -1222560.7 -0.45567148 +107 -1218934.5 -0.45084302 +108 -1215223.3 -0.44591035 +109 -1211425.2 -0.44086962 +110 -1207538.3 -0.43571705 +111 -1203560.3 -0.43044898 +112 -1199489.2 -0.42506181 +113 -1195322.8 -0.41955198 +114 -1191058.9 -0.413916 +115 -1186695.1 -0.40815037 +116 -1182229.2 -0.4022516 +117 -1177658.7 -0.39621623 +118 -1172981.2 -0.39004073 +119 -1168194.2 -0.3837216 +120 -1163295.2 -0.37725526 +121 -1158281.4 -0.37063811 +122 -1153150.3 -0.36386649 +123 -1147899 -0.35693667 +124 -1142524.8 -0.34984489 +125 -1137024.8 -0.34258727 +126 -1131396 -0.33515989 +127 -1125635.5 -0.32755874 +128 -1119740.1 -0.31977972 +129 -1113706.6 -0.31181864 +130 -1107531.9 -0.30367123 +131 -1101212.7 -0.2953331 +132 -1094745.5 -0.28679979 +133 -1088126.9 -0.27806672 +134 -1081353.3 -0.26912921 +135 -1074421.2 -0.25998247 +136 -1067326.8 -0.2506216 +137 -1060066.3 -0.24104158 +138 -1052635.8 -0.23123727 +139 -1045031.4 -0.22120344 +140 -1037248.9 -0.21093471 +141 -1029284.2 -0.20042556 +142 -1021133.1 -0.18967039 +143 -1012791.1 -0.17866342 +144 -1004253.8 -0.16739877 +145 -995516.71 -0.15587039 +146 -986575.02 -0.14407211 +147 -977424 -0.13199763 +148 -968058.74 -0.11964046 +149 -958474.23 -0.10699399 +150 -948665.33 -0.094051456 +151 -938626.79 -0.080805915 +152 -928353.24 -0.067250277 +153 -917839.16 -0.053377283 +154 -907078.94 -0.039179503 +155 -896066.8 -0.024649333 +156 -884796.86 -0.0097789912 +157 -873263.07 0.0054394862 +158 -861459.26 0.02101425 +159 -849379.1 0.03695364 +160 -837016.13 0.053266194 +161 -824363.73 0.069960647 +162 -811415.11 0.087045941 +163 -798163.35 0.10453123 +164 -784601.35 0.12242587 +165 -770721.84 0.14073944 +166 -756517.4 0.15948177 +167 -741980.41 0.17866288 +168 -727103.08 0.19829304 +169 -711877.46 0.21838278 +170 -696295.38 0.23894284 +171 -680348.51 0.25998425 +172 -664028.3 0.28151826 +173 -647326.01 0.30355642 +174 -630232.69 0.32611051 +175 -612739.2 0.34919264 +176 -594836.16 0.37281514 +177 -576513.98 0.39699069 +178 -557762.85 0.42173221 +179 -538572.74 0.44705297 +180 -518933.36 0.47296653 +181 -498834.19 0.49948675 +182 -478264.47 0.52662785 +183 -457213.19 0.55440437 +184 -435669.07 0.58283117 +185 -413620.57 0.61192348 +186 -391055.88 0.64169689 +187 -367962.92 0.67216733 +188 -344329.32 0.70335112 +189 -320142.43 0.73526498 +190 -295389.29 0.76792598 +191 -270056.64 0.80135162 +192 -244130.92 0.8355598 +193 -217598.24 0.87056884 +194 -190444.4 0.9063975 +195 -162654.84 0.94306495 +196 -134214.69 0.98059084 +197 -105108.72 1.0189953 +198 -75321.341 1.0582988 +199 -44836.594 1.0985225 +200 -13638.157 1.1396878 +201 0 1.157683 diff --git a/motores/PLACond/MessageLogs/messageLog_10216.txt b/motores/PLACond/MessageLogs/messageLog_10216.txt new file mode 100644 index 0000000..354441a --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_10216.txt @@ -0,0 +1,43 @@ +27/03/2025 14:04:55 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_10216.txt +27/03/2025 14:04:55 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +27/03/2025 14:04:56 : pymotorcad: ShowMagneticContext +27/03/2025 14:04:56 : pymotorcad: SetVariable ShaftSpeed = 3000 +27/03/2025 14:04:56 : pymotorcad: SetVariable CurrentDefinition = 1 +27/03/2025 14:04:56 : pymotorcad: SetVariable RMSCurrent = 3 +27/03/2025 14:04:56 : pymotorcad: SetVariable DCBusVoltage = 350 +27/03/2025 14:04:56 : pymotorcad: SetVariable PhaseAdvance = 45 +27/03/2025 14:04:56 : pymotorcad: SetVariable MagneticThermalCoupling = 0 +27/03/2025 14:04:56 : pymotorcad: ImportSolidMaterial PLACond +27/03/2025 14:04:56 : No solids found in solid database file c:\ANSYS_Motor-CAD\2024_1_3\Motor-CAD Data\materials\solids.mdb +Please check you have selected the correct file. +27/03/2025 14:04:56 : pymotorcad: SetVariable BackEMFCalculation = False +27/03/2025 14:04:56 : pymotorcad: SetVariable CoggingTorqueCalculation = False +27/03/2025 14:04:56 : pymotorcad: SetVariable ElectromagneticForcesCalc_OC = False +27/03/2025 14:04:56 : pymotorcad: SetVariable TorqueSpeedCalculation = False +27/03/2025 14:04:56 : pymotorcad: SetVariable DemagnetizationCalc = False +27/03/2025 14:04:56 : pymotorcad: SetVariable ElectromagneticForcesCalc_Load = False +27/03/2025 14:04:56 : pymotorcad: SetVariable InductanceCalc = False +27/03/2025 14:04:56 : pymotorcad: SetVariable BPMShortCircuitCalc = False +27/03/2025 14:04:56 : pymotorcad: SetVariable TorqueCalculation = True +27/03/2025 14:04:56 : pymotorcad: GetVariable SHAFTSPEED = 3000 +27/03/2025 14:04:56 : pymotorcad: GetVariable CURRENTDEFINITION = 1 +27/03/2025 14:04:56 : pymotorcad: GetVariable PEAKCURRENT = 4,24264068711929 +27/03/2025 14:04:56 : pymotorcad: GetVariable TORQUECALCULATION = True +27/03/2025 14:04:56 : pymotorcad: DoMagneticCalculation +27/03/2025 14:04:57 : Status: Solving FEA model +27/03/2025 14:04:58 : Q axis current only Point Calculation +27/03/2025 14:04:58 : Solving FEA model +27/03/2025 14:04:58 : Load Point Calculation +27/03/2025 14:04:58 : Solving FEA model +27/03/2025 14:04:59 : Solving FEA model +27/03/2025 14:04:59 : Transient Torque Calculation +27/03/2025 14:04:59 : Solving FEA model +27/03/2025 14:05:08 : FEA Calculation Time: 10 Seconds +27/03/2025 14:05:08 : Creating folder: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\FEResultsData\feasys\ +27/03/2025 14:05:08 : Warning: Operating point outside voltage limit. Check the DC bus voltage. +27/03/2025 14:05:08 : Solving completed +27/03/2025 14:05:08 : Nodes count = 3365 +27/03/2025 14:05:08 : Elements count = 6472 +27/03/2025 14:05:08 : Status: Solving Completed +27/03/2025 14:05:08 : pymotorcad: ExportResults +27/03/2025 14:05:08 : pymotorcad: Quit diff --git a/motores/PLACond/MessageLogs/messageLog_10744.txt b/motores/PLACond/MessageLogs/messageLog_10744.txt new file mode 100644 index 0000000..d9c7c6b --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_10744.txt @@ -0,0 +1,40 @@ +27/03/2025 13:49:17 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_10744.txt +27/03/2025 13:49:17 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +27/03/2025 13:49:18 : pymotorcad: ShowMagneticContext +27/03/2025 13:49:18 : pymotorcad: SetVariable ShaftSpeed = 3000 +27/03/2025 13:49:18 : pymotorcad: SetVariable CurrentDefinition = 1 +27/03/2025 13:49:18 : pymotorcad: SetVariable RMSCurrent = 3 +27/03/2025 13:49:18 : pymotorcad: SetVariable DCBusVoltage = 350 +27/03/2025 13:49:18 : pymotorcad: SetVariable PhaseAdvance = 45 +27/03/2025 13:49:18 : pymotorcad: SetVariable MagneticThermalCoupling = 0 +27/03/2025 13:49:18 : pymotorcad: SetVariable BackEMFCalculation = False +27/03/2025 13:49:18 : pymotorcad: SetVariable CoggingTorqueCalculation = False +27/03/2025 13:49:18 : pymotorcad: SetVariable ElectromagneticForcesCalc_OC = False +27/03/2025 13:49:18 : pymotorcad: SetVariable TorqueSpeedCalculation = False +27/03/2025 13:49:18 : pymotorcad: SetVariable DemagnetizationCalc = False +27/03/2025 13:49:18 : pymotorcad: SetVariable ElectromagneticForcesCalc_Load = False +27/03/2025 13:49:18 : pymotorcad: SetVariable InductanceCalc = False +27/03/2025 13:49:18 : pymotorcad: SetVariable BPMShortCircuitCalc = False +27/03/2025 13:49:18 : pymotorcad: SetVariable TorqueCalculation = True +27/03/2025 13:49:18 : pymotorcad: GetVariable SHAFTSPEED = 3000 +27/03/2025 13:49:18 : pymotorcad: GetVariable CURRENTDEFINITION = 1 +27/03/2025 13:49:18 : pymotorcad: GetVariable PEAKCURRENT = 4,24264068711929 +27/03/2025 13:49:18 : pymotorcad: GetVariable TORQUECALCULATION = True +27/03/2025 13:49:18 : pymotorcad: DoMagneticCalculation +27/03/2025 13:49:19 : Status: Solving FEA model +27/03/2025 13:49:20 : Q axis current only Point Calculation +27/03/2025 13:49:20 : Solving FEA model +27/03/2025 13:49:20 : Load Point Calculation +27/03/2025 13:49:20 : Solving FEA model +27/03/2025 13:49:21 : Solving FEA model +27/03/2025 13:49:21 : Transient Torque Calculation +27/03/2025 13:49:21 : Solving FEA model +27/03/2025 13:49:30 : FEA Calculation Time: 10 Seconds +27/03/2025 13:49:30 : Creating folder: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\FEResultsData\feasys\ +27/03/2025 13:49:30 : Warning: Operating point outside voltage limit. Check the DC bus voltage. +27/03/2025 13:49:30 : Solving completed +27/03/2025 13:49:30 : Nodes count = 3365 +27/03/2025 13:49:30 : Elements count = 6472 +27/03/2025 13:49:30 : Status: Solving Completed +27/03/2025 13:49:30 : pymotorcad: ExportResults +27/03/2025 13:49:30 : pymotorcad: Quit diff --git a/motores/PLACond/MessageLogs/messageLog_10840.txt b/motores/PLACond/MessageLogs/messageLog_10840.txt new file mode 100644 index 0000000..7a77be2 --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_10840.txt @@ -0,0 +1,12 @@ +27/03/2025 14:12:15 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_10840.txt +27/03/2025 14:12:15 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +27/03/2025 14:12:17 : pymotorcad: ShowMagneticContext +27/03/2025 14:12:17 : pymotorcad: SetVariable ShaftSpeed = 3000 +27/03/2025 14:12:17 : pymotorcad: SetVariable CurrentDefinition = 1 +27/03/2025 14:12:17 : pymotorcad: SetVariable RMSCurrent = 3 +27/03/2025 14:12:17 : pymotorcad: SetVariable DCBusVoltage = 350 +27/03/2025 14:12:17 : pymotorcad: SetVariable PhaseAdvance = 45 +27/03/2025 14:12:17 : pymotorcad: SetVariable MagneticThermalCoupling = 0 +27/03/2025 14:12:17 : pymotorcad: ImportSolidMaterial PLACond +27/03/2025 14:12:17 : Imported PLACond +27/03/2025 14:12:17 : pymotorcad: Quit diff --git a/motores/PLACond/MessageLogs/messageLog_13464.txt b/motores/PLACond/MessageLogs/messageLog_13464.txt new file mode 100644 index 0000000..307c755 --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_13464.txt @@ -0,0 +1,42 @@ +27/03/2025 14:08:14 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_13464.txt +27/03/2025 14:08:14 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +27/03/2025 14:08:15 : pymotorcad: ShowMagneticContext +27/03/2025 14:08:15 : pymotorcad: SetVariable ShaftSpeed = 3000 +27/03/2025 14:08:15 : pymotorcad: SetVariable CurrentDefinition = 1 +27/03/2025 14:08:15 : pymotorcad: SetVariable RMSCurrent = 3 +27/03/2025 14:08:15 : pymotorcad: SetVariable DCBusVoltage = 350 +27/03/2025 14:08:15 : pymotorcad: SetVariable PhaseAdvance = 45 +27/03/2025 14:08:15 : pymotorcad: SetVariable MagneticThermalCoupling = 0 +27/03/2025 14:08:15 : pymotorcad: ImportSolidMaterial PLACond +27/03/2025 14:08:16 : Imported PLACOND +27/03/2025 14:08:16 : pymotorcad: SetVariable BackEMFCalculation = False +27/03/2025 14:08:16 : pymotorcad: SetVariable CoggingTorqueCalculation = False +27/03/2025 14:08:16 : pymotorcad: SetVariable ElectromagneticForcesCalc_OC = False +27/03/2025 14:08:16 : pymotorcad: SetVariable TorqueSpeedCalculation = False +27/03/2025 14:08:16 : pymotorcad: SetVariable DemagnetizationCalc = False +27/03/2025 14:08:16 : pymotorcad: SetVariable ElectromagneticForcesCalc_Load = False +27/03/2025 14:08:16 : pymotorcad: SetVariable InductanceCalc = False +27/03/2025 14:08:16 : pymotorcad: SetVariable BPMShortCircuitCalc = False +27/03/2025 14:08:16 : pymotorcad: SetVariable TorqueCalculation = True +27/03/2025 14:08:16 : pymotorcad: GetVariable SHAFTSPEED = 3000 +27/03/2025 14:08:16 : pymotorcad: GetVariable CURRENTDEFINITION = 1 +27/03/2025 14:08:16 : pymotorcad: GetVariable PEAKCURRENT = 4,24264068711929 +27/03/2025 14:08:16 : pymotorcad: GetVariable TORQUECALCULATION = True +27/03/2025 14:08:16 : pymotorcad: DoMagneticCalculation +27/03/2025 14:08:16 : Status: Solving FEA model +27/03/2025 14:08:17 : Q axis current only Point Calculation +27/03/2025 14:08:17 : Solving FEA model +27/03/2025 14:08:17 : Load Point Calculation +27/03/2025 14:08:18 : Solving FEA model +27/03/2025 14:08:18 : Solving FEA model +27/03/2025 14:08:18 : Transient Torque Calculation +27/03/2025 14:08:18 : Solving FEA model +27/03/2025 14:08:27 : FEA Calculation Time: 10 Seconds +27/03/2025 14:08:27 : Creating folder: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\FEResultsData\feasys\ +27/03/2025 14:08:27 : Warning: Operating point outside voltage limit. Check the DC bus voltage. +27/03/2025 14:08:27 : Solving completed +27/03/2025 14:08:28 : Nodes count = 3365 +27/03/2025 14:08:28 : Elements count = 6472 +27/03/2025 14:08:28 : Status: Solving Completed +27/03/2025 14:08:28 : pymotorcad: ExportResults +27/03/2025 14:08:28 : pymotorcad: Quit diff --git a/motores/PLACond/MessageLogs/messageLog_13784.txt b/motores/PLACond/MessageLogs/messageLog_13784.txt new file mode 100644 index 0000000..57823c0 --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_13784.txt @@ -0,0 +1,15 @@ +27/03/2025 13:59:17 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_13784.txt +27/03/2025 13:59:17 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +27/03/2025 13:59:19 : pymotorcad: ShowMagneticContext +27/03/2025 13:59:19 : pymotorcad: SetVariable ShaftSpeed = 3000 +27/03/2025 13:59:19 : pymotorcad: SetVariable CurrentDefinition = 1 +27/03/2025 13:59:19 : pymotorcad: SetVariable RMSCurrent = 3 +27/03/2025 13:59:19 : pymotorcad: SetVariable DCBusVoltage = 350 +27/03/2025 13:59:19 : pymotorcad: SetVariable PhaseAdvance = 45 +27/03/2025 13:59:19 : pymotorcad: SetVariable MagneticThermalCoupling = 0 +27/03/2025 13:59:19 : pymotorcad: ExportSolidMaterialPLACond +27/03/2025 13:59:19 : Failed to write material properties to database file. Check you have write access to: +PLACond +27/03/2025 13:59:19 : pymotorcad: SetComponentMaterial component=PLACond material =PLACond +27/03/2025 13:59:19 : pymotorcad: SetComponentMaterial failed +27/03/2025 13:59:19 : pymotorcad: Quit diff --git a/motores/PLACond/MessageLogs/messageLog_1444.txt b/motores/PLACond/MessageLogs/messageLog_1444.txt new file mode 100644 index 0000000..f03a7bd --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_1444.txt @@ -0,0 +1,42 @@ +27/03/2025 13:48:12 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_1444.txt +27/03/2025 13:48:12 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +27/03/2025 13:48:13 : pymotorcad: ShowMagneticContext +27/03/2025 13:48:13 : pymotorcad: SetVariable ShaftSpeed = 3000 +27/03/2025 13:48:13 : pymotorcad: SetVariable CurrentDefinition = 1 +27/03/2025 13:48:13 : pymotorcad: SetVariable RMSCurrent = 3 +27/03/2025 13:48:13 : pymotorcad: SetVariable DCBusVoltage = 350 +27/03/2025 13:48:13 : pymotorcad: SetVariable PhaseAdvance = 45 +27/03/2025 13:48:13 : pymotorcad: SetVariable MagneticThermalCoupling = 0 +27/03/2025 13:48:13 : pymotorcad: SetVariable BackEMFCalculation = False +27/03/2025 13:48:13 : pymotorcad: SetVariable CoggingTorqueCalculation = False +27/03/2025 13:48:13 : pymotorcad: SetVariable ElectromagneticForcesCalc_OC = False +27/03/2025 13:48:13 : pymotorcad: SetVariable TorqueSpeedCalculation = False +27/03/2025 13:48:13 : pymotorcad: SetVariable DemagnetizationCalc = False +27/03/2025 13:48:13 : pymotorcad: SetVariable ElectromagneticForcesCalc_Load = False +27/03/2025 13:48:13 : pymotorcad: SetVariable InductanceCalc = False +27/03/2025 13:48:13 : pymotorcad: SetVariable BPMShortCircuitCalc = False +27/03/2025 13:48:13 : pymotorcad: SetVariable TorqueCalculation = True +27/03/2025 13:48:13 : pymotorcad: GetVariable SHAFTSPEED = 3000 +27/03/2025 13:48:13 : pymotorcad: GetVariable CURRENTDEFINITION = 1 +27/03/2025 13:48:13 : pymotorcad: GetVariable PEAKCURRENT = 4,24264068711929 +27/03/2025 13:48:13 : pymotorcad: GetVariable TORQUECALCULATION = True +27/03/2025 13:48:13 : pymotorcad: DoMagneticCalculation +27/03/2025 13:48:14 : Status: Solving FEA model +27/03/2025 13:48:15 : Q axis current only Point Calculation +27/03/2025 13:48:15 : Solving FEA model +27/03/2025 13:48:15 : Load Point Calculation +27/03/2025 13:48:16 : Solving FEA model +27/03/2025 13:48:16 : Solving FEA model +27/03/2025 13:48:16 : Transient Torque Calculation +27/03/2025 13:48:16 : Solving FEA model +27/03/2025 13:48:25 : FEA Calculation Time: 10 Seconds +27/03/2025 13:48:25 : Creating folder: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\FEResultsData\feasys\ +27/03/2025 13:48:25 : Warning: Operating point outside voltage limit. Check the DC bus voltage. +27/03/2025 13:48:25 : Solving completed +27/03/2025 13:48:25 : Nodes count = 3365 +27/03/2025 13:48:25 : Elements count = 6472 +27/03/2025 13:48:25 : Status: Solving Completed +27/03/2025 13:48:25 : pymotorcad: ExportResults +27/03/2025 13:48:25 : Failed to export results to file C:\Users\promerogomb\Desktop\fluxcontrol\results\results +27/03/2025 13:48:26 : pymotorcad: ExportResults failed +27/03/2025 13:48:26 : pymotorcad: Quit diff --git a/motores/PLACond/MessageLogs/messageLog_14884.txt b/motores/PLACond/MessageLogs/messageLog_14884.txt new file mode 100644 index 0000000..7c5af35 --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_14884.txt @@ -0,0 +1,43 @@ +27/03/2025 13:47:10 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_14884.txt +27/03/2025 13:47:10 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +27/03/2025 13:47:11 : pymotorcad: ShowMagneticContext +27/03/2025 13:47:11 : pymotorcad: SetVariable ShaftSpeed = 3000 +27/03/2025 13:47:11 : pymotorcad: SetVariable CurrentDefinition = 1 +27/03/2025 13:47:11 : pymotorcad: SetVariable RMSCurrent = 3 +27/03/2025 13:47:11 : pymotorcad: SetVariable DCBusVoltage = 350 +27/03/2025 13:47:11 : pymotorcad: SetVariable PhaseAdvance = 45 +27/03/2025 13:47:11 : pymotorcad: SetVariable MagneticThermalCoupling = 0 +27/03/2025 13:47:11 : pymotorcad: SetVariable BackEMFCalculation = False +27/03/2025 13:47:11 : pymotorcad: SetVariable CoggingTorqueCalculation = False +27/03/2025 13:47:11 : pymotorcad: SetVariable ElectromagneticForcesCalc_OC = False +27/03/2025 13:47:11 : pymotorcad: SetVariable TorqueSpeedCalculation = False +27/03/2025 13:47:11 : pymotorcad: SetVariable DemagnetizationCalc = False +27/03/2025 13:47:11 : pymotorcad: SetVariable ElectromagneticForcesCalc_Load = False +27/03/2025 13:47:11 : pymotorcad: SetVariable InductanceCalc = False +27/03/2025 13:47:11 : pymotorcad: SetVariable BPMShortCircuitCalc = False +27/03/2025 13:47:11 : pymotorcad: SetVariable TorqueCalculation = True +27/03/2025 13:47:11 : pymotorcad: GetVariable SHAFTSPEED = 3000 +27/03/2025 13:47:11 : pymotorcad: GetVariable CURRENTDEFINITION = 1 +27/03/2025 13:47:11 : pymotorcad: GetVariable PEAKCURRENT = 4,24264068711929 +27/03/2025 13:47:11 : pymotorcad: GetVariable TORQUECALCULATION = True +27/03/2025 13:47:11 : pymotorcad: DoMagneticCalculation +27/03/2025 13:47:12 : Creating folder: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\FEResultsData\ +27/03/2025 13:47:12 : Creating folder: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\FEResultsData\feasys\ +27/03/2025 13:47:12 : Status: Solving FEA model +27/03/2025 13:47:13 : Q axis current only Point Calculation +27/03/2025 13:47:13 : Solving FEA model +27/03/2025 13:47:13 : Load Point Calculation +27/03/2025 13:47:13 : Solving FEA model +27/03/2025 13:47:14 : Solving FEA model +27/03/2025 13:47:14 : Transient Torque Calculation +27/03/2025 13:47:14 : Solving FEA model +27/03/2025 13:47:23 : FEA Calculation Time: 10 Seconds +27/03/2025 13:47:23 : Creating folder: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\FEResultsData\feasys\ +27/03/2025 13:47:23 : Warning: Operating point outside voltage limit. Check the DC bus voltage. +27/03/2025 13:47:23 : Solving completed +27/03/2025 13:47:23 : Creating folder: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\Emag\ +27/03/2025 13:47:23 : Nodes count = 3365 +27/03/2025 13:47:23 : Elements count = 6472 +27/03/2025 13:47:23 : Status: Solving Completed +27/03/2025 13:47:23 : pymotorcad: ExportResults +27/03/2025 13:47:23 : pymotorcad: Quit diff --git a/motores/PLACond/MessageLogs/messageLog_15152.txt b/motores/PLACond/MessageLogs/messageLog_15152.txt new file mode 100644 index 0000000..f079102 --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_15152.txt @@ -0,0 +1,26 @@ +27/03/2025 13:44:38 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_15152.txt +27/03/2025 13:44:38 : Improved calculation methods are now available; recommend updating to use the default settings. +Do you wish to update the model settings now? +This can be done at any time from Defaults -> Default Settings -> Restore Compatibility Settings. = No +27/03/2025 13:44:38 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +27/03/2025 13:44:39 : pymotorcad: ShowMagneticContext +27/03/2025 13:44:39 : pymotorcad: SetVariable ShaftSpeed = 3000 +27/03/2025 13:44:39 : pymotorcad: SetVariable CurrentDefinition = 1 +27/03/2025 13:44:39 : pymotorcad: SetVariable RMSCurrent = 3 +27/03/2025 13:44:39 : pymotorcad: SetVariable DCBusVoltage = 350 +27/03/2025 13:44:39 : pymotorcad: SetVariable PhaseAdvance = 45 +27/03/2025 13:44:39 : pymotorcad: SetVariable BackEMFCalculation = False +27/03/2025 13:44:39 : pymotorcad: SetVariable CoggingTorqueCalculation = False +27/03/2025 13:44:39 : pymotorcad: SetVariable ElectromagneticForcesCalc_OC = False +27/03/2025 13:44:39 : pymotorcad: SetVariable TorqueSpeedCalculation = False +27/03/2025 13:44:39 : pymotorcad: SetVariable DemagnetizationCalc = False +27/03/2025 13:44:39 : pymotorcad: SetVariable ElectromagneticForcesCalc_Load = False +27/03/2025 13:44:39 : pymotorcad: SetVariable InductanceCalc = False +27/03/2025 13:44:39 : pymotorcad: SetVariable BPMShortCircuitCalc = False +27/03/2025 13:44:39 : pymotorcad: SetVariable TorqueCalculation = True +27/03/2025 13:44:39 : pymotorcad: GetVariable SHAFTSPEED = 3000 +27/03/2025 13:44:39 : pymotorcad: GetVariable CURRENTDEFINITION = 1 +27/03/2025 13:44:39 : pymotorcad: GetVariable PEAKCURRENT = 0,971880642722143 +27/03/2025 13:44:39 : pymotorcad: GetVariable TORQUECALCULATION = True +27/03/2025 13:44:39 : pymotorcad: DoMagneticCalculation +27/03/2025 13:44:39 : pymotorcad: Quit diff --git a/motores/PLACond/MessageLogs/messageLog_7764.txt b/motores/PLACond/MessageLogs/messageLog_7764.txt new file mode 100644 index 0000000..93809ad --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_7764.txt @@ -0,0 +1,13 @@ +27/03/2025 13:58:46 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_7764.txt +27/03/2025 13:58:46 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +27/03/2025 13:58:48 : pymotorcad: ShowMagneticContext +27/03/2025 13:58:48 : pymotorcad: SetVariable ShaftSpeed = 3000 +27/03/2025 13:58:48 : pymotorcad: SetVariable CurrentDefinition = 1 +27/03/2025 13:58:48 : pymotorcad: SetVariable RMSCurrent = 3 +27/03/2025 13:58:48 : pymotorcad: SetVariable DCBusVoltage = 350 +27/03/2025 13:58:48 : pymotorcad: SetVariable PhaseAdvance = 45 +27/03/2025 13:58:48 : pymotorcad: SetVariable MagneticThermalCoupling = 0 +27/03/2025 13:58:48 : pymotorcad: ExportSolidMaterialPLACond +27/03/2025 13:58:48 : Failed to write material properties to database file. Check you have write access to: +PLACond +27/03/2025 13:58:48 : pymotorcad: Quit diff --git a/motores/PLACond/MessageLogs/messageLog_8500.txt b/motores/PLACond/MessageLogs/messageLog_8500.txt new file mode 100644 index 0000000..6aafa3b --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_8500.txt @@ -0,0 +1,33 @@ +27/03/2025 14:12:54 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_8500.txt +27/03/2025 14:12:54 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot +27/03/2025 14:12:56 : pymotorcad: ShowMagneticContext +27/03/2025 14:12:56 : pymotorcad: SetVariable ShaftSpeed = 3000 +27/03/2025 14:12:56 : pymotorcad: SetVariable CurrentDefinition = 1 +27/03/2025 14:12:56 : pymotorcad: SetVariable RMSCurrent = 3 +27/03/2025 14:12:56 : pymotorcad: SetVariable DCBusVoltage = 350 +27/03/2025 14:12:56 : pymotorcad: SetVariable PhaseAdvance = 45 +27/03/2025 14:12:56 : pymotorcad: SetVariable MagneticThermalCoupling = 0 +27/03/2025 14:12:56 : pymotorcad: ImportSolidMaterial PLACond +27/03/2025 14:12:56 : Imported PLACond +27/03/2025 14:12:56 : pymotorcad: SetComponentMaterial component=Rotor Lam (Back Iron) material =PLACond +27/03/2025 14:12:56 : pymotorcad: SetVariable BackEMFCalculation = False +27/03/2025 14:12:56 : pymotorcad: SetVariable CoggingTorqueCalculation = False +27/03/2025 14:12:56 : pymotorcad: SetVariable ElectromagneticForcesCalc_OC = False +27/03/2025 14:12:56 : pymotorcad: SetVariable TorqueSpeedCalculation = False +27/03/2025 14:12:56 : pymotorcad: SetVariable DemagnetizationCalc = False +27/03/2025 14:12:56 : pymotorcad: SetVariable ElectromagneticForcesCalc_Load = False +27/03/2025 14:12:56 : pymotorcad: SetVariable InductanceCalc = False +27/03/2025 14:12:56 : pymotorcad: SetVariable BPMShortCircuitCalc = False +27/03/2025 14:12:56 : pymotorcad: SetVariable TorqueCalculation = True +27/03/2025 14:12:56 : pymotorcad: GetVariable SHAFTSPEED = 3000 +27/03/2025 14:12:56 : pymotorcad: GetVariable CURRENTDEFINITION = 1 +27/03/2025 14:12:56 : pymotorcad: GetVariable PEAKCURRENT = 4,24264068711929 +27/03/2025 14:12:56 : pymotorcad: GetVariable TORQUECALCULATION = True +27/03/2025 14:12:56 : pymotorcad: DoMagneticCalculation +27/03/2025 14:12:57 : Status: Solving FEA model +27/03/2025 14:12:57 : Rotor Lam (Back Iron) steel material PLACond +BH values are not continuous +27/03/2025 14:12:57 : Failed to create material BH file +27/03/2025 14:12:57 : Unable to solve Fea problem +27/03/2025 14:12:57 : Status: Solving Completed +27/03/2025 14:12:57 : pymotorcad: Quit diff --git a/motores/PLACond/MessageLogs/messageLog_8916.txt b/motores/PLACond/MessageLogs/messageLog_8916.txt new file mode 100644 index 0000000..db0244b --- /dev/null +++ b/motores/PLACond/MessageLogs/messageLog_8916.txt @@ -0,0 +1,46 @@ +27/03/2025 13:45:32 : Created file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond\MessageLogs\messageLog_8916.txt +27/03/2025 13:45:32 : Improved calculation methods are now available; recommend updating to use the default settings. +Do you wish to update the model settings now? +This can be done at any time from Defaults -> Default Settings -> Restore Compatibility Settings. = Yes +27/03/2025 13:45:32 : Resetting default settings +27/03/2025 13:45:32 : Updated value of Active Housing Axial Length Calc from Original to Improved +27/03/2025 13:45:32 : Updated value of Calculated currents drive circuit type from Original to Improved +27/03/2025 13:45:32 : Updated value of Coupled Spray Cooling Flow Rate Calc from Original to Improved +27/03/2025 13:45:32 : Updated value of DC Current Limit External Line Loss Method from Original to Improved +27/03/2025 13:45:32 : Updated value of Duct Contraction Flow Solver Method from Original to Improved +27/03/2025 13:45:32 : Updated value of Duty Cycle Loss Value Used from Improved to Enhanced +27/03/2025 13:45:32 : Updated value of Duty Cycle Sync Current Limit Method from Original to Improved +27/03/2025 13:45:32 : Updated value of Duty Cycle Vehicle Mass Correction Method from Original to Improved +27/03/2025 13:45:32 : Updated value of Embedded Magnet Pole Radius Method from Original to Improved +27/03/2025 13:45:32 : Updated value of External Power Component Distribution from Original to Improved +27/03/2025 13:45:32 : Updated value of Fluid Nodes External Power Injection from Original to Improved +27/03/2025 13:45:32 : Updated value of Force FFT Scaling Method from Original to Improved +27/03/2025 13:45:32 : Updated value of Housing WJ Fluid Weight and Capacitance Method from Original to Improved +27/03/2025 13:45:32 : Updated value of Hybrid AC Loss High Frequency Scaling Correction Method from Original to Improved +27/03/2025 13:45:32 : Updated value of IM Referred Rotor Parameters Calculation Method from Improved to Enhanced +27/03/2025 13:45:32 : Updated value of IM Stator Leakage Inductance FEA Lookup Method from Original to Improved +27/03/2025 13:45:32 : Updated value of Improved Rotor Lam Axial Resistances Calculation from Original to Improved +27/03/2025 13:45:32 : Updated value of Improved SYNC rotor stress calculation from Original to Improved +27/03/2025 13:45:32 : Updated value of Lab Electrical Custom Losses Method from Original to Improved +27/03/2025 13:45:32 : Updated value of NVH Mechanical Order Method (IM) from Original to Improved +27/03/2025 13:45:32 : Updated value of Radial Housing Rotational HTC Calc from Original to Improved +27/03/2025 13:45:32 : Updated value of Radial Housing Spray Cooling With Sleeve from Original to Improved +27/03/2025 13:45:32 : Updated value of Resistance Across Interior Web Calc from Original to Improved +27/03/2025 13:45:32 : Updated value of Rotor Water Jacket Central Inlet Calculation from Original to Improved +27/03/2025 13:45:32 : Updated value of Rotor Water Jacket Node Connection Method from Original to Improved +27/03/2025 13:45:32 : Updated value of Slot Divider Liner Drawing Method from Original to Improved +27/03/2025 13:45:32 : Updated value of SlotWJDuctkWallFrictionCalc from Original to Enhanced +27/03/2025 13:45:32 : Updated value of SlotWJHeatTransferCalc from Original to Improved +27/03/2025 13:45:32 : Updated value of Spoke Magnet Hoop Stress Method from Original to Improved +27/03/2025 13:45:32 : Updated value of Sync Pole Surface Offset Parenting Ratio Setting from Original to Improved +27/03/2025 13:45:32 : Updated value of TVent Circulating Airgap Flow Path from Original to Improved +27/03/2025 13:45:32 : Updated value of TVent Front and Rear Outlet Flow Path from Original to Improved +27/03/2025 13:45:32 : Updated value of TVent Inlet Expansion CSA Calculation from Original to Improved +27/03/2025 13:45:32 : Updated value of TVent Radial Duct Resistance Calc from Original to Improved +27/03/2025 13:45:32 : Updated value of TVent htc Recalculation from Original to Improved +27/03/2025 13:45:32 : Updated value of Unique region naming from Original to Improved +27/03/2025 13:45:32 : Updated value of Use circles in Maxwell Export polylines from Original to Improved +27/03/2025 13:45:32 : Updated value of Varying Armature Copper Loss Calculation from Original to Improved +27/03/2025 13:45:32 : Updated value of Wheel Inertia Torque Method from Original to Improved +27/03/2025 13:45:32 : Reset completed with 39 settings updated. +27/03/2025 13:45:32 : Loaded file: C:\Users\promerogomb\Desktop\fluxcontrol\motores\PLACond.mot diff --git a/results/results b/results/results new file mode 100644 index 0000000..de0c201 --- /dev/null +++ b/results/results @@ -0,0 +1,275 @@ +Drive +"DC Bus Voltage";350;Volts; +"Line-Line Supply Voltage (rms)";247,5;Volts; +"Phase Supply Voltage (rms)";142,9;Volts; +"Line-Line Terminal Voltage (peak)";455,8;Volts; +"Line-Line Terminal Voltage (rms)";309,6;Volts; +"Phase Terminal Voltage (peak)";251,8;Volts; +"Phase Terminal Voltage (rms)";178,9;Volts; +"Harmonic Distortion Line-Line Terminal Voltage";6,585;%; +"Harmonic Distortion Phase Terminal Voltage";6,633;%; +"Back EMF Line-Line Voltage (peak)";508,9;Volts; +"Back EMF Phase Voltage (peak)";293,8;Volts; +"Back EMF Line-Line Voltage (rms)";359,9;Volts; +"Back EMF Phase Voltage (rms)";207,8;Volts; +"Max Line-Line / Phase Voltage Ratio";1,732;; +"DC Supply Current (mean)";4,413;Amps; +"Line Current (peak)";4,243;Amps; +"Line Current (rms)";3;Amps; +"Phase Current (peak)";4,243;Amps; +"Phase Current (rms)";3;Amps; +"Phase Advance";45;EDeg; +"Drive Offset Angle (Open Circuit)";390;EDeg; +"Drive Offset Angle (On load)";30;EDeg; +"Phase Advance to give maximum torque";4,547;EDeg; +"Phasor Offset Angle";330;EDeg; +"Phasor Angle (Ph1)";0;EDeg; +"Phasor Angle (Ph2)";120;EDeg; +"Phasor Angle (Ph3)";240;EDeg; +"Max Angle Between Phasors";120;EDeg; +"D Axis Inductance";16,25;mH; +"Q Axis Inductance";18,17;mH; +"Line-Line Inductance (DQ)";33,53;mH; +"Armature End Winding Inductance_(Rosa and Grover)";0,544;mH; +"D Axis Phase Current (average rms)";-2,121;Amps; +"Q Axis Phase Current (average rms)";2,121;Amps; +"Torque Constant (Kt)";1,026;Nm/A; +"Motor Constant (Km)";0,3278;Nm/(Watts^0.5); +"Back EMF Constant (Ke) (fundamental)";1,62;Vs/Rad; +"Electrical Constant";2,637;msec; +"Electrical Loading";5,003E004;Amps/m; +"Stall Current";26,82;Amps; +"Stall Torque";27,51;Nm; +"Short Circuit Line Current (peak)";9,95;Amps; +"Short Circuit Current Density (peak)";50,67;Amps/mm²; +"Short Circuit Current Density (rms)";35,83;Amps/mm²; +"Short Circuit Braking Torque";-3,084;Nm; +"Short Circuit Max Braking Torque";-7,207;Nm; +"Short Circuit Max Braking Torque Speed";678,4;rpm; +"Fundamental Frequency";300;Hz; +"Shaft Speed";3000;rpm; + +E-Magnetics +"Maximum torque possible (DQ)_(For Phase Advance of 4,547 EDeg)";5,9709;Nm; +"Average torque (virtual work)";4,3593;Nm; +"Average torque (loop torque)";4,332;Nm; +"Torque Ripple (MsVw)";0,60512;Nm; +"Torque Ripple (MsVw) [%]";13,907;%; +"Speed limit for constant torque_(For Phase Advance of 45 EDeg)";2324,8;rpm; +"No load speed";2063,2;rpm; +"Speed limit for zero q axis current";INF;rpm; +"Electromagnetic Power_Operating point outside voltage limit.";1367;Watts; +"Input Power";1544,4;Watts; +"Total Losses (on load)";210,54;Watts; +"Output Power_Operating point outside voltage limit.";1333,9;Watts; +"System Efficiency";86,368;%; +"Shaft Torque";4,246;Nm; +"Power Factor [Waveform] (leading)";0,96066;; +"Power Factor Angle [Waveform]";-16,124;EDeg; +"Power Factor [THD]";0,95856;; +"Power Factor [Phasor] (leading)";0,96126;; +"Power Factor Angle [Phasor]";344;EDeg; +"Load Angle [Phasor]";28,908;EDeg; +"Phase Terminal Voltage (rms) [Phasor]";178,91;Volts; +"Rotor Inertia";0,00063702;kg.m²; +"Shaft Inertia";3,2257E-005;kg.m²; +"Total Inertia";0,00066928;kg.m²; +"Torque per rotor volume";40,307;kNm/m³; +"Rotor peripheral velocity (on load)";13,022;m/s; +"Flux Linkage D (Q axis current)";155,875;mVs; +"Flux Linkage Q (Q axis current)";54,453;mVs; +"Flux linkage D (On load)";107,122;mVs; +"Flux linkage Q (On load)";54,5023;mVs; +"Torque Constant (Kt)";1,0256;Nm/A; +"Motor Constant (Km)";0,327818;Nm/(Watts^0.5); +"Back EMF Constant (Ke) (fundamental)";1,6199;Vs/Rad; +"Stall Current";26,8188;Amps; +"Stall Torque";27,5053;Nm; +"Cogging Period";10;MDeg; +"Cogging Frequency";1800;Hz; +"Fundamental Frequency";300;Hz; +"Mechanical Frequency";50;Hz; +"Optimum Skewing Angle";10;MDeg; +"Magnetic Symmetry Factor_(Automatic calculation)";6;; +"Magnetic Axial Length (Slice1)";20;mm; + +Phasor Diagram +"Maximum torque possible (DQ)_(For Phase Advance of 4,547 EDeg)";5,9709;Nm; +"Average torque (virtual work)";4,3593;Nm; +"Average torque (loop torque)";4,332;Nm; +"Torque Ripple (MsVw)";0,60512;Nm; +"Torque Ripple (MsVw) [%]";13,907;%; +"Speed limit for constant torque_(For Phase Advance of 45 EDeg)";2324,8;rpm; +"No load speed";2063,2;rpm; +"Speed limit for zero q axis current";INF;rpm; +"Electromagnetic Power_Operating point outside voltage limit.";1367;Watts; +"Input Power";1544,4;Watts; +"Total Losses (on load)";210,54;Watts; +"Output Power_Operating point outside voltage limit.";1333,9;Watts; +"System Efficiency";86,368;%; +"Shaft Torque";4,246;Nm; +"Power Factor [Waveform] (leading)";0,96066;; +"Power Factor Angle [Waveform]";-16,124;EDeg; +"Power Factor [THD]";0,95856;; +"Power Factor [Phasor] (leading)";0,96126;; +"Power Factor Angle [Phasor]";344;EDeg; +"Load Angle [Phasor]";28,908;EDeg; +"Phase Terminal Voltage (rms) [Phasor]";178,91;Volts; +"Rotor Inertia";0,00063702;kg.m²; +"Shaft Inertia";3,2257E-005;kg.m²; +"Total Inertia";0,00066928;kg.m²; +"Torque per rotor volume";40,307;kNm/m³; +"Rotor peripheral velocity (on load)";13,022;m/s; +"Flux Linkage D (Q axis current)";155,875;mVs; +"Flux Linkage Q (Q axis current)";54,453;mVs; +"Flux linkage D (On load)";107,122;mVs; +"Flux linkage Q (On load)";54,5023;mVs; +"Torque Constant (Kt)";1,0256;Nm/A; +"Motor Constant (Km)";0,327818;Nm/(Watts^0.5); +"Back EMF Constant (Ke) (fundamental)";1,6199;Vs/Rad; +"Stall Current";26,8188;Amps; +"Stall Torque";27,5053;Nm; +"Cogging Period";10;MDeg; +"Cogging Frequency";1800;Hz; +"Fundamental Frequency";300;Hz; +"Mechanical Frequency";50;Hz; +"Optimum Skewing Angle";10;MDeg; +"Magnetic Symmetry Factor_(Automatic calculation)";6;; +"Magnetic Axial Length (Slice1)";20;mm; + +Equivalent Circuit +"Phase Resistance";6,525;Ohms; +"D Axis Inductance";16,25;mH; +"Q Axis Inductance";18,17;mH; +"Stator Slot Leakage Inductance";11,01;mH; +"Stator Differential Leakage Inductance";1,824;mH; +"Armature End Winding Inductance_(Rosa and Grover)";0,544;mH; +"Stator Leakage Inductance (Total)";13,37;mH; +"Magnetizing Inductance (D Axis)";2,876;mH; +"Magnetizing Inductance (Q Axis)";4,793;mH; +"D Axis Reactance";30,63;Ohms; +"Q Axis Reactance";34,24;Ohms; +"Stator Slot Leakage Reactance";20,75;Ohms; +"Stator Differential Leakage Reactance";3,438;Ohms; +"Armature End Winding Reactance";1,025;Ohms; +"Stator Leakage Reactance (Total)";25,21;Ohms; +"Magnetizing Reactance (D Axis)";5,422;Ohms; +"Magnetizing Reactance (Q Axis)";9,034;Ohms; +"Rotor Referred Resistance";183,8;Ohms; +"First Order Transient Reactance (D Axis)";25,21;Ohms; +"First Order Transient Reactance (Q Axis)";34,24;Ohms; +"Excitation Time Constant (Te)";1,565E-005;secs; +"First Order Transient Time Constant (Td')";1,288E-005;secs; +"Armature Time Constant (Ta)";0,002417;secs; + +Flux Densities +"Airgap flux density (mean)";0,5647;Tesla; +"Airgap Flux Density (peak)";1,002;Tesla; +"Stator Tooth Flux Density (peak)";0,9435;Tesla; +"Stator Tooth Tip Flux Density (peak)";1,927;Tesla; +"Stator Back Iron Flux Density (peak)";1,343;Tesla; +"Rotor Back Iron Flux Density (peak)";0,3478;Tesla; + +Losses +"Armature DC Copper Loss (on load)";176,2;Watts; +"Magnet Loss (on load)";0,6921;Watts; +"Stator iron Loss [total] (on load)";33,08;Watts; +"Rotor iron Loss [total] (on load)";0,5847;Watts; +"Windage Loss (user input)";0;Watts; +"Friction Loss (user input)";0;Watts; +"Shaft Loss [total] (on load)";0;Watts; +"Total Losses (on load)";210,5;Watts; +"Magnet Block Width";14,62;mm; +"Magnet Loss Factor";0,4889;; +"Magnet Loss (on load)";0,6921;Watts; +"Stator back iron Loss [hysteresis - fundamental] (on load)";2,964;Watts; +"Stator back iron Loss [hysteresis - minor loops] (on load)";2,236;Watts; +"Stator back iron Loss [hysteresis] (on load)";5,2;Watts; +"Stator back iron Loss [eddy] (on load)";6,664;Watts; +"Stator back iron Loss [excess] (on load)";0;Watts; +"Stator back iron Loss [total] (on load)";11,86;Watts; +"Stator tooth Loss [hysteresis - fundamental] (on load)";9,548;Watts; +"Stator tooth Loss [hysteresis - minor loops] (on load)";0,1072;Watts; +"Stator tooth Loss [hysteresis] (on load)";9,656;Watts; +"Stator tooth Loss [eddy] (on load)";11,56;Watts; +"Stator tooth Loss [excess] (on load)";0;Watts; +"Stator tooth Loss [total] (on load)";21,21;Watts; +"Stator iron Loss [total] (on load)";33,08;Watts; +"Rotor back iron Loss [hysteresis] (on load)";0;Watts; +"Rotor back iron Loss [eddy] (on load)";0,5847;Watts; +"Rotor back iron Loss [excess] (on load)";0;Watts; +"Rotor back iron Loss [total] (on load)";0,5847;Watts; +"Rotor iron Loss [total] (on load)";0,5847;Watts; +"Shaft Loss [eddy] (on load)";0;Watts; + +Winding +"Armature Conductor CSA";0,1963;mm²; +"Armature Conductor Current Density";15,28;Amps/mm²; +"Armature Conductor MLT";74,23;mm; +"Armature Turns per Phase";750;; +"Armature Turns per Coil";125;; +"Length of phase";5,568E004;mm; +"Phase Resistance";6,525;Ohms; +"Line-Line Resistance";13,05;Ohms; +"Armature Conductor Temperature";106,7;°C; +"Mean Coil Pitch (Calculated)";19,25;mm; +"Mean Coil Pitch (Used)";9,624;mm; +"Fundamental Winding Factor";0,866;; +"Winding Factor Sum";0,09009;; +"Wire Ins Thickness";0,025;mm; +"Copper Diameter";0,5;mm; +Conductors/Slot;250;; +"Armature End Winding MLT (Calculated)";68,47;mm; +"Armature End Winding MLT (User adjustment)";0,5;; +"Armature End Winding MLT (Used)";34,23;mm; +"Copper Slot Fill (Wdg Area)";0,2523;; +"Wire Slot Fill (Slot Area)";0,2684;; +"Copper Slot Fill (Slot Area)";0,2218;; +"Heavy Build Slot Fill";0,3887;; +"Slot Area (Slot 1)";221,3;mm²; +"Winding Area (+ Liner) (Slot 1)";207,1;mm²; +"Slot Area (FEA)";207,1;mm²; +"Wedge Area";14,19;mm²; +"Slot Opening Area";1,598;mm²; +"Liner-Lam Gap Area (Slot 1)";0;mm²; +"Impreg Area (Slot 1)";135,2;mm²; +"Liner Area (Slot 1)";12,55;mm²; +"Coil Divider Area (Slot 1)";0;mm²; +"Volume Copper EWdg Front";5376;mm³; +"Volume Copper Active";1,767E004;mm³; +"Volume Copper EWdg Rear";5376;mm³; + +Miscellaneous +"FEA Mesh Nodes";3365;; +"FEA Mesh Elements";6472;; +"Airgap Mesh Layers Used";5;; +"FEA Max Element Length";1,25;mm; + +Materials +"Armature Conductor Resistivity";2,301E-008;Ohm.m; +"Armature Conductor Resistivity at Ref Temp (20°C)";1,724E-008;Ohm.m; +"Armature Conductor Temperature";106,7;°C; +"Stator Lamination Resistivity";2,3E-007;Ohm.m; +"Number of stator laminations";38,8;; +"Rotor Lamination Resistivity";1,43E-007;Ohm.m; +"Rotor Lamination Resistivity at Ref Temp (20°C)";1,43E-007;Ohm.m; +"Rotor Lamination Temperature";87,2;°C; +"Number of rotor laminations";1;; +"Shaft Resistivity";0;Ohm.m; +"Shaft Resistivity at Ref Temp (20°C)";0;Ohm.m; +"Shaft Temperature";85,57;°C; +"Magnet Resistivity";1,8E-006;Ohm.m; +"Magnet Resistivity at Ref Temp (20°C)";1,8E-006;Ohm.m; +"Magnet Temperature";87,67;°C; +"Total Motor Weight";2,646;kg; +"Weight Stator Lam";0,6688;kg; +"Armature Copper [Total] Weight";0,293;kg; +"Weight Rotor Lam";0,4923;kg; +"Weight Magnet";0,1315;kg; +"Weight Shaft Total";0,3224;kg; +"Magnet Br at reference temperature (20 °C)";1,26;Tesla; +"Magnet Temperature";87,67;°C; +"Magnet Br (Calculated)";1,158;Tesla; +"Magnet Br Adjustment Factor";1;; +"Magnet Br (Used)";1,158;Tesla; +