qnty 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -56,6 +56,14 @@ class AbsorbedDose(FieldQnty):
56
56
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.AbsorbedDoseSetter:
57
57
  ...
58
58
 
59
+ @property
60
+ def value(self) -> float | None:
61
+ ...
62
+
63
+ @property
64
+ def unit(self) -> str | None:
65
+ ...
66
+
59
67
 
60
68
 
61
69
  class Acceleration(FieldQnty):
@@ -89,6 +97,14 @@ class Acceleration(FieldQnty):
89
97
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.AccelerationSetter:
90
98
  ...
91
99
 
100
+ @property
101
+ def value(self) -> float | None:
102
+ ...
103
+
104
+ @property
105
+ def unit(self) -> str | None:
106
+ ...
107
+
92
108
 
93
109
 
94
110
  class ActivationEnergy(FieldQnty):
@@ -122,6 +138,14 @@ class ActivationEnergy(FieldQnty):
122
138
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ActivationEnergySetter:
123
139
  ...
124
140
 
141
+ @property
142
+ def value(self) -> float | None:
143
+ ...
144
+
145
+ @property
146
+ def unit(self) -> str | None:
147
+ ...
148
+
125
149
 
126
150
 
127
151
  class AmountOfSubstance(FieldQnty):
@@ -155,6 +179,14 @@ class AmountOfSubstance(FieldQnty):
155
179
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.AmountOfSubstanceSetter:
156
180
  ...
157
181
 
182
+ @property
183
+ def value(self) -> float | None:
184
+ ...
185
+
186
+ @property
187
+ def unit(self) -> str | None:
188
+ ...
189
+
158
190
 
159
191
 
160
192
  class AnglePlane(FieldQnty):
@@ -188,6 +220,14 @@ class AnglePlane(FieldQnty):
188
220
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.AnglePlaneSetter:
189
221
  ...
190
222
 
223
+ @property
224
+ def value(self) -> float | None:
225
+ ...
226
+
227
+ @property
228
+ def unit(self) -> str | None:
229
+ ...
230
+
191
231
 
192
232
 
193
233
  class AngleSolid(FieldQnty):
@@ -221,6 +261,14 @@ class AngleSolid(FieldQnty):
221
261
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.AngleSolidSetter:
222
262
  ...
223
263
 
264
+ @property
265
+ def value(self) -> float | None:
266
+ ...
267
+
268
+ @property
269
+ def unit(self) -> str | None:
270
+ ...
271
+
224
272
 
225
273
 
226
274
  class AngularAcceleration(FieldQnty):
@@ -254,6 +302,14 @@ class AngularAcceleration(FieldQnty):
254
302
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.AngularAccelerationSetter:
255
303
  ...
256
304
 
305
+ @property
306
+ def value(self) -> float | None:
307
+ ...
308
+
309
+ @property
310
+ def unit(self) -> str | None:
311
+ ...
312
+
257
313
 
258
314
 
259
315
  class AngularMomentum(FieldQnty):
@@ -287,6 +343,14 @@ class AngularMomentum(FieldQnty):
287
343
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.AngularMomentumSetter:
288
344
  ...
289
345
 
346
+ @property
347
+ def value(self) -> float | None:
348
+ ...
349
+
350
+ @property
351
+ def unit(self) -> str | None:
352
+ ...
353
+
290
354
 
291
355
 
292
356
  class Area(FieldQnty):
@@ -320,6 +384,14 @@ class Area(FieldQnty):
320
384
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.AreaSetter:
321
385
  ...
322
386
 
387
+ @property
388
+ def value(self) -> float | None:
389
+ ...
390
+
391
+ @property
392
+ def unit(self) -> str | None:
393
+ ...
394
+
323
395
 
324
396
 
325
397
  class AreaPerUnitVolume(FieldQnty):
@@ -353,6 +425,14 @@ class AreaPerUnitVolume(FieldQnty):
353
425
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.AreaPerUnitVolumeSetter:
354
426
  ...
355
427
 
428
+ @property
429
+ def value(self) -> float | None:
430
+ ...
431
+
432
+ @property
433
+ def unit(self) -> str | None:
434
+ ...
435
+
356
436
 
357
437
 
358
438
  class AtomicWeight(FieldQnty):
@@ -386,6 +466,14 @@ class AtomicWeight(FieldQnty):
386
466
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.AtomicWeightSetter:
387
467
  ...
388
468
 
469
+ @property
470
+ def value(self) -> float | None:
471
+ ...
472
+
473
+ @property
474
+ def unit(self) -> str | None:
475
+ ...
476
+
389
477
 
390
478
 
391
479
  class Concentration(FieldQnty):
@@ -419,6 +507,14 @@ class Concentration(FieldQnty):
419
507
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ConcentrationSetter:
420
508
  ...
421
509
 
510
+ @property
511
+ def value(self) -> float | None:
512
+ ...
513
+
514
+ @property
515
+ def unit(self) -> str | None:
516
+ ...
517
+
422
518
 
423
519
 
424
520
  class Dimensionless(FieldQnty):
@@ -450,6 +546,14 @@ class Dimensionless(FieldQnty):
450
546
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.DimensionlessSetter:
451
547
  ...
452
548
 
549
+ @property
550
+ def value(self) -> float | None:
551
+ ...
552
+
553
+ @property
554
+ def unit(self) -> str | None:
555
+ ...
556
+
453
557
 
454
558
 
455
559
  class DynamicFluidity(FieldQnty):
@@ -483,6 +587,14 @@ class DynamicFluidity(FieldQnty):
483
587
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.DynamicFluiditySetter:
484
588
  ...
485
589
 
590
+ @property
591
+ def value(self) -> float | None:
592
+ ...
593
+
594
+ @property
595
+ def unit(self) -> str | None:
596
+ ...
597
+
486
598
 
487
599
 
488
600
  class ElectricCapacitance(FieldQnty):
@@ -516,6 +628,14 @@ class ElectricCapacitance(FieldQnty):
516
628
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricCapacitanceSetter:
517
629
  ...
518
630
 
631
+ @property
632
+ def value(self) -> float | None:
633
+ ...
634
+
635
+ @property
636
+ def unit(self) -> str | None:
637
+ ...
638
+
519
639
 
520
640
 
521
641
  class ElectricCharge(FieldQnty):
@@ -549,6 +669,14 @@ class ElectricCharge(FieldQnty):
549
669
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricChargeSetter:
550
670
  ...
551
671
 
672
+ @property
673
+ def value(self) -> float | None:
674
+ ...
675
+
676
+ @property
677
+ def unit(self) -> str | None:
678
+ ...
679
+
552
680
 
553
681
 
554
682
  class ElectricCurrentIntensity(FieldQnty):
@@ -582,6 +710,14 @@ class ElectricCurrentIntensity(FieldQnty):
582
710
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricCurrentIntensitySetter:
583
711
  ...
584
712
 
713
+ @property
714
+ def value(self) -> float | None:
715
+ ...
716
+
717
+ @property
718
+ def unit(self) -> str | None:
719
+ ...
720
+
585
721
 
586
722
 
587
723
  class ElectricDipoleMoment(FieldQnty):
@@ -615,6 +751,14 @@ class ElectricDipoleMoment(FieldQnty):
615
751
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricDipoleMomentSetter:
616
752
  ...
617
753
 
754
+ @property
755
+ def value(self) -> float | None:
756
+ ...
757
+
758
+ @property
759
+ def unit(self) -> str | None:
760
+ ...
761
+
618
762
 
619
763
 
620
764
  class ElectricFieldStrength(FieldQnty):
@@ -648,6 +792,14 @@ class ElectricFieldStrength(FieldQnty):
648
792
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricFieldStrengthSetter:
649
793
  ...
650
794
 
795
+ @property
796
+ def value(self) -> float | None:
797
+ ...
798
+
799
+ @property
800
+ def unit(self) -> str | None:
801
+ ...
802
+
651
803
 
652
804
 
653
805
  class ElectricInductance(FieldQnty):
@@ -681,6 +833,14 @@ class ElectricInductance(FieldQnty):
681
833
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricInductanceSetter:
682
834
  ...
683
835
 
836
+ @property
837
+ def value(self) -> float | None:
838
+ ...
839
+
840
+ @property
841
+ def unit(self) -> str | None:
842
+ ...
843
+
684
844
 
685
845
 
686
846
  class ElectricPotential(FieldQnty):
@@ -714,6 +874,14 @@ class ElectricPotential(FieldQnty):
714
874
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricPotentialSetter:
715
875
  ...
716
876
 
877
+ @property
878
+ def value(self) -> float | None:
879
+ ...
880
+
881
+ @property
882
+ def unit(self) -> str | None:
883
+ ...
884
+
717
885
 
718
886
 
719
887
  class ElectricResistance(FieldQnty):
@@ -747,6 +915,14 @@ class ElectricResistance(FieldQnty):
747
915
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricResistanceSetter:
748
916
  ...
749
917
 
918
+ @property
919
+ def value(self) -> float | None:
920
+ ...
921
+
922
+ @property
923
+ def unit(self) -> str | None:
924
+ ...
925
+
750
926
 
751
927
 
752
928
  class ElectricalConductance(FieldQnty):
@@ -780,6 +956,14 @@ class ElectricalConductance(FieldQnty):
780
956
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricalConductanceSetter:
781
957
  ...
782
958
 
959
+ @property
960
+ def value(self) -> float | None:
961
+ ...
962
+
963
+ @property
964
+ def unit(self) -> str | None:
965
+ ...
966
+
783
967
 
784
968
 
785
969
  class ElectricalPermittivity(FieldQnty):
@@ -813,6 +997,14 @@ class ElectricalPermittivity(FieldQnty):
813
997
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricalPermittivitySetter:
814
998
  ...
815
999
 
1000
+ @property
1001
+ def value(self) -> float | None:
1002
+ ...
1003
+
1004
+ @property
1005
+ def unit(self) -> str | None:
1006
+ ...
1007
+
816
1008
 
817
1009
 
818
1010
  class ElectricalResistivity(FieldQnty):
@@ -846,6 +1038,14 @@ class ElectricalResistivity(FieldQnty):
846
1038
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ElectricalResistivitySetter:
847
1039
  ...
848
1040
 
1041
+ @property
1042
+ def value(self) -> float | None:
1043
+ ...
1044
+
1045
+ @property
1046
+ def unit(self) -> str | None:
1047
+ ...
1048
+
849
1049
 
850
1050
 
851
1051
  class EnergyFlux(FieldQnty):
@@ -879,6 +1079,14 @@ class EnergyFlux(FieldQnty):
879
1079
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.EnergyFluxSetter:
880
1080
  ...
881
1081
 
1082
+ @property
1083
+ def value(self) -> float | None:
1084
+ ...
1085
+
1086
+ @property
1087
+ def unit(self) -> str | None:
1088
+ ...
1089
+
882
1090
 
883
1091
 
884
1092
  class EnergyHeatWork(FieldQnty):
@@ -912,6 +1120,14 @@ class EnergyHeatWork(FieldQnty):
912
1120
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.EnergyHeatWorkSetter:
913
1121
  ...
914
1122
 
1123
+ @property
1124
+ def value(self) -> float | None:
1125
+ ...
1126
+
1127
+ @property
1128
+ def unit(self) -> str | None:
1129
+ ...
1130
+
915
1131
 
916
1132
 
917
1133
  class EnergyPerUnitArea(FieldQnty):
@@ -945,6 +1161,14 @@ class EnergyPerUnitArea(FieldQnty):
945
1161
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.EnergyPerUnitAreaSetter:
946
1162
  ...
947
1163
 
1164
+ @property
1165
+ def value(self) -> float | None:
1166
+ ...
1167
+
1168
+ @property
1169
+ def unit(self) -> str | None:
1170
+ ...
1171
+
948
1172
 
949
1173
 
950
1174
  class Force(FieldQnty):
@@ -978,6 +1202,14 @@ class Force(FieldQnty):
978
1202
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ForceSetter:
979
1203
  ...
980
1204
 
1205
+ @property
1206
+ def value(self) -> float | None:
1207
+ ...
1208
+
1209
+ @property
1210
+ def unit(self) -> str | None:
1211
+ ...
1212
+
981
1213
 
982
1214
 
983
1215
  class ForceBody(FieldQnty):
@@ -1011,6 +1243,14 @@ class ForceBody(FieldQnty):
1011
1243
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ForceBodySetter:
1012
1244
  ...
1013
1245
 
1246
+ @property
1247
+ def value(self) -> float | None:
1248
+ ...
1249
+
1250
+ @property
1251
+ def unit(self) -> str | None:
1252
+ ...
1253
+
1014
1254
 
1015
1255
 
1016
1256
  class ForcePerUnitMass(FieldQnty):
@@ -1044,6 +1284,14 @@ class ForcePerUnitMass(FieldQnty):
1044
1284
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ForcePerUnitMassSetter:
1045
1285
  ...
1046
1286
 
1287
+ @property
1288
+ def value(self) -> float | None:
1289
+ ...
1290
+
1291
+ @property
1292
+ def unit(self) -> str | None:
1293
+ ...
1294
+
1047
1295
 
1048
1296
 
1049
1297
  class FrequencyVoltageRatio(FieldQnty):
@@ -1077,6 +1325,14 @@ class FrequencyVoltageRatio(FieldQnty):
1077
1325
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.FrequencyVoltageRatioSetter:
1078
1326
  ...
1079
1327
 
1328
+ @property
1329
+ def value(self) -> float | None:
1330
+ ...
1331
+
1332
+ @property
1333
+ def unit(self) -> str | None:
1334
+ ...
1335
+
1080
1336
 
1081
1337
 
1082
1338
  class FuelConsumption(FieldQnty):
@@ -1110,6 +1366,14 @@ class FuelConsumption(FieldQnty):
1110
1366
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.FuelConsumptionSetter:
1111
1367
  ...
1112
1368
 
1369
+ @property
1370
+ def value(self) -> float | None:
1371
+ ...
1372
+
1373
+ @property
1374
+ def unit(self) -> str | None:
1375
+ ...
1376
+
1113
1377
 
1114
1378
 
1115
1379
  class HeatOfCombustion(FieldQnty):
@@ -1143,6 +1407,14 @@ class HeatOfCombustion(FieldQnty):
1143
1407
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.HeatOfCombustionSetter:
1144
1408
  ...
1145
1409
 
1410
+ @property
1411
+ def value(self) -> float | None:
1412
+ ...
1413
+
1414
+ @property
1415
+ def unit(self) -> str | None:
1416
+ ...
1417
+
1146
1418
 
1147
1419
 
1148
1420
  class HeatOfFusion(FieldQnty):
@@ -1176,6 +1448,14 @@ class HeatOfFusion(FieldQnty):
1176
1448
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.HeatOfFusionSetter:
1177
1449
  ...
1178
1450
 
1451
+ @property
1452
+ def value(self) -> float | None:
1453
+ ...
1454
+
1455
+ @property
1456
+ def unit(self) -> str | None:
1457
+ ...
1458
+
1179
1459
 
1180
1460
 
1181
1461
  class HeatOfVaporization(FieldQnty):
@@ -1209,6 +1489,14 @@ class HeatOfVaporization(FieldQnty):
1209
1489
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.HeatOfVaporizationSetter:
1210
1490
  ...
1211
1491
 
1492
+ @property
1493
+ def value(self) -> float | None:
1494
+ ...
1495
+
1496
+ @property
1497
+ def unit(self) -> str | None:
1498
+ ...
1499
+
1212
1500
 
1213
1501
 
1214
1502
  class HeatTransferCoefficient(FieldQnty):
@@ -1242,6 +1530,14 @@ class HeatTransferCoefficient(FieldQnty):
1242
1530
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.HeatTransferCoefficientSetter:
1243
1531
  ...
1244
1532
 
1533
+ @property
1534
+ def value(self) -> float | None:
1535
+ ...
1536
+
1537
+ @property
1538
+ def unit(self) -> str | None:
1539
+ ...
1540
+
1245
1541
 
1246
1542
 
1247
1543
  class Illuminance(FieldQnty):
@@ -1275,6 +1571,14 @@ class Illuminance(FieldQnty):
1275
1571
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.IlluminanceSetter:
1276
1572
  ...
1277
1573
 
1574
+ @property
1575
+ def value(self) -> float | None:
1576
+ ...
1577
+
1578
+ @property
1579
+ def unit(self) -> str | None:
1580
+ ...
1581
+
1278
1582
 
1279
1583
 
1280
1584
  class KineticEnergyOfTurbulence(FieldQnty):
@@ -1308,6 +1612,14 @@ class KineticEnergyOfTurbulence(FieldQnty):
1308
1612
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.KineticEnergyOfTurbulenceSetter:
1309
1613
  ...
1310
1614
 
1615
+ @property
1616
+ def value(self) -> float | None:
1617
+ ...
1618
+
1619
+ @property
1620
+ def unit(self) -> str | None:
1621
+ ...
1622
+
1311
1623
 
1312
1624
 
1313
1625
  class Length(FieldQnty):
@@ -1341,6 +1653,14 @@ class Length(FieldQnty):
1341
1653
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.LengthSetter:
1342
1654
  ...
1343
1655
 
1656
+ @property
1657
+ def value(self) -> float | None:
1658
+ ...
1659
+
1660
+ @property
1661
+ def unit(self) -> str | None:
1662
+ ...
1663
+
1344
1664
 
1345
1665
 
1346
1666
  class LinearMassDensity(FieldQnty):
@@ -1374,6 +1694,14 @@ class LinearMassDensity(FieldQnty):
1374
1694
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.LinearMassDensitySetter:
1375
1695
  ...
1376
1696
 
1697
+ @property
1698
+ def value(self) -> float | None:
1699
+ ...
1700
+
1701
+ @property
1702
+ def unit(self) -> str | None:
1703
+ ...
1704
+
1377
1705
 
1378
1706
 
1379
1707
  class LinearMomentum(FieldQnty):
@@ -1407,6 +1735,14 @@ class LinearMomentum(FieldQnty):
1407
1735
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.LinearMomentumSetter:
1408
1736
  ...
1409
1737
 
1738
+ @property
1739
+ def value(self) -> float | None:
1740
+ ...
1741
+
1742
+ @property
1743
+ def unit(self) -> str | None:
1744
+ ...
1745
+
1410
1746
 
1411
1747
 
1412
1748
  class LuminanceSelf(FieldQnty):
@@ -1440,6 +1776,14 @@ class LuminanceSelf(FieldQnty):
1440
1776
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.LuminanceSelfSetter:
1441
1777
  ...
1442
1778
 
1779
+ @property
1780
+ def value(self) -> float | None:
1781
+ ...
1782
+
1783
+ @property
1784
+ def unit(self) -> str | None:
1785
+ ...
1786
+
1443
1787
 
1444
1788
 
1445
1789
  class LuminousFlux(FieldQnty):
@@ -1473,6 +1817,14 @@ class LuminousFlux(FieldQnty):
1473
1817
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.LuminousFluxSetter:
1474
1818
  ...
1475
1819
 
1820
+ @property
1821
+ def value(self) -> float | None:
1822
+ ...
1823
+
1824
+ @property
1825
+ def unit(self) -> str | None:
1826
+ ...
1827
+
1476
1828
 
1477
1829
 
1478
1830
  class LuminousIntensity(FieldQnty):
@@ -1506,6 +1858,14 @@ class LuminousIntensity(FieldQnty):
1506
1858
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.LuminousIntensitySetter:
1507
1859
  ...
1508
1860
 
1861
+ @property
1862
+ def value(self) -> float | None:
1863
+ ...
1864
+
1865
+ @property
1866
+ def unit(self) -> str | None:
1867
+ ...
1868
+
1509
1869
 
1510
1870
 
1511
1871
  class MagneticField(FieldQnty):
@@ -1539,6 +1899,14 @@ class MagneticField(FieldQnty):
1539
1899
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MagneticFieldSetter:
1540
1900
  ...
1541
1901
 
1902
+ @property
1903
+ def value(self) -> float | None:
1904
+ ...
1905
+
1906
+ @property
1907
+ def unit(self) -> str | None:
1908
+ ...
1909
+
1542
1910
 
1543
1911
 
1544
1912
  class MagneticFlux(FieldQnty):
@@ -1572,6 +1940,14 @@ class MagneticFlux(FieldQnty):
1572
1940
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MagneticFluxSetter:
1573
1941
  ...
1574
1942
 
1943
+ @property
1944
+ def value(self) -> float | None:
1945
+ ...
1946
+
1947
+ @property
1948
+ def unit(self) -> str | None:
1949
+ ...
1950
+
1575
1951
 
1576
1952
 
1577
1953
  class MagneticInductionFieldStrength(FieldQnty):
@@ -1605,6 +1981,14 @@ class MagneticInductionFieldStrength(FieldQnty):
1605
1981
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MagneticInductionFieldStrengthSetter:
1606
1982
  ...
1607
1983
 
1984
+ @property
1985
+ def value(self) -> float | None:
1986
+ ...
1987
+
1988
+ @property
1989
+ def unit(self) -> str | None:
1990
+ ...
1991
+
1608
1992
 
1609
1993
 
1610
1994
  class MagneticMoment(FieldQnty):
@@ -1638,6 +2022,14 @@ class MagneticMoment(FieldQnty):
1638
2022
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MagneticMomentSetter:
1639
2023
  ...
1640
2024
 
2025
+ @property
2026
+ def value(self) -> float | None:
2027
+ ...
2028
+
2029
+ @property
2030
+ def unit(self) -> str | None:
2031
+ ...
2032
+
1641
2033
 
1642
2034
 
1643
2035
  class MagneticPermeability(FieldQnty):
@@ -1671,6 +2063,14 @@ class MagneticPermeability(FieldQnty):
1671
2063
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MagneticPermeabilitySetter:
1672
2064
  ...
1673
2065
 
2066
+ @property
2067
+ def value(self) -> float | None:
2068
+ ...
2069
+
2070
+ @property
2071
+ def unit(self) -> str | None:
2072
+ ...
2073
+
1674
2074
 
1675
2075
 
1676
2076
  class MagnetomotiveForce(FieldQnty):
@@ -1704,6 +2104,14 @@ class MagnetomotiveForce(FieldQnty):
1704
2104
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MagnetomotiveForceSetter:
1705
2105
  ...
1706
2106
 
2107
+ @property
2108
+ def value(self) -> float | None:
2109
+ ...
2110
+
2111
+ @property
2112
+ def unit(self) -> str | None:
2113
+ ...
2114
+
1707
2115
 
1708
2116
 
1709
2117
  class Mass(FieldQnty):
@@ -1737,6 +2145,14 @@ class Mass(FieldQnty):
1737
2145
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MassSetter:
1738
2146
  ...
1739
2147
 
2148
+ @property
2149
+ def value(self) -> float | None:
2150
+ ...
2151
+
2152
+ @property
2153
+ def unit(self) -> str | None:
2154
+ ...
2155
+
1740
2156
 
1741
2157
 
1742
2158
  class MassDensity(FieldQnty):
@@ -1770,6 +2186,14 @@ class MassDensity(FieldQnty):
1770
2186
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MassDensitySetter:
1771
2187
  ...
1772
2188
 
2189
+ @property
2190
+ def value(self) -> float | None:
2191
+ ...
2192
+
2193
+ @property
2194
+ def unit(self) -> str | None:
2195
+ ...
2196
+
1773
2197
 
1774
2198
 
1775
2199
  class MassFlowRate(FieldQnty):
@@ -1803,6 +2227,14 @@ class MassFlowRate(FieldQnty):
1803
2227
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MassFlowRateSetter:
1804
2228
  ...
1805
2229
 
2230
+ @property
2231
+ def value(self) -> float | None:
2232
+ ...
2233
+
2234
+ @property
2235
+ def unit(self) -> str | None:
2236
+ ...
2237
+
1806
2238
 
1807
2239
 
1808
2240
  class MassFlux(FieldQnty):
@@ -1836,6 +2268,14 @@ class MassFlux(FieldQnty):
1836
2268
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MassFluxSetter:
1837
2269
  ...
1838
2270
 
2271
+ @property
2272
+ def value(self) -> float | None:
2273
+ ...
2274
+
2275
+ @property
2276
+ def unit(self) -> str | None:
2277
+ ...
2278
+
1839
2279
 
1840
2280
 
1841
2281
  class MassFractionOfI(FieldQnty):
@@ -1869,6 +2309,14 @@ class MassFractionOfI(FieldQnty):
1869
2309
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MassFractionOfISetter:
1870
2310
  ...
1871
2311
 
2312
+ @property
2313
+ def value(self) -> float | None:
2314
+ ...
2315
+
2316
+ @property
2317
+ def unit(self) -> str | None:
2318
+ ...
2319
+
1872
2320
 
1873
2321
 
1874
2322
  class MassTransferCoefficient(FieldQnty):
@@ -1902,6 +2350,14 @@ class MassTransferCoefficient(FieldQnty):
1902
2350
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MassTransferCoefficientSetter:
1903
2351
  ...
1904
2352
 
2353
+ @property
2354
+ def value(self) -> float | None:
2355
+ ...
2356
+
2357
+ @property
2358
+ def unit(self) -> str | None:
2359
+ ...
2360
+
1905
2361
 
1906
2362
 
1907
2363
  class MolalityOfSoluteI(FieldQnty):
@@ -1935,6 +2391,14 @@ class MolalityOfSoluteI(FieldQnty):
1935
2391
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MolalityOfSoluteISetter:
1936
2392
  ...
1937
2393
 
2394
+ @property
2395
+ def value(self) -> float | None:
2396
+ ...
2397
+
2398
+ @property
2399
+ def unit(self) -> str | None:
2400
+ ...
2401
+
1938
2402
 
1939
2403
 
1940
2404
  class MolarConcentrationByMass(FieldQnty):
@@ -1968,6 +2432,14 @@ class MolarConcentrationByMass(FieldQnty):
1968
2432
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MolarConcentrationByMassSetter:
1969
2433
  ...
1970
2434
 
2435
+ @property
2436
+ def value(self) -> float | None:
2437
+ ...
2438
+
2439
+ @property
2440
+ def unit(self) -> str | None:
2441
+ ...
2442
+
1971
2443
 
1972
2444
 
1973
2445
  class MolarFlowRate(FieldQnty):
@@ -2001,6 +2473,14 @@ class MolarFlowRate(FieldQnty):
2001
2473
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MolarFlowRateSetter:
2002
2474
  ...
2003
2475
 
2476
+ @property
2477
+ def value(self) -> float | None:
2478
+ ...
2479
+
2480
+ @property
2481
+ def unit(self) -> str | None:
2482
+ ...
2483
+
2004
2484
 
2005
2485
 
2006
2486
  class MolarFlux(FieldQnty):
@@ -2034,6 +2514,14 @@ class MolarFlux(FieldQnty):
2034
2514
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MolarFluxSetter:
2035
2515
  ...
2036
2516
 
2517
+ @property
2518
+ def value(self) -> float | None:
2519
+ ...
2520
+
2521
+ @property
2522
+ def unit(self) -> str | None:
2523
+ ...
2524
+
2037
2525
 
2038
2526
 
2039
2527
  class MolarHeatCapacity(FieldQnty):
@@ -2067,6 +2555,14 @@ class MolarHeatCapacity(FieldQnty):
2067
2555
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MolarHeatCapacitySetter:
2068
2556
  ...
2069
2557
 
2558
+ @property
2559
+ def value(self) -> float | None:
2560
+ ...
2561
+
2562
+ @property
2563
+ def unit(self) -> str | None:
2564
+ ...
2565
+
2070
2566
 
2071
2567
 
2072
2568
  class MolarityOfI(FieldQnty):
@@ -2100,6 +2596,14 @@ class MolarityOfI(FieldQnty):
2100
2596
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MolarityOfISetter:
2101
2597
  ...
2102
2598
 
2599
+ @property
2600
+ def value(self) -> float | None:
2601
+ ...
2602
+
2603
+ @property
2604
+ def unit(self) -> str | None:
2605
+ ...
2606
+
2103
2607
 
2104
2608
 
2105
2609
  class MoleFractionOfI(FieldQnty):
@@ -2133,6 +2637,14 @@ class MoleFractionOfI(FieldQnty):
2133
2637
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MoleFractionOfISetter:
2134
2638
  ...
2135
2639
 
2640
+ @property
2641
+ def value(self) -> float | None:
2642
+ ...
2643
+
2644
+ @property
2645
+ def unit(self) -> str | None:
2646
+ ...
2647
+
2136
2648
 
2137
2649
 
2138
2650
  class MomentOfInertia(FieldQnty):
@@ -2166,6 +2678,14 @@ class MomentOfInertia(FieldQnty):
2166
2678
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MomentOfInertiaSetter:
2167
2679
  ...
2168
2680
 
2681
+ @property
2682
+ def value(self) -> float | None:
2683
+ ...
2684
+
2685
+ @property
2686
+ def unit(self) -> str | None:
2687
+ ...
2688
+
2169
2689
 
2170
2690
 
2171
2691
  class MomentumFlowRate(FieldQnty):
@@ -2199,6 +2719,14 @@ class MomentumFlowRate(FieldQnty):
2199
2719
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MomentumFlowRateSetter:
2200
2720
  ...
2201
2721
 
2722
+ @property
2723
+ def value(self) -> float | None:
2724
+ ...
2725
+
2726
+ @property
2727
+ def unit(self) -> str | None:
2728
+ ...
2729
+
2202
2730
 
2203
2731
 
2204
2732
  class MomentumFlux(FieldQnty):
@@ -2232,6 +2760,14 @@ class MomentumFlux(FieldQnty):
2232
2760
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.MomentumFluxSetter:
2233
2761
  ...
2234
2762
 
2763
+ @property
2764
+ def value(self) -> float | None:
2765
+ ...
2766
+
2767
+ @property
2768
+ def unit(self) -> str | None:
2769
+ ...
2770
+
2235
2771
 
2236
2772
 
2237
2773
  class NormalityOfSolution(FieldQnty):
@@ -2265,6 +2801,14 @@ class NormalityOfSolution(FieldQnty):
2265
2801
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.NormalityOfSolutionSetter:
2266
2802
  ...
2267
2803
 
2804
+ @property
2805
+ def value(self) -> float | None:
2806
+ ...
2807
+
2808
+ @property
2809
+ def unit(self) -> str | None:
2810
+ ...
2811
+
2268
2812
 
2269
2813
 
2270
2814
  class ParticleDensity(FieldQnty):
@@ -2298,6 +2842,14 @@ class ParticleDensity(FieldQnty):
2298
2842
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ParticleDensitySetter:
2299
2843
  ...
2300
2844
 
2845
+ @property
2846
+ def value(self) -> float | None:
2847
+ ...
2848
+
2849
+ @property
2850
+ def unit(self) -> str | None:
2851
+ ...
2852
+
2301
2853
 
2302
2854
 
2303
2855
  class Percent(FieldQnty):
@@ -2331,6 +2883,14 @@ class Percent(FieldQnty):
2331
2883
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.PercentSetter:
2332
2884
  ...
2333
2885
 
2886
+ @property
2887
+ def value(self) -> float | None:
2888
+ ...
2889
+
2890
+ @property
2891
+ def unit(self) -> str | None:
2892
+ ...
2893
+
2334
2894
 
2335
2895
 
2336
2896
  class Permeability(FieldQnty):
@@ -2364,6 +2924,14 @@ class Permeability(FieldQnty):
2364
2924
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.PermeabilitySetter:
2365
2925
  ...
2366
2926
 
2927
+ @property
2928
+ def value(self) -> float | None:
2929
+ ...
2930
+
2931
+ @property
2932
+ def unit(self) -> str | None:
2933
+ ...
2934
+
2367
2935
 
2368
2936
 
2369
2937
  class PhotonEmissionRate(FieldQnty):
@@ -2397,6 +2965,14 @@ class PhotonEmissionRate(FieldQnty):
2397
2965
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.PhotonEmissionRateSetter:
2398
2966
  ...
2399
2967
 
2968
+ @property
2969
+ def value(self) -> float | None:
2970
+ ...
2971
+
2972
+ @property
2973
+ def unit(self) -> str | None:
2974
+ ...
2975
+
2400
2976
 
2401
2977
 
2402
2978
  class PowerPerUnitMass(FieldQnty):
@@ -2430,6 +3006,14 @@ class PowerPerUnitMass(FieldQnty):
2430
3006
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.PowerPerUnitMassSetter:
2431
3007
  ...
2432
3008
 
3009
+ @property
3010
+ def value(self) -> float | None:
3011
+ ...
3012
+
3013
+ @property
3014
+ def unit(self) -> str | None:
3015
+ ...
3016
+
2433
3017
 
2434
3018
 
2435
3019
  class PowerPerUnitVolume(FieldQnty):
@@ -2463,6 +3047,14 @@ class PowerPerUnitVolume(FieldQnty):
2463
3047
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.PowerPerUnitVolumeSetter:
2464
3048
  ...
2465
3049
 
3050
+ @property
3051
+ def value(self) -> float | None:
3052
+ ...
3053
+
3054
+ @property
3055
+ def unit(self) -> str | None:
3056
+ ...
3057
+
2466
3058
 
2467
3059
 
2468
3060
  class PowerThermalDuty(FieldQnty):
@@ -2496,6 +3088,14 @@ class PowerThermalDuty(FieldQnty):
2496
3088
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.PowerThermalDutySetter:
2497
3089
  ...
2498
3090
 
3091
+ @property
3092
+ def value(self) -> float | None:
3093
+ ...
3094
+
3095
+ @property
3096
+ def unit(self) -> str | None:
3097
+ ...
3098
+
2499
3099
 
2500
3100
 
2501
3101
  class Pressure(FieldQnty):
@@ -2529,6 +3129,14 @@ class Pressure(FieldQnty):
2529
3129
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.PressureSetter:
2530
3130
  ...
2531
3131
 
3132
+ @property
3133
+ def value(self) -> float | None:
3134
+ ...
3135
+
3136
+ @property
3137
+ def unit(self) -> str | None:
3138
+ ...
3139
+
2532
3140
 
2533
3141
 
2534
3142
  class RadiationDoseEquivalent(FieldQnty):
@@ -2562,6 +3170,14 @@ class RadiationDoseEquivalent(FieldQnty):
2562
3170
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.RadiationDoseEquivalentSetter:
2563
3171
  ...
2564
3172
 
3173
+ @property
3174
+ def value(self) -> float | None:
3175
+ ...
3176
+
3177
+ @property
3178
+ def unit(self) -> str | None:
3179
+ ...
3180
+
2565
3181
 
2566
3182
 
2567
3183
  class RadiationExposure(FieldQnty):
@@ -2595,6 +3211,14 @@ class RadiationExposure(FieldQnty):
2595
3211
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.RadiationExposureSetter:
2596
3212
  ...
2597
3213
 
3214
+ @property
3215
+ def value(self) -> float | None:
3216
+ ...
3217
+
3218
+ @property
3219
+ def unit(self) -> str | None:
3220
+ ...
3221
+
2598
3222
 
2599
3223
 
2600
3224
  class Radioactivity(FieldQnty):
@@ -2628,6 +3252,14 @@ class Radioactivity(FieldQnty):
2628
3252
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.RadioactivitySetter:
2629
3253
  ...
2630
3254
 
3255
+ @property
3256
+ def value(self) -> float | None:
3257
+ ...
3258
+
3259
+ @property
3260
+ def unit(self) -> str | None:
3261
+ ...
3262
+
2631
3263
 
2632
3264
 
2633
3265
  class SecondMomentOfArea(FieldQnty):
@@ -2661,6 +3293,14 @@ class SecondMomentOfArea(FieldQnty):
2661
3293
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.SecondMomentOfAreaSetter:
2662
3294
  ...
2663
3295
 
3296
+ @property
3297
+ def value(self) -> float | None:
3298
+ ...
3299
+
3300
+ @property
3301
+ def unit(self) -> str | None:
3302
+ ...
3303
+
2664
3304
 
2665
3305
 
2666
3306
  class SecondRadiationConstantPlanck(FieldQnty):
@@ -2694,6 +3334,14 @@ class SecondRadiationConstantPlanck(FieldQnty):
2694
3334
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.SecondRadiationConstantPlanckSetter:
2695
3335
  ...
2696
3336
 
3337
+ @property
3338
+ def value(self) -> float | None:
3339
+ ...
3340
+
3341
+ @property
3342
+ def unit(self) -> str | None:
3343
+ ...
3344
+
2697
3345
 
2698
3346
 
2699
3347
  class SpecificEnthalpy(FieldQnty):
@@ -2727,6 +3375,14 @@ class SpecificEnthalpy(FieldQnty):
2727
3375
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.SpecificEnthalpySetter:
2728
3376
  ...
2729
3377
 
3378
+ @property
3379
+ def value(self) -> float | None:
3380
+ ...
3381
+
3382
+ @property
3383
+ def unit(self) -> str | None:
3384
+ ...
3385
+
2730
3386
 
2731
3387
 
2732
3388
  class SpecificGravity(FieldQnty):
@@ -2760,6 +3416,14 @@ class SpecificGravity(FieldQnty):
2760
3416
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.SpecificGravitySetter:
2761
3417
  ...
2762
3418
 
3419
+ @property
3420
+ def value(self) -> float | None:
3421
+ ...
3422
+
3423
+ @property
3424
+ def unit(self) -> str | None:
3425
+ ...
3426
+
2763
3427
 
2764
3428
 
2765
3429
  class SpecificHeatCapacityConstantPressure(FieldQnty):
@@ -2793,6 +3457,14 @@ class SpecificHeatCapacityConstantPressure(FieldQnty):
2793
3457
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.SpecificHeatCapacityConstantPressureSetter:
2794
3458
  ...
2795
3459
 
3460
+ @property
3461
+ def value(self) -> float | None:
3462
+ ...
3463
+
3464
+ @property
3465
+ def unit(self) -> str | None:
3466
+ ...
3467
+
2796
3468
 
2797
3469
 
2798
3470
  class SpecificLength(FieldQnty):
@@ -2826,6 +3498,14 @@ class SpecificLength(FieldQnty):
2826
3498
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.SpecificLengthSetter:
2827
3499
  ...
2828
3500
 
3501
+ @property
3502
+ def value(self) -> float | None:
3503
+ ...
3504
+
3505
+ @property
3506
+ def unit(self) -> str | None:
3507
+ ...
3508
+
2829
3509
 
2830
3510
 
2831
3511
  class SpecificSurface(FieldQnty):
@@ -2859,6 +3539,14 @@ class SpecificSurface(FieldQnty):
2859
3539
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.SpecificSurfaceSetter:
2860
3540
  ...
2861
3541
 
3542
+ @property
3543
+ def value(self) -> float | None:
3544
+ ...
3545
+
3546
+ @property
3547
+ def unit(self) -> str | None:
3548
+ ...
3549
+
2862
3550
 
2863
3551
 
2864
3552
  class SpecificVolume(FieldQnty):
@@ -2892,6 +3580,14 @@ class SpecificVolume(FieldQnty):
2892
3580
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.SpecificVolumeSetter:
2893
3581
  ...
2894
3582
 
3583
+ @property
3584
+ def value(self) -> float | None:
3585
+ ...
3586
+
3587
+ @property
3588
+ def unit(self) -> str | None:
3589
+ ...
3590
+
2895
3591
 
2896
3592
 
2897
3593
  class Stress(FieldQnty):
@@ -2925,6 +3621,14 @@ class Stress(FieldQnty):
2925
3621
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.StressSetter:
2926
3622
  ...
2927
3623
 
3624
+ @property
3625
+ def value(self) -> float | None:
3626
+ ...
3627
+
3628
+ @property
3629
+ def unit(self) -> str | None:
3630
+ ...
3631
+
2928
3632
 
2929
3633
 
2930
3634
  class SurfaceMassDensity(FieldQnty):
@@ -2958,6 +3662,14 @@ class SurfaceMassDensity(FieldQnty):
2958
3662
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.SurfaceMassDensitySetter:
2959
3663
  ...
2960
3664
 
3665
+ @property
3666
+ def value(self) -> float | None:
3667
+ ...
3668
+
3669
+ @property
3670
+ def unit(self) -> str | None:
3671
+ ...
3672
+
2961
3673
 
2962
3674
 
2963
3675
  class SurfaceTension(FieldQnty):
@@ -2991,6 +3703,14 @@ class SurfaceTension(FieldQnty):
2991
3703
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.SurfaceTensionSetter:
2992
3704
  ...
2993
3705
 
3706
+ @property
3707
+ def value(self) -> float | None:
3708
+ ...
3709
+
3710
+ @property
3711
+ def unit(self) -> str | None:
3712
+ ...
3713
+
2994
3714
 
2995
3715
 
2996
3716
  class Temperature(FieldQnty):
@@ -3024,6 +3744,14 @@ class Temperature(FieldQnty):
3024
3744
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.TemperatureSetter:
3025
3745
  ...
3026
3746
 
3747
+ @property
3748
+ def value(self) -> float | None:
3749
+ ...
3750
+
3751
+ @property
3752
+ def unit(self) -> str | None:
3753
+ ...
3754
+
3027
3755
 
3028
3756
 
3029
3757
  class ThermalConductivity(FieldQnty):
@@ -3057,6 +3785,14 @@ class ThermalConductivity(FieldQnty):
3057
3785
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ThermalConductivitySetter:
3058
3786
  ...
3059
3787
 
3788
+ @property
3789
+ def value(self) -> float | None:
3790
+ ...
3791
+
3792
+ @property
3793
+ def unit(self) -> str | None:
3794
+ ...
3795
+
3060
3796
 
3061
3797
 
3062
3798
  class Time(FieldQnty):
@@ -3090,6 +3826,14 @@ class Time(FieldQnty):
3090
3826
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.TimeSetter:
3091
3827
  ...
3092
3828
 
3829
+ @property
3830
+ def value(self) -> float | None:
3831
+ ...
3832
+
3833
+ @property
3834
+ def unit(self) -> str | None:
3835
+ ...
3836
+
3093
3837
 
3094
3838
 
3095
3839
  class Torque(FieldQnty):
@@ -3123,6 +3867,14 @@ class Torque(FieldQnty):
3123
3867
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.TorqueSetter:
3124
3868
  ...
3125
3869
 
3870
+ @property
3871
+ def value(self) -> float | None:
3872
+ ...
3873
+
3874
+ @property
3875
+ def unit(self) -> str | None:
3876
+ ...
3877
+
3126
3878
 
3127
3879
 
3128
3880
  class TurbulenceEnergyDissipationRate(FieldQnty):
@@ -3156,6 +3908,14 @@ class TurbulenceEnergyDissipationRate(FieldQnty):
3156
3908
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.TurbulenceEnergyDissipationRateSetter:
3157
3909
  ...
3158
3910
 
3911
+ @property
3912
+ def value(self) -> float | None:
3913
+ ...
3914
+
3915
+ @property
3916
+ def unit(self) -> str | None:
3917
+ ...
3918
+
3159
3919
 
3160
3920
 
3161
3921
  class VelocityAngular(FieldQnty):
@@ -3189,6 +3949,14 @@ class VelocityAngular(FieldQnty):
3189
3949
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.VelocityAngularSetter:
3190
3950
  ...
3191
3951
 
3952
+ @property
3953
+ def value(self) -> float | None:
3954
+ ...
3955
+
3956
+ @property
3957
+ def unit(self) -> str | None:
3958
+ ...
3959
+
3192
3960
 
3193
3961
 
3194
3962
  class VelocityLinear(FieldQnty):
@@ -3222,6 +3990,14 @@ class VelocityLinear(FieldQnty):
3222
3990
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.VelocityLinearSetter:
3223
3991
  ...
3224
3992
 
3993
+ @property
3994
+ def value(self) -> float | None:
3995
+ ...
3996
+
3997
+ @property
3998
+ def unit(self) -> str | None:
3999
+ ...
4000
+
3225
4001
 
3226
4002
 
3227
4003
  class ViscosityDynamic(FieldQnty):
@@ -3255,6 +4031,14 @@ class ViscosityDynamic(FieldQnty):
3255
4031
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ViscosityDynamicSetter:
3256
4032
  ...
3257
4033
 
4034
+ @property
4035
+ def value(self) -> float | None:
4036
+ ...
4037
+
4038
+ @property
4039
+ def unit(self) -> str | None:
4040
+ ...
4041
+
3258
4042
 
3259
4043
 
3260
4044
  class ViscosityKinematic(FieldQnty):
@@ -3288,6 +4072,14 @@ class ViscosityKinematic(FieldQnty):
3288
4072
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.ViscosityKinematicSetter:
3289
4073
  ...
3290
4074
 
4075
+ @property
4076
+ def value(self) -> float | None:
4077
+ ...
4078
+
4079
+ @property
4080
+ def unit(self) -> str | None:
4081
+ ...
4082
+
3291
4083
 
3292
4084
 
3293
4085
  class Volume(FieldQnty):
@@ -3321,6 +4113,14 @@ class Volume(FieldQnty):
3321
4113
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.VolumeSetter:
3322
4114
  ...
3323
4115
 
4116
+ @property
4117
+ def value(self) -> float | None:
4118
+ ...
4119
+
4120
+ @property
4121
+ def unit(self) -> str | None:
4122
+ ...
4123
+
3324
4124
 
3325
4125
 
3326
4126
  class VolumeFractionOfI(FieldQnty):
@@ -3354,6 +4154,14 @@ class VolumeFractionOfI(FieldQnty):
3354
4154
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.VolumeFractionOfISetter:
3355
4155
  ...
3356
4156
 
4157
+ @property
4158
+ def value(self) -> float | None:
4159
+ ...
4160
+
4161
+ @property
4162
+ def unit(self) -> str | None:
4163
+ ...
4164
+
3357
4165
 
3358
4166
 
3359
4167
  class VolumetricCalorificHeatingValue(FieldQnty):
@@ -3387,6 +4195,14 @@ class VolumetricCalorificHeatingValue(FieldQnty):
3387
4195
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.VolumetricCalorificHeatingValueSetter:
3388
4196
  ...
3389
4197
 
4198
+ @property
4199
+ def value(self) -> float | None:
4200
+ ...
4201
+
4202
+ @property
4203
+ def unit(self) -> str | None:
4204
+ ...
4205
+
3390
4206
 
3391
4207
 
3392
4208
  class VolumetricCoefficientOfExpansion(FieldQnty):
@@ -3420,6 +4236,14 @@ class VolumetricCoefficientOfExpansion(FieldQnty):
3420
4236
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.VolumetricCoefficientOfExpansionSetter:
3421
4237
  ...
3422
4238
 
4239
+ @property
4240
+ def value(self) -> float | None:
4241
+ ...
4242
+
4243
+ @property
4244
+ def unit(self) -> str | None:
4245
+ ...
4246
+
3423
4247
 
3424
4248
 
3425
4249
  class VolumetricFlowRate(FieldQnty):
@@ -3453,6 +4277,14 @@ class VolumetricFlowRate(FieldQnty):
3453
4277
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.VolumetricFlowRateSetter:
3454
4278
  ...
3455
4279
 
4280
+ @property
4281
+ def value(self) -> float | None:
4282
+ ...
4283
+
4284
+ @property
4285
+ def unit(self) -> str | None:
4286
+ ...
4287
+
3456
4288
 
3457
4289
 
3458
4290
  class VolumetricFlux(FieldQnty):
@@ -3486,6 +4318,14 @@ class VolumetricFlux(FieldQnty):
3486
4318
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.VolumetricFluxSetter:
3487
4319
  ...
3488
4320
 
4321
+ @property
4322
+ def value(self) -> float | None:
4323
+ ...
4324
+
4325
+ @property
4326
+ def unit(self) -> str | None:
4327
+ ...
4328
+
3489
4329
 
3490
4330
 
3491
4331
  class VolumetricMassFlowRate(FieldQnty):
@@ -3519,6 +4359,14 @@ class VolumetricMassFlowRate(FieldQnty):
3519
4359
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.VolumetricMassFlowRateSetter:
3520
4360
  ...
3521
4361
 
4362
+ @property
4363
+ def value(self) -> float | None:
4364
+ ...
4365
+
4366
+ @property
4367
+ def unit(self) -> str | None:
4368
+ ...
4369
+
3522
4370
 
3523
4371
 
3524
4372
  class Wavenumber(FieldQnty):
@@ -3552,5 +4400,13 @@ class Wavenumber(FieldQnty):
3552
4400
  def set(self, value: float, unit: str | None = None) -> Self | field_setter.WavenumberSetter:
3553
4401
  ...
3554
4402
 
4403
+ @property
4404
+ def value(self) -> float | None:
4405
+ ...
4406
+
4407
+ @property
4408
+ def unit(self) -> str | None:
4409
+ ...
4410
+
3555
4411
 
3556
4412