Guest User

Untitled

a guest
Jun 25th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. Pars = {ep -> 0.5, f1p -> 0.3, f2p -> 0.1, dp -> 0.05, q -> 0.1,
  2. en -> 0.4, d -> 0.1, Q -> 0.1, f2n -> 0.3, f1n -> 0.4, a -> 0.05,
  3. N1 -> 0.5, N2 -> 0.5}; #Parameters
  4.  
  5. PlotREq1 =
  6. Plot[R = S /. Pars, {S, 0, 0.9375},
  7. PlotRange -> {{0, 3.5}, {0, 2}}, PlotStyle -> {Red, Thick, Dashed},
  8. GridLines -> {{0.9375}, {}}];
  9. PlotREq2 =
  10. Plot[R = (a + d)/(en f1n) /. Pars, {S, 0.9375, 1.4375},
  11. PlotRange -> {{0, 3.5}, {0, 2}}, PlotStyle -> {Red, Thick, Dashed},
  12. GridLines -> {{1.4375}, {}}];
  13. PlotREq3 =
  14. Plot[R = ((a + d) (f1p - f2p))/(en (f1p f2n - f1n f2p)) /. Pars, {S,
  15. 1.4375, 2.3}, PlotRange -> {{0, 3.5}, {0, 2}},
  16. PlotStyle -> {Red, Thick, Dashed}, GridLines -> {{2.3}, {}}];
  17. Show[PlotREq1, PlotREq2, PlotREq3]
  18.  
  19. Show[PlotREq1, PlotREq2, PlotREq3, GridLines -> {{0.9375, 1.4375, 2.3}, {}}]
Add Comment
Please, Sign In to add comment