Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
Ec = 37;
Ef = 100;
Em = 10;
ff = 0.30;
[Ec_other,u_or_l] = rule_of_mixtures_opp_bound(Ec,Ef,Em,ff);
assert(abs(Ec_other - 13.6986) < 1e-4)
assert(u_or_l == 1)
|
2 | Pass |
%%
Ec = 13.6986;
Ef = 100;
Em = 10;
ff = 0.30;
[Ec_other,u_or_l] = rule_of_mixtures_opp_bound(Ec,Ef,Em,ff);
assert(abs(Ec_other - 37) < 1e-4)
assert(u_or_l == 0)
|
3 | Pass |
%%
Ec = 23.5;
Ef = 100;
Em = 10;
ff = 0.15;
[Ec_other,u_or_l] = rule_of_mixtures_opp_bound(Ec,Ef,Em,ff);
assert(abs(Ec_other - 11.5607) < 1e-4)
assert(u_or_l == 1)
|
4 | Pass |
%%
Ec = 11.5607;
Ef = 100;
Em = 10;
ff = 0.15;
[Ec_other,u_or_l] = rule_of_mixtures_opp_bound(Ec,Ef,Em,ff);
assert(abs(Ec_other - 23.5) < 1e-4)
assert(u_or_l == 0)
|
5 | Pass |
%%
Ec = 11.7440;
Ef = 1000;
Em = 10;
ff = 0.15;
[Ec_other,u_or_l] = rule_of_mixtures_opp_bound(Ec,Ef,Em,ff);
assert(abs(Ec_other - 158.5) < 1e-4)
assert(u_or_l == 0)
|
6 | Pass |
%%
Ec = 158.5;
Ef = 1000;
Em = 10;
ff = 0.15;
[Ec_other,u_or_l] = rule_of_mixtures_opp_bound(Ec,Ef,Em,ff);
assert(abs(Ec_other - 11.7440) < 1e-4)
assert(u_or_l == 1)
|
434 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
57 Solvers
Saving MATLAB session to a file
145 Solvers
Simple equation: Annual salary
3779 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!