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.
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/multimode_solver.py +0 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/LICENSE.md +3 -2
- tidalpy-0.6.0/MANIFEST.in +23 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/PKG-INFO +20 -55
- {tidalpy-0.5.5 → tidalpy-0.6.0}/README.md +9 -46
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Functions/test_rheology.py +0 -3
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Math/test_utilities_complex.py +28 -3
- tidalpy-0.6.0/Tests/Test_Math/test_utilities_numerics.py +24 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Math/test_utilities_special.py +1 -4
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_c_tools_conversions.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_g_math_special_funcs.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_b_dissipation.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetK_PlanetBuild/test_a_build_star.py +1 -3
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetK_PlanetBuild/test_d_build_burnman_planet.py +0 -3
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetY_MultiLayer/Test_Matrix/test_e_strain.py +77 -73
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetY_MultiLayer/Test_Numerical_Int/test_m1_multilayer_modes.py +65 -34
- tidalpy-0.6.0/Tests/Test_Package/test_configs.py +60 -0
- tidalpy-0.6.0/Tests/Test_RadialSolver/Test_PropMatrix/test_a_solid_matrix.py +72 -0
- tidalpy-0.6.0/Tests/Test_RadialSolver/Test_PropMatrix/test_b_radial_solver_matrix.py +75 -0
- tidalpy-0.6.0/Tests/Test_RadialSolver/test_a_boundary_conditions.py +68 -0
- tidalpy-0.6.0/Tests/Test_RadialSolver/test_a_helpers.py +582 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_RadialSolver/test_a_interfaces.py +5 -8
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_RadialSolver/test_a_starting_condtions.py +3 -6
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_RadialSolver/test_b_radial_solver_1layer.py +14 -13
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_RadialSolver/test_d_alma_compare.py +81 -46
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_RadialSolver/test_e_radial_solver_3layer.py +59 -41
- tidalpy-0.6.0/Tests/Test_RadialSolver/test_f_radial_solver_errors.py +305 -0
- tidalpy-0.6.0/Tests/Test_Tides/test_d_radial_sensativity.py +239 -0
- tidalpy-0.6.0/Tests/Test_Utilities/Test_Dimensions/test_nondimensional.py +53 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Utilities/Test_Exoplanets/test_exoplanet_download.py +0 -5
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/build.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/burnman_layer.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/burnman_world.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/conversion.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/custom/constant.py +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/custom/ice.py +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/package.py +1 -1
- tidalpy-0.6.0/TidalPy/Material/eos/__init__.pxd +8 -0
- tidalpy-0.6.0/TidalPy/Material/eos/eos_solution.cpp +27023 -0
- tidalpy-0.6.0/TidalPy/Material/eos/eos_solution.pxd +94 -0
- tidalpy-0.6.0/TidalPy/Material/eos/eos_solution.pyx +2 -0
- tidalpy-0.6.0/TidalPy/Material/eos/eos_solution_.cpp +394 -0
- tidalpy-0.6.0/TidalPy/Material/eos/eos_solution_.hpp +123 -0
- tidalpy-0.6.0/TidalPy/Material/eos/methods/__init__.pxd +1 -0
- tidalpy-0.6.0/TidalPy/Material/eos/methods/interpolate.cpp +27756 -0
- tidalpy-0.6.0/TidalPy/Material/eos/methods/interpolate.pxd +21 -0
- tidalpy-0.6.0/TidalPy/Material/eos/methods/interpolate.pyx +70 -0
- tidalpy-0.6.0/TidalPy/Material/eos/ode.cpp +27536 -0
- tidalpy-0.6.0/TidalPy/Material/eos/ode.pxd +24 -0
- tidalpy-0.6.0/TidalPy/Material/eos/ode.pyx +70 -0
- tidalpy-0.6.0/TidalPy/Material/eos/solver.cpp +28955 -0
- tidalpy-0.6.0/TidalPy/Material/eos/solver.pxd +26 -0
- tidalpy-0.6.0/TidalPy/Material/eos/solver.pyx +248 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/__init__.pxd +2 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/__init__.py +2 -0
- tidalpy-0.5.5/TidalPy/RadialSolver/boundaries/boundaries.c → tidalpy-0.6.0/TidalPy/RadialSolver/boundaries/boundaries.cpp +276 -80
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/boundaries/boundaries.pxd +8 -5
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/boundaries/boundaries.pyx +82 -22
- tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/base.c → tidalpy-0.6.0/TidalPy/RadialSolver/boundaries/surface_bc.cpp +10075 -9888
- tidalpy-0.6.0/TidalPy/RadialSolver/boundaries/surface_bc.pxd +8 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/boundaries/surface_bc.pyx +166 -0
- tidalpy-0.5.5/TidalPy/RadialSolver/collapse/collapse.c → tidalpy-0.6.0/TidalPy/RadialSolver/collapse/collapse.cpp +100 -77
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/collapse/collapse.pxd +10 -7
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/collapse/collapse.pyx +81 -13
- tidalpy-0.5.5/TidalPy/utilities/constants_x.c → tidalpy-0.6.0/TidalPy/RadialSolver/constants.cpp +102 -105
- tidalpy-0.6.0/TidalPy/RadialSolver/constants.pxd +3 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/constants.pyx +7 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/derivatives/odes.cpp +30333 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/derivatives/odes.pxd +71 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/derivatives/odes.pyx +790 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/helpers.cpp +39297 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/helpers.pyx +549 -0
- tidalpy-0.5.5/TidalPy/RadialSolver/interfaces/interfaces.c → tidalpy-0.6.0/TidalPy/RadialSolver/interfaces/interfaces.cpp +542 -387
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/interfaces/interfaces.pxd +6 -4
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/interfaces/interfaces.pyx +17 -20
- tidalpy-0.5.5/TidalPy/RadialSolver/interfaces/reversed.c → tidalpy-0.6.0/TidalPy/RadialSolver/interfaces/reversed.cpp +321 -148
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/interfaces/reversed.pxd +10 -6
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/interfaces/reversed.pyx +13 -14
- tidalpy-0.5.5/TidalPy/RadialSolver/love.c → tidalpy-0.6.0/TidalPy/RadialSolver/love.cpp +109 -370
- tidalpy-0.6.0/TidalPy/RadialSolver/love.pxd +6 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/love.pyx +30 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/love_.cpp +33 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/love_.hpp +7 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/matrix.cpp +30894 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/matrix.pxd +25 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/matrix.pyx +522 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/matrix_types/__init__.py +1 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/matrix_types/solid_matrix.cpp +31909 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/matrix_types/solid_matrix.pxd +13 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/matrix_types/solid_matrix.pyx +372 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/rs_solution.cpp +39792 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/rs_solution.pxd +106 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/rs_solution.pyx +567 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/rs_solution_.cpp +197 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/rs_solution_.hpp +79 -0
- tidalpy-0.5.5/TidalPy/utilities/dimensions/nondimensional.c → tidalpy-0.6.0/TidalPy/RadialSolver/shooting.cpp +12789 -12672
- tidalpy-0.6.0/TidalPy/RadialSolver/shooting.pxd +40 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/shooting.pyx +965 -0
- tidalpy-0.5.5/TidalPy/RadialSolver/solver.c → tidalpy-0.6.0/TidalPy/RadialSolver/solver.cpp +6796 -12120
- tidalpy-0.6.0/TidalPy/RadialSolver/solver.pxd +47 -0
- tidalpy-0.6.0/TidalPy/RadialSolver/solver.pyx +842 -0
- tidalpy-0.5.5/TidalPy/RadialSolver/starting/common.c → tidalpy-0.6.0/TidalPy/RadialSolver/starting/common.cpp +232 -77
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/common.pxd +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/common.pyx +10 -7
- tidalpy-0.5.5/TidalPy/RadialSolver/starting/driver.c → tidalpy-0.6.0/TidalPy/RadialSolver/starting/driver.cpp +1116 -1162
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/driver.pxd +11 -6
- tidalpy-0.6.0/TidalPy/RadialSolver/starting/driver.pyx +232 -0
- tidalpy-0.5.5/TidalPy/RadialSolver/starting/kamata.c → tidalpy-0.6.0/TidalPy/RadialSolver/starting/kamata.cpp +720 -573
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/kamata.pxd +13 -15
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/kamata.pyx +128 -149
- tidalpy-0.5.5/TidalPy/RadialSolver/starting/saito.c → tidalpy-0.6.0/TidalPy/RadialSolver/starting/saito.cpp +43 -28
- tidalpy-0.6.0/TidalPy/RadialSolver/starting/saito.pxd +6 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/saito.pyx +14 -17
- tidalpy-0.5.5/TidalPy/RadialSolver/starting/takeuchi.c → tidalpy-0.6.0/TidalPy/RadialSolver/starting/takeuchi.cpp +593 -446
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/takeuchi.pxd +12 -12
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/RadialSolver/starting/takeuchi.pyx +123 -145
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/__init__.py +25 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/configurations.py +61 -13
- tidalpy-0.6.0/TidalPy/constants.cpp +6331 -0
- tidalpy-0.6.0/TidalPy/constants.pxd +67 -0
- tidalpy-0.6.0/TidalPy/constants.pyx +139 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/cooling/cooling.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/defaultc.py +4 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/exceptions.py +4 -0
- tidalpy-0.6.0/TidalPy/initialize.py +105 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/logger.py +67 -31
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/output.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/paths.py +4 -4
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/radiogenics/radiogenics.py +1 -2
- tidalpy-0.5.5/TidalPy/rheology/base.c → tidalpy-0.6.0/TidalPy/rheology/base.cpp +575 -434
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/base.pyx +12 -12
- tidalpy-0.5.5/TidalPy/rheology/models.c → tidalpy-0.6.0/TidalPy/rheology/models.cpp +1092 -907
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/models.pyx +27 -26
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/partial_melt/partialmelt.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/rheology.py +1 -3
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/viscosity/viscosity_models.py +3 -3
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/stellar/insolation.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/stellar/stellar.py +1 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/helpers/orbit_config.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/layers/basic.py +10 -15
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/layers/physics.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/orbit/base.py +11 -49
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/orbit/physics.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/physical.py +2 -4
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_builder/config_handler.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_builder/iterative_builder.py +3 -11
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_builder/world_builder.py +7 -9
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/basic.py +4 -5
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/layered.py +4 -10
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/stellar.py +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/tidal.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/dissipation.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl2.py +11 -11
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl3.py +10 -10
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl4.py +10 -10
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl5.py +10 -10
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl6.py +10 -10
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/orderl7.py +10 -10
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl2.py +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl3.py +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl4.py +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl5.py +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl6.py +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/orderl7.py +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/methods/base.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/methods/global_approx.py +2 -3
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_manipulation.py +1 -1
- tidalpy-0.6.0/TidalPy/tides/modes/multilayer_modes.py +495 -0
- tidalpy-0.6.0/TidalPy/tides/multilayer/__init__.py +4 -0
- tidalpy-0.6.0/TidalPy/tides/multilayer/heating.cpp +32149 -0
- tidalpy-0.6.0/TidalPy/tides/multilayer/heating.pxd +16 -0
- tidalpy-0.6.0/TidalPy/tides/multilayer/heating.pyx +237 -0
- tidalpy-0.6.0/TidalPy/tides/multilayer/sensitivity.cpp +32846 -0
- tidalpy-0.6.0/TidalPy/tides/multilayer/sensitivity.pxd +21 -0
- tidalpy-0.6.0/TidalPy/tides/multilayer/sensitivity.pyx +335 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/multilayer/stress_strain.py +40 -20
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_med_eccen_gen_obliquity.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_med_eccen_med_obliquity.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_med_eccen_no_obliquity.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_modes_low_eccen_gen_obliquity.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_modes_med_eccen_gen_obliquity.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_modes_med_eccen_med_obliquity.py +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/nsr_modes_med_eccen_no_obliquity.py +1 -1
- tidalpy-0.6.0/TidalPy/utilities/arrays/interp.pxd +25 -0
- tidalpy-0.6.0/TidalPy/utilities/arrays/interp.pyx +2 -0
- tidalpy-0.6.0/TidalPy/utilities/arrays/interp_.cpp +321 -0
- tidalpy-0.6.0/TidalPy/utilities/arrays/interp_.hpp +30 -0
- tidalpy-0.5.5/TidalPy/utilities/classes/base_x.c → tidalpy-0.6.0/TidalPy/utilities/classes/base_x.cpp +31 -16
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/base_x.pyx +1 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/config/config.py +1 -5
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/model/model.py +2 -6
- tidalpy-0.5.5/TidalPy/utilities/conversions/conversions_x.c → tidalpy-0.6.0/TidalPy/utilities/conversions/conversions_x.cpp +188 -56
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/conversions/conversions_x.pyx +11 -11
- tidalpy-0.6.0/TidalPy/utilities/dimensions/__init__.py +0 -0
- tidalpy-0.6.0/TidalPy/utilities/dimensions/nondimensional.cpp +8780 -0
- tidalpy-0.6.0/TidalPy/utilities/dimensions/nondimensional.pxd +18 -0
- tidalpy-0.6.0/TidalPy/utilities/dimensions/nondimensional.pyx +94 -0
- tidalpy-0.6.0/TidalPy/utilities/dimensions/nondimensional_.hpp +13 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/exoplanets/data_download.py +4 -4
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/__init__.py +2 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/multilayer/yplot.py +123 -48
- tidalpy-0.6.0/TidalPy/utilities/graphics/planet_plot.py +266 -0
- tidalpy-0.6.0/TidalPy/utilities/io/__init__.py +0 -0
- tidalpy-0.6.0/TidalPy/utilities/math/__init__.pxd +5 -0
- tidalpy-0.6.0/TidalPy/utilities/math/__init__.py +0 -0
- tidalpy-0.5.5/TidalPy/utilities/math/complex.c → tidalpy-0.6.0/TidalPy/utilities/math/complex.cpp +1584 -635
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/math/complex.pxd +8 -2
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/math/complex.pyx +67 -32
- tidalpy-0.5.5/TidalPy/RadialSolver/solutions.c → tidalpy-0.6.0/TidalPy/utilities/math/numerics.cpp +607 -617
- tidalpy-0.6.0/TidalPy/utilities/math/numerics.pxd +8 -0
- tidalpy-0.6.0/TidalPy/utilities/math/numerics.pyx +37 -0
- tidalpy-0.5.5/TidalPy/utilities/math/special_x.c → tidalpy-0.6.0/TidalPy/utilities/math/special.cpp +490 -647
- tidalpy-0.6.0/TidalPy/utilities/math/special.pxd +1 -0
- tidalpy-0.5.5/TidalPy/utilities/math/special_x.pyx → tidalpy-0.6.0/TidalPy/utilities/math/special.pyx +9 -4
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/multiprocessing/multiprocessing.py +2 -1
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/spherical_helper/volume.py +4 -5
- tidalpy-0.5.5/TidalPy/utilities/types_x.c → tidalpy-0.6.0/TidalPy/utilities/types_x.cpp +32 -15
- tidalpy-0.6.0/TidalPy/utilities/types_x.pyx +2 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/PKG-INFO +20 -55
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/SOURCES.txt +95 -88
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/requires.txt +7 -6
- {tidalpy-0.5.5 → tidalpy-0.6.0}/_build_tidalpy.py +14 -4
- tidalpy-0.6.0/cython_extensions.json +293 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/pyproject.toml +10 -9
- {tidalpy-0.5.5 → tidalpy-0.6.0}/setup.py +12 -3
- tidalpy-0.5.5/Documentation/Issues/Issue35/subproc.py +0 -30
- tidalpy-0.5.5/Documentation/Issues/Issue35/test.py +0 -88
- tidalpy-0.5.5/MANIFEST.in +0 -12
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_a_matrix_package.py +0 -9
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_b_fundamental.py +0 -101
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Matrix/test_c_propagate.py +0 -53
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_a_initial_package.py +0 -30
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_b_known_initial_funcs.py +0 -70
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_c_initial_helper_funcs.py +0 -237
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_a_Initial/test_d_initial_value_calc.py +0 -73
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_a_interfaces_package.py +0 -16
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_b_known_interfaces.py +0 -121
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_b_Interfaces/test_c_interface_funcs.py +0 -72
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_a_derivatives_package.py +0 -19
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_b_known_derivatives.py +0 -71
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_c_Derivatives/test_c_derivative_funcs.py +0 -128
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_a_collapse_package.py +0 -12
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_b_surface_condition.py +0 -188
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/Test_d_Collapse/test_c_generalized_collapse.py +0 -175
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_a_numerical_package.py +0 -11
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_b_radial_solver.py +0 -145
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/Test_Numerical/test_d_alma_compare_old.py +0 -138
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/test_a_love.py +0 -63
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/test_b_sensitivity.py +0 -131
- tidalpy-0.5.5/Tests/Test_Old/Test_SetP_RadialSolver/test_c_nondimensional.py +0 -127
- tidalpy-0.5.5/Tests/Test_Old/Test_SetY_MultiLayer/Test_Matrix/test_d_radial_tidal_heating.py +0 -99
- tidalpy-0.5.5/Tests/Test_Utilities/Test_Dimensions/test_nondimensional.py +0 -67
- tidalpy-0.5.5/TidalPy/RadialSolver/__init__.py +0 -1
- tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/base.pxd +0 -52
- tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/base.pyx +0 -195
- tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/odes.c +0 -36469
- tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/odes.pxd +0 -58
- tidalpy-0.5.5/TidalPy/RadialSolver/derivatives/odes.pyx +0 -885
- tidalpy-0.5.5/TidalPy/RadialSolver/love.pxd +0 -5
- tidalpy-0.5.5/TidalPy/RadialSolver/love.pyx +0 -54
- tidalpy-0.5.5/TidalPy/RadialSolver/solutions.pxd +0 -5
- tidalpy-0.5.5/TidalPy/RadialSolver/solutions.pyx +0 -71
- tidalpy-0.5.5/TidalPy/RadialSolver/solver.pxd +0 -51
- tidalpy-0.5.5/TidalPy/RadialSolver/solver.pyx +0 -1324
- tidalpy-0.5.5/TidalPy/RadialSolver/starting/driver.pyx +0 -201
- tidalpy-0.5.5/TidalPy/RadialSolver/starting/saito.pxd +0 -6
- tidalpy-0.5.5/TidalPy/constants.py +0 -49
- tidalpy-0.5.5/TidalPy/initialize.py +0 -85
- tidalpy-0.5.5/TidalPy/radial_solver/__init__.py +0 -3
- tidalpy-0.5.5/TidalPy/radial_solver/love.py +0 -62
- tidalpy-0.5.5/TidalPy/radial_solver/matrix/__init__.py +0 -2
- tidalpy-0.5.5/TidalPy/radial_solver/matrix/fundamental_solid.py +0 -501
- tidalpy-0.5.5/TidalPy/radial_solver/matrix/propagate.py +0 -103
- tidalpy-0.5.5/TidalPy/radial_solver/nondimensional.py +0 -209
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/__init__.py +0 -1
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/collapse/__init__.py +0 -2
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/collapse/generalized_collapse.py +0 -292
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/collapse/surface_condition.py +0 -211
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/__init__.py +0 -86
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/odes.py +0 -262
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_dynamic.py +0 -296
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_dynamic_incomp.py +0 -274
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_static.py +0 -243
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/derivatives/radial_derivatives_static_incomp.py +0 -234
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/__init__.py +0 -193
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/functions.py +0 -234
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/initial_solution_dynamic.py +0 -690
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/initial_solution_dynamic_incomp.py +0 -424
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/initial_solution_static.py +0 -348
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/initial/initial_solution_static_incomp.py +0 -157
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/interfaces/__init__.py +0 -90
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/interfaces/liquid_liquid.py +0 -221
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/interfaces/liquid_solid.py +0 -200
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/interfaces/solid_liquid.py +0 -207
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/interfaces/solid_solid.py +0 -146
- tidalpy-0.5.5/TidalPy/radial_solver/numerical/solver.py +0 -383
- tidalpy-0.5.5/TidalPy/radial_solver/sensitivity.py +0 -266
- tidalpy-0.5.5/TidalPy/tides/modes/multilayer_modes.py +0 -595
- tidalpy-0.5.5/TidalPy/tides/multilayer/__init__.py +0 -3
- tidalpy-0.5.5/TidalPy/tides/multilayer/heating.py +0 -87
- tidalpy-0.5.5/TidalPy/utilities/constants_x.pxd +0 -4
- tidalpy-0.5.5/TidalPy/utilities/constants_x.pyx +0 -16
- tidalpy-0.5.5/TidalPy/utilities/dimensions/nondimensional.pxd +0 -40
- tidalpy-0.5.5/TidalPy/utilities/dimensions/nondimensional.pyx +0 -236
- tidalpy-0.5.5/TidalPy/utilities/graphics/planet_plot.py +0 -148
- tidalpy-0.5.5/TidalPy/utilities/math/special_x.pxd +0 -1
- tidalpy-0.5.5/cython_extensions.json +0 -162
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/multilayer_radial_solver.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_base.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_build_world.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_complex_compliance_func.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_eccentricity_func.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_quick_calcs.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/performance_tides.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Benchmarks & Performance/Performance/performance suite/run_suite.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetA_Package/test_a_version.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetA_Package/test_io.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetA_Package/test_tidalpy_config.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_b_utilities_functools.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_b_utilities_numpy.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_c_tools_timing.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_d_basic_classes.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_h_voxel_volume.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_i_spherical_mass.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetE_Functional/test_a_performance_funcs.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Dynamics/test_dual_dissipation.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Dynamics/test_single_dissipation.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Rheology/test_compliance_funcs.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Rheology/test_partialmelt_funcs.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_a_orbital_funcs.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetF_Functional/Test_Tides/test_c_mode_manipulation.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetH_QuickCalc/test_a_quick_dissipation_calc_single_body.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetH_QuickCalc/test_b_quick_dissipation_calc_dual_body.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetK_PlanetBuild/test_b_build_layered.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetL_Orbit/Test_OrbitClass/test_a_orbit_construct.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetL_Orbit/Test_OrbitClass/test_b_orbit_basic_manipulation.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetL_Orbit/test_orbit_averaging.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetO_OOP_Calcs/test_oop_rheology.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetO_OOP_Calcs/test_radiogenic.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetS_Tides/Test_Collapse_Modes/test_collapse_mode_freqs.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetS_Tides/Test_Heating/test_heating.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetS_Tides/Test_Unique_Modes/test_unique_freqs.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_a_physics_orbit_global_tides.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetW_OOP_OrbitTides/test_b_physics_orbit_layered_tides.py +0 -0
- {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
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetX_Potential/test_a_potential.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetX_Potential/test_b_mode_potential.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetZA_Multiprocessing/test_multiprocessing.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/burnman_defaultc.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/defaults.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/custom/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/custom/pyrite.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/Extending/burnman/material/helper.py +0 -0
- {tidalpy-0.5.5/TidalPy/RadialSolver/boundaries → tidalpy-0.6.0/TidalPy/Material}/__init__.py +0 -0
- {tidalpy-0.5.5/TidalPy/RadialSolver/collapse → tidalpy-0.6.0/TidalPy/Material/eos}/__init__.py +0 -0
- {tidalpy-0.5.5/TidalPy/RadialSolver/derivatives → tidalpy-0.6.0/TidalPy/Material/eos/methods}/__init__.py +0 -0
- {tidalpy-0.5.5/TidalPy/RadialSolver/interfaces → tidalpy-0.6.0/TidalPy/RadialSolver/boundaries}/__init__.py +0 -0
- {tidalpy-0.5.5/TidalPy/RadialSolver/starting → tidalpy-0.6.0/TidalPy/RadialSolver/collapse}/__init__.py +0 -0
- {tidalpy-0.5.5/TidalPy/structures/helpers → tidalpy-0.6.0/TidalPy/RadialSolver/derivatives}/__init__.py +0 -0
- {tidalpy-0.5.5/TidalPy/utilities → tidalpy-0.6.0/TidalPy/RadialSolver/interfaces}/__init__.py +0 -0
- {tidalpy-0.5.5/TidalPy/utilities/dimensions → tidalpy-0.6.0/TidalPy/RadialSolver/starting}/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/WorldPack/WorldPack.zip +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/cache.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/cooling/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/cooling/cooling_models.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/dynamics/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/dynamics/dual_dissipation.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/dynamics/single_dissipation.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/numba_scipy/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/numba_scipy/special/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/numba_scipy/special/overloads.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/numba_scipy/special/signatures.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/orbit/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/orbit/averaging.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/radiogenics/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/radiogenics/radiogenic_models.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/base.pxd +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/complex_compliance/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/complex_compliance/complex_compliance.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/complex_compliance/compliance_models.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/models.pxd +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/partial_melt/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/partial_melt/melting_models.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/viscosity/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/rheology/viscosity/viscosity.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/stellar/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/stellar/habitability.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/__init__.py +0 -0
- {tidalpy-0.5.5/TidalPy/utilities/io → tidalpy-0.6.0/TidalPy/structures/helpers}/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/layers/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/layers/gas.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/layers/helper.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/orbit/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_builder/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/structures/world_types/gas.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/ctl_funcs/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/ctl_funcs/ctl_funcs.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/eccentricity_funcs/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/heating.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/inclination_funcs/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/love1d.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/methods/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/methods/layered.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/collapse_modes.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl2.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl3.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl4.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl5.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl6.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/eccen_calc_orderl7.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl2.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl3.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl4.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl5.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl6.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/mode_calc_helper/inclin_calc_orderl7.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/modes/modes.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/multilayer/displacements.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/potential/synchronous_low_e.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/tides/universal_coeffs.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/toolbox/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/toolbox/quick_tides.py +0 -0
- {tidalpy-0.5.5/TidalPy/utilities/math → tidalpy-0.6.0/TidalPy/utilities}/__init__.py +0 -0
- /tidalpy-0.5.5/TidalPy/utilities/types_x.pyx → /tidalpy-0.6.0/TidalPy/utilities/arrays/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/base.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/base_x.pxd +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/config/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/model/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/model/functional_utils.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/classes/model/model_utils.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/conversions/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/conversions/conversions.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/conversions/conversions_x.pxd +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/conversions/timing.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/dictionary_utils.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/exoplanets/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/global_map.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/grid_plot.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/multilayer/RN08-Data.csv +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/multilayer/T05-Data.csv +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/multilayer/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/graphics/phasespace_plot.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/integration/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/integration/cyrk_helper.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/integration/julia_helper.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/integration/numbalsoda_helper.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/integration/scipy_helper.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/io/pathing.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/io/progress.py +0 -0
- /tidalpy-0.5.5/TidalPy/utilities/math/special.py → /tidalpy-0.6.0/TidalPy/utilities/math/numba_special.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/multiprocessing/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/numpy_helper/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/numpy_helper/array_other.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/numpy_helper/array_shape.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/performance/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/performance/memory.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/performance/numba.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/performance/special/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/performance/special/factorial.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/spherical_helper/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/spherical_helper/mass.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/string_helper/__init__.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/string_helper/string_helper.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/types.py +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy/utilities/types_x.pxd +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/dependency_links.txt +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/entry_points.txt +0 -0
- {tidalpy-0.5.5 → tidalpy-0.6.0}/TidalPy.egg-info/top_level.txt +0 -0
- {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
|
-
#
|
|
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.
|
|
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: #
|
|
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.
|
|
212
|
+
Requires-Dist: cyrk<0.13.0,>=0.12.1
|
|
212
213
|
Requires-Dist: astropy
|
|
213
214
|
Requires-Dist: astroquery
|
|
214
|
-
Requires-Dist:
|
|
215
|
-
Requires-Dist:
|
|
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
|
|
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
|
|
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.
|
|
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
|
|
262
|
-
of Mercury, Venus, Earth, our Moon, and
|
|
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://
|
|
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 (
|
|
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.
|
|
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
|
|
23
|
-
of Mercury, Venus, Earth, our Moon, and
|
|
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://
|
|
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 (
|
|
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.)
|
|
@@ -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
|
|
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):
|
{tidalpy-0.5.5 → tidalpy-0.6.0}/Tests/Test_Old/Test_SetB_Package/test_c_tools_conversions.py
RENAMED
|
@@ -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)
|