open-space-toolkit-physics 11.3.0__py313-none-manylinux2014_aarch64.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. open_space_toolkit_physics-11.3.0.dist-info/METADATA +29 -0
  2. open_space_toolkit_physics-11.3.0.dist-info/RECORD +104 -0
  3. open_space_toolkit_physics-11.3.0.dist-info/WHEEL +5 -0
  4. open_space_toolkit_physics-11.3.0.dist-info/top_level.txt +1 -0
  5. open_space_toolkit_physics-11.3.0.dist-info/zip-safe +1 -0
  6. ostk/__init__.py +1 -0
  7. ostk/physics/OpenSpaceToolkitPhysicsPy.cpython-313-aarch64-linux-gnu.so +0 -0
  8. ostk/physics/__init__.py +6 -0
  9. ostk/physics/__init__.pyi +488 -0
  10. ostk/physics/coordinate/__init__.pyi +1002 -0
  11. ostk/physics/coordinate/frame/__init__.pyi +30 -0
  12. ostk/physics/coordinate/frame/provider/__init__.pyi +77 -0
  13. ostk/physics/coordinate/frame/provider/iau.pyi +64 -0
  14. ostk/physics/coordinate/frame/provider/iers.pyi +584 -0
  15. ostk/physics/coordinate/spherical.pyi +421 -0
  16. ostk/physics/data/__init__.pyi +459 -0
  17. ostk/physics/data/provider.pyi +21 -0
  18. ostk/physics/environment/__init__.pyi +108 -0
  19. ostk/physics/environment/atmospheric/__init__.pyi +181 -0
  20. ostk/physics/environment/atmospheric/earth.pyi +552 -0
  21. ostk/physics/environment/gravitational/__init__.pyi +559 -0
  22. ostk/physics/environment/gravitational/earth.pyi +56 -0
  23. ostk/physics/environment/magnetic/__init__.pyi +171 -0
  24. ostk/physics/environment/magnetic/earth.pyi +56 -0
  25. ostk/physics/environment/object/__init__.pyi +430 -0
  26. ostk/physics/environment/object/celestial/__init__.pyi +248 -0
  27. ostk/physics/environment/object/celestial/moon.pyi +2 -0
  28. ostk/physics/environment/object/celestial/sun.pyi +2 -0
  29. ostk/physics/libopen-space-toolkit-physics.so.11 +0 -0
  30. ostk/physics/py.typed +0 -0
  31. ostk/physics/test/__init__.py +1 -0
  32. ostk/physics/test/coordinate/__init__.py +1 -0
  33. ostk/physics/test/coordinate/frame/__init__.py +1 -0
  34. ostk/physics/test/coordinate/frame/provider/__init__.py +1 -0
  35. ostk/physics/test/coordinate/frame/provider/iers/__init__.py +1 -0
  36. ostk/physics/test/coordinate/frame/provider/iers/conftest.py +38 -0
  37. ostk/physics/test/coordinate/frame/provider/iers/data/finals2000A.data +10953 -0
  38. ostk/physics/test/coordinate/frame/provider/iers/data/ser7.dat +524 -0
  39. ostk/physics/test/coordinate/frame/provider/iers/test_bulletin_a.py +108 -0
  40. ostk/physics/test/coordinate/frame/provider/iers/test_finals_2000a.py +93 -0
  41. ostk/physics/test/coordinate/frame/provider/iers/test_manager.py +205 -0
  42. ostk/physics/test/coordinate/spherical/__init__.py +1 -0
  43. ostk/physics/test/coordinate/spherical/test_aer.py +143 -0
  44. ostk/physics/test/coordinate/spherical/test_lla.py +514 -0
  45. ostk/physics/test/coordinate/test_axes.py +116 -0
  46. ostk/physics/test/coordinate/test_frame.py +107 -0
  47. ostk/physics/test/coordinate/test_position.py +201 -0
  48. ostk/physics/test/coordinate/test_transform.py +294 -0
  49. ostk/physics/test/coordinate/test_velocity.py +180 -0
  50. ostk/physics/test/data/conftest.py +34 -0
  51. ostk/physics/test/data/data/manifest.json +22 -0
  52. ostk/physics/test/data/provider/test_provider.py +34 -0
  53. ostk/physics/test/data/test_direction.py +40 -0
  54. ostk/physics/test/data/test_manifest.py +43 -0
  55. ostk/physics/test/data/test_manifest_manager.py +62 -0
  56. ostk/physics/test/data/test_scalar.py +54 -0
  57. ostk/physics/test/data/test_vector.py +70 -0
  58. ostk/physics/test/environment/__init__.py +1 -0
  59. ostk/physics/test/environment/atmospheric/__init__.py +1 -0
  60. ostk/physics/test/environment/atmospheric/earth/__init__.py +1 -0
  61. ostk/physics/test/environment/atmospheric/earth/conftest.py +67 -0
  62. ostk/physics/test/environment/atmospheric/earth/data/SW-Last5Years.test.csv +22 -0
  63. ostk/physics/test/environment/atmospheric/earth/data/SpaceWeather-All-v1.2.test.txt +811 -0
  64. ostk/physics/test/environment/atmospheric/earth/test_cssi_space_weather.py +126 -0
  65. ostk/physics/test/environment/atmospheric/earth/test_exponential.py +34 -0
  66. ostk/physics/test/environment/atmospheric/earth/test_manager.py +173 -0
  67. ostk/physics/test/environment/atmospheric/earth/test_nrlmsise00.py +34 -0
  68. ostk/physics/test/environment/atmospheric/test_earth.py +141 -0
  69. ostk/physics/test/environment/gravitational/__init__.py +1 -0
  70. ostk/physics/test/environment/gravitational/earth/__init__.py +1 -0
  71. ostk/physics/test/environment/gravitational/earth/test_manager.py +76 -0
  72. ostk/physics/test/environment/gravitational/test_earth.py +103 -0
  73. ostk/physics/test/environment/gravitational/test_moon.py +55 -0
  74. ostk/physics/test/environment/gravitational/test_spherical.py +36 -0
  75. ostk/physics/test/environment/gravitational/test_sun.py +53 -0
  76. ostk/physics/test/environment/magnetic/__init__.py +1 -0
  77. ostk/physics/test/environment/magnetic/earth/test_manager.py +64 -0
  78. ostk/physics/test/environment/magnetic/test_earth.py +38 -0
  79. ostk/physics/test/environment/object/__init__.py +1 -0
  80. ostk/physics/test/environment/object/celestial/__init__ .py +1 -0
  81. ostk/physics/test/environment/object/celestial/test_earth.py +174 -0
  82. ostk/physics/test/environment/object/celestial/test_moon.py +17 -0
  83. ostk/physics/test/environment/object/celestial/test_sun.py +17 -0
  84. ostk/physics/test/environment/object/test_celestial.py +12 -0
  85. ostk/physics/test/test_environment.py +97 -0
  86. ostk/physics/test/test_import.py +25 -0
  87. ostk/physics/test/time/__init__.py +1 -0
  88. ostk/physics/test/time/test_date.py +136 -0
  89. ostk/physics/test/time/test_date_time.py +230 -0
  90. ostk/physics/test/time/test_duration.py +215 -0
  91. ostk/physics/test/time/test_instant.py +103 -0
  92. ostk/physics/test/time/test_interval.py +432 -0
  93. ostk/physics/test/time/test_scale.py +11 -0
  94. ostk/physics/test/time/test_time.py +114 -0
  95. ostk/physics/test/unit/__init__.py +1 -0
  96. ostk/physics/test/unit/derived/__init__.py +1 -0
  97. ostk/physics/test/unit/derived/test_angle.py +368 -0
  98. ostk/physics/test/unit/test_derived.py +152 -0
  99. ostk/physics/test/unit/test_electric_current.py +5 -0
  100. ostk/physics/test/unit/test_length.py +297 -0
  101. ostk/physics/test/unit/test_mass.py +141 -0
  102. ostk/physics/test/unit/test_time.py +101 -0
  103. ostk/physics/time.pyi +1744 -0
  104. ostk/physics/unit.pyi +1590 -0
@@ -0,0 +1,181 @@
1
+ from __future__ import annotations
2
+ import ostk.core.type
3
+ import ostk.physics.coordinate
4
+ import ostk.physics.coordinate.spherical
5
+ import ostk.physics.environment.object
6
+ import ostk.physics.time
7
+ import ostk.physics.unit
8
+ import typing
9
+ from . import earth
10
+ __all__ = ['Earth', 'earth']
11
+ class Earth:
12
+ """
13
+
14
+ Earth atmospheric model.
15
+
16
+
17
+ """
18
+ class InputDataType:
19
+ """
20
+ Members:
21
+
22
+ Undefined :
23
+ Undefined.
24
+
25
+
26
+ ConstantFluxAndGeoMag :
27
+ Use constant values for F10.7, F10.7a and Kp NRLMSISE00 input parameters.
28
+
29
+
30
+ CSSISpaceWeatherFile :
31
+ Use historical and predicted values for F10.7, F10.7a and Kp NRLMSISE00 input parameters from CSSI.
32
+
33
+ """
34
+ CSSISpaceWeatherFile: typing.ClassVar[Earth.InputDataType] # value = <InputDataType.CSSISpaceWeatherFile: 2>
35
+ ConstantFluxAndGeoMag: typing.ClassVar[Earth.InputDataType] # value = <InputDataType.ConstantFluxAndGeoMag: 1>
36
+ Undefined: typing.ClassVar[Earth.InputDataType] # value = <InputDataType.Undefined: 0>
37
+ __members__: typing.ClassVar[dict[str, Earth.InputDataType]] # value = {'Undefined': <InputDataType.Undefined: 0>, 'ConstantFluxAndGeoMag': <InputDataType.ConstantFluxAndGeoMag: 1>, 'CSSISpaceWeatherFile': <InputDataType.CSSISpaceWeatherFile: 2>}
38
+ @staticmethod
39
+ def _pybind11_conduit_v1_(*args, **kwargs):
40
+ ...
41
+ def __eq__(self, other: typing.Any) -> bool:
42
+ ...
43
+ def __getstate__(self) -> int:
44
+ ...
45
+ def __hash__(self) -> int:
46
+ ...
47
+ def __index__(self) -> int:
48
+ ...
49
+ def __init__(self, value: int) -> None:
50
+ ...
51
+ def __int__(self) -> int:
52
+ ...
53
+ def __ne__(self, other: typing.Any) -> bool:
54
+ ...
55
+ def __repr__(self) -> str:
56
+ ...
57
+ def __setstate__(self, state: int) -> None:
58
+ ...
59
+ def __str__(self) -> str:
60
+ ...
61
+ @property
62
+ def name(self) -> str:
63
+ ...
64
+ @property
65
+ def value(self) -> int:
66
+ ...
67
+ class Type:
68
+ """
69
+ Members:
70
+
71
+ Undefined :
72
+ Undefined.
73
+
74
+
75
+ Exponential :
76
+ Exponential atmospheric density model, valid up to 1000 km.
77
+
78
+
79
+ NRLMSISE00 :
80
+ Navy Research Lab Mass Spectrometer and Incoherent Scatter Radar Exosphere 2000.
81
+
82
+ """
83
+ Exponential: typing.ClassVar[Earth.Type] # value = <Type.Exponential: 1>
84
+ NRLMSISE00: typing.ClassVar[Earth.Type] # value = <Type.NRLMSISE00: 2>
85
+ Undefined: typing.ClassVar[Earth.Type] # value = <Type.Undefined: 0>
86
+ __members__: typing.ClassVar[dict[str, Earth.Type]] # value = {'Undefined': <Type.Undefined: 0>, 'Exponential': <Type.Exponential: 1>, 'NRLMSISE00': <Type.NRLMSISE00: 2>}
87
+ @staticmethod
88
+ def _pybind11_conduit_v1_(*args, **kwargs):
89
+ ...
90
+ def __eq__(self, other: typing.Any) -> bool:
91
+ ...
92
+ def __getstate__(self) -> int:
93
+ ...
94
+ def __hash__(self) -> int:
95
+ ...
96
+ def __index__(self) -> int:
97
+ ...
98
+ def __init__(self, value: int) -> None:
99
+ ...
100
+ def __int__(self) -> int:
101
+ ...
102
+ def __ne__(self, other: typing.Any) -> bool:
103
+ ...
104
+ def __repr__(self) -> str:
105
+ ...
106
+ def __setstate__(self, state: int) -> None:
107
+ ...
108
+ def __str__(self) -> str:
109
+ ...
110
+ @property
111
+ def name(self) -> str:
112
+ ...
113
+ @property
114
+ def value(self) -> int:
115
+ ...
116
+ @staticmethod
117
+ def _pybind11_conduit_v1_(*args, **kwargs):
118
+ ...
119
+ def __init__(self, type: Earth.Type, input_data_type: Earth.InputDataType = ..., f107_constant_value: ostk.core.type.Real = 150.0, f107_average_constant_value: ostk.core.type.Real = 150.0, kp_constant_value: ostk.core.type.Real = 3.0, earth_frame: ostk.physics.coordinate.Frame = ..., earth_radius: ostk.physics.unit.Length = ..., earth_flattening: ostk.core.type.Real = ..., sun_celestial: ostk.physics.environment.object.Celestial = None) -> None:
120
+ """
121
+ Constructor.
122
+
123
+ Args:
124
+ type (Earth.Type): Earth atmospheric model type.
125
+ input_data_type (Earth.InputDataType): Earth atmospheric model input data type.
126
+ f107_constant_value (Real): F10.7 constant value.
127
+ f107_average_constant_value (Real): F10.7a constant value.
128
+ kp_constant_value (Real): Kp constant value.
129
+ earth_frame (Frame): Earth frame.
130
+ earth_radius (Length): Earth radius [m].
131
+ earth_flattening (Real): Earth flattening.
132
+ sun_celestial (Celestial): Sun celestial object.
133
+
134
+ Returns:
135
+ Earth: Earth atmospheric model.
136
+ """
137
+ @typing.overload
138
+ def get_density_at(self, position: ostk.physics.coordinate.Position, instant: ostk.physics.time.Instant) -> ostk.core.type.Real:
139
+ """
140
+ Get the atmospheric density value at a given position and instant.
141
+
142
+ Args:
143
+ position (Position): A position.
144
+ instant (Instant): An instant.
145
+
146
+ Returns:
147
+ float: Atmospheric density value [kg.m^-3].
148
+ """
149
+ @typing.overload
150
+ def get_density_at(self, lla: ostk.physics.coordinate.spherical.LLA, instant: ostk.physics.time.Instant) -> ostk.core.type.Real:
151
+ """
152
+ Get the atmospheric density value at a given position and instant.
153
+
154
+ Args:
155
+ lla (LLA): A position, expressed as latitude, longitude, altitude [deg, deg, m].
156
+ instant (Instant): An instant.
157
+
158
+ Returns:
159
+ float: Atmospheric density value [kg.m^-3].
160
+ """
161
+ def get_input_data_type(self) -> Earth.InputDataType:
162
+ """
163
+ Get the Earth atmospheric model input data type.
164
+
165
+ Returns:
166
+ Earth.InputDataType: Earth atmospheric model input data type.
167
+ """
168
+ def get_type(self) -> Earth.Type:
169
+ """
170
+ Get the Earth atmospheric model type.
171
+
172
+ Returns:
173
+ Earth.Type: Earth atmospheric model type.
174
+ """
175
+ def is_defined(self) -> bool:
176
+ """
177
+ Check if the Earth atmospheric model is defined.
178
+
179
+ Returns:
180
+ bool: True if defined.
181
+ """