MATLAB: Getting Error: Warning: Unable to find explicit solution.

eqnsolve

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??

Best Answer

There is nothing wrong in your code but Matlab is not able to solve the above equation , tried it in Wolfram wasn't able to solve either
Related Question