How to get a method used by ParametricNDSolve for solving a problem? Specifically, a boundary value problem.
The code looks like that:
sol1 = ParametricNDSolve[{Eq1[phi] == 0, Cm[0] == 1 + b}, Cm, {phi, 0, 0.99}, {n, gs}];
I've tried tracing this line as in this answer, but the lines whichh look the closest to that answer are: NDSolve'ProcessEquations'SeparateVariables and NDSolve'ProcessEquations'ParseVariablesDump'res
Tracegave me an empty list. I'll look into the first link, thanks – Olga Zhukova Apr 22 '20 at 11:03