Increase sigma_vel to make problem feasible
This commit is contained in:
parent
ffa3cccd27
commit
d1212072b7
3 changed files with 42 additions and 13 deletions
|
@ -2,7 +2,7 @@
|
||||||
"cells": [
|
"cells": [
|
||||||
{
|
{
|
||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
"execution_count": 3,
|
"execution_count": 7,
|
||||||
"id": "faed859b-c6c1-448f-be71-28d6458e279b",
|
"id": "faed859b-c6c1-448f-be71-28d6458e279b",
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
|
@ -10,8 +10,9 @@
|
||||||
"import numpy as np\n",
|
"import numpy as np\n",
|
||||||
"import matplotlib.pyplot as plt\n",
|
"import matplotlib.pyplot as plt\n",
|
||||||
"import Pk_library as PKL\n",
|
"import Pk_library as PKL\n",
|
||||||
"\n",
|
"import os\n",
|
||||||
"import analysis"
|
"import analysis\n",
|
||||||
|
"import h5py as h5"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -191,9 +192,37 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
"execution_count": null,
|
"execution_count": 11,
|
||||||
"id": "df7fc61f-05d5-498b-a8de-0ca00afaddf5",
|
"id": "df7fc61f-05d5-498b-a8de-0ca00afaddf5",
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
|
"outputs": [
|
||||||
|
{
|
||||||
|
"name": "stdout",
|
||||||
|
"output_type": "stream",
|
||||||
|
"text": [
|
||||||
|
"mock_data.h5 0.521446084349996\n",
|
||||||
|
"mcmc_0.h5 0.05371104376346312\n",
|
||||||
|
"mcmc_20.h5 0.05765913633435571\n",
|
||||||
|
"mcmc_79.h5 0.06103314972961067\n"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"source": [
|
||||||
|
"dirname = 'outdir/example1'\n",
|
||||||
|
"\n",
|
||||||
|
"all_fname = ['mock_data.h5', 'mcmc_0.h5', 'mcmc_20.h5', 'mcmc_79.h5']\n",
|
||||||
|
"\n",
|
||||||
|
"for fname in all_fname:\n",
|
||||||
|
" with h5.File(os.path.join(dirname, fname), 'r') as f:\n",
|
||||||
|
" sfield = f['scalars/BORG_final_density'][:]\n",
|
||||||
|
" print(fname, sfield.std())"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"cell_type": "code",
|
||||||
|
"execution_count": null,
|
||||||
|
"id": "ed3bc75f-b608-4aab-bc44-9798816fada4",
|
||||||
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": []
|
"source": []
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@ bias_sampler_blocked= true
|
||||||
ares_heat = 1.0
|
ares_heat = 1.0
|
||||||
|
|
||||||
[mcmc]
|
[mcmc]
|
||||||
number_to_generate = 50
|
number_to_generate = 5
|
||||||
random_ic = false
|
random_ic = false
|
||||||
init_random_scaling = 0.1
|
init_random_scaling = 0.1
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
[system]
|
[system]
|
||||||
console_output = borg_log
|
console_output = borg_log
|
||||||
VERBOSE_LEVEL = 2
|
VERBOSE_LEVEL = 1
|
||||||
N0 = 64
|
N0 = 32
|
||||||
N1 = 64
|
N1 = 32
|
||||||
N2 = 64
|
N2 = 32
|
||||||
L0 = 500.0
|
L0 = 500.0
|
||||||
L1 = 500.0
|
L1 = 500.0
|
||||||
L2 = 500.0
|
L2 = 500.0
|
||||||
|
@ -20,8 +20,8 @@ bias_sampler_blocked= true
|
||||||
ares_heat = 1.0
|
ares_heat = 1.0
|
||||||
|
|
||||||
[mcmc]
|
[mcmc]
|
||||||
number_to_generate = 1
|
number_to_generate = 10
|
||||||
random_ic = false
|
random_ic = true
|
||||||
init_random_scaling = 0.1
|
init_random_scaling = 0.1
|
||||||
|
|
||||||
[hades]
|
[hades]
|
||||||
|
@ -54,7 +54,7 @@ z0 = 0
|
||||||
|
|
||||||
[mock]
|
[mock]
|
||||||
sigma_dens = 1.
|
sigma_dens = 1.
|
||||||
sigma_vel = 100
|
sigma_vel = 2000
|
||||||
|
|
||||||
[gravity]
|
[gravity]
|
||||||
which_model = lpt
|
which_model = lpt
|
||||||
|
@ -65,5 +65,5 @@ forcesampling = 2
|
||||||
nsteps = 20
|
nsteps = 20
|
||||||
|
|
||||||
[velocity]
|
[velocity]
|
||||||
which_model = cic
|
which_model = linear
|
||||||
rsmooth = 8.
|
rsmooth = 8.
|
||||||
|
|
Loading…
Add table
Reference in a new issue