camb can be executed correctly after modification, but when running the chain, an error is reported, MCMC.f90: Couldn't start after 1000 tries - check starting ranges, I don't know what the reason is?
I defined and added a new component, grhos, in the grho_no_de of results.f90, as shown below
class(CAMBdata) :: this
real(dl), intent(in) :: a
real(dl) grhoa2, rhonu
integer nu_i
real(dl) :: a_safe
a_safe = max(a,1e-10) !model 1 防止a=0
!grhoa2 = this%grhok * a**2 + (this%grhoc + this%grhob) * a + this%grhog + this%grhornomass
grhoa2 = this%grhok * a**2 + (this%grhoc + this%grhob) * a + this%grhog + this%grhornomass + this%grhos / a_safe**2 !model 1
At the same time, some relevant parts have also been modified
densities(2,i) = this%grhok * a**2
densities(3,i) = this%grhoc * a
densities(4,i) = this%grhob * a
densities(5,i) = this%grhog
densities(6,i) = this%grhornomass
densities(7,i) = grhonu
densities(8,i) = grhov_t*a**2
densities(9,i) = this%grhos / a_safe**2 !model 1
densities(1,i) = sum(densities(2:9,i)) !model 1
end do
this%grhoc=this%grhocrit*this%CP%omch2/h2
this%grhob=this%grhocrit*this%CP%ombh2/h2
this%grhos=this%grhocrit*this%CP%omsh2/h2 !model 1
this%grhok=this%grhocrit*this%CP%omk
this%Omega_de = 1 -(this%CP%omch2 + this%CP%ombh2 + this%CP%omnuh2)/h2 - this%CP%omk &
- (this%grhornomass + this%grhog)/this%grhocrit - this%CP%omsh2/h2 !model 1
this%grhov=this%grhocrit*this%Omega_de
The total energy density and perturbation equations have also been modified in equations.f90
dgrho_matter=grhob_t*clxb+grhoc_t*clxc+grhos_t*clxs !model 1
clxsdot=-k*(z+vb)
ayprime(EV%ix_clxs)=clxsdot !model 1
grho=grhob_t+grhoc_t+grhor_t+grhog_t+grhov_t+grhos_t !model 1
Then modify the corresponding file in the source, define the new parameters, pass the value of camb, and change the number of parameters from 16 to 17.
Then add the new parameter range to the corresponding file in batch3, param[omsh2] = 0 -1 1 0.001 0.001 #model 1
In paramnames also added new parameters, after recompiling, running the chain, an error appeared
MCMC.f90: Couldn't start after 1000 tries - check starting ranges
I've also tried changing the parameter range, as well as various modifications, and it still doesn't work, can someone tell me what the reason is, and how to fix it? Thank you very much for your help.
I defined and added a new component, grhos, in the grho_no_de of results.f90, as shown below
class(CAMBdata) :: this
real(dl), intent(in) :: a
real(dl) grhoa2, rhonu
integer nu_i
real(dl) :: a_safe
a_safe = max(a,1e-10) !model 1 防止a=0
!grhoa2 = this%grhok * a**2 + (this%grhoc + this%grhob) * a + this%grhog + this%grhornomass
grhoa2 = this%grhok * a**2 + (this%grhoc + this%grhob) * a + this%grhog + this%grhornomass + this%grhos / a_safe**2 !model 1
At the same time, some relevant parts have also been modified
densities(2,i) = this%grhok * a**2
densities(3,i) = this%grhoc * a
densities(4,i) = this%grhob * a
densities(5,i) = this%grhog
densities(6,i) = this%grhornomass
densities(7,i) = grhonu
densities(8,i) = grhov_t*a**2
densities(9,i) = this%grhos / a_safe**2 !model 1
densities(1,i) = sum(densities(2:9,i)) !model 1
end do
this%grhoc=this%grhocrit*this%CP%omch2/h2
this%grhob=this%grhocrit*this%CP%ombh2/h2
this%grhos=this%grhocrit*this%CP%omsh2/h2 !model 1
this%grhok=this%grhocrit*this%CP%omk
this%Omega_de = 1 -(this%CP%omch2 + this%CP%ombh2 + this%CP%omnuh2)/h2 - this%CP%omk &
- (this%grhornomass + this%grhog)/this%grhocrit - this%CP%omsh2/h2 !model 1
this%grhov=this%grhocrit*this%Omega_de
The total energy density and perturbation equations have also been modified in equations.f90
dgrho_matter=grhob_t*clxb+grhoc_t*clxc+grhos_t*clxs !model 1
clxsdot=-k*(z+vb)
ayprime(EV%ix_clxs)=clxsdot !model 1
grho=grhob_t+grhoc_t+grhor_t+grhog_t+grhov_t+grhos_t !model 1
Then modify the corresponding file in the source, define the new parameters, pass the value of camb, and change the number of parameters from 16 to 17.
Then add the new parameter range to the corresponding file in batch3, param[omsh2] = 0 -1 1 0.001 0.001 #model 1
In paramnames also added new parameters, after recompiling, running the chain, an error appeared
MCMC.f90: Couldn't start after 1000 tries - check starting ranges
I've also tried changing the parameter range, as well as various modifications, and it still doesn't work, can someone tell me what the reason is, and how to fix it? Thank you very much for your help.
Statistics: Posted by han ning — March 29 2025