Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

how do I find FOS by Bishop method in terms of varying Cohesion ,Gama and Phi value??

1 vue (au cours des 30 derniers jours)
MANOJ KUMAR
MANOJ KUMAR le 19 Oct 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
i want to find FOs eqn having cohesion ,gama and phi value as variable.
i wrote this code.
upo = sum((p.*l) + (W.*cost*tanp) - (u.*l*tanp));
downo = sum(W.*sint);
FSo = upo./downo; %%for initial guess%%
FSt = 1.2*FSo; %%to maintain thelogic in while loop%%
tol=0.001;
while abs(FSt-FSo)>tol
FSo = FSt;
Nu = W +(T.*sina)-(((p.*l.*sint) - (u.*l.*tanp.*sint))./FSo);
Nb = cost + (tanp.*sint)./FSo;
N = Nu./Nb;
up = sum((p*l*R) + (N.*tanp*R) - (u.*l*tanp*R))+((FSo.*T*(R.*cosaw)));
down = sum(W.*xavg);
FSt = up./down %FOS after reinforcement%%
end

Réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by