Hello,
I have solved a differential equation using NDSolve, and then put the solution inside a Table. Now I want to call the solution from the table and plot it, or check the solution's value for specific values of the variable t. How do I do it? I can't manage to call the value of the solution from the Table. I did the following:
Refine[s = NDSolve[{r\[Rho]ee'[t] == 2 \[CapitalOmega] im\[Rho]eg[t],im\[Rho]ee'[t] == 0, r\[Rho]eg'[t] == 2 \[CapitalOmega] im\[Rho]ee[t],
im\[Rho]eg'[t] == \[CapitalOmega] (1 - 2 r\[Rho]ee[t]), r\[Rho]ee[0] == 0, im\[Rho]ee[0] == 0, r\[Rho]eg[0] == 0, im\[Rho]eg[0] == 0}, {r\[Rho]ee[t], im\[Rho]ee[t], im\[Rho]eg[t],
r\[Rho]eg[t]}, {t, 0, 1}], (*here there is a list of conditions for the functions*)
r\[Rho]ee \[Element] Reals && im\[Rho]ee \[Element] Reals && r\[Rho]eg \[Element] Reals && im\[Rho]eg \[Element] Reals && \[CapitalOmega] [Element] Reals && \[Gamma]eg \[Element] Reals && 0 <= r\[Rho]ee[t]^2 + im\[Rho]ee[t]^2 <= 1];
(*Then I defined a Table and put the solution in the Table*)
\[Rho]List = Table[1, {i, 5}];
\[Rho]List[[1]] = s;
Now I want to call the first function from the solution, and plot it, and I try the following:
\[Rho]ee = \[Rho]List[[1]][[1]][[1]]
Plot[\[Rho]ee[t], {t, 0, 1}]
And I get nothing in the plot. Any help?
Thanks!