-
Notifications
You must be signed in to change notification settings - Fork 4
/
e8_IPMSM_HWJandVent.mot
14313 lines (14192 loc) · 526 KB
/
e8_IPMSM_HWJandVent.mot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Header]
Program_Name=Motor-CAD
Program_Module=BPM-Therm
Program_Version=2024.2.3.1
Licence_Name_Line1=1055@localhost
User=agonzale
Licence_System=Ansys
File_Date=05/12/2024 10:03:00
Partial_file=False
Main_Title=e8
Title=e8
[File_History]
Previous_Version[1]=13.2.4.1 16/10/2020 15:18:07
Previous_Version[2]=agonzale Mathworks_Llacer 14.1.17.1 10/03/2022 15:47:32
Previous_Version[3]=agonzale Mathworks_Llacer 15.1.6.1 04/10/2022 18:58:21
[File_Notes]
DataFile_Notes=eMobility;IPM;Automotive;Stranded Distributed;10,000;80;Water Jacket;Sine;Based on Leaf 2012. Includes Single Rotor Pole DXF geometry.;
Data_File_Notes[1]=eMobility;IPM;Automotive;Stranded Distributed;10,000;80;Water Jacket;Sine;Based on Leaf 2012. Includes Single Rotor Pole DXF geometry.;
[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=Through_Ventilation
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
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=4
ConductorCols_Right=4
PlacementRotationAngle_L=0
PlacementRotationAngle_R=0
XCoord_L=-2.74715929335667
YCoord_L=84.5338362172082
XCoord_R=2.74715929335667
YCoord_R=84.5338362172082
ConductionPositionStep=1
FirstSetConductors=66
SecondSetConductors=54
UseSeparateEndRingNodes=True
UseSeparateRotorEndNodes=True
RotorEWdg_Roughness_F=1
RotorEWdg_Roughness_R=1
HousingWJFluidWeightCalc=1
HousingWJActiveOnlyMethod=1
MaxWindingCalibration=1
AvWindingCalibration=1
FEShading_Thermal=1
FEShading_Magnetic=1
FEShading_Mechanical=1
FEShading_MagneticLosses=4
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=B//T
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
CustomMaterial_MeshLengthMethod=1
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
IncludeRadiation=True
IncludeRadiation_Internal=False
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
SyncRotorWindingTempCoupling=1
WindingToLamCalculation=1
LinerToothSideRtCalc=1
UpdateCircuitDuringSolving=False
AxialSliceDefinition=1
RampSteps=100
IterationAverageCycles=1
CyclesAtEachAverage=10
AverageCyclesMinPoint=250
SteadyAveragingMethod=0
EndSpaceChangeRate=1000
EndCapVentCalculation=0
CirculatingFlowFluidPaths=True
InitialTransientTemperatureOption=0
Initial_Machine_Temperature=25
InitialHousingTemperature=40
InitialStatorTemperature=40
InitialWindingTemperature=40
InitialRotorTemperature=40
InitialMagnetTemperature=40
InitialRotorCopperTemperature=60
InitialFlangeTemperature=40
InitialTransientMagTempMethod=1
InitialTransientMachineTempMethod=1
CoupledFluidNodesTransientTemp=1
Radiaton_View_Factor_Editable=False
Windage_Loss_Definition=0
Windage_Loss_Multiplier=1
WindageGraph_MaxSpeed=10000
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
HousingWJActiveOnlyFlowCircuit=1
HousingWJCircularDuctCalc=1
HousingWJRectangularDuctCalc=1
HousingWJDuctWallThicknessCalc=1
HousingWJFrictionFactorCalc=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
UpperLower_ConductorBundle_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=36
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=8
TorqueSpeedPhaseAdv_Upper=70
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
ExternalCircuitDutyCycleControl=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
IMLockedRotorTorqueAverageMethod=0
IMSingleLoadPointRotorInductanceMethod=1
IMSkinEffectMethod=1
KEndringCalculationMethod=1
IMRadialDuctMethod=1
IMLossSumMethod=1
IMStatorCopperLossesMethod=1
AutomaticStrayLoadLossMethod=1
EndringInductanceMethod=0
IMEndringExtensionCorrectionMethod=1
IMEndringExt_htc_Calc=1
IMFEABarResistivityCorrectionMethod=1
RotorBarEndRingCorrectionMethod=1
RotorBarToLamResistanceCalc=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
SlotWJHTCCalc=1
SlotWJDuctkWallFrictionCalc=2
SlotWJDuctDrawingMethod=1
SlotDividerLinerDrawingMethod=2
SlotOpeningWidthSetting=1
ShaftSpiralGrooveHTCCalc=1
ESpaceRotorHTCCalc=1
ShaftSpiralGrooveFrictionCalc=1
ShaftSpiralGrooveDimensionsCalc=1
ShaftSpiralGrooveSprayCoolingCalc=1
Sleeve2D3DFactorCalc=3
SleeveLengthCalc=1
Banding2D3DFactorCalc=1
K_Radial_User_A=0.718667174860572
K_Radial_User=0.718667174860572
K_Tangential_User_A=0.718667174860572
K_Tangential_User=0.718667174860572
K_Axial_User_A=243.636953654524
K_Axial_User=243.636953654524
K_Radial_User_F=0.718667174860572
K_RadialEWdg_User=0.718667174860572
K_Tangential_User_F=0.718667174860572
K_TangentialEWdg_User=0.718667174860572
K_Axial_User_F=243.636953654524
K_AxialEWdg_User=243.636953654524
K_Radial_User_R=0.718667174860572
K_Tangential_User_R=0.718667174860572
K_Axial_User_R=243.636953654524
RtAirgapSlicesCalc=1
MagneticHousingSetting=0
IncludeDucts_Magnetic=0
HairpinConductors_FEA=0
EndcapCapacitanceCalc=1
PottingCapacitanceCalc=1
BPMORWdgExtPottingRtCalc=1
InnerWindingESpaceAreaCalc=1
FlowAreaWindingIncludeSleeve=1
TVentEWdgOuterVelocityCalc=1
TVentBiDirectionDuctFlowRtCalc=1
TVentBiDirectionFlowCircuitCalc=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
RadialDuctMagneticLengthCalc=1
ActiveHousingAxialLengthCalc=1
TVentRadialDuctResistanceCalc=1
HousingDiameterCalc=1
CoupledTransientBearingLossSplitMethod=1
Export3DGeometryFileName=
BPMOR_MagnetWeightDef=1
RtRotorAxialCalc=2
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
Lam_H_Divider_Resistance=1
EndWdgEnamelModel=1
HairpinEnamelThicknessCalc=1
HairpinWindingPatternMethod=0
SlotWJAxialLengthCalc=1
AnsysArcSegmentMethod=0
AnsysArcSegmentDegrees=2
FEASlotAreaCalculation=1
TransientTempOffset=0
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=True
ThroughVentilation=True
Through_Ventilation=True
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=False
Speed_Dependant_Losses=False
Constant_Speed_Fan=True
StatorToothRtMethod=1
IronLoss_BertottiMaxwellCoefficients_Method=1
EndCapVents_Front=0
EndCapVents_Rear=0
SurroundingAirRegion_Boundary=0
SurroundingAirRegion_CircleDiameter=0
Slot_Type=Parallel_Tooth
Mounting_Type=Not_Mounted
WindingModel=1
SyncRotorWindingModel=1
NumberForcePoints=0
NumberForceNodes_PerTooth=1
NumberForcePoints_PerNode=10
Include_Radiation=Radiation_Included
Include_Internal_Radiation=Radiation_Not_Included
EndCap_Vents_Front=Endcap_Vents_Closed
EndCap_Vents_Rear=Endcap_Vents_Closed
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=12
BPMRotor=11
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=Water_Jacket
BPM_Rotor=Interior_VShape
Feedback_Type=Not_Fitted
[Winding_Design]
Wedge_Model=Wedge
Slot_Fill=0.714668974567738
Mat_[Liner-Lam]=Impregnation
ConductorsSlotBase=0.01
ConductorsSlotTooth=0.01
ConductorsVertical=0.02
ConductorsHorizontal=0.02
ConductorSeparation=0.02
Slot_Depth_Reduction/Slot[0]=0
Slot_Depth_Reduction/Slot[1]=0
Slot_Depth_Reduction/Slot[2]=0
Slot_Depth_Reduction/Slot[3]=0
Slot_Depth_Reduction/Slot[4]=0
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
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
Copper_Corner_Radius_2=0.1
Copper_Corner_Radius_3=0.1
MinEWdgSeparation=0
EWdgLayerLength_F_Adj[0]=1
EWdgLayerLength_R_Adj[0]=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]=0
ConductorCentre_L_x[0][1]=0
ConductorCentre_L_x[0][2]=-2.74715929335667
ConductorCentre_L_x[0][3]=-2.68796946140339
ConductorCentre_L_x[0][4]=-2.62877962945011
ConductorCentre_L_x[0][5]=-2.56958979749683
ConductorCentre_L_x[0][6]=-2.51039996554355
ConductorCentre_L_x[0][7]=-2.45121013359027
ConductorCentre_L_x[0][8]=-2.39202030163699
ConductorCentre_L_x[0][9]=-2.33283046968371
ConductorCentre_L_x[0][10]=-2.27364063773042
ConductorCentre_L_x[0][11]=-2.21445080577714
ConductorCentre_L_x[0][12]=-2.15526097382386
ConductorCentre_L_x[0][13]=-2.09607114187058
ConductorCentre_L_x[0][14]=-2.0368813099173
ConductorCentre_L_x[0][15]=-1.97769147796402
ConductorCentre_L_x[0][16]=-1.91850164601074
ConductorCentre_L_x[0][17]=-1.85931181405746
ConductorCentre_L_x[0][18]=-1.80012198210417
ConductorCentre_L_x[0][19]=-1.74093215015089
ConductorCentre_L_x[0][20]=-1.68174231819761
ConductorCentre_L_x[1][0]=0
ConductorCentre_L_x[1][1]=-2.05386912617615
ConductorCentre_L_x[1][2]=-1.99467929422287
ConductorCentre_L_x[1][3]=-1.93548946226959
ConductorCentre_L_x[1][4]=-1.87629963031631
ConductorCentre_L_x[1][5]=-1.81710979836303
ConductorCentre_L_x[1][6]=-1.75791996640975
ConductorCentre_L_x[1][7]=-1.69873013445647
ConductorCentre_L_x[1][8]=-1.63954030250318
ConductorCentre_L_x[1][9]=-1.5803504705499
ConductorCentre_L_x[1][10]=-1.52116063859662
ConductorCentre_L_x[1][11]=-1.46197080664334
ConductorCentre_L_x[1][12]=-1.40278097469006
ConductorCentre_L_x[1][13]=-1.34359114273678
ConductorCentre_L_x[1][14]=-1.2844013107835
ConductorCentre_L_x[1][15]=-1.22521147883022
ConductorCentre_L_x[1][16]=-1.16602164687693
ConductorCentre_L_x[1][17]=-1.10683181492365
ConductorCentre_L_x[1][18]=-1.04764198297037
ConductorCentre_L_x[1][19]=-0.988452151017091
ConductorCentre_L_x[1][20]=-0.92926231906381
ConductorCentre_L_x[2][0]=0
ConductorCentre_L_x[2][1]=-1.24219929508907
ConductorCentre_L_x[2][2]=-1.18300946313579
ConductorCentre_L_x[2][3]=-1.12381963118251
ConductorCentre_L_x[2][4]=-1.06462979922923
ConductorCentre_L_x[2][5]=-1.00543996727594
ConductorCentre_L_x[2][6]=-0.946250135322664
ConductorCentre_L_x[2][7]=-0.887060303369383
ConductorCentre_L_x[2][8]=-0.827870471416101
ConductorCentre_L_x[2][9]=-0.76868063946282
ConductorCentre_L_x[2][10]=-0.709490807509539
ConductorCentre_L_x[2][11]=-0.650300975556257