How could I make a script for this ecuation where i can solve for f?
조회 수: 29 (최근 30일)
이전 댓글 표시
댓글 수: 5
Walter Roberson
2024년 11월 20일 23:19
편집: Walter Roberson
2024년 11월 20일 23:20
rng(655321)
epsilon = rand
D = rand
Re = rand
eqn = @(x) x + 2*log10(epsilon/D/3.7+2.51*x/Re);
X = fzero(eqn, [0 1e5])
답변 (1개)
Walter Roberson
2024년 11월 20일 22:05
편집: Walter Roberson
2024년 11월 20일 23:23
syms f epsilon D Re
Q = @(v) sym(v);
eqn = 1/sqrt(f) == -Q(2.0) * log(epsilon/D/Q(3.7) + Q(2.51)/(Re*sqrt(f)))
F = solve(eqn, f)
disp(char(F))
wrightOmega is a function in the Symbolic Toolbox
rng(655321)
epsilon = rand
D = rand
Re = rand
f = subs(F)
disp(char(vpa(f)))
subs(eqn)
disp(char(vpa(ans)))
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!