TidalPy 0.5.2__tar.gz → 0.6.1__tar.gz

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.
Files changed (479) hide show
  1. {TidalPy-0.5.2 → tidalpy-0.6.1}/Benchmarks & Performance/Performance/performance suite/multimode_solver.py +0 -1
  2. {TidalPy-0.5.2 → tidalpy-0.6.1}/LICENSE.md +3 -2
  3. tidalpy-0.6.1/MANIFEST.in +23 -0
  4. {TidalPy-0.5.2 → tidalpy-0.6.1}/PKG-INFO +24 -56
  5. {TidalPy-0.5.2 → tidalpy-0.6.1}/README.md +9 -46
  6. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Functions/test_rheology.py +0 -3
  7. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Math/test_utilities_complex.py +28 -3
  8. tidalpy-0.6.1/Tests/Test_Math/test_utilities_numerics.py +24 -0
  9. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Math/test_utilities_special.py +1 -4
  10. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetB_Package/test_c_tools_conversions.py +1 -1
  11. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetB_Package/test_g_math_special_funcs.py +1 -1
  12. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_b_dissipation.py +1 -1
  13. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetK_PlanetBuild/test_a_build_star.py +1 -3
  14. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetK_PlanetBuild/test_d_build_burnman_planet.py +0 -3
  15. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetY_MultiLayer/Test_Matrix/test_e_strain.py +77 -73
  16. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetY_MultiLayer/Test_Numerical_Int/test_m1_multilayer_modes.py +65 -34
  17. tidalpy-0.6.1/Tests/Test_Package/test_configs.py +60 -0
  18. tidalpy-0.6.1/Tests/Test_RadialSolver/Test_PropMatrix/test_a_solid_matrix.py +72 -0
  19. tidalpy-0.6.1/Tests/Test_RadialSolver/Test_PropMatrix/test_b_radial_solver_matrix.py +75 -0
  20. tidalpy-0.6.1/Tests/Test_RadialSolver/test_a_boundary_conditions.py +68 -0
  21. tidalpy-0.6.1/Tests/Test_RadialSolver/test_a_helpers.py +585 -0
  22. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_RadialSolver/test_a_interfaces.py +53 -35
  23. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_RadialSolver/test_a_starting_condtions.py +3 -6
  24. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_RadialSolver/test_b_radial_solver_1layer.py +14 -13
  25. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_RadialSolver/test_d_alma_compare.py +81 -46
  26. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_RadialSolver/test_e_radial_solver_3layer.py +60 -42
  27. tidalpy-0.6.1/Tests/Test_RadialSolver/test_f_radial_solver_errors.py +305 -0
  28. tidalpy-0.6.1/Tests/Test_Tides/test_d_radial_sensativity.py +239 -0
  29. tidalpy-0.6.1/Tests/Test_Utilities/Test_Dimensions/test_nondimensional.py +53 -0
  30. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Utilities/Test_Exoplanets/test_exoplanet_download.py +0 -5
  31. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/build.py +1 -1
  32. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/burnman_layer.py +1 -1
  33. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/burnman_world.py +1 -1
  34. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/conversion.py +1 -1
  35. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/material/custom/constant.py +2 -2
  36. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/material/custom/ice.py +2 -2
  37. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/package.py +1 -1
  38. tidalpy-0.6.1/TidalPy/Material/eos/__init__.pxd +8 -0
  39. tidalpy-0.6.1/TidalPy/Material/eos/eos_solution.cpp +27023 -0
  40. tidalpy-0.6.1/TidalPy/Material/eos/eos_solution.pxd +94 -0
  41. tidalpy-0.6.1/TidalPy/Material/eos/eos_solution.pyx +2 -0
  42. tidalpy-0.6.1/TidalPy/Material/eos/eos_solution_.cpp +410 -0
  43. tidalpy-0.6.1/TidalPy/Material/eos/eos_solution_.hpp +123 -0
  44. tidalpy-0.6.1/TidalPy/Material/eos/methods/__init__.pxd +1 -0
  45. tidalpy-0.6.1/TidalPy/Material/eos/methods/interpolate.cpp +27756 -0
  46. tidalpy-0.6.1/TidalPy/Material/eos/methods/interpolate.pxd +21 -0
  47. tidalpy-0.6.1/TidalPy/Material/eos/methods/interpolate.pyx +70 -0
  48. tidalpy-0.6.1/TidalPy/Material/eos/ode.cpp +27536 -0
  49. tidalpy-0.6.1/TidalPy/Material/eos/ode.pxd +24 -0
  50. tidalpy-0.6.1/TidalPy/Material/eos/ode.pyx +70 -0
  51. tidalpy-0.6.1/TidalPy/Material/eos/solver.cpp +29246 -0
  52. tidalpy-0.6.1/TidalPy/Material/eos/solver.pxd +26 -0
  53. tidalpy-0.6.1/TidalPy/Material/eos/solver.pyx +279 -0
  54. tidalpy-0.6.1/TidalPy/RadialSolver/__init__.pxd +2 -0
  55. tidalpy-0.6.1/TidalPy/RadialSolver/__init__.py +2 -0
  56. TidalPy-0.5.2/TidalPy/RadialSolver/boundaries/boundaries.c → tidalpy-0.6.1/TidalPy/RadialSolver/boundaries/boundaries.cpp +754 -545
  57. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/boundaries/boundaries.pxd +8 -5
  58. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/boundaries/boundaries.pyx +82 -22
  59. TidalPy-0.5.2/TidalPy/RadialSolver/derivatives/base.c → tidalpy-0.6.1/TidalPy/RadialSolver/boundaries/surface_bc.cpp +5208 -4997
  60. tidalpy-0.6.1/TidalPy/RadialSolver/boundaries/surface_bc.pxd +8 -0
  61. tidalpy-0.6.1/TidalPy/RadialSolver/boundaries/surface_bc.pyx +166 -0
  62. TidalPy-0.5.2/TidalPy/RadialSolver/collapse/collapse.c → tidalpy-0.6.1/TidalPy/RadialSolver/collapse/collapse.cpp +563 -527
  63. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/collapse/collapse.pxd +10 -7
  64. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/collapse/collapse.pyx +81 -13
  65. TidalPy-0.5.2/TidalPy/utilities/constants_x.c → tidalpy-0.6.1/TidalPy/RadialSolver/constants.cpp +565 -555
  66. tidalpy-0.6.1/TidalPy/RadialSolver/constants.pxd +3 -0
  67. tidalpy-0.6.1/TidalPy/RadialSolver/constants.pyx +7 -0
  68. tidalpy-0.6.1/TidalPy/RadialSolver/derivatives/odes.cpp +30333 -0
  69. tidalpy-0.6.1/TidalPy/RadialSolver/derivatives/odes.pxd +71 -0
  70. tidalpy-0.6.1/TidalPy/RadialSolver/derivatives/odes.pyx +790 -0
  71. tidalpy-0.6.1/TidalPy/RadialSolver/helpers.cpp +37942 -0
  72. tidalpy-0.6.1/TidalPy/RadialSolver/helpers.pyx +570 -0
  73. TidalPy-0.5.2/TidalPy/RadialSolver/interfaces/interfaces.c → tidalpy-0.6.1/TidalPy/RadialSolver/interfaces/interfaces.cpp +2316 -1945
  74. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/interfaces/interfaces.pxd +8 -7
  75. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/interfaces/interfaces.pyx +130 -116
  76. TidalPy-0.5.2/TidalPy/RadialSolver/interfaces/reversed.c → tidalpy-0.6.1/TidalPy/RadialSolver/interfaces/reversed.cpp +1188 -633
  77. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/interfaces/reversed.pxd +10 -6
  78. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/interfaces/reversed.pyx +43 -25
  79. TidalPy-0.5.2/TidalPy/RadialSolver/love.c → tidalpy-0.6.1/TidalPy/RadialSolver/love.cpp +834 -1070
  80. tidalpy-0.6.1/TidalPy/RadialSolver/love.pxd +6 -0
  81. tidalpy-0.6.1/TidalPy/RadialSolver/love.pyx +30 -0
  82. tidalpy-0.6.1/TidalPy/RadialSolver/love_.cpp +33 -0
  83. tidalpy-0.6.1/TidalPy/RadialSolver/love_.hpp +7 -0
  84. tidalpy-0.6.1/TidalPy/RadialSolver/matrix.cpp +30894 -0
  85. tidalpy-0.6.1/TidalPy/RadialSolver/matrix.pxd +25 -0
  86. tidalpy-0.6.1/TidalPy/RadialSolver/matrix.pyx +522 -0
  87. tidalpy-0.6.1/TidalPy/RadialSolver/matrix_types/__init__.py +1 -0
  88. tidalpy-0.6.1/TidalPy/RadialSolver/matrix_types/solid_matrix.cpp +31909 -0
  89. tidalpy-0.6.1/TidalPy/RadialSolver/matrix_types/solid_matrix.pxd +13 -0
  90. tidalpy-0.6.1/TidalPy/RadialSolver/matrix_types/solid_matrix.pyx +372 -0
  91. TidalPy-0.5.2/TidalPy/RadialSolver/derivatives/odes.c → tidalpy-0.6.1/TidalPy/RadialSolver/rs_solution.cpp +17482 -14080
  92. tidalpy-0.6.1/TidalPy/RadialSolver/rs_solution.pxd +106 -0
  93. tidalpy-0.6.1/TidalPy/RadialSolver/rs_solution.pyx +571 -0
  94. tidalpy-0.6.1/TidalPy/RadialSolver/rs_solution_.cpp +198 -0
  95. tidalpy-0.6.1/TidalPy/RadialSolver/rs_solution_.hpp +79 -0
  96. TidalPy-0.5.2/TidalPy/utilities/dimensions/nondimensional.c → tidalpy-0.6.1/TidalPy/RadialSolver/shooting.cpp +14867 -14672
  97. tidalpy-0.6.1/TidalPy/RadialSolver/shooting.pxd +40 -0
  98. tidalpy-0.6.1/TidalPy/RadialSolver/shooting.pyx +965 -0
  99. TidalPy-0.5.2/TidalPy/RadialSolver/solver.c → tidalpy-0.6.1/TidalPy/RadialSolver/solver.cpp +15779 -20897
  100. tidalpy-0.6.1/TidalPy/RadialSolver/solver.pxd +47 -0
  101. tidalpy-0.6.1/TidalPy/RadialSolver/solver.pyx +842 -0
  102. TidalPy-0.5.2/TidalPy/RadialSolver/starting/common.c → tidalpy-0.6.1/TidalPy/RadialSolver/starting/common.cpp +732 -554
  103. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/starting/common.pxd +2 -2
  104. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/starting/common.pyx +11 -7
  105. TidalPy-0.5.2/TidalPy/RadialSolver/starting/driver.c → tidalpy-0.6.1/TidalPy/RadialSolver/starting/driver.cpp +1842 -1869
  106. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/starting/driver.pxd +11 -6
  107. tidalpy-0.6.1/TidalPy/RadialSolver/starting/driver.pyx +232 -0
  108. TidalPy-0.5.2/TidalPy/RadialSolver/starting/kamata.c → tidalpy-0.6.1/TidalPy/RadialSolver/starting/kamata.cpp +1207 -1047
  109. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/starting/kamata.pxd +13 -15
  110. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/starting/kamata.pyx +128 -149
  111. TidalPy-0.5.2/TidalPy/RadialSolver/starting/saito.c → tidalpy-0.6.1/TidalPy/RadialSolver/starting/saito.cpp +506 -478
  112. tidalpy-0.6.1/TidalPy/RadialSolver/starting/saito.pxd +6 -0
  113. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/starting/saito.pyx +14 -17
  114. TidalPy-0.5.2/TidalPy/RadialSolver/starting/takeuchi.c → tidalpy-0.6.1/TidalPy/RadialSolver/starting/takeuchi.cpp +1080 -920
  115. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/starting/takeuchi.pxd +12 -12
  116. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/RadialSolver/starting/takeuchi.pyx +123 -145
  117. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/__init__.py +25 -0
  118. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/configurations.py +61 -13
  119. tidalpy-0.6.1/TidalPy/constants.cpp +6331 -0
  120. tidalpy-0.6.1/TidalPy/constants.pxd +67 -0
  121. tidalpy-0.6.1/TidalPy/constants.pyx +139 -0
  122. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/cooling/cooling.py +1 -1
  123. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/defaultc.py +4 -2
  124. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/exceptions.py +4 -0
  125. tidalpy-0.6.1/TidalPy/initialize.py +105 -0
  126. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/logger.py +67 -31
  127. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/output.py +1 -1
  128. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/paths.py +4 -4
  129. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/radiogenics/radiogenics.py +1 -2
  130. TidalPy-0.5.2/TidalPy/rheology/base.c → tidalpy-0.6.1/TidalPy/rheology/base.cpp +1528 -1365
  131. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/base.pyx +12 -12
  132. TidalPy-0.5.2/TidalPy/rheology/models.c → tidalpy-0.6.1/TidalPy/rheology/models.cpp +1870 -1653
  133. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/models.pyx +27 -26
  134. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/partial_melt/partialmelt.py +1 -1
  135. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/rheology.py +1 -3
  136. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/viscosity/viscosity_models.py +3 -3
  137. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/stellar/insolation.py +1 -1
  138. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/stellar/stellar.py +1 -2
  139. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/helpers/orbit_config.py +1 -1
  140. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/layers/basic.py +10 -15
  141. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/layers/physics.py +1 -1
  142. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/orbit/base.py +11 -49
  143. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/orbit/physics.py +1 -1
  144. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/physical.py +2 -4
  145. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/world_builder/config_handler.py +1 -1
  146. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/world_builder/iterative_builder.py +3 -11
  147. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/world_builder/world_builder.py +7 -9
  148. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/world_types/basic.py +4 -5
  149. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/world_types/layered.py +4 -10
  150. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/world_types/stellar.py +2 -2
  151. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/world_types/tidal.py +1 -1
  152. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/dissipation.py +1 -1
  153. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/eccentricity_funcs/orderl2.py +11 -11
  154. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/eccentricity_funcs/orderl3.py +10 -10
  155. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/eccentricity_funcs/orderl4.py +10 -10
  156. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/eccentricity_funcs/orderl5.py +10 -10
  157. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/eccentricity_funcs/orderl6.py +10 -10
  158. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/eccentricity_funcs/orderl7.py +10 -10
  159. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/inclination_funcs/orderl2.py +2 -2
  160. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/inclination_funcs/orderl3.py +2 -2
  161. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/inclination_funcs/orderl4.py +2 -2
  162. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/inclination_funcs/orderl5.py +2 -2
  163. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/inclination_funcs/orderl6.py +2 -2
  164. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/inclination_funcs/orderl7.py +2 -2
  165. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/methods/base.py +1 -1
  166. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/methods/global_approx.py +2 -3
  167. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_manipulation.py +1 -1
  168. tidalpy-0.6.1/TidalPy/tides/modes/multilayer_modes.py +495 -0
  169. tidalpy-0.6.1/TidalPy/tides/multilayer/__init__.py +4 -0
  170. tidalpy-0.6.1/TidalPy/tides/multilayer/heating.cpp +32149 -0
  171. tidalpy-0.6.1/TidalPy/tides/multilayer/heating.pxd +16 -0
  172. tidalpy-0.6.1/TidalPy/tides/multilayer/heating.pyx +237 -0
  173. tidalpy-0.6.1/TidalPy/tides/multilayer/sensitivity.cpp +32846 -0
  174. tidalpy-0.6.1/TidalPy/tides/multilayer/sensitivity.pxd +21 -0
  175. tidalpy-0.6.1/TidalPy/tides/multilayer/sensitivity.pyx +335 -0
  176. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/multilayer/stress_strain.py +40 -20
  177. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/potential/nsr_med_eccen_gen_obliquity.py +1 -1
  178. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/potential/nsr_med_eccen_med_obliquity.py +1 -1
  179. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/potential/nsr_med_eccen_no_obliquity.py +1 -1
  180. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/potential/nsr_modes_low_eccen_gen_obliquity.py +1 -1
  181. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/potential/nsr_modes_med_eccen_gen_obliquity.py +1 -1
  182. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/potential/nsr_modes_med_eccen_med_obliquity.py +1 -1
  183. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/potential/nsr_modes_med_eccen_no_obliquity.py +1 -1
  184. tidalpy-0.6.1/TidalPy/utilities/arrays/interp.pxd +25 -0
  185. tidalpy-0.6.1/TidalPy/utilities/arrays/interp.pyx +2 -0
  186. tidalpy-0.6.1/TidalPy/utilities/arrays/interp_.cpp +321 -0
  187. tidalpy-0.6.1/TidalPy/utilities/arrays/interp_.hpp +30 -0
  188. TidalPy-0.5.2/TidalPy/utilities/classes/base_x.c → tidalpy-0.6.1/TidalPy/utilities/classes/base_x.cpp +503 -475
  189. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/classes/base_x.pyx +1 -1
  190. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/classes/config/config.py +1 -5
  191. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/classes/model/model.py +2 -6
  192. TidalPy-0.5.2/TidalPy/utilities/conversions/conversions_x.c → tidalpy-0.6.1/TidalPy/utilities/conversions/conversions_x.cpp +661 -513
  193. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/conversions/conversions_x.pyx +11 -11
  194. tidalpy-0.6.1/TidalPy/utilities/dimensions/__init__.py +0 -0
  195. tidalpy-0.6.1/TidalPy/utilities/dimensions/nondimensional.cpp +8780 -0
  196. tidalpy-0.6.1/TidalPy/utilities/dimensions/nondimensional.pxd +18 -0
  197. tidalpy-0.6.1/TidalPy/utilities/dimensions/nondimensional.pyx +94 -0
  198. tidalpy-0.6.1/TidalPy/utilities/dimensions/nondimensional_.hpp +13 -0
  199. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/exoplanets/data_download.py +4 -4
  200. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/graphics/__init__.py +2 -2
  201. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/graphics/multilayer/yplot.py +123 -48
  202. tidalpy-0.6.1/TidalPy/utilities/graphics/planet_plot.py +266 -0
  203. tidalpy-0.6.1/TidalPy/utilities/io/__init__.py +0 -0
  204. tidalpy-0.6.1/TidalPy/utilities/math/__init__.pxd +5 -0
  205. tidalpy-0.6.1/TidalPy/utilities/math/__init__.py +0 -0
  206. TidalPy-0.5.2/TidalPy/utilities/math/complex.c → tidalpy-0.6.1/TidalPy/utilities/math/complex.cpp +2044 -1079
  207. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/math/complex.pxd +8 -2
  208. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/math/complex.pyx +67 -32
  209. TidalPy-0.5.2/TidalPy/RadialSolver/solutions.c → tidalpy-0.6.1/TidalPy/utilities/math/numerics.cpp +929 -923
  210. tidalpy-0.6.1/TidalPy/utilities/math/numerics.pxd +8 -0
  211. tidalpy-0.6.1/TidalPy/utilities/math/numerics.pyx +37 -0
  212. TidalPy-0.5.2/TidalPy/utilities/math/special_x.c → tidalpy-0.6.1/TidalPy/utilities/math/special.cpp +893 -1040
  213. tidalpy-0.6.1/TidalPy/utilities/math/special.pxd +1 -0
  214. TidalPy-0.5.2/TidalPy/utilities/math/special_x.pyx → tidalpy-0.6.1/TidalPy/utilities/math/special.pyx +9 -4
  215. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/multiprocessing/multiprocessing.py +2 -1
  216. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/spherical_helper/volume.py +4 -5
  217. TidalPy-0.5.2/TidalPy/utilities/types_x.c → tidalpy-0.6.1/TidalPy/utilities/types_x.cpp +495 -465
  218. tidalpy-0.6.1/TidalPy/utilities/types_x.pyx +2 -0
  219. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy.egg-info/PKG-INFO +24 -56
  220. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy.egg-info/SOURCES.txt +95 -89
  221. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy.egg-info/requires.txt +9 -6
  222. {TidalPy-0.5.2 → tidalpy-0.6.1}/_build_tidalpy.py +16 -6
  223. tidalpy-0.6.1/cython_extensions.json +293 -0
  224. {TidalPy-0.5.2 → tidalpy-0.6.1}/pyproject.toml +16 -11
  225. {TidalPy-0.5.2 → tidalpy-0.6.1}/setup.py +14 -5
  226. TidalPy-0.5.2/Benchmarks & Performance/Multilayer - Tobie+2005 - Roberts & Nimmo 2008.py +0 -265
  227. TidalPy-0.5.2/Documentation/Issues/Issue35/subproc.py +0 -30
  228. TidalPy-0.5.2/Documentation/Issues/Issue35/test.py +0 -88
  229. TidalPy-0.5.2/MANIFEST.in +0 -12
  230. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_a_matrix_package.py +0 -9
  231. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_b_fundamental.py +0 -101
  232. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_c_propagate.py +0 -53
  233. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_a_initial_package.py +0 -30
  234. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_b_known_initial_funcs.py +0 -70
  235. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_c_initial_helper_funcs.py +0 -237
  236. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_d_initial_value_calc.py +0 -73
  237. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_a_interfaces_package.py +0 -16
  238. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_b_known_interfaces.py +0 -121
  239. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_c_interface_funcs.py +0 -72
  240. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_a_derivatives_package.py +0 -19
  241. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_b_known_derivatives.py +0 -71
  242. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_c_derivative_funcs.py +0 -128
  243. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_a_collapse_package.py +0 -12
  244. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_b_surface_condition.py +0 -188
  245. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_c_generalized_collapse.py +0 -175
  246. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_a_numerical_package.py +0 -11
  247. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_b_radial_solver.py +0 -145
  248. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_d_alma_compare_old.py +0 -138
  249. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/test_a_love.py +0 -63
  250. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/test_b_sensitivity.py +0 -131
  251. TidalPy-0.5.2/Tests/Test_Old/Test_SetP_RadialSolver/test_c_nondimensional.py +0 -127
  252. TidalPy-0.5.2/Tests/Test_Old/Test_SetY_MultiLayer/Test_Matrix/test_d_radial_tidal_heating.py +0 -99
  253. TidalPy-0.5.2/Tests/Test_Utilities/Test_Dimensions/test_nondimensional.py +0 -67
  254. TidalPy-0.5.2/TidalPy/RadialSolver/__init__.py +0 -1
  255. TidalPy-0.5.2/TidalPy/RadialSolver/derivatives/base.pxd +0 -52
  256. TidalPy-0.5.2/TidalPy/RadialSolver/derivatives/base.pyx +0 -195
  257. TidalPy-0.5.2/TidalPy/RadialSolver/derivatives/odes.pxd +0 -58
  258. TidalPy-0.5.2/TidalPy/RadialSolver/derivatives/odes.pyx +0 -885
  259. TidalPy-0.5.2/TidalPy/RadialSolver/love.pxd +0 -5
  260. TidalPy-0.5.2/TidalPy/RadialSolver/love.pyx +0 -54
  261. TidalPy-0.5.2/TidalPy/RadialSolver/solutions.pxd +0 -5
  262. TidalPy-0.5.2/TidalPy/RadialSolver/solutions.pyx +0 -71
  263. TidalPy-0.5.2/TidalPy/RadialSolver/solver.pxd +0 -51
  264. TidalPy-0.5.2/TidalPy/RadialSolver/solver.pyx +0 -1297
  265. TidalPy-0.5.2/TidalPy/RadialSolver/starting/driver.pyx +0 -201
  266. TidalPy-0.5.2/TidalPy/RadialSolver/starting/saito.pxd +0 -6
  267. TidalPy-0.5.2/TidalPy/constants.py +0 -49
  268. TidalPy-0.5.2/TidalPy/initialize.py +0 -85
  269. TidalPy-0.5.2/TidalPy/radial_solver/__init__.py +0 -3
  270. TidalPy-0.5.2/TidalPy/radial_solver/love.py +0 -62
  271. TidalPy-0.5.2/TidalPy/radial_solver/matrix/__init__.py +0 -2
  272. TidalPy-0.5.2/TidalPy/radial_solver/matrix/fundamental_solid.py +0 -501
  273. TidalPy-0.5.2/TidalPy/radial_solver/matrix/propagate.py +0 -103
  274. TidalPy-0.5.2/TidalPy/radial_solver/nondimensional.py +0 -209
  275. TidalPy-0.5.2/TidalPy/radial_solver/numerical/__init__.py +0 -1
  276. TidalPy-0.5.2/TidalPy/radial_solver/numerical/collapse/__init__.py +0 -2
  277. TidalPy-0.5.2/TidalPy/radial_solver/numerical/collapse/generalized_collapse.py +0 -292
  278. TidalPy-0.5.2/TidalPy/radial_solver/numerical/collapse/surface_condition.py +0 -211
  279. TidalPy-0.5.2/TidalPy/radial_solver/numerical/derivatives/__init__.py +0 -86
  280. TidalPy-0.5.2/TidalPy/radial_solver/numerical/derivatives/odes.py +0 -262
  281. TidalPy-0.5.2/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_dynamic.py +0 -296
  282. TidalPy-0.5.2/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_dynamic_incomp.py +0 -274
  283. TidalPy-0.5.2/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_static.py +0 -243
  284. TidalPy-0.5.2/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_static_incomp.py +0 -234
  285. TidalPy-0.5.2/TidalPy/radial_solver/numerical/initial/__init__.py +0 -193
  286. TidalPy-0.5.2/TidalPy/radial_solver/numerical/initial/functions.py +0 -234
  287. TidalPy-0.5.2/TidalPy/radial_solver/numerical/initial/initial_solution_dynamic.py +0 -690
  288. TidalPy-0.5.2/TidalPy/radial_solver/numerical/initial/initial_solution_dynamic_incomp.py +0 -424
  289. TidalPy-0.5.2/TidalPy/radial_solver/numerical/initial/initial_solution_static.py +0 -348
  290. TidalPy-0.5.2/TidalPy/radial_solver/numerical/initial/initial_solution_static_incomp.py +0 -157
  291. TidalPy-0.5.2/TidalPy/radial_solver/numerical/interfaces/__init__.py +0 -90
  292. TidalPy-0.5.2/TidalPy/radial_solver/numerical/interfaces/liquid_liquid.py +0 -221
  293. TidalPy-0.5.2/TidalPy/radial_solver/numerical/interfaces/liquid_solid.py +0 -200
  294. TidalPy-0.5.2/TidalPy/radial_solver/numerical/interfaces/solid_liquid.py +0 -207
  295. TidalPy-0.5.2/TidalPy/radial_solver/numerical/interfaces/solid_solid.py +0 -146
  296. TidalPy-0.5.2/TidalPy/radial_solver/numerical/solver.py +0 -383
  297. TidalPy-0.5.2/TidalPy/radial_solver/sensitivity.py +0 -266
  298. TidalPy-0.5.2/TidalPy/tides/modes/multilayer_modes.py +0 -595
  299. TidalPy-0.5.2/TidalPy/tides/multilayer/__init__.py +0 -3
  300. TidalPy-0.5.2/TidalPy/tides/multilayer/heating.py +0 -87
  301. TidalPy-0.5.2/TidalPy/utilities/constants_x.pxd +0 -4
  302. TidalPy-0.5.2/TidalPy/utilities/constants_x.pyx +0 -16
  303. TidalPy-0.5.2/TidalPy/utilities/dimensions/nondimensional.pxd +0 -36
  304. TidalPy-0.5.2/TidalPy/utilities/dimensions/nondimensional.pyx +0 -228
  305. TidalPy-0.5.2/TidalPy/utilities/graphics/planet_plot.py +0 -148
  306. TidalPy-0.5.2/TidalPy/utilities/math/special_x.pxd +0 -1
  307. TidalPy-0.5.2/cython_extensions.json +0 -162
  308. {TidalPy-0.5.2 → tidalpy-0.6.1}/Benchmarks & Performance/Performance/performance suite/multilayer_radial_solver.py +0 -0
  309. {TidalPy-0.5.2 → tidalpy-0.6.1}/Benchmarks & Performance/Performance/performance suite/performance_base.py +0 -0
  310. {TidalPy-0.5.2 → tidalpy-0.6.1}/Benchmarks & Performance/Performance/performance suite/performance_build_world.py +0 -0
  311. {TidalPy-0.5.2 → tidalpy-0.6.1}/Benchmarks & Performance/Performance/performance suite/performance_complex_compliance_func.py +0 -0
  312. {TidalPy-0.5.2 → tidalpy-0.6.1}/Benchmarks & Performance/Performance/performance suite/performance_eccentricity_func.py +0 -0
  313. {TidalPy-0.5.2 → tidalpy-0.6.1}/Benchmarks & Performance/Performance/performance suite/performance_quick_calcs.py +0 -0
  314. {TidalPy-0.5.2 → tidalpy-0.6.1}/Benchmarks & Performance/Performance/performance suite/performance_tides.py +0 -0
  315. {TidalPy-0.5.2 → tidalpy-0.6.1}/Benchmarks & Performance/Performance/performance suite/run_suite.py +0 -0
  316. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetA_Package/test_a_version.py +0 -0
  317. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetA_Package/test_io.py +0 -0
  318. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetA_Package/test_tidalpy_config.py +0 -0
  319. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetB_Package/test_b_utilities_functools.py +0 -0
  320. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetB_Package/test_b_utilities_numpy.py +0 -0
  321. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetB_Package/test_c_tools_timing.py +0 -0
  322. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetB_Package/test_d_basic_classes.py +0 -0
  323. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetB_Package/test_h_voxel_volume.py +0 -0
  324. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetB_Package/test_i_spherical_mass.py +0 -0
  325. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetE_Functional/test_a_performance_funcs.py +0 -0
  326. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetF_Functional/Test_Dynamics/test_dual_dissipation.py +0 -0
  327. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetF_Functional/Test_Dynamics/test_single_dissipation.py +0 -0
  328. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetF_Functional/Test_Rheology/test_compliance_funcs.py +0 -0
  329. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetF_Functional/Test_Rheology/test_partialmelt_funcs.py +0 -0
  330. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_a_orbital_funcs.py +0 -0
  331. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_c_mode_manipulation.py +0 -0
  332. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetH_QuickCalc/test_a_quick_dissipation_calc_single_body.py +0 -0
  333. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetH_QuickCalc/test_b_quick_dissipation_calc_dual_body.py +0 -0
  334. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetK_PlanetBuild/test_b_build_layered.py +0 -0
  335. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetL_Orbit/Test_OrbitClass/test_a_orbit_construct.py +0 -0
  336. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetL_Orbit/Test_OrbitClass/test_b_orbit_basic_manipulation.py +0 -0
  337. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetL_Orbit/test_orbit_averaging.py +0 -0
  338. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetO_OOP_Calcs/test_oop_rheology.py +0 -0
  339. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetO_OOP_Calcs/test_radiogenic.py +0 -0
  340. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetS_Tides/Test_Collapse_Modes/test_collapse_mode_freqs.py +0 -0
  341. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetS_Tides/Test_Heating/test_heating.py +0 -0
  342. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetS_Tides/Test_Unique_Modes/test_unique_freqs.py +0 -0
  343. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_a_physics_orbit_global_tides.py +0 -0
  344. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_b_physics_orbit_layered_tides.py +0 -0
  345. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_c_physics_orbit_dual_body_tides.py +0 -0
  346. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetX_Potential/test_a_potential.py +0 -0
  347. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetX_Potential/test_b_mode_potential.py +0 -0
  348. {TidalPy-0.5.2 → tidalpy-0.6.1}/Tests/Test_Old/Test_SetZA_Multiprocessing/test_multiprocessing.py +0 -0
  349. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/__init__.py +0 -0
  350. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/__init__.py +0 -0
  351. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/burnman_defaultc.py +0 -0
  352. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/defaults.py +0 -0
  353. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/material/__init__.py +0 -0
  354. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/material/custom/__init__.py +0 -0
  355. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/material/custom/pyrite.py +0 -0
  356. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/Extending/burnman/material/helper.py +0 -0
  357. {TidalPy-0.5.2/TidalPy/RadialSolver/boundaries → tidalpy-0.6.1/TidalPy/Material}/__init__.py +0 -0
  358. {TidalPy-0.5.2/TidalPy/RadialSolver/collapse → tidalpy-0.6.1/TidalPy/Material/eos}/__init__.py +0 -0
  359. {TidalPy-0.5.2/TidalPy/RadialSolver/derivatives → tidalpy-0.6.1/TidalPy/Material/eos/methods}/__init__.py +0 -0
  360. {TidalPy-0.5.2/TidalPy/RadialSolver/interfaces → tidalpy-0.6.1/TidalPy/RadialSolver/boundaries}/__init__.py +0 -0
  361. {TidalPy-0.5.2/TidalPy/RadialSolver/starting → tidalpy-0.6.1/TidalPy/RadialSolver/collapse}/__init__.py +0 -0
  362. {TidalPy-0.5.2/TidalPy/structures/helpers → tidalpy-0.6.1/TidalPy/RadialSolver/derivatives}/__init__.py +0 -0
  363. {TidalPy-0.5.2/TidalPy/utilities → tidalpy-0.6.1/TidalPy/RadialSolver/interfaces}/__init__.py +0 -0
  364. {TidalPy-0.5.2/TidalPy/utilities/dimensions → tidalpy-0.6.1/TidalPy/RadialSolver/starting}/__init__.py +0 -0
  365. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/WorldPack/WorldPack.zip +0 -0
  366. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/cache.py +0 -0
  367. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/cooling/__init__.py +0 -0
  368. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/cooling/cooling_models.py +0 -0
  369. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/dynamics/__init__.py +0 -0
  370. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/dynamics/dual_dissipation.py +0 -0
  371. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/dynamics/single_dissipation.py +0 -0
  372. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/numba_scipy/__init__.py +0 -0
  373. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/numba_scipy/special/__init__.py +0 -0
  374. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/numba_scipy/special/overloads.py +0 -0
  375. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/numba_scipy/special/signatures.py +0 -0
  376. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/orbit/__init__.py +0 -0
  377. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/orbit/averaging.py +0 -0
  378. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/radiogenics/__init__.py +0 -0
  379. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/radiogenics/radiogenic_models.py +0 -0
  380. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/__init__.py +0 -0
  381. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/base.pxd +0 -0
  382. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/complex_compliance/__init__.py +0 -0
  383. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/complex_compliance/complex_compliance.py +0 -0
  384. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/complex_compliance/compliance_models.py +0 -0
  385. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/models.pxd +0 -0
  386. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/partial_melt/__init__.py +0 -0
  387. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/partial_melt/melting_models.py +0 -0
  388. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/viscosity/__init__.py +0 -0
  389. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/rheology/viscosity/viscosity.py +0 -0
  390. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/stellar/__init__.py +0 -0
  391. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/stellar/habitability.py +0 -0
  392. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/__init__.py +0 -0
  393. {TidalPy-0.5.2/TidalPy/utilities/io → tidalpy-0.6.1/TidalPy/structures/helpers}/__init__.py +0 -0
  394. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/layers/__init__.py +0 -0
  395. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/layers/gas.py +0 -0
  396. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/layers/helper.py +0 -0
  397. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/orbit/__init__.py +0 -0
  398. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/world_builder/__init__.py +0 -0
  399. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/world_types/__init__.py +0 -0
  400. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/structures/world_types/gas.py +0 -0
  401. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/__init__.py +0 -0
  402. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/ctl_funcs/__init__.py +0 -0
  403. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/ctl_funcs/ctl_funcs.py +0 -0
  404. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/eccentricity_funcs/__init__.py +0 -0
  405. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/heating.py +0 -0
  406. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/inclination_funcs/__init__.py +0 -0
  407. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/love1d.py +0 -0
  408. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/methods/__init__.py +0 -0
  409. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/methods/layered.py +0 -0
  410. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/__init__.py +0 -0
  411. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/collapse_modes.py +0 -0
  412. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/__init__.py +0 -0
  413. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl2.py +0 -0
  414. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl3.py +0 -0
  415. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl4.py +0 -0
  416. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl5.py +0 -0
  417. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl6.py +0 -0
  418. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl7.py +0 -0
  419. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl2.py +0 -0
  420. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl3.py +0 -0
  421. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl4.py +0 -0
  422. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl5.py +0 -0
  423. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl6.py +0 -0
  424. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl7.py +0 -0
  425. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/modes/modes.py +0 -0
  426. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/multilayer/displacements.py +0 -0
  427. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/potential/__init__.py +0 -0
  428. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/potential/synchronous_low_e.py +0 -0
  429. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/tides/universal_coeffs.py +0 -0
  430. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/toolbox/__init__.py +0 -0
  431. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/toolbox/quick_tides.py +0 -0
  432. {TidalPy-0.5.2/TidalPy/utilities/math → tidalpy-0.6.1/TidalPy/utilities}/__init__.py +0 -0
  433. /TidalPy-0.5.2/TidalPy/utilities/types_x.pyx → /tidalpy-0.6.1/TidalPy/utilities/arrays/__init__.py +0 -0
  434. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/classes/__init__.py +0 -0
  435. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/classes/base.py +0 -0
  436. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/classes/base_x.pxd +0 -0
  437. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/classes/config/__init__.py +0 -0
  438. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/classes/model/__init__.py +0 -0
  439. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/classes/model/functional_utils.py +0 -0
  440. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/classes/model/model_utils.py +0 -0
  441. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/conversions/__init__.py +0 -0
  442. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/conversions/conversions.py +0 -0
  443. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/conversions/conversions_x.pxd +0 -0
  444. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/conversions/timing.py +0 -0
  445. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/dictionary_utils.py +0 -0
  446. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/exoplanets/__init__.py +0 -0
  447. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/graphics/global_map.py +0 -0
  448. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/graphics/grid_plot.py +0 -0
  449. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/graphics/multilayer/RN08-Data.csv +0 -0
  450. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/graphics/multilayer/T05-Data.csv +0 -0
  451. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/graphics/multilayer/__init__.py +0 -0
  452. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/graphics/phasespace_plot.py +0 -0
  453. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/integration/__init__.py +0 -0
  454. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/integration/cyrk_helper.py +0 -0
  455. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/integration/julia_helper.py +0 -0
  456. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/integration/numbalsoda_helper.py +0 -0
  457. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/integration/scipy_helper.py +0 -0
  458. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/io/pathing.py +0 -0
  459. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/io/progress.py +0 -0
  460. /TidalPy-0.5.2/TidalPy/utilities/math/special.py → /tidalpy-0.6.1/TidalPy/utilities/math/numba_special.py +0 -0
  461. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/multiprocessing/__init__.py +0 -0
  462. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/numpy_helper/__init__.py +0 -0
  463. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/numpy_helper/array_other.py +0 -0
  464. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/numpy_helper/array_shape.py +0 -0
  465. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/performance/__init__.py +0 -0
  466. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/performance/memory.py +0 -0
  467. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/performance/numba.py +0 -0
  468. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/performance/special/__init__.py +0 -0
  469. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/performance/special/factorial.py +0 -0
  470. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/spherical_helper/__init__.py +0 -0
  471. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/spherical_helper/mass.py +0 -0
  472. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/string_helper/__init__.py +0 -0
  473. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/string_helper/string_helper.py +0 -0
  474. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/types.py +0 -0
  475. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy/utilities/types_x.pxd +0 -0
  476. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy.egg-info/dependency_links.txt +0 -0
  477. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy.egg-info/entry_points.txt +0 -0
  478. {TidalPy-0.5.2 → tidalpy-0.6.1}/TidalPy.egg-info/top_level.txt +0 -0
  479. {TidalPy-0.5.2 → tidalpy-0.6.1}/setup.cfg +0 -0
@@ -6,7 +6,6 @@ import TidalPy
6
6
  TidalPy.config['stream_level'] = 'WARNING'
7
7
  TidalPy.reinit()
8
8
  from TidalPy.tides.modes.multilayer_modes import collapse_multilayer_modes
9
- from TidalPy.tides.modes.multilayer_modes_numba import collapse_multilayer_modes as collapse_multilayer_modes_numba
10
9
  from TidalPy.rheology.complex_compliance.compliance_models import maxwell
11
10
  from TidalPy.utilities.spherical_helper.volume import calculate_voxel_volumes
12
11
  from TidalPy.utilities.spherical_helper.mass import calculate_mass_gravity_arrays
@@ -1,6 +1,5 @@
1
- # License
1
+ # Creative Commons Attribution-ShareAlike 4.0 International
2
2
 
3
- ## Creative Commons Attribution-ShareAlike 4.0 International
4
3
  Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible.
5
4
 
6
5
  **Using Creative Commons Public Licenses**
@@ -11,6 +10,8 @@ Creative Commons public licenses provide a standard set of terms and conditions
11
10
 
12
11
  * __Considerations for the public:__ By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. [More considerations for the public](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensees).
13
12
 
13
+ ## Creative Commons Attribution-ShareAlike 4.0 International Public License
14
+
14
15
  By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
15
16
 
16
17
  ### Section 1 – Definitions.
@@ -0,0 +1,23 @@
1
+ # MANIFEST.in
2
+
3
+ # Include data files used for plotting and benchmarking
4
+ include TidalPy/utilities/graphics/multilayer/*.csv
5
+
6
+ # Include World Configuration Files
7
+ include TidalPy/WorldPack/*.zip
8
+
9
+ # Include Cython pyx and pxd files
10
+ global-include *.pxd
11
+ global-include *.pyx
12
+ include cython_extensions.json
13
+
14
+ # Include required hpp and cpp files
15
+ include TidalPy/utilities/arrays/interp_.cpp
16
+ include TidalPy/utilities/arrays/interp_.hpp
17
+ include TidalPy/RadialSolver/love_.cpp
18
+ include TidalPy/RadialSolver/love_.hpp
19
+ include TidalPy/RadialSolver/rs_solution_.cpp
20
+ include TidalPy/RadialSolver/rs_solution_.hpp
21
+ include TidalPy/Material/eos/eos_solution_.cpp
22
+ include TidalPy/Material/eos/eos_solution_.hpp
23
+ include TidalPy/utilities/dimensions/nondimensional_.hpp
@@ -1,11 +1,10 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: TidalPy
3
- Version: 0.5.2
3
+ Version: 0.6.1
4
4
  Summary: Tidal Dynamics and Thermal-Orbital Evolution Software Suite Implemented in Cython and Python
5
5
  Author-email: "Joe P. Renaud" <TidalPy@gmail.com>
6
- License: # License
6
+ License: # Creative Commons Attribution-ShareAlike 4.0 International
7
7
 
8
- ## Creative Commons Attribution-ShareAlike 4.0 International
9
8
  Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible.
10
9
 
11
10
  **Using Creative Commons Public Licenses**
@@ -16,6 +15,8 @@ License: # License
16
15
 
17
16
  * __Considerations for the public:__ By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. [More considerations for the public](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensees).
18
17
 
18
+ ## Creative Commons Attribution-ShareAlike 4.0 International Public License
19
+
19
20
  By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
20
21
 
21
22
  ### Section 1 – Definitions.
@@ -181,6 +182,7 @@ Classifier: Development Status :: 3 - Alpha
181
182
  Classifier: Operating System :: Microsoft :: Windows
182
183
  Classifier: Operating System :: MacOS
183
184
  Classifier: Operating System :: POSIX :: Linux
185
+ Classifier: Programming Language :: Cython
184
186
  Classifier: Programming Language :: Python :: 3.9
185
187
  Classifier: Programming Language :: Python :: 3.10
186
188
  Classifier: Programming Language :: Python :: 3.11
@@ -201,19 +203,22 @@ Description-Content-Type: text/markdown
201
203
  License-File: LICENSE.md
202
204
  Requires-Dist: numba>=0.54.1
203
205
  Requires-Dist: numpy<1.27,>=1.22
204
- Requires-Dist: scipy>=1.9.3
205
- Requires-Dist: platformdirs>=3.11.0
206
+ Requires-Dist: scipy<1.14,>=1.9.3
207
+ Requires-Dist: platformdirs<4,>=3.11.0
206
208
  Requires-Dist: toml>=0.10.2
207
209
  Requires-Dist: dill>=0.3.2
208
210
  Requires-Dist: psutil>=5.8.0
209
211
  Requires-Dist: pathos>=0.2.0
210
- Requires-Dist: cyrk>=0.8.6
212
+ Requires-Dist: cyrk<0.13.0,>=0.12.1
211
213
  Requires-Dist: astropy
212
214
  Requires-Dist: astroquery
215
+ Requires-Dist: ipympl<0.10.0,>=0.9.6
216
+ Requires-Dist: matplotlib<4.0.0,>=3.4.2
217
+ Requires-Dist: cmcrameri<2.0,>=1.4
213
218
  Provides-Extra: dev
214
219
  Requires-Dist: jupyter; extra == "dev"
215
220
  Requires-Dist: pytest; extra == "dev"
216
- Requires-Dist: cmcrameri>=1.4; extra == "dev"
221
+ Requires-Dist: cmcrameri<2.0,>=1.4; extra == "dev"
217
222
  Requires-Dist: matplotlib>=3.4.2; extra == "dev"
218
223
  Requires-Dist: palettable>=3.3.0; extra == "dev"
219
224
  Requires-Dist: ipympl>=0.8.7; extra == "dev"
@@ -221,13 +226,13 @@ Requires-Dist: julia>=0.5.7; extra == "dev"
221
226
  Requires-Dist: diffeqpy>=1.2.0; extra == "dev"
222
227
  Provides-Extra: graphics
223
228
  Requires-Dist: jupyter; extra == "graphics"
224
- Requires-Dist: cmcrameri>=1.4; extra == "graphics"
229
+ Requires-Dist: cmcrameri<2.0,>=1.4; extra == "graphics"
225
230
  Requires-Dist: matplotlib>=3.4.2; extra == "graphics"
226
231
  Requires-Dist: palettable>=3.3.0; extra == "graphics"
227
232
  Requires-Dist: ipympl>=0.8.7; extra == "graphics"
228
233
  Provides-Extra: burnman
229
234
  Requires-Dist: autograd; extra == "burnman"
230
- Requires-Dist: burnman; extra == "burnman"
235
+ Requires-Dist: burnman<3,>=2.1.0; extra == "burnman"
231
236
  Provides-Extra: cartopy
232
237
  Requires-Dist: cartopy>=0.22.0; extra == "cartopy"
233
238
  Provides-Extra: julia
@@ -247,48 +252,24 @@ Requires-Dist: diffeqpy>=1.2.0; extra == "julia"
247
252
 
248
253
  ---
249
254
 
250
- <a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.5.2 Alpha-orange" alt="TidalPy Version 0.5.1 Alpha" /></a>
255
+ <a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.6.1 Alpha-orange" alt="TidalPy Version 0.6.1 Alpha" /></a>
251
256
 
252
257
  **Tidal Dynamics and Thermal-Orbital Evolution Software Suite Implemented in Cython and Python**
253
258
 
254
259
  TidalPy is an open-source software suite that utilizes a semi-analytic approach to estimate tidal heating,
255
260
  orbit-rotation evolution, and thermal changes for rocky and icy worlds. It has been used to simulate the thermal-orbital
256
261
  evolution of moons within our Solar System as well as exoplanets beyond. TidalPy's `RadialSolver` package can accurately
257
- estimate the viscoelastic Love and Shida numbers for a multi-layered world, including the effects of liquid layers,
258
- compressibility, dynamic tides, and advanced rheological models. This model has been used to study the tidal response
259
- of Mercury, Venus, Earth, our Moon, and Mars.
262
+ estimate the viscoelastic Love and Shida numbers for a multi-layered, rocky or icy world, including the effects of liquid layers,
263
+ compressibility, dynamic tides, and advanced rheological models. This module has been used to study the tidal response
264
+ of Mercury, Venus, Earth, our Moon, Mars, and much more.
260
265
 
261
266
  Have any questions? Feel free to leave an [issue](https://github.com/jrenaud90/TidalPy/issues) or send a message to
262
267
  [TidalPy@gmail.com](mailto:tidalpy@gmail.com).
263
268
 
264
- ## Related Software
265
-
266
- Below is a non-exhaustive list of publicly available software that perform similar or parallel calculations as TidalPy.
267
-
268
- * Are you interested in the habitability of a planet? With considerations of tides, atmospheres, water content, solar
269
- interactions? Check out...
270
- * [VPLanet](https://github.com/VirtualPlanetaryLaboratory/vplanet)
271
- * Are you interested in the orbital evolution of multiple planets with each planet influencing one another? Consider an
272
- N-body approach like...
273
- * [Posidonius (formerly Mercury-T)](https://github.com/marblestation/posidonius)
274
- * [ReboundX](https://github.com/dtamayo/reboundx)
275
- * Don't care about tides or orbital dynamics but are instead interested in interior structure and composition of
276
- planets?
277
- * [BurnMan](https://github.com/geodynamics/burnman)
278
- * [PerpleX](http://www.perplex.ethz.ch/)
279
- * Are you interested in tides, interiors, *and* the chemical evolution of small worlds but don't care about
280
- non-synchronous rotation or compressibility of planets?
281
- * [IcyDwarf](https://github.com/MarcNeveu/IcyDwarf)
282
-
283
- However, if you want high fidelity tidal, orbital, spin, and interior models --- then you have come to the right place!
284
- Read below for instructions on how to install and use TidalPy.
285
-
286
269
  # How to Install
287
270
 
288
271
  ## Compatibility
289
272
 
290
- *As of TidalPy v0.5.0*:
291
-
292
273
  * **Windows-Latest**: *Installation & tests passed.*
293
274
  * **MacOS-Latest**: *Installation & tests passed.*
294
275
  * **Ubuntu-Latest**: *Installation & tests passed.*
@@ -339,21 +320,6 @@ After GEOS is installed you can pip install the rest,
339
320
 
340
321
  `pip install pyproj shapely pyshp cartopy`
341
322
 
342
- ## DiffEqPy / Julia
343
-
344
- TidalPy provides the option to use the [Julia](https://julialang.org/) programming language's differential equation
345
- solver for python: [diffeqpy](https://github.com/SciML/diffeqpy). To utilize this package you first need to ensure
346
- that Julia is installed on your machine and available via the system's environment path.
347
-
348
- * Install the Julia language from [https://julialang.org/downloads/](https://julialang.org/downloads/)
349
- * Add Julia's directory and its `bin` subdirectory to your system's path.
350
- * Open an elevated ("as administrator") terminal, command prompt, or powershell.
351
- * If you are using a virtual Python environment make sure it is active.
352
- * Install `julia` and `diffeqpy` for python using pip
353
- * Run `pip install julia diffeqpy`
354
- * Open Python on your elevated terminal (the following steps may take a while to compile).
355
- * Run `import julia; julia.install(); import diffeqpy; diffeqpy.install()`
356
-
357
323
  ## Installation Troubleshooting
358
324
 
359
325
  _If you ran into a problem that is not listed below please [submit an issue](https://github.com/jrenaud90/TidalPy/issues) and we will work on addressing it!_
@@ -366,7 +332,7 @@ _If you ran into a problem that is not listed below please [submit an issue](htt
366
332
 
367
333
  # How to Use TidalPy
368
334
 
369
- Check out the `Documentation\Getting Started.md` file. This is pretty bare bones at the moment but offers some basic
335
+ Check out the `Documentation\1 - Getting Started.md` file. This is pretty bare bones at the moment but offers some basic
370
336
  info about TidalPy. For now the best way to learn how to use TidalPy is by checking out the `Demos` directory. There
371
337
  are "beginner" [Jupyter notebooks](https://jupyter.org/) that are a great starting point.
372
338
 
@@ -381,9 +347,9 @@ the end of this file.
381
347
 
382
348
  ## Citing TidalPy
383
349
 
384
- If you use TidalPy for your research please cite its Zenodo [doi: 10.5281/zenodo.7017474](https://zenodo.org/records/7017560).
350
+ If you use TidalPy for your research please cite its Zenodo [doi: 10.5281/zenodo.7017474](https://doi.org/10.5281/zenodo.7017474).
385
351
 
386
- The science used in TidalPy is described in the following papers and software (and references therein):
352
+ The science used in TidalPy is described in the following papers and software (with additional references therein):
387
353
 
388
354
  * Rheological Modeling Package:
389
355
  * [Tidally Heated Terrestrial Exoplanets: Viscoelastic Response Models](https://ui.adsabs.harvard.edu/abs/2009ApJ...707.1000H/abstract)
@@ -432,6 +398,8 @@ TidalPy has been improved by numerous contributors some of which you can find [h
432
398
 
433
399
  TidalPy has benefited from work and conversations with the following:
434
400
  - Wade G. Henning (U. of Maryland, College Park / NASA GSFC)
401
+ - Michael Efroimsky (U.S. Naval Observatory)
435
402
  - Sander Goossens (NASA GSFC)
436
403
  - Marc Neveu (U. of Maryland, College Park / NASA GSFC)
437
404
  - Gael Cascioli (U. of Maryland, Baltimore County / NASA GSFC)
405
+ - Nick Wagner (Brown U.)
@@ -11,48 +11,24 @@
11
11
 
12
12
  ---
13
13
 
14
- <a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.5.2 Alpha-orange" alt="TidalPy Version 0.5.1 Alpha" /></a>
14
+ <a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.6.1 Alpha-orange" alt="TidalPy Version 0.6.1 Alpha" /></a>
15
15
 
16
16
  **Tidal Dynamics and Thermal-Orbital Evolution Software Suite Implemented in Cython and Python**
17
17
 
18
18
  TidalPy is an open-source software suite that utilizes a semi-analytic approach to estimate tidal heating,
19
19
  orbit-rotation evolution, and thermal changes for rocky and icy worlds. It has been used to simulate the thermal-orbital
20
20
  evolution of moons within our Solar System as well as exoplanets beyond. TidalPy's `RadialSolver` package can accurately
21
- estimate the viscoelastic Love and Shida numbers for a multi-layered world, including the effects of liquid layers,
22
- compressibility, dynamic tides, and advanced rheological models. This model has been used to study the tidal response
23
- of Mercury, Venus, Earth, our Moon, and Mars.
21
+ estimate the viscoelastic Love and Shida numbers for a multi-layered, rocky or icy world, including the effects of liquid layers,
22
+ compressibility, dynamic tides, and advanced rheological models. This module has been used to study the tidal response
23
+ of Mercury, Venus, Earth, our Moon, Mars, and much more.
24
24
 
25
25
  Have any questions? Feel free to leave an [issue](https://github.com/jrenaud90/TidalPy/issues) or send a message to
26
26
  [TidalPy@gmail.com](mailto:tidalpy@gmail.com).
27
27
 
28
- ## Related Software
29
-
30
- Below is a non-exhaustive list of publicly available software that perform similar or parallel calculations as TidalPy.
31
-
32
- * Are you interested in the habitability of a planet? With considerations of tides, atmospheres, water content, solar
33
- interactions? Check out...
34
- * [VPLanet](https://github.com/VirtualPlanetaryLaboratory/vplanet)
35
- * Are you interested in the orbital evolution of multiple planets with each planet influencing one another? Consider an
36
- N-body approach like...
37
- * [Posidonius (formerly Mercury-T)](https://github.com/marblestation/posidonius)
38
- * [ReboundX](https://github.com/dtamayo/reboundx)
39
- * Don't care about tides or orbital dynamics but are instead interested in interior structure and composition of
40
- planets?
41
- * [BurnMan](https://github.com/geodynamics/burnman)
42
- * [PerpleX](http://www.perplex.ethz.ch/)
43
- * Are you interested in tides, interiors, *and* the chemical evolution of small worlds but don't care about
44
- non-synchronous rotation or compressibility of planets?
45
- * [IcyDwarf](https://github.com/MarcNeveu/IcyDwarf)
46
-
47
- However, if you want high fidelity tidal, orbital, spin, and interior models --- then you have come to the right place!
48
- Read below for instructions on how to install and use TidalPy.
49
-
50
28
  # How to Install
51
29
 
52
30
  ## Compatibility
53
31
 
54
- *As of TidalPy v0.5.0*:
55
-
56
32
  * **Windows-Latest**: *Installation & tests passed.*
57
33
  * **MacOS-Latest**: *Installation & tests passed.*
58
34
  * **Ubuntu-Latest**: *Installation & tests passed.*
@@ -103,21 +79,6 @@ After GEOS is installed you can pip install the rest,
103
79
 
104
80
  `pip install pyproj shapely pyshp cartopy`
105
81
 
106
- ## DiffEqPy / Julia
107
-
108
- TidalPy provides the option to use the [Julia](https://julialang.org/) programming language's differential equation
109
- solver for python: [diffeqpy](https://github.com/SciML/diffeqpy). To utilize this package you first need to ensure
110
- that Julia is installed on your machine and available via the system's environment path.
111
-
112
- * Install the Julia language from [https://julialang.org/downloads/](https://julialang.org/downloads/)
113
- * Add Julia's directory and its `bin` subdirectory to your system's path.
114
- * Open an elevated ("as administrator") terminal, command prompt, or powershell.
115
- * If you are using a virtual Python environment make sure it is active.
116
- * Install `julia` and `diffeqpy` for python using pip
117
- * Run `pip install julia diffeqpy`
118
- * Open Python on your elevated terminal (the following steps may take a while to compile).
119
- * Run `import julia; julia.install(); import diffeqpy; diffeqpy.install()`
120
-
121
82
  ## Installation Troubleshooting
122
83
 
123
84
  _If you ran into a problem that is not listed below please [submit an issue](https://github.com/jrenaud90/TidalPy/issues) and we will work on addressing it!_
@@ -130,7 +91,7 @@ _If you ran into a problem that is not listed below please [submit an issue](htt
130
91
 
131
92
  # How to Use TidalPy
132
93
 
133
- Check out the `Documentation\Getting Started.md` file. This is pretty bare bones at the moment but offers some basic
94
+ Check out the `Documentation\1 - Getting Started.md` file. This is pretty bare bones at the moment but offers some basic
134
95
  info about TidalPy. For now the best way to learn how to use TidalPy is by checking out the `Demos` directory. There
135
96
  are "beginner" [Jupyter notebooks](https://jupyter.org/) that are a great starting point.
136
97
 
@@ -145,9 +106,9 @@ the end of this file.
145
106
 
146
107
  ## Citing TidalPy
147
108
 
148
- If you use TidalPy for your research please cite its Zenodo [doi: 10.5281/zenodo.7017474](https://zenodo.org/records/7017560).
109
+ If you use TidalPy for your research please cite its Zenodo [doi: 10.5281/zenodo.7017474](https://doi.org/10.5281/zenodo.7017474).
149
110
 
150
- The science used in TidalPy is described in the following papers and software (and references therein):
111
+ The science used in TidalPy is described in the following papers and software (with additional references therein):
151
112
 
152
113
  * Rheological Modeling Package:
153
114
  * [Tidally Heated Terrestrial Exoplanets: Viscoelastic Response Models](https://ui.adsabs.harvard.edu/abs/2009ApJ...707.1000H/abstract)
@@ -196,6 +157,8 @@ TidalPy has been improved by numerous contributors some of which you can find [h
196
157
 
197
158
  TidalPy has benefited from work and conversations with the following:
198
159
  - Wade G. Henning (U. of Maryland, College Park / NASA GSFC)
160
+ - Michael Efroimsky (U.S. Naval Observatory)
199
161
  - Sander Goossens (NASA GSFC)
200
162
  - Marc Neveu (U. of Maryland, College Park / NASA GSFC)
201
163
  - Gael Cascioli (U. of Maryland, Baltimore County / NASA GSFC)
164
+ - Nick Wagner (Brown U.)
@@ -1,9 +1,6 @@
1
1
  import numpy as np
2
2
  from math import isclose, isnan
3
3
 
4
- import TidalPy
5
- TidalPy.test_mode = True
6
-
7
4
  from TidalPy.rheology import (
8
5
  Elastic,
9
6
  Newton,
@@ -5,10 +5,8 @@ from math import isclose, isinf, isnan, nan, inf
5
5
  import pytest
6
6
  import numpy as np
7
7
 
8
- import TidalPy
9
- TidalPy.test_mode = True
10
8
 
11
- from TidalPy.utilities.math.complex import hypot, csqrt, cexp, clog, cpow, cipow
9
+ from TidalPy.utilities.math.complex import hypot, csqrt, cexp, clog, cpow, cipow, cinv, cabs, cabs2
12
10
 
13
11
 
14
12
  def compare_values(value_1, value_2):
@@ -61,6 +59,33 @@ standard_list_float = (
61
59
  inf
62
60
  )
63
61
 
62
+ @pytest.mark.parametrize('z', standard_list_complex)
63
+ def test_cabs(z):
64
+
65
+ np_result = np.abs(z)
66
+ tpy_result = cabs(z)
67
+
68
+ compare_values_complex(np_result, tpy_result)
69
+
70
+ @pytest.mark.parametrize('z', standard_list_complex)
71
+ def test_cabs2(z):
72
+
73
+ np_result = np.abs(z)**2
74
+ tpy_result = cabs2(z)
75
+
76
+ compare_values_complex(np_result, tpy_result)
77
+
78
+ @pytest.mark.parametrize('z', standard_list_complex)
79
+ def test_cinv(z):
80
+
81
+ np_result = 1. / np.asarray(z, dtype=np.complex128)
82
+ np_result = np_result
83
+ tpy_result = cinv(z)
84
+
85
+ try:
86
+ compare_values_complex(np_result, tpy_result)
87
+ except:
88
+ breakpoint()
64
89
 
65
90
  @pytest.mark.parametrize('a', standard_list_float)
66
91
  @pytest.mark.parametrize('b', standard_list_float)
@@ -0,0 +1,24 @@
1
+ import pytest
2
+
3
+ from math import isclose as py_isclose
4
+ from math import nan
5
+
6
+ from TidalPy.utilities.math.numerics import isclose
7
+
8
+
9
+ @pytest.mark.parametrize('a', (0.0, -55.222226, 10., 1.0e200, -1.0e200, 1.0e-9, 1.0e-5, -1.0e-9, -1.0e-5, 1.4562221e34, 1.0e-14, 0.98e-14))
10
+ @pytest.mark.parametrize('b', (0.0, -55.222222, 10., 1.0e200, -1.0e200, 1.0e-9, 1.0e-5, -1.0e-9, -1.0e-5, 1.4582221e34, 1.0e-14, 0.98e-14))
11
+ @pytest.mark.parametrize('rtol', (3.0, 1.0e-9, 1.0e-3))
12
+ @pytest.mark.parametrize('atol', (3.0, 1.0e-3, 0.0))
13
+ def test_math_isclose(a, b, rtol, atol):
14
+
15
+ pyresult = py_isclose(a, b, rel_tol=rtol, abs_tol=atol)
16
+ tpyresult = isclose(a, b, rtol, atol)
17
+
18
+ assert pyresult == tpyresult
19
+
20
+ def test_math_isclose_nans():
21
+
22
+ assert isclose(nan, 10.0) == False
23
+ assert isclose(10.0, nan) == False
24
+
@@ -3,10 +3,7 @@ from scipy.special import factorial2
3
3
 
4
4
  import pytest
5
5
 
6
- import TidalPy
7
- TidalPy.test_mode = True
8
-
9
- from TidalPy.utilities.math.special_x import double_factorial
6
+ from TidalPy.utilities.math.special import double_factorial
10
7
 
11
8
  @pytest.mark.parametrize('l', (0, 2, 3, 4, 5, 10, 20, 100))
12
9
  def test_double_factorial(l):
@@ -2,9 +2,9 @@ import math
2
2
 
3
3
  import numpy as np
4
4
  import pytest
5
- from scipy.constants import G
6
5
 
7
6
  import TidalPy
7
+ from TidalPy.constants import G
8
8
  from TidalPy.exceptions import BadValueError
9
9
  from TidalPy.utilities.conversions import (Au2m, days2rads, m2Au, myr2sec, orbital_motion2semi_a, rads2days, sec2myr,
10
10
  semi_a2orbital_motion)
@@ -5,7 +5,7 @@ import numpy as np
5
5
  import TidalPy
6
6
 
7
7
 
8
- from TidalPy.utilities.math.special import sqrt_neg
8
+ from TidalPy.utilities.math.numba_special import sqrt_neg
9
9
 
10
10
 
11
11
  def test_sqrt_neg():
@@ -1,8 +1,8 @@
1
1
  import numpy as np
2
2
  import pytest
3
- from scipy.constants import G
4
3
 
5
4
  import TidalPy
5
+ from TidalPy.constants import G
6
6
 
7
7
 
8
8
  earth_radius = 6.37101e6
@@ -1,11 +1,9 @@
1
1
  import os
2
2
 
3
3
  import numpy as np
4
- from scipy.constants import G
5
4
 
6
5
  import TidalPy
7
-
8
-
6
+ from TidalPy.constants import G
9
7
  from TidalPy.paths import get_worlds_dir
10
8
  from TidalPy.structures import build_world
11
9
 
@@ -4,9 +4,6 @@ import pytest
4
4
  import toml
5
5
  import numpy as np
6
6
 
7
- import TidalPy
8
- TidalPy.test_mode = True
9
-
10
7
  from TidalPy.structures import build_world, scale_from_world
11
8
  from TidalPy.Extending.burnman import burnman_installed
12
9