19 lines
507 B
Python
19 lines
507 B
Python
import numpy as np
|
|
import cosmotool as ct
|
|
import borgicgen as bic
|
|
|
|
cosmo={'omega_M_0':0.3175, 'h':0.6711}
|
|
cosmo['omega_lambda_0']=1-cosmo['omega_M_0']
|
|
cosmo['omega_k_0'] = 0
|
|
cosmo['omega_B_0']=0.049
|
|
cosmo['SIGMA8']=0.8344
|
|
cosmo['ns']=0.9624
|
|
|
|
supergen=2
|
|
zstart=50
|
|
astart=1/(1.+zstart)
|
|
halfPixelShift=False
|
|
|
|
if __name__=="__main__":
|
|
bic.write_icfiles(*bic.run_generation("initial_condition_borg.dat", 0.001, astart, cosmo, supersample=2, shiftPixel=halfPixelShift, do_lpt2=False), supergenerate=supergen)
|