-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGen8_3pp.mot
More file actions
19520 lines (19395 loc) · 653 KB
/
Gen8_3pp.mot
File metadata and controls
19520 lines (19395 loc) · 653 KB
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.1.2.1
Licence_Name_Line1=1055@localhost
User=Gilberto
Licence_System=Ansys
File_Date=11/12/2024 7:23:02 AM
Partial_file=False
Main_Title=Default Motor
Title=Default Motor
[File_History]
Initial_Version=ACS 1055@192.168.1.20 14.1.4.1 21/01/2022 17:37:44
Previous_Version[1]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 24/02/2024 11:04:04 a. m.
Previous_Version[2]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 24/02/2024 11:04:18 a. m.
Previous_Version[3]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 24/02/2024 11:22:57 a. m.
Previous_Version[4]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 26/02/2024 02:21:01 p. m.
Previous_Version[5]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 26/02/2024 02:32:38 p. m.
Previous_Version[6]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 26/02/2024 02:33:25 p. m.
Previous_Version[7]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 26/02/2024 02:34:09 p. m.
Previous_Version[8]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 26/02/2024 02:34:21 p. m.
Previous_Version[9]=castirmo 1055@ansys.schaeffler.com 2023.2.2.1 12/03/2024 10:02:06 a. m.
Previous_Version[10]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/03/2024 10:07:50 a. m.
Previous_Version[11]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/03/2024 10:13:19 a. m.
Previous_Version[12]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/03/2024 10:14:09 a. m.
Previous_Version[13]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/03/2024 10:14:58 a. m.
Previous_Version[14]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/04/2024 09:10:22 a. m.
Previous_Version[15]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/04/2024 09:12:44 a. m.
Previous_Version[16]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/04/2024 11:38:28 a. m.
Previous_Version[17]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/04/2024 11:49:26 a. m.
Previous_Version[18]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/04/2024 11:52:48 a. m.
Previous_Version[19]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/04/2024 11:53:31 a. m.
Previous_Version[20]=castrglb 1055@ansys.schaeffler.com 2023.2.2.1 25/04/2024 02:02:32 p. m.
[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
Constant_Speed_Fan=True
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
Rotor_Winding_layer_definition=Automatic
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=False
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=1
ConductorCols_Right=0
PlacementRotationAngle_L=0
PlacementRotationAngle_R=0
XCoord_L=0
YCoord_L=99.53
XCoord_R=1.54
YCoord_R=99.975
ConductionPositionStep=1
FirstSetConductors=6
SecondSetConductors=0
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
FEShadingRegion_Thermal=0
FEShadingRegionString_Thermal=All
FEShadingRegion_Mechanical=0
FEShadingRegionString_Mechanical=All
FEShadingFunction_Magnetic=
FEShadingFunction_Thermal=
FEShadingFunction_Mechanical=SVM//MPa
EWdg_Overhang_Specification=0
SlotType=2
Slot_Area_Calculation=1
MountingType=0
IMLookupResetMethod=2
SkewDefinition=0
IMStatorLeakageInductanceFEALookupMethod=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
EnableAdvancedUI_Drive=False
ShowAllMMFPlots=False
ShowMMFSumPlot=True
PhasorGraphValues=0
UseMagnetTempLinkMethod_Lab=1
RatioSetting_SleeveBanding=1
SleeveBandingRatioSetting=1
RatioSetting_MagnetReduction=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=2
RampSteps=100
IterationAverageCycles=1
CyclesAtEachAverage=10
AverageCyclesMinPoint=250
SteadyAveragingMethod=0
EndSpaceChangeRate=1000
EndCapVentCalculation=0
CirculatingFlowFluidPaths=True
InitialTransientTemperatureOption=3
Initial_Machine_Temperature=100
InitialHousingTemperature=40
InitialStatorTemperature=40
InitialWindingTemperature=40
InitialRotorTemperature=40
InitialMagnetTemperature=40
InitialRotorCopperTemperature=40
InitialFlangeTemperature=40
InitialTransientMagTempMethod=1
Radiaton_View_Factor_Editable=False
Windage_Loss_Definition=1
Windage_Loss_Multiplier=2
WindageGraph_MaxSpeed=16000
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
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=30
InductanceNumberCycles=1
InductancePointsPerCycle=5
InductanceCalcMethod_BPM=0
InductanceSolver_BPM=1
LockedRotorNumberCycles=2
LockedRotorPointsPerCycle=30
CoreLossNumberCycles=1
CoreLossPointsPerCycle=10
IMSingleLoadPointsPerCycle=30
IMSingleLoadNumberCycles=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=True
VirtualWorkGraph=True
MaxwellStressGraph=True
FluxLinkageGraph=True
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
RotorWJCentralInletCalc=1
CalculationDevelopingFlow=0
NumberOfCuboids=6
MinimumTemperatureTolerance=100
StatorCopperLossVariation=0
VaryingArmatureCopperLoss_Calc=1
StatorBackIronUnevenLossAddition=1
MagneticSolver=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=2
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
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
ShaftSG_RotorWJ_Connection=False
RotorWJ_SprayCooling_Connection=False
FlangePlateAreaCalc=1
EndcapFlangeCalc=1
SlotWJ_HousingWJ_Connection=False
HousingWJ_SlotWJ_Connection=False
ShaftSolve=0
CommutatorCircuitCalc=1
SlotWJCircuit=1
SlotWJSeparateDuctsRtCalc=1
SlotWJCentreDuctsFlowRtCalc=1
SlotWJWallRoughnessHTCCalc=1
SlotWJDuctkWallFrictionCalc=2
SlotWJDuctDrawingMethod=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
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
TVentRadialDuctResistanceCalc=1
HousingDiameterCalc=1
Export3DGeometryFileName=
BPMOR_MagnetWeightDef=1
RtRotorAxialCalc=1
ForceAnimationFileName=.gif
ForceAnimationExportRepeat=0
ForceAnimationExportSpeed=3
ForceAnimationCaption=0
ForceAnimationRepeat=0
NumberForceHarmonicsExtract=5
NodeAveragingAnimation=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
ShaftAxialResistanceCalc=1
BearingsResistanceCalc=1
InteriorFlatAreaCalc=1
EmbeddedMagnetCapacitanceMethod=1
RotatingBlownOverVelocityCalc=1
ShaftRearWeightCalc=1
StatorLamWeightCalc=1
HairpinEWdgWeightCalc=1
FieldWdgSeparatorMechCalc=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=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
HairpinACLossLocationMethod=1
Target_Rotor_Winding_Layers=10
No_of_target_rotor_winding_layers=10
FinInputOptions=1
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=True
Slot_Water_Jacket=True
Spray_Cooling=True
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
Slot_Type=Parallel_Slot
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_Number_Spacing
Steady_State_Convergence=dT_Percent
FEShadingFunctionString_Magnetic=All
FEShadingFunctionString_Thermal=All
FEShadingFunctionString_Mechanical=All
Sync_Parallel_Tooth_Radial_Depth=0
Sync_Rotor_Parameterisation=0
CalculatedCurrentsBackEMFMethod=0
RatioSetting_SyncPoleSurfaceOffset=0
ACLossHighFrequencyScaling_Method=0
IMSingleLoadConvergenceMethod_NonRotating=0
IMSingleLoadMaximumCycles_NonRotating=20
IMSingleLoadTolerance_NonRotating=0.1
IMSingleLoadPointsPerCycle_NonRotating=30
IMSingleLoadPointsPerCycle_Rotating=30
IMSingleLoadNumberCycles_NonRotating=2
IMSingleLoadNumberCycles_Rotating=2
RotorWJNodeConnection_Method=0
MagneticSolverMethod=0
EmbeddedMagnetPoleRadius_Method=0
RadialHousingSprayCoolingWithSleeve=0
CoupledSprayCoolingFlowRateCalc=0
SlotDividerLinerDrawingMethod=0
TVent_FrontRear_OutletFlowPath=0
TVentCirculatingAirgapFlowPath=0
ActiveHousingAxialLengthCalc=0
ForceAnimationNormalisation=0
FluidNodesExternalPowerInjectionCalc=0
SyncMotorStressCalc=0
Improved_RotorLam_Axial_Resistances=0
[Design_Options]
Sync_Rotor=Sync_Salient_Pole
HousingType=0
BPMRotor=11
Top_Bar_Type=2
Bottom_Bar_Type=0
SyncCommutator=0
OpenGL_Quality=8
OpenGL_NumRadialDuctArrows=8
SolidListFilter=3
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
SyncRotorParallelToothDrawing=1
SyncRotorParallelSlotDrawing=1
DrawDatumLine=False
CornerRounding_Rotor=1
CornerRounding_Magnets=1
Rotor_UMagnet_CornerRounding_Option=1
Rotor_UMagnet_OuterMagnetPosition_Option=1
EndRingExtOuterRadiusMethod=1
SRM_StatorPole_MaxFilletRadius_Option=1
Rotor_VSimple_MagnetDrawing_Option=1
BPMOR_Rotor_Type=0
Housing_Type=Round_H
BPM_Rotor=Interior_VShape
Feedback_Type=Not_Fitted
Winding_Separator_Type=0
RtInteriorWeb_Calc=0
DrawDQAxes=False
DuctValidityCheckMethod=0
[Winding_Design]
Wedge_Model=Wedge
Slot_Fill=0.710259218091186
Mat_[Liner-Lam]=Impregnation
Number_Liner_Layers=3
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=
ConductorsSlotBase=0.125
ConductorsSlotTooth=0.125
ConductorsVertical=0.25
ConductorsHorizontal=0.25
ConductorSeparation=0.25
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_Active_F_EWdg_Multiplier=1
Rt_Active_R_EWdg_Multiplier=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=2.52
ConductorWidth_Array[0]=2.52
ConductorWidth_Array[1]=2.52
ConductorWidth_Array[2]=2.52
ConductorWidth_Array[3]=2.52
ConductorWidth_Array[4]=2.52
ConductorWidth_Array[5]=2.52
ConductorWidth_Array[6]=2.52
ConductorWidth_Array[7]=2.52
ConductorWidth_Array[8]=2.52
ConductorWidth_Array[9]=2.52
ConductorWidth_Array[10]=2.52
ConductorWidth_Array[11]=2.52
ConductorHeight_Array[0]=1.8
ConductorHeight_Array[1]=1.8
ConductorHeight_Array[2]=1.8
ConductorHeight_Array[3]=1.8
ConductorHeight_Array[4]=1.8
ConductorHeight_Array[5]=1.8
ConductorHeight_Array[6]=1.8
ConductorHeight_Array[7]=1.8
ConductorHeight_Array[8]=1.8
ConductorHeight_Array[9]=1.8
ConductorHeight_Array[10]=1.8
ConductorHeight_Array[11]=1.8
Copper_Width_2=1
Copper_Width_3=1
Copper_Height=1.8
Copper_Height_2=1
Copper_Height_3=1
Insulation_Thickness=0.17
Insulation_Thickness_2=0.1
Insulation_Thickness_3=0.1
Copper_Corner_Radius=0.4
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_F_Adj[2]=1
EWdgLayerLength_F_Adj[3]=1
EWdgLayerLength_F_Adj[4]=1
EWdgLayerLength_F_Adj[5]=1
EWdgLayerLength_R_Adj[0]=1
EWdgLayerLength_R_Adj[1]=1
EWdgLayerLength_R_Adj[2]=1
EWdgLayerLength_R_Adj[3]=1
EWdgLayerLength_R_Adj[4]=1
EWdgLayerLength_R_Adj[5]=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]=0
ConductorCentre_L_x[0][3]=0
ConductorCentre_L_x[0][4]=0
ConductorCentre_L_x[0][5]=0
ConductorCentre_L_y[0][0]=99.53
ConductorCentre_L_y[0][1]=97.14
ConductorCentre_L_y[0][2]=94.75
ConductorCentre_L_y[0][3]=92.36
ConductorCentre_L_y[0][4]=89.97
ConductorCentre_L_y[0][5]=87.58
Copper_Diameter=2.36654627385314
Copper_Diameter_2=0
Copper_Diameter_3=0
Copper_Diameter_Aux=0.65
Aux_Copper_Diameter=0.65
Wire_Diameter=2.72720244889507
Wire_Diameter_2=0
Wire_Diameter_3=0
Wire_Diameter_Aux=0.714
Aux_Wire_Diameter=0.714
Copper_Depth_[%]=100
Coil_Divider_Width=2
EWdg_Fill=0.769922765658132
Liner_-_Lam_Gap=0
Liner_Thickness=0.25
Ins_Slot_Base_Thickness=0
ConductorsPerSlot=6
Conductors/Slot=6
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=1
Armature_WindingType=0
Armature_Winding_Definition=1
Wire_Type_Stator=3
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