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)
|
Sum of diagonal of a square matrix
1327 Solvers
329 Solvers
Test if two numbers have the same digits
187 Solvers
412 Solvers
521 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!