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