Getting Error: Warning: Unable to find explicit solution.
Show older comments
Trying to solve for ignition temperature of different materials using equation attached. This is my code:
%G=30,000 W/m^2
%T0=298K
%E=.9
%h= 15 W/m^2/K
%%PMMA
%K*rho*c=10,000,000
%tp=653K
syms t_ign;
eqn = 298+((.9*30000)/15)*(1-exp(225*t_ign/10000000))*erfc(((225*t_ign)/10000000)^(1/2))==653 ;
sol1 = solve(eqn,t_ign);
Anyone know what is wrong??
Accepted Answer
More Answers (0)
Categories
Find more on Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!