dmp error msg

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2024-01-21 10:47:09 -07:00
parent 6a4e610e07
commit 6ebe53794b
1 changed files with 2 additions and 2 deletions

View File

@ -506,7 +506,7 @@ DmpAlg::findVoCrossing(double vth,
double t_vth = findRoot(vo_func, t_lower, t_upper, vth_time_tol,
find_root_max_iter, fail);
if (fail)
throw DmpError("findRoot failed");
throw DmpError("find Vo crossing failed");
return t_vth;
}
@ -624,7 +624,7 @@ DmpAlg::findVlCrossing(double vth,
double t_vth = findRoot(vl_func, t_lower, t_upper, vth_time_tol,
find_root_max_iter, fail);
if (fail)
throw DmpError("findRoot failed");
throw DmpError("find Vl crossing failed");
return t_vth;
}