Hi everyone,
I am running the stability analysis for a staged construction of tailings dam, I used NorSand model for tailings and clay. At the end of construction, I switched the NorSand of Tailings and Clay to Mohr-Coulomb for the strength reduction method. However, it shows the error of “***both elastic modulii zero in at lease one zone”, could anyone provide some insights to this error?
thanks
Derek
;---------------------------FoS calculation---------------
ini xdisp 0 ydisp 0 yvel 0 xvel 0
set small
ini ex_1 0
def de_par
loop ii (1,izones)
loop jj (1,jzones)
if z_group(ii,jj)=‘Lower_silt_sand’
ex_1(ii,jj)=bulk_current(ii,jj)
end_if
if z_group(ii,jj)=‘Upper_silty_sand’
ex_1(ii,jj)=bulk_current(ii,jj)
end_if
end_loop
end_loop
end
de_par
;
model mo group Clay
model mo group Lower_silt_sand
model mo group Upper_silty_sand
model mo group EM_Tailings
model mo group CM_Tailings
;
def su_peak_assign
loop ii (1,izones)
loop jj (1,jzones)
if model (ii,jj)#1
$esy=-(syy(ii,jj)+pp(ii,jj))
if z_group(ii,jj)=‘Lower_silt_sand’
$poi_=0.333
bulk_mod(ii,jj)=ex_1(ii,jj)
shear_mod(ii,jj)=3.bulk_mod(ii,jj)(1.-2.$poi_)/(2.(1.+$poi_))
tension(ii,jj)=0.
friction(ii,jj)=30.
cohesion(ii,jj)=0.
end_if
if z_group(ii,jj)=‘Upper_silty_sand’
$poi_=0.333
bulk_mod(ii,jj)=ex_1(ii,jj)
shear_mod(ii,jj)=3.bulk_mod(ii,jj)(1.-2.$poi_)/(2.(1.+$poi_))
tension(ii,jj)=0.
friction(ii,jj)=30.
cohesion(ii,jj)=0.
end_if
if z_group(ii,jj)=‘Clay’
$poi_=0.49
shear_mod(ii,jj)=51.100000.
bulk_mod(ii,jj)=2.shear_mod(ii,jj)(1.+$poi_)/(3.(1.-2.$poi_))
tension(ii,jj)=0.
friction(ii,jj)=0.
cohesion(ii,jj)=max(10.,0.22$esy)
end_if
if z_group(ii,jj)=‘EM_Tailings’
$poi_=0.49
shear_mod(ii,jj)=51.100000.
bulk_mod(ii,jj)=2.shear_mod(ii,jj)(1.+$poi_)/(3.(1.-2.$poi_))
cohesion(ii,jj)=0.18$esy
tension(ii,jj)=0.
friction(ii,jj)=0.
end_if
if z_group(ii,jj)=‘CM_Tailings1’
$poi_=0.49
shear_mod(ii,jj)=51.100000.
bulk_mod(ii,jj)=2.shear_mod(ii,jj)(1.+$poi_)/(3.(1.-2.$poi_))
cohesion(ii,jj)=0.24$esy
tension(ii,jj)=0.
friction(ii,jj)=0.
end_if
end_if
end_loop
end_loop
end
su_peak_assign
solve fos