ningshuxia
2024-04-09 51730f13db4aa7e353be3c8133e8429bf19ea3b1
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
namespace IStation.Unit
{
    /// <summary>
    /// 扬程单位辅助类
    /// </summary>
    public class UnitHHelper : IUnitHelper
    {
 
        #region 静态
 
        public static double fromM(eUnitH unit, double value)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return value;
                case eUnitH.MPa:
                    return M2MPa_calc.Calc(value);
                case eUnitH.KPa:
                    return M2KPa_calc.Calc(value);
                case eUnitH.Pa:
                    return M2Pa_calc.Calc(value);
                case eUnitH.Ft:
                    return M2Ft_calc.Calc(value);
                case eUnitH.Psi:
                    return M2Psi_calc.Calc(value);
                case eUnitH.Bar:
                    return M2Bar_calc.Calc(value);
                case eUnitH.kgf_cm2:
                    return M2kgf_cm2_calc.Calc(value);
                case eUnitH.kgf_m2:
                    return M2kgf_m2_calc.Calc(value);
                default:
                    return value;
            }
        }
        public static double fromM2(eUnitH unit, double value)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return value;
 
                case eUnitH.MPa:
                    return M2MPa_calc2.Calc(value);
                case eUnitH.KPa:
                    return M2KPa_calc2.Calc(value);
                case eUnitH.Pa:
                    return M2Pa_calc2.Calc(value);
                case eUnitH.Bar:
                    return M2Bar_calc2.Calc(value);
 
                default:
                    return fromM(unit, value);
            }
        }
 
        public static double fromMPa(eUnitH unit, double value)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return M2MPa_calc.Calc(value);
 
                case eUnitH.MPa:
                    return value;
 
                default:
                    {
                        var m = toM(eUnitH.MPa, value);
                        return fromM(unit, m);
                    }
 
            }
        }
 
        public static decimal toMPa(eUnitH unit, decimal value)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return System.Convert.ToDecimal(M2MPa_calc.Calc(System.Convert.ToDouble(value)));
 
                case eUnitH.MPa:
                    return value;
 
                default:
                    {
                        var m = toM(unit, System.Convert.ToDouble(value));
                        return System.Convert.ToDecimal(M2MPa_calc.Calc(m));
                    }
            }
        }
        public static double toMPa(eUnitH unit, double value)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return M2MPa_calc.Calc(value);
 
                case eUnitH.MPa:
                    return value;
 
                default:
                    {
                        var m = toM(unit, value);
                        return M2MPa_calc.Calc(m);
                    }
            }
        }
 
        public static decimal toMPa2(eUnitH unit, decimal value)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return System.Convert.ToDecimal(M2MPa_calc2.Calc(System.Convert.ToDouble(value)));
 
                case eUnitH.MPa:
                    return value;
 
                default:
                    {
                        var m = toM(unit, value);
                        return System.Convert.ToDecimal(M2MPa_calc2.Calc(System.Convert.ToDouble(value)));
                    }
            }
        }
        public static double toMPa2(eUnitH unit, double value)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return M2MPa_calc2.Calc(value);
 
                case eUnitH.MPa:
                    return value;
 
                default:
                    {
                        var m = toM(unit, value);
                        return M2MPa_calc2.Calc(value);
                    }
            }
        }
 
 
 
        public static decimal toM(eUnitH unit, decimal value)
        {
            return System.Convert.ToDecimal(toM(unit, System.Convert.ToDouble(value)));
        }
 
        public static double toM(eUnitH unit, double value)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return value;
                case eUnitH.MPa:
                    return MPa2M_calc.Calc(value);
                case eUnitH.Bar:
                    return Bar2M_calc.Calc(value);
                case eUnitH.KPa:
                    return KPa2M_calc.Calc(value);
                case eUnitH.Pa:
                    return KPa2M_calc.Calc(value) * 0.001;
                case eUnitH.Ft:
                    return Ft2M_calc.Calc(value);
                case eUnitH.Psi:
                    return Psi2M_calc.Calc(value);
                case eUnitH.kgf_cm2:
                    return Kgf_cm2M_calc.Calc(value);
                case eUnitH.kgf_m2:
                    return Kgf_m2M_calc.Calc(value);
                default:
                    return 0;
            }
        }
 
        public static double toM2(eUnitH unit, double value)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return value;
                case eUnitH.MPa:
                    return MPa2M_calc2.Calc(value);
                case eUnitH.Bar:
                    return Bar2M_calc2.Calc(value);
                case eUnitH.KPa:
                    return KPa2M_calc2.Calc(value);
                case eUnitH.Pa:
                    return Pa2M_calc2.Calc(value);
 
                default:
                    return toM(unit, value);
            }
        }
 
        public static double Tran(eUnitH from, eUnitH to, double value)
        {
            if (from == to)
                return value;
            var mm = toM2(from, value);
            return fromM2(to, mm);
        }
 
        public static CoefficientAxis toM(eUnitH unit)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return constantAxis;
                case eUnitH.MPa:
                    return MPa2M_calc;
                case eUnitH.Bar:
                    return Bar2M_calc;
                case eUnitH.KPa:
                    return KPa2M_calc;
                case eUnitH.Ft:
                    return Ft2M_calc;
                case eUnitH.Pa:
                    return Pa2M_calc;
                case eUnitH.Psi:
                    return Psi2M_calc;
                case eUnitH.kgf_cm2:
                    return Kgf_cm2M_calc;
                case eUnitH.kgf_m2:
                    return Kgf_m2M_calc;
                default:
                    return constantAxis;
            }
        }
 
        public static CoefficientAxis fromM(eUnitH unit)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return constantAxis;
                case eUnitH.MPa:
                    return M2MPa_calc;
                case eUnitH.Bar:
                    return Bar2M_calc;
                case eUnitH.KPa:
                    return M2KPa_calc;
                case eUnitH.Pa:
                    return M2Pa_calc;
                case eUnitH.Ft:
                    return M2Ft_calc;
                case eUnitH.Psi:
                    return M2Psi_calc;
                case eUnitH.kgf_cm2:
                    return M2kgf_cm2_calc;
                case eUnitH.kgf_m2:
                    return M2kgf_m2_calc;
                default:
                    return constantAxis;
            }
        }
 
        public static CoefficientAxis toM2(eUnitH unit)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return constantAxis;
                case eUnitH.MPa:
                    return MPa2M_calc2;
                case eUnitH.Bar:
                    return Bar2M_calc2;
                case eUnitH.KPa:
                    return KPa2M_calc2;
                case eUnitH.Pa:
                    return Pa2M_calc2;
                default:
                    return toM(unit);
            }
        }
 
        public static CoefficientAxis fromM2(eUnitH unit)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return constantAxis;
                case eUnitH.MPa:
                    return M2MPa_calc2;
                case eUnitH.Bar:
                    return Bar2M_calc2;
                case eUnitH.KPa:
                    return M2KPa_calc2;
                case eUnitH.Pa:
                    return M2Pa_calc2;
 
                default:
                    return fromM(unit);
            }
        }
        public static double Convert(eUnitH fromUnit, eUnitH toUnit, double fromValue)
        {
            if (fromUnit == toUnit)
                return fromValue;
            double m = toM(fromUnit, fromValue);
            return fromM(toUnit, m);
        }
 
        public static string GetCnUnitName(eUnitH unit)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return "米";
                case eUnitH.MPa:
                    return "兆帕";
                case eUnitH.KPa:
                    return "千帕";
                case eUnitH.Bar:
                    return "bar";
                case eUnitH.Ft:
                    return "ft";
                case eUnitH.Psi:
                    return "psi";
                case eUnitH.Pa:
                    return "Pa";
                case eUnitH.kgf_cm2:
                    return "kgf/cm²";
                case eUnitH.kgf_m2:
                    return "kgf/m²";
                default:
                    return "";
            }
 
        }
 
        public static List<string> GetCnUnitNameList()
        {
            var list = new List<string>();
            foreach (eUnitH item in Enum.GetValues(typeof(eUnitH)))
            {
                list.Add(GetCnUnitName(item));
            }
            return list;
        }
 
        public static Dictionary<eUnitH, string> GetCnUnitDict()
        {
            var dic = new Dictionary<eUnitH, string>();
            foreach (eUnitH item in Enum.GetValues(typeof(eUnitH)))
            {
                dic.Add(item, GetCnUnitName(item));
            }
            return dic;
        }
 
        public static string GetEnUnitName(eUnitH unit)
        {
            switch (unit)
            {
                case eUnitH.M:
                    return "m";
                case eUnitH.MPa:
                    return "MPa";
                case eUnitH.KPa:
                    return "KPa";
                case eUnitH.Pa:
                    return "Pa";
                case eUnitH.Ft:
                    return "Ft";
                case eUnitH.Bar:
                    return "bar";
                case eUnitH.Psi:
                    return "psi";
 
                case eUnitH.kgf_cm2:
                    return "kgf/cm²";
                case eUnitH.kgf_m2:
                    return "kgf/m²";
                default:
                    return "";
            }
        }
 
        public static List<string> GetEnUnitNameList()
        {
            var list = new List<string>();
            foreach (eUnitH item in Enum.GetValues(typeof(eUnitH)))
            {
                list.Add(GetEnUnitName(item));
            }
            return list;
        }
 
        public static Dictionary<eUnitH, string> GetEnUnitDict()
        {
            var dic = new Dictionary<eUnitH, string>();
            foreach (eUnitH item in Enum.GetValues(typeof(eUnitH)))
            {
                dic.Add(item, GetEnUnitName(item));
            }
            return dic;
        }
 
        const double g = 9.81;
 
        //
        static CoefficientAxis constantAxis = new IStation.Unit.CoefficientAxis(1.0);
        //米M     --->    * 
        static CoefficientAxis M2MPa_calc = new IStation.Unit.CoefficientAxis(g / 1000);
        static CoefficientAxis M2KPa_calc = new IStation.Unit.CoefficientAxis(g);
        static CoefficientAxis M2Pa_calc = new IStation.Unit.CoefficientAxis(g * 1000);
        static CoefficientAxis M2Bar_calc = new IStation.Unit.CoefficientAxis(g / 100);
        static CoefficientAxis M2Ft_calc = new IStation.Unit.CoefficientAxis(3.2808399);
        static CoefficientAxis M2Psi_calc = new IStation.Unit.CoefficientAxis(145 / 102.0);
        static CoefficientAxis M2kgf_cm2_calc = new IStation.Unit.CoefficientAxis(1);
        static CoefficientAxis M2kgf_m2_calc = new IStation.Unit.CoefficientAxis(10000);
 
        //* --->   M     
        static CoefficientAxis MPa2M_calc = new IStation.Unit.CoefficientAxis(1000 / g);
        static CoefficientAxis KPa2M_calc = new IStation.Unit.CoefficientAxis(1.0 / g);
        static CoefficientAxis Pa2M_calc = new IStation.Unit.CoefficientAxis(0.001 / g);
        static CoefficientAxis Ft2M_calc = new IStation.Unit.CoefficientAxis(1.0 / 3.2808399);
        static CoefficientAxis Bar2M_calc = new IStation.Unit.CoefficientAxis(10);
        static CoefficientAxis Psi2M_calc = new IStation.Unit.CoefficientAxis(102.0 / 145.0);
        static CoefficientAxis Kgf_cm2M_calc = new IStation.Unit.CoefficientAxis(1);
        static CoefficientAxis Kgf_m2M_calc = new IStation.Unit.CoefficientAxis(1.0 / 10000);
 
 
        //米M     --->   *    (g  = 10)
        static CoefficientAxis M2MPa_calc2 = new IStation.Unit.CoefficientAxis(0.01);
        static CoefficientAxis M2KPa_calc2 = new IStation.Unit.CoefficientAxis(10);
        static CoefficientAxis M2Bar_calc2 = new IStation.Unit.CoefficientAxis(0.1);
        static CoefficientAxis M2Pa_calc2 = new IStation.Unit.CoefficientAxis(0.01 * 0.001);
 
 
        //* --->   M   (g  = 10)
        static CoefficientAxis MPa2M_calc2 = new IStation.Unit.CoefficientAxis(100);
        static CoefficientAxis KPa2M_calc2 = new IStation.Unit.CoefficientAxis(0.1);
        static CoefficientAxis Pa2M_calc2 = new IStation.Unit.CoefficientAxis(0.001 / 10);
        static CoefficientAxis Bar2M_calc2 = new IStation.Unit.CoefficientAxis(10.0);
        #endregion
 
        #region 显示接口
 
 
        double IUnitHelper.Convert(int fromUnit, int toUnit, double fromValue)
        {
            return Convert((eUnitH)fromUnit, (eUnitH)toUnit, fromValue);
        }
 
        string IUnitHelper.GetCnUnitName(int unit)
        {
            return GetCnUnitName((eUnitH)unit);
        }
 
        List<string> IUnitHelper.GetCnUnitNameList()
        {
            return GetCnUnitNameList();
        }
 
        Dictionary<int, string> IUnitHelper.GetCnUnitDict()
        {
            var dic = new Dictionary<int, string>();
            foreach (var item in GetCnUnitDict())
            {
                dic.Add((int)item.Key, item.Value);
            }
            return dic;
        }
 
        string IUnitHelper.GetEnUnitName(int unit)
        {
            return GetEnUnitName((eUnitH)unit);
        }
 
        List<string> IUnitHelper.GetEnUnitNameList()
        {
            return GetEnUnitNameList();
        }
 
        Dictionary<int, string> IUnitHelper.GetEnUnitDict()
        {
            var dic = new Dictionary<int, string>();
            foreach (var item in GetEnUnitDict())
            {
                dic.Add((int)item.Key, item.Value);
            }
            return dic;
        }
 
 
 
 
        #endregion
    }
}