Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 8 additions & 10 deletions docs/source/demo_diffmahpop_diffstarpop_sfh.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -166,19 +166,17 @@
"outputs": [],
"source": [
"from diffstar.diffstarpop import DEFAULT_DIFFSTARPOP_PARAMS\n",
"from diffstar.diffstarpop.kernels.params import (\n",
" DiffstarPop_Params_Diffstarpopfits_mgash, \n",
")\n",
"print(DiffstarPop_Params_Diffstarpopfits_mgash.keys())\n",
"from diffstar.diffstarpop import SIMULATION_FIT_PARAMS\n",
"print(SIMULATION_FIT_PARAMS.keys())\n",
"\n",
"# These are fit for in-situ only SFHs.\n",
"DIFFSTARPOP_UM = DiffstarPop_Params_Diffstarpopfits_mgash[\"smdpl_dr1_nomerging\"]\n",
"DIFFSTARPOP_TNG = DiffstarPop_Params_Diffstarpopfits_mgash[\"tng\"]\n",
"DIFFSTARPOP_GALCUS = DiffstarPop_Params_Diffstarpopfits_mgash[\"galacticus_in_situ\"]\n",
"DIFFSTARPOP_UM = SIMULATION_FIT_PARAMS[\"smdpl_dr1_nomerging\"]\n",
"DIFFSTARPOP_TNG = SIMULATION_FIT_PARAMS[\"tng\"]\n",
"DIFFSTARPOP_GALCUS = SIMULATION_FIT_PARAMS[\"galacticus_in_situ\"]\n",
"\n",
"# These are fit for in-plus-ex-situ SFHs.\n",
"DIFFSTARPOP_UM_plus_exsitu = DiffstarPop_Params_Diffstarpopfits_mgash[\"smdpl_dr1\"]\n",
"DIFFSTARPOP_GALCUS_plus_exsitu = DiffstarPop_Params_Diffstarpopfits_mgash[\"galacticus_in_plus_ex_situ\"]\n"
"DIFFSTARPOP_UM_plus_exsitu = SIMULATION_FIT_PARAMS[\"smdpl_dr1\"]\n",
"DIFFSTARPOP_GALCUS_plus_exsitu = SIMULATION_FIT_PARAMS[\"galacticus_in_plus_ex_situ\"]\n"
]
},
{
Expand Down Expand Up @@ -449,7 +447,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.9"
"version": "3.13.11"
}
},
"nbformat": 4,
Expand Down
Loading