12 lines
296 B
Python
12 lines
296 B
Python
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
|
|
|
|
zstart=50
|
|
astart=1/(1.+zstart)
|
|
|
|
if __name__=="__main__":
|
|
bic.write_icfiles(*bic.run_generation("initial_condition_borg.dat", 0.001, astart, **cosmo), **cosmo)
|