TidalPy 0.5.5__tar.gz → 0.6.0__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.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/multimode_solver.py +0 -1
  2. {tidalpy-0.5.5 → tidalpy-0.6.0}/LICENSE.md +3 -2
  3. tidalpy-0.6.0/MANIFEST.in +23 -0
  4. {tidalpy-0.5.5 → tidalpy-0.6.0}/PKG-INFO +20 -55
  5. {tidalpy-0.5.5 → tidalpy-0.6.0}/README.md +9 -46
  6. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Functions/test_rheology.py +0 -3
  7. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Math/test_utilities_complex.py +28 -3
  8. tidalpy-0.6.0/Tests/Test_Math/test_utilities_numerics.py +24 -0
  9. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Math/test_utilities_special.py +1 -4
  10. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_c_tools_conversions.py +1 -1
  11. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_g_math_special_funcs.py +1 -1
  12. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_b_dissipation.py +1 -1
  13. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetK_PlanetBuild/test_a_build_star.py +1 -3
  14. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetK_PlanetBuild/test_d_build_burnman_planet.py +0 -3
  15. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetY_MultiLayer/Test_Matrix/test_e_strain.py +77 -73
  16. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetY_MultiLayer/Test_Numerical_Int/test_m1_multilayer_modes.py +65 -34
  17. tidalpy-0.6.0/Tests/Test_Package/test_configs.py +60 -0
  18. tidalpy-0.6.0/Tests/Test_RadialSolver/Test_PropMatrix/test_a_solid_matrix.py +72 -0
  19. tidalpy-0.6.0/Tests/Test_RadialSolver/Test_PropMatrix/test_b_radial_solver_matrix.py +75 -0
  20. tidalpy-0.6.0/Tests/Test_RadialSolver/test_a_boundary_conditions.py +68 -0
  21. tidalpy-0.6.0/Tests/Test_RadialSolver/test_a_helpers.py +582 -0
  22. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_RadialSolver/test_a_interfaces.py +5 -8
  23. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_RadialSolver/test_a_starting_condtions.py +3 -6
  24. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_RadialSolver/test_b_radial_solver_1layer.py +14 -13
  25. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_RadialSolver/test_d_alma_compare.py +81 -46
  26. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_RadialSolver/test_e_radial_solver_3layer.py +59 -41
  27. tidalpy-0.6.0/Tests/Test_RadialSolver/test_f_radial_solver_errors.py +305 -0
  28. tidalpy-0.6.0/Tests/Test_Tides/test_d_radial_sensativity.py +239 -0
  29. tidalpy-0.6.0/Tests/Test_Utilities/Test_Dimensions/test_nondimensional.py +53 -0
  30. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Utilities/Test_Exoplanets/test_exoplanet_download.py +0 -5
  31. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/build.py +1 -1
  32. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/burnman_layer.py +1 -1
  33. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/burnman_world.py +1 -1
  34. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/conversion.py +1 -1
  35. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/custom/constant.py +2 -2
  36. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/custom/ice.py +2 -2
  37. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/package.py +1 -1
  38. tidalpy-0.6.0/TidalPy/Material/eos/__init__.pxd +8 -0
  39. tidalpy-0.6.0/TidalPy/Material/eos/eos_solution.cpp +27023 -0
  40. tidalpy-0.6.0/TidalPy/Material/eos/eos_solution.pxd +94 -0
  41. tidalpy-0.6.0/TidalPy/Material/eos/eos_solution.pyx +2 -0
  42. tidalpy-0.6.0/TidalPy/Material/eos/eos_solution_.cpp +394 -0
  43. tidalpy-0.6.0/TidalPy/Material/eos/eos_solution_.hpp +123 -0
  44. tidalpy-0.6.0/TidalPy/Material/eos/methods/__init__.pxd +1 -0
  45. tidalpy-0.6.0/TidalPy/Material/eos/methods/interpolate.cpp +27756 -0
  46. tidalpy-0.6.0/TidalPy/Material/eos/methods/interpolate.pxd +21 -0
  47. tidalpy-0.6.0/TidalPy/Material/eos/methods/interpolate.pyx +70 -0
  48. tidalpy-0.6.0/TidalPy/Material/eos/ode.cpp +27536 -0
  49. tidalpy-0.6.0/TidalPy/Material/eos/ode.pxd +24 -0
  50. tidalpy-0.6.0/TidalPy/Material/eos/ode.pyx +70 -0
  51. tidalpy-0.6.0/TidalPy/Material/eos/solver.cpp +28955 -0
  52. tidalpy-0.6.0/TidalPy/Material/eos/solver.pxd +26 -0
  53. tidalpy-0.6.0/TidalPy/Material/eos/solver.pyx +248 -0
  54. tidalpy-0.6.0/TidalPy/RadialSolver/__init__.pxd +2 -0
  55. tidalpy-0.6.0/TidalPy/RadialSolver/__init__.py +2 -0
  56. tidalpy-0.5.5/TidalPy/RadialSolver/boundaries/boundaries.c → tidalpy-0.6.0/TidalPy/RadialSolver/boundaries/boundaries.cpp +276 -80
  57. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/boundaries/boundaries.pxd +8 -5
  58. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/boundaries/boundaries.pyx +82 -22
  59. tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/base.c → tidalpy-0.6.0/TidalPy/RadialSolver/boundaries/surface_bc.cpp +10075 -9888
  60. tidalpy-0.6.0/TidalPy/RadialSolver/boundaries/surface_bc.pxd +8 -0
  61. tidalpy-0.6.0/TidalPy/RadialSolver/boundaries/surface_bc.pyx +166 -0
  62. tidalpy-0.5.5/TidalPy/RadialSolver/collapse/collapse.c → tidalpy-0.6.0/TidalPy/RadialSolver/collapse/collapse.cpp +100 -77
  63. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/collapse/collapse.pxd +10 -7
  64. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/collapse/collapse.pyx +81 -13
  65. tidalpy-0.5.5/TidalPy/utilities/constants_x.c → tidalpy-0.6.0/TidalPy/RadialSolver/constants.cpp +102 -105
  66. tidalpy-0.6.0/TidalPy/RadialSolver/constants.pxd +3 -0
  67. tidalpy-0.6.0/TidalPy/RadialSolver/constants.pyx +7 -0
  68. tidalpy-0.6.0/TidalPy/RadialSolver/derivatives/odes.cpp +30333 -0
  69. tidalpy-0.6.0/TidalPy/RadialSolver/derivatives/odes.pxd +71 -0
  70. tidalpy-0.6.0/TidalPy/RadialSolver/derivatives/odes.pyx +790 -0
  71. tidalpy-0.6.0/TidalPy/RadialSolver/helpers.cpp +39297 -0
  72. tidalpy-0.6.0/TidalPy/RadialSolver/helpers.pyx +549 -0
  73. tidalpy-0.5.5/TidalPy/RadialSolver/interfaces/interfaces.c → tidalpy-0.6.0/TidalPy/RadialSolver/interfaces/interfaces.cpp +542 -387
  74. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/interfaces/interfaces.pxd +6 -4
  75. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/interfaces/interfaces.pyx +17 -20
  76. tidalpy-0.5.5/TidalPy/RadialSolver/interfaces/reversed.c → tidalpy-0.6.0/TidalPy/RadialSolver/interfaces/reversed.cpp +321 -148
  77. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/interfaces/reversed.pxd +10 -6
  78. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/interfaces/reversed.pyx +13 -14
  79. tidalpy-0.5.5/TidalPy/RadialSolver/love.c → tidalpy-0.6.0/TidalPy/RadialSolver/love.cpp +109 -370
  80. tidalpy-0.6.0/TidalPy/RadialSolver/love.pxd +6 -0
  81. tidalpy-0.6.0/TidalPy/RadialSolver/love.pyx +30 -0
  82. tidalpy-0.6.0/TidalPy/RadialSolver/love_.cpp +33 -0
  83. tidalpy-0.6.0/TidalPy/RadialSolver/love_.hpp +7 -0
  84. tidalpy-0.6.0/TidalPy/RadialSolver/matrix.cpp +30894 -0
  85. tidalpy-0.6.0/TidalPy/RadialSolver/matrix.pxd +25 -0
  86. tidalpy-0.6.0/TidalPy/RadialSolver/matrix.pyx +522 -0
  87. tidalpy-0.6.0/TidalPy/RadialSolver/matrix_types/__init__.py +1 -0
  88. tidalpy-0.6.0/TidalPy/RadialSolver/matrix_types/solid_matrix.cpp +31909 -0
  89. tidalpy-0.6.0/TidalPy/RadialSolver/matrix_types/solid_matrix.pxd +13 -0
  90. tidalpy-0.6.0/TidalPy/RadialSolver/matrix_types/solid_matrix.pyx +372 -0
  91. tidalpy-0.6.0/TidalPy/RadialSolver/rs_solution.cpp +39792 -0
  92. tidalpy-0.6.0/TidalPy/RadialSolver/rs_solution.pxd +106 -0
  93. tidalpy-0.6.0/TidalPy/RadialSolver/rs_solution.pyx +567 -0
  94. tidalpy-0.6.0/TidalPy/RadialSolver/rs_solution_.cpp +197 -0
  95. tidalpy-0.6.0/TidalPy/RadialSolver/rs_solution_.hpp +79 -0
  96. tidalpy-0.5.5/TidalPy/utilities/dimensions/nondimensional.c → tidalpy-0.6.0/TidalPy/RadialSolver/shooting.cpp +12789 -12672
  97. tidalpy-0.6.0/TidalPy/RadialSolver/shooting.pxd +40 -0
  98. tidalpy-0.6.0/TidalPy/RadialSolver/shooting.pyx +965 -0
  99. tidalpy-0.5.5/TidalPy/RadialSolver/solver.c → tidalpy-0.6.0/TidalPy/RadialSolver/solver.cpp +6796 -12120
  100. tidalpy-0.6.0/TidalPy/RadialSolver/solver.pxd +47 -0
  101. tidalpy-0.6.0/TidalPy/RadialSolver/solver.pyx +842 -0
  102. tidalpy-0.5.5/TidalPy/RadialSolver/starting/common.c → tidalpy-0.6.0/TidalPy/RadialSolver/starting/common.cpp +232 -77
  103. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/common.pxd +2 -2
  104. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/common.pyx +10 -7
  105. tidalpy-0.5.5/TidalPy/RadialSolver/starting/driver.c → tidalpy-0.6.0/TidalPy/RadialSolver/starting/driver.cpp +1116 -1162
  106. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/driver.pxd +11 -6
  107. tidalpy-0.6.0/TidalPy/RadialSolver/starting/driver.pyx +232 -0
  108. tidalpy-0.5.5/TidalPy/RadialSolver/starting/kamata.c → tidalpy-0.6.0/TidalPy/RadialSolver/starting/kamata.cpp +720 -573
  109. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/kamata.pxd +13 -15
  110. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/kamata.pyx +128 -149
  111. tidalpy-0.5.5/TidalPy/RadialSolver/starting/saito.c → tidalpy-0.6.0/TidalPy/RadialSolver/starting/saito.cpp +43 -28
  112. tidalpy-0.6.0/TidalPy/RadialSolver/starting/saito.pxd +6 -0
  113. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/saito.pyx +14 -17
  114. tidalpy-0.5.5/TidalPy/RadialSolver/starting/takeuchi.c → tidalpy-0.6.0/TidalPy/RadialSolver/starting/takeuchi.cpp +593 -446
  115. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/takeuchi.pxd +12 -12
  116. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/takeuchi.pyx +123 -145
  117. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/__init__.py +25 -0
  118. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/configurations.py +61 -13
  119. tidalpy-0.6.0/TidalPy/constants.cpp +6331 -0
  120. tidalpy-0.6.0/TidalPy/constants.pxd +67 -0
  121. tidalpy-0.6.0/TidalPy/constants.pyx +139 -0
  122. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/cooling/cooling.py +1 -1
  123. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/defaultc.py +4 -2
  124. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/exceptions.py +4 -0
  125. tidalpy-0.6.0/TidalPy/initialize.py +105 -0
  126. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/logger.py +67 -31
  127. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/output.py +1 -1
  128. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/paths.py +4 -4
  129. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/radiogenics/radiogenics.py +1 -2
  130. tidalpy-0.5.5/TidalPy/rheology/base.c → tidalpy-0.6.0/TidalPy/rheology/base.cpp +575 -434
  131. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/base.pyx +12 -12
  132. tidalpy-0.5.5/TidalPy/rheology/models.c → tidalpy-0.6.0/TidalPy/rheology/models.cpp +1092 -907
  133. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/models.pyx +27 -26
  134. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/partial_melt/partialmelt.py +1 -1
  135. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/rheology.py +1 -3
  136. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/viscosity/viscosity_models.py +3 -3
  137. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/stellar/insolation.py +1 -1
  138. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/stellar/stellar.py +1 -2
  139. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/helpers/orbit_config.py +1 -1
  140. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/layers/basic.py +10 -15
  141. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/layers/physics.py +1 -1
  142. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/orbit/base.py +11 -49
  143. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/orbit/physics.py +1 -1
  144. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/physical.py +2 -4
  145. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_builder/config_handler.py +1 -1
  146. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_builder/iterative_builder.py +3 -11
  147. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_builder/world_builder.py +7 -9
  148. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/basic.py +4 -5
  149. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/layered.py +4 -10
  150. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/stellar.py +2 -2
  151. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/tidal.py +1 -1
  152. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/dissipation.py +1 -1
  153. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl2.py +11 -11
  154. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl3.py +10 -10
  155. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl4.py +10 -10
  156. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl5.py +10 -10
  157. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl6.py +10 -10
  158. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl7.py +10 -10
  159. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl2.py +2 -2
  160. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl3.py +2 -2
  161. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl4.py +2 -2
  162. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl5.py +2 -2
  163. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl6.py +2 -2
  164. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl7.py +2 -2
  165. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/methods/base.py +1 -1
  166. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/methods/global_approx.py +2 -3
  167. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_manipulation.py +1 -1
  168. tidalpy-0.6.0/TidalPy/tides/modes/multilayer_modes.py +495 -0
  169. tidalpy-0.6.0/TidalPy/tides/multilayer/__init__.py +4 -0
  170. tidalpy-0.6.0/TidalPy/tides/multilayer/heating.cpp +32149 -0
  171. tidalpy-0.6.0/TidalPy/tides/multilayer/heating.pxd +16 -0
  172. tidalpy-0.6.0/TidalPy/tides/multilayer/heating.pyx +237 -0
  173. tidalpy-0.6.0/TidalPy/tides/multilayer/sensitivity.cpp +32846 -0
  174. tidalpy-0.6.0/TidalPy/tides/multilayer/sensitivity.pxd +21 -0
  175. tidalpy-0.6.0/TidalPy/tides/multilayer/sensitivity.pyx +335 -0
  176. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/multilayer/stress_strain.py +40 -20
  177. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_med_eccen_gen_obliquity.py +1 -1
  178. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_med_eccen_med_obliquity.py +1 -1
  179. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_med_eccen_no_obliquity.py +1 -1
  180. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_modes_low_eccen_gen_obliquity.py +1 -1
  181. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_modes_med_eccen_gen_obliquity.py +1 -1
  182. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_modes_med_eccen_med_obliquity.py +1 -1
  183. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_modes_med_eccen_no_obliquity.py +1 -1
  184. tidalpy-0.6.0/TidalPy/utilities/arrays/interp.pxd +25 -0
  185. tidalpy-0.6.0/TidalPy/utilities/arrays/interp.pyx +2 -0
  186. tidalpy-0.6.0/TidalPy/utilities/arrays/interp_.cpp +321 -0
  187. tidalpy-0.6.0/TidalPy/utilities/arrays/interp_.hpp +30 -0
  188. tidalpy-0.5.5/TidalPy/utilities/classes/base_x.c → tidalpy-0.6.0/TidalPy/utilities/classes/base_x.cpp +31 -16
  189. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/base_x.pyx +1 -1
  190. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/config/config.py +1 -5
  191. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/model/model.py +2 -6
  192. tidalpy-0.5.5/TidalPy/utilities/conversions/conversions_x.c → tidalpy-0.6.0/TidalPy/utilities/conversions/conversions_x.cpp +188 -56
  193. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/conversions/conversions_x.pyx +11 -11
  194. tidalpy-0.6.0/TidalPy/utilities/dimensions/__init__.py +0 -0
  195. tidalpy-0.6.0/TidalPy/utilities/dimensions/nondimensional.cpp +8780 -0
  196. tidalpy-0.6.0/TidalPy/utilities/dimensions/nondimensional.pxd +18 -0
  197. tidalpy-0.6.0/TidalPy/utilities/dimensions/nondimensional.pyx +94 -0
  198. tidalpy-0.6.0/TidalPy/utilities/dimensions/nondimensional_.hpp +13 -0
  199. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/exoplanets/data_download.py +4 -4
  200. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/__init__.py +2 -2
  201. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/multilayer/yplot.py +123 -48
  202. tidalpy-0.6.0/TidalPy/utilities/graphics/planet_plot.py +266 -0
  203. tidalpy-0.6.0/TidalPy/utilities/io/__init__.py +0 -0
  204. tidalpy-0.6.0/TidalPy/utilities/math/__init__.pxd +5 -0
  205. tidalpy-0.6.0/TidalPy/utilities/math/__init__.py +0 -0
  206. tidalpy-0.5.5/TidalPy/utilities/math/complex.c → tidalpy-0.6.0/TidalPy/utilities/math/complex.cpp +1584 -635
  207. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/math/complex.pxd +8 -2
  208. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/math/complex.pyx +67 -32
  209. tidalpy-0.5.5/TidalPy/RadialSolver/solutions.c → tidalpy-0.6.0/TidalPy/utilities/math/numerics.cpp +607 -617
  210. tidalpy-0.6.0/TidalPy/utilities/math/numerics.pxd +8 -0
  211. tidalpy-0.6.0/TidalPy/utilities/math/numerics.pyx +37 -0
  212. tidalpy-0.5.5/TidalPy/utilities/math/special_x.c → tidalpy-0.6.0/TidalPy/utilities/math/special.cpp +490 -647
  213. tidalpy-0.6.0/TidalPy/utilities/math/special.pxd +1 -0
  214. tidalpy-0.5.5/TidalPy/utilities/math/special_x.pyx → tidalpy-0.6.0/TidalPy/utilities/math/special.pyx +9 -4
  215. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/multiprocessing/multiprocessing.py +2 -1
  216. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/spherical_helper/volume.py +4 -5
  217. tidalpy-0.5.5/TidalPy/utilities/types_x.c → tidalpy-0.6.0/TidalPy/utilities/types_x.cpp +32 -15
  218. tidalpy-0.6.0/TidalPy/utilities/types_x.pyx +2 -0
  219. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/PKG-INFO +20 -55
  220. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/SOURCES.txt +95 -88
  221. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/requires.txt +7 -6
  222. {tidalpy-0.5.5 → tidalpy-0.6.0}/_build_tidalpy.py +14 -4
  223. tidalpy-0.6.0/cython_extensions.json +293 -0
  224. {tidalpy-0.5.5 → tidalpy-0.6.0}/pyproject.toml +10 -9
  225. {tidalpy-0.5.5 → tidalpy-0.6.0}/setup.py +12 -3
  226. tidalpy-0.5.5/Documentation/Issues/Issue35/subproc.py +0 -30
  227. tidalpy-0.5.5/Documentation/Issues/Issue35/test.py +0 -88
  228. tidalpy-0.5.5/MANIFEST.in +0 -12
  229. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_a_matrix_package.py +0 -9
  230. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_b_fundamental.py +0 -101
  231. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_c_propagate.py +0 -53
  232. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_a_initial_package.py +0 -30
  233. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_b_known_initial_funcs.py +0 -70
  234. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_c_initial_helper_funcs.py +0 -237
  235. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_d_initial_value_calc.py +0 -73
  236. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_a_interfaces_package.py +0 -16
  237. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_b_known_interfaces.py +0 -121
  238. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_c_interface_funcs.py +0 -72
  239. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_a_derivatives_package.py +0 -19
  240. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_b_known_derivatives.py +0 -71
  241. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_c_derivative_funcs.py +0 -128
  242. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_a_collapse_package.py +0 -12
  243. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_b_surface_condition.py +0 -188
  244. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_c_generalized_collapse.py +0 -175
  245. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_a_numerical_package.py +0 -11
  246. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_b_radial_solver.py +0 -145
  247. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_d_alma_compare_old.py +0 -138
  248. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/test_a_love.py +0 -63
  249. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/test_b_sensitivity.py +0 -131
  250. tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/test_c_nondimensional.py +0 -127
  251. tidalpy-0.5.5/Tests/Test_Old/Test_SetY_MultiLayer/Test_Matrix/test_d_radial_tidal_heating.py +0 -99
  252. tidalpy-0.5.5/Tests/Test_Utilities/Test_Dimensions/test_nondimensional.py +0 -67
  253. tidalpy-0.5.5/TidalPy/RadialSolver/__init__.py +0 -1
  254. tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/base.pxd +0 -52
  255. tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/base.pyx +0 -195
  256. tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/odes.c +0 -36469
  257. tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/odes.pxd +0 -58
  258. tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/odes.pyx +0 -885
  259. tidalpy-0.5.5/TidalPy/RadialSolver/love.pxd +0 -5
  260. tidalpy-0.5.5/TidalPy/RadialSolver/love.pyx +0 -54
  261. tidalpy-0.5.5/TidalPy/RadialSolver/solutions.pxd +0 -5
  262. tidalpy-0.5.5/TidalPy/RadialSolver/solutions.pyx +0 -71
  263. tidalpy-0.5.5/TidalPy/RadialSolver/solver.pxd +0 -51
  264. tidalpy-0.5.5/TidalPy/RadialSolver/solver.pyx +0 -1324
  265. tidalpy-0.5.5/TidalPy/RadialSolver/starting/driver.pyx +0 -201
  266. tidalpy-0.5.5/TidalPy/RadialSolver/starting/saito.pxd +0 -6
  267. tidalpy-0.5.5/TidalPy/constants.py +0 -49
  268. tidalpy-0.5.5/TidalPy/initialize.py +0 -85
  269. tidalpy-0.5.5/TidalPy/radial_solver/__init__.py +0 -3
  270. tidalpy-0.5.5/TidalPy/radial_solver/love.py +0 -62
  271. tidalpy-0.5.5/TidalPy/radial_solver/matrix/__init__.py +0 -2
  272. tidalpy-0.5.5/TidalPy/radial_solver/matrix/fundamental_solid.py +0 -501
  273. tidalpy-0.5.5/TidalPy/radial_solver/matrix/propagate.py +0 -103
  274. tidalpy-0.5.5/TidalPy/radial_solver/nondimensional.py +0 -209
  275. tidalpy-0.5.5/TidalPy/radial_solver/numerical/__init__.py +0 -1
  276. tidalpy-0.5.5/TidalPy/radial_solver/numerical/collapse/__init__.py +0 -2
  277. tidalpy-0.5.5/TidalPy/radial_solver/numerical/collapse/generalized_collapse.py +0 -292
  278. tidalpy-0.5.5/TidalPy/radial_solver/numerical/collapse/surface_condition.py +0 -211
  279. tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/__init__.py +0 -86
  280. tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/odes.py +0 -262
  281. tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_dynamic.py +0 -296
  282. tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_dynamic_incomp.py +0 -274
  283. tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_static.py +0 -243
  284. tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_static_incomp.py +0 -234
  285. tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/__init__.py +0 -193
  286. tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/functions.py +0 -234
  287. tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/initial_solution_dynamic.py +0 -690
  288. tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/initial_solution_dynamic_incomp.py +0 -424
  289. tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/initial_solution_static.py +0 -348
  290. tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/initial_solution_static_incomp.py +0 -157
  291. tidalpy-0.5.5/TidalPy/radial_solver/numerical/interfaces/__init__.py +0 -90
  292. tidalpy-0.5.5/TidalPy/radial_solver/numerical/interfaces/liquid_liquid.py +0 -221
  293. tidalpy-0.5.5/TidalPy/radial_solver/numerical/interfaces/liquid_solid.py +0 -200
  294. tidalpy-0.5.5/TidalPy/radial_solver/numerical/interfaces/solid_liquid.py +0 -207
  295. tidalpy-0.5.5/TidalPy/radial_solver/numerical/interfaces/solid_solid.py +0 -146
  296. tidalpy-0.5.5/TidalPy/radial_solver/numerical/solver.py +0 -383
  297. tidalpy-0.5.5/TidalPy/radial_solver/sensitivity.py +0 -266
  298. tidalpy-0.5.5/TidalPy/tides/modes/multilayer_modes.py +0 -595
  299. tidalpy-0.5.5/TidalPy/tides/multilayer/__init__.py +0 -3
  300. tidalpy-0.5.5/TidalPy/tides/multilayer/heating.py +0 -87
  301. tidalpy-0.5.5/TidalPy/utilities/constants_x.pxd +0 -4
  302. tidalpy-0.5.5/TidalPy/utilities/constants_x.pyx +0 -16
  303. tidalpy-0.5.5/TidalPy/utilities/dimensions/nondimensional.pxd +0 -40
  304. tidalpy-0.5.5/TidalPy/utilities/dimensions/nondimensional.pyx +0 -236
  305. tidalpy-0.5.5/TidalPy/utilities/graphics/planet_plot.py +0 -148
  306. tidalpy-0.5.5/TidalPy/utilities/math/special_x.pxd +0 -1
  307. tidalpy-0.5.5/cython_extensions.json +0 -162
  308. {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/multilayer_radial_solver.py +0 -0
  309. {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_base.py +0 -0
  310. {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_build_world.py +0 -0
  311. {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_complex_compliance_func.py +0 -0
  312. {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_eccentricity_func.py +0 -0
  313. {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_quick_calcs.py +0 -0
  314. {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_tides.py +0 -0
  315. {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/run_suite.py +0 -0
  316. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetA_Package/test_a_version.py +0 -0
  317. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetA_Package/test_io.py +0 -0
  318. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetA_Package/test_tidalpy_config.py +0 -0
  319. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_b_utilities_functools.py +0 -0
  320. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_b_utilities_numpy.py +0 -0
  321. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_c_tools_timing.py +0 -0
  322. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_d_basic_classes.py +0 -0
  323. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_h_voxel_volume.py +0 -0
  324. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_i_spherical_mass.py +0 -0
  325. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetE_Functional/test_a_performance_funcs.py +0 -0
  326. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Dynamics/test_dual_dissipation.py +0 -0
  327. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Dynamics/test_single_dissipation.py +0 -0
  328. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Rheology/test_compliance_funcs.py +0 -0
  329. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Rheology/test_partialmelt_funcs.py +0 -0
  330. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_a_orbital_funcs.py +0 -0
  331. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_c_mode_manipulation.py +0 -0
  332. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetH_QuickCalc/test_a_quick_dissipation_calc_single_body.py +0 -0
  333. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetH_QuickCalc/test_b_quick_dissipation_calc_dual_body.py +0 -0
  334. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetK_PlanetBuild/test_b_build_layered.py +0 -0
  335. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetL_Orbit/Test_OrbitClass/test_a_orbit_construct.py +0 -0
  336. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetL_Orbit/Test_OrbitClass/test_b_orbit_basic_manipulation.py +0 -0
  337. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetL_Orbit/test_orbit_averaging.py +0 -0
  338. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetO_OOP_Calcs/test_oop_rheology.py +0 -0
  339. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetO_OOP_Calcs/test_radiogenic.py +0 -0
  340. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetS_Tides/Test_Collapse_Modes/test_collapse_mode_freqs.py +0 -0
  341. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetS_Tides/Test_Heating/test_heating.py +0 -0
  342. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetS_Tides/Test_Unique_Modes/test_unique_freqs.py +0 -0
  343. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_a_physics_orbit_global_tides.py +0 -0
  344. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_b_physics_orbit_layered_tides.py +0 -0
  345. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_c_physics_orbit_dual_body_tides.py +0 -0
  346. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetX_Potential/test_a_potential.py +0 -0
  347. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetX_Potential/test_b_mode_potential.py +0 -0
  348. {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetZA_Multiprocessing/test_multiprocessing.py +0 -0
  349. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/__init__.py +0 -0
  350. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/__init__.py +0 -0
  351. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/burnman_defaultc.py +0 -0
  352. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/defaults.py +0 -0
  353. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/__init__.py +0 -0
  354. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/custom/__init__.py +0 -0
  355. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/custom/pyrite.py +0 -0
  356. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/helper.py +0 -0
  357. {tidalpy-0.5.5/TidalPy/RadialSolver/boundaries → tidalpy-0.6.0/TidalPy/Material}/__init__.py +0 -0
  358. {tidalpy-0.5.5/TidalPy/RadialSolver/collapse → tidalpy-0.6.0/TidalPy/Material/eos}/__init__.py +0 -0
  359. {tidalpy-0.5.5/TidalPy/RadialSolver/derivatives → tidalpy-0.6.0/TidalPy/Material/eos/methods}/__init__.py +0 -0
  360. {tidalpy-0.5.5/TidalPy/RadialSolver/interfaces → tidalpy-0.6.0/TidalPy/RadialSolver/boundaries}/__init__.py +0 -0
  361. {tidalpy-0.5.5/TidalPy/RadialSolver/starting → tidalpy-0.6.0/TidalPy/RadialSolver/collapse}/__init__.py +0 -0
  362. {tidalpy-0.5.5/TidalPy/structures/helpers → tidalpy-0.6.0/TidalPy/RadialSolver/derivatives}/__init__.py +0 -0
  363. {tidalpy-0.5.5/TidalPy/utilities → tidalpy-0.6.0/TidalPy/RadialSolver/interfaces}/__init__.py +0 -0
  364. {tidalpy-0.5.5/TidalPy/utilities/dimensions → tidalpy-0.6.0/TidalPy/RadialSolver/starting}/__init__.py +0 -0
  365. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/WorldPack/WorldPack.zip +0 -0
  366. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/cache.py +0 -0
  367. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/cooling/__init__.py +0 -0
  368. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/cooling/cooling_models.py +0 -0
  369. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/dynamics/__init__.py +0 -0
  370. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/dynamics/dual_dissipation.py +0 -0
  371. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/dynamics/single_dissipation.py +0 -0
  372. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/numba_scipy/__init__.py +0 -0
  373. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/numba_scipy/special/__init__.py +0 -0
  374. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/numba_scipy/special/overloads.py +0 -0
  375. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/numba_scipy/special/signatures.py +0 -0
  376. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/orbit/__init__.py +0 -0
  377. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/orbit/averaging.py +0 -0
  378. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/radiogenics/__init__.py +0 -0
  379. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/radiogenics/radiogenic_models.py +0 -0
  380. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/__init__.py +0 -0
  381. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/base.pxd +0 -0
  382. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/complex_compliance/__init__.py +0 -0
  383. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/complex_compliance/complex_compliance.py +0 -0
  384. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/complex_compliance/compliance_models.py +0 -0
  385. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/models.pxd +0 -0
  386. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/partial_melt/__init__.py +0 -0
  387. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/partial_melt/melting_models.py +0 -0
  388. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/viscosity/__init__.py +0 -0
  389. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/viscosity/viscosity.py +0 -0
  390. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/stellar/__init__.py +0 -0
  391. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/stellar/habitability.py +0 -0
  392. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/__init__.py +0 -0
  393. {tidalpy-0.5.5/TidalPy/utilities/io → tidalpy-0.6.0/TidalPy/structures/helpers}/__init__.py +0 -0
  394. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/layers/__init__.py +0 -0
  395. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/layers/gas.py +0 -0
  396. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/layers/helper.py +0 -0
  397. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/orbit/__init__.py +0 -0
  398. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_builder/__init__.py +0 -0
  399. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/__init__.py +0 -0
  400. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/gas.py +0 -0
  401. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/__init__.py +0 -0
  402. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/ctl_funcs/__init__.py +0 -0
  403. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/ctl_funcs/ctl_funcs.py +0 -0
  404. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/__init__.py +0 -0
  405. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/heating.py +0 -0
  406. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/__init__.py +0 -0
  407. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/love1d.py +0 -0
  408. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/methods/__init__.py +0 -0
  409. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/methods/layered.py +0 -0
  410. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/__init__.py +0 -0
  411. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/collapse_modes.py +0 -0
  412. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/__init__.py +0 -0
  413. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl2.py +0 -0
  414. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl3.py +0 -0
  415. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl4.py +0 -0
  416. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl5.py +0 -0
  417. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl6.py +0 -0
  418. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl7.py +0 -0
  419. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl2.py +0 -0
  420. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl3.py +0 -0
  421. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl4.py +0 -0
  422. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl5.py +0 -0
  423. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl6.py +0 -0
  424. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl7.py +0 -0
  425. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/modes.py +0 -0
  426. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/multilayer/displacements.py +0 -0
  427. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/__init__.py +0 -0
  428. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/synchronous_low_e.py +0 -0
  429. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/universal_coeffs.py +0 -0
  430. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/toolbox/__init__.py +0 -0
  431. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/toolbox/quick_tides.py +0 -0
  432. {tidalpy-0.5.5/TidalPy/utilities/math → tidalpy-0.6.0/TidalPy/utilities}/__init__.py +0 -0
  433. /tidalpy-0.5.5/TidalPy/utilities/types_x.pyx → /tidalpy-0.6.0/TidalPy/utilities/arrays/__init__.py +0 -0
  434. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/__init__.py +0 -0
  435. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/base.py +0 -0
  436. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/base_x.pxd +0 -0
  437. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/config/__init__.py +0 -0
  438. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/model/__init__.py +0 -0
  439. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/model/functional_utils.py +0 -0
  440. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/model/model_utils.py +0 -0
  441. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/conversions/__init__.py +0 -0
  442. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/conversions/conversions.py +0 -0
  443. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/conversions/conversions_x.pxd +0 -0
  444. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/conversions/timing.py +0 -0
  445. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/dictionary_utils.py +0 -0
  446. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/exoplanets/__init__.py +0 -0
  447. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/global_map.py +0 -0
  448. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/grid_plot.py +0 -0
  449. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/multilayer/RN08-Data.csv +0 -0
  450. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/multilayer/T05-Data.csv +0 -0
  451. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/multilayer/__init__.py +0 -0
  452. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/phasespace_plot.py +0 -0
  453. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/integration/__init__.py +0 -0
  454. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/integration/cyrk_helper.py +0 -0
  455. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/integration/julia_helper.py +0 -0
  456. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/integration/numbalsoda_helper.py +0 -0
  457. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/integration/scipy_helper.py +0 -0
  458. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/io/pathing.py +0 -0
  459. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/io/progress.py +0 -0
  460. /tidalpy-0.5.5/TidalPy/utilities/math/special.py → /tidalpy-0.6.0/TidalPy/utilities/math/numba_special.py +0 -0
  461. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/multiprocessing/__init__.py +0 -0
  462. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/numpy_helper/__init__.py +0 -0
  463. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/numpy_helper/array_other.py +0 -0
  464. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/numpy_helper/array_shape.py +0 -0
  465. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/performance/__init__.py +0 -0
  466. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/performance/memory.py +0 -0
  467. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/performance/numba.py +0 -0
  468. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/performance/special/__init__.py +0 -0
  469. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/performance/special/factorial.py +0 -0
  470. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/spherical_helper/__init__.py +0 -0
  471. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/spherical_helper/mass.py +0 -0
  472. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/string_helper/__init__.py +0 -0
  473. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/string_helper/string_helper.py +0 -0
  474. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/types.py +0 -0
  475. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/types_x.pxd +0 -0
  476. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/dependency_links.txt +0 -0
  477. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/entry_points.txt +0 -0
  478. {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/top_level.txt +0 -0
  479. {tidalpy-0.5.5 → tidalpy-0.6.0}/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
1
  Metadata-Version: 2.1
2
2
  Name: TidalPy
3
- Version: 0.5.5
3
+ Version: 0.6.0
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.
@@ -208,15 +209,16 @@ Requires-Dist: toml>=0.10.2
208
209
  Requires-Dist: dill>=0.3.2
209
210
  Requires-Dist: psutil>=5.8.0
210
211
  Requires-Dist: pathos>=0.2.0
211
- Requires-Dist: cyrk<0.10,>=0.8.7
212
+ Requires-Dist: cyrk<0.13.0,>=0.12.1
212
213
  Requires-Dist: astropy
213
214
  Requires-Dist: astroquery
214
- Requires-Dist: matplotlib>=3.4.2
215
- Requires-Dist: cmcrameri>=1.4
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
216
218
  Provides-Extra: dev
217
219
  Requires-Dist: jupyter; extra == "dev"
218
220
  Requires-Dist: pytest; extra == "dev"
219
- Requires-Dist: cmcrameri>=1.4; extra == "dev"
221
+ Requires-Dist: cmcrameri<2.0,>=1.4; extra == "dev"
220
222
  Requires-Dist: matplotlib>=3.4.2; extra == "dev"
221
223
  Requires-Dist: palettable>=3.3.0; extra == "dev"
222
224
  Requires-Dist: ipympl>=0.8.7; extra == "dev"
@@ -224,13 +226,13 @@ Requires-Dist: julia>=0.5.7; extra == "dev"
224
226
  Requires-Dist: diffeqpy>=1.2.0; extra == "dev"
225
227
  Provides-Extra: graphics
226
228
  Requires-Dist: jupyter; extra == "graphics"
227
- Requires-Dist: cmcrameri>=1.4; extra == "graphics"
229
+ Requires-Dist: cmcrameri<2.0,>=1.4; extra == "graphics"
228
230
  Requires-Dist: matplotlib>=3.4.2; extra == "graphics"
229
231
  Requires-Dist: palettable>=3.3.0; extra == "graphics"
230
232
  Requires-Dist: ipympl>=0.8.7; extra == "graphics"
231
233
  Provides-Extra: burnman
232
234
  Requires-Dist: autograd; extra == "burnman"
233
- Requires-Dist: burnman; extra == "burnman"
235
+ Requires-Dist: burnman<3,>=2.1.0; extra == "burnman"
234
236
  Provides-Extra: cartopy
235
237
  Requires-Dist: cartopy>=0.22.0; extra == "cartopy"
236
238
  Provides-Extra: julia
@@ -250,48 +252,24 @@ Requires-Dist: diffeqpy>=1.2.0; extra == "julia"
250
252
 
251
253
  ---
252
254
 
253
- <a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.5.5 Alpha-orange" alt="TidalPy Version 0.5.5 Alpha" /></a>
255
+ <a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.5.5 Alpha-orange" alt="TidalPy Version 0.6.0 Alpha" /></a>
254
256
 
255
257
  **Tidal Dynamics and Thermal-Orbital Evolution Software Suite Implemented in Cython and Python**
256
258
 
257
259
  TidalPy is an open-source software suite that utilizes a semi-analytic approach to estimate tidal heating,
258
260
  orbit-rotation evolution, and thermal changes for rocky and icy worlds. It has been used to simulate the thermal-orbital
259
261
  evolution of moons within our Solar System as well as exoplanets beyond. TidalPy's `RadialSolver` package can accurately
260
- estimate the viscoelastic Love and Shida numbers for a multi-layered world, including the effects of liquid layers,
261
- compressibility, dynamic tides, and advanced rheological models. This model has been used to study the tidal response
262
- 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.
263
265
 
264
266
  Have any questions? Feel free to leave an [issue](https://github.com/jrenaud90/TidalPy/issues) or send a message to
265
267
  [TidalPy@gmail.com](mailto:tidalpy@gmail.com).
266
268
 
267
- ## Related Software
268
-
269
- Below is a non-exhaustive list of publicly available software that perform similar or parallel calculations as TidalPy.
270
-
271
- * Are you interested in the habitability of a planet? With considerations of tides, atmospheres, water content, solar
272
- interactions? Check out...
273
- * [VPLanet](https://github.com/VirtualPlanetaryLaboratory/vplanet)
274
- * Are you interested in the orbital evolution of multiple planets with each planet influencing one another? Consider an
275
- N-body approach like...
276
- * [Posidonius (formerly Mercury-T)](https://github.com/marblestation/posidonius)
277
- * [ReboundX](https://github.com/dtamayo/reboundx)
278
- * Don't care about tides or orbital dynamics but are instead interested in interior structure and composition of
279
- planets?
280
- * [BurnMan](https://github.com/geodynamics/burnman)
281
- * [PerpleX](http://www.perplex.ethz.ch/)
282
- * Are you interested in tides, interiors, *and* the chemical evolution of small worlds but don't care about
283
- non-synchronous rotation or compressibility of planets?
284
- * [IcyDwarf](https://github.com/MarcNeveu/IcyDwarf)
285
-
286
- However, if you want high fidelity tidal, orbital, spin, and interior models --- then you have come to the right place!
287
- Read below for instructions on how to install and use TidalPy.
288
-
289
269
  # How to Install
290
270
 
291
271
  ## Compatibility
292
272
 
293
- *As of TidalPy v0.5.0*:
294
-
295
273
  * **Windows-Latest**: *Installation & tests passed.*
296
274
  * **MacOS-Latest**: *Installation & tests passed.*
297
275
  * **Ubuntu-Latest**: *Installation & tests passed.*
@@ -342,21 +320,6 @@ After GEOS is installed you can pip install the rest,
342
320
 
343
321
  `pip install pyproj shapely pyshp cartopy`
344
322
 
345
- ## DiffEqPy / Julia
346
-
347
- TidalPy provides the option to use the [Julia](https://julialang.org/) programming language's differential equation
348
- solver for python: [diffeqpy](https://github.com/SciML/diffeqpy). To utilize this package you first need to ensure
349
- that Julia is installed on your machine and available via the system's environment path.
350
-
351
- * Install the Julia language from [https://julialang.org/downloads/](https://julialang.org/downloads/)
352
- * Add Julia's directory and its `bin` subdirectory to your system's path.
353
- * Open an elevated ("as administrator") terminal, command prompt, or powershell.
354
- * If you are using a virtual Python environment make sure it is active.
355
- * Install `julia` and `diffeqpy` for python using pip
356
- * Run `pip install julia diffeqpy`
357
- * Open Python on your elevated terminal (the following steps may take a while to compile).
358
- * Run `import julia; julia.install(); import diffeqpy; diffeqpy.install()`
359
-
360
323
  ## Installation Troubleshooting
361
324
 
362
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!_
@@ -369,7 +332,7 @@ _If you ran into a problem that is not listed below please [submit an issue](htt
369
332
 
370
333
  # How to Use TidalPy
371
334
 
372
- 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
373
336
  info about TidalPy. For now the best way to learn how to use TidalPy is by checking out the `Demos` directory. There
374
337
  are "beginner" [Jupyter notebooks](https://jupyter.org/) that are a great starting point.
375
338
 
@@ -384,9 +347,9 @@ the end of this file.
384
347
 
385
348
  ## Citing TidalPy
386
349
 
387
- 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).
388
351
 
389
- 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):
390
353
 
391
354
  * Rheological Modeling Package:
392
355
  * [Tidally Heated Terrestrial Exoplanets: Viscoelastic Response Models](https://ui.adsabs.harvard.edu/abs/2009ApJ...707.1000H/abstract)
@@ -435,6 +398,8 @@ TidalPy has been improved by numerous contributors some of which you can find [h
435
398
 
436
399
  TidalPy has benefited from work and conversations with the following:
437
400
  - Wade G. Henning (U. of Maryland, College Park / NASA GSFC)
401
+ - Michael Efroimsky (U.S. Naval Observatory)
438
402
  - Sander Goossens (NASA GSFC)
439
403
  - Marc Neveu (U. of Maryland, College Park / NASA GSFC)
440
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.5 Alpha-orange" alt="TidalPy Version 0.5.5 Alpha" /></a>
14
+ <a href="https://github.com/jrenaud90/TidalPy/releases"><img src="https://img.shields.io/badge/TidalPy-0.5.5 Alpha-orange" alt="TidalPy Version 0.6.0 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