필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

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

조회 수: 1 (최근 30일)
MANOJ KUMAR
MANOJ KUMAR 2020년 10월 19일
마감: MATLAB Answer Bot 2021년 8월 20일
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

답변 (0개)

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by