Hi,
I use FLAC2D.
I can’t find “initial_PH” fish in my library.
is it goes only with FLAC3D?
any alternatives?
TNX,
Razi
Hi,
I use FLAC2D.
I can’t find “initial_PH” fish in my library.
is it goes only with FLAC3D?
any alternatives?
TNX,
Razi
The fish function should be the same for FLAC2D AND FLAC3D:
; Initialize effective stress properties using FISH.
fish operator ini_ph(z)
if z.model(z) = ‘plastic-hardening’
local pp = zone.pp(z)
zone.prop(z,‘stress-1-effective’) = zone.stress.min(z) + pp
zone.prop(z,‘stress-2-effective’) = zone.stress.int(z) + pp
zone.prop(z,‘stress-3-effective’) = zone.stress.max(z) + pp
endif
end
[ini_ph(::zone.list)])