Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. documentclass[border=5mm]{standalone}
  2. usepackage{tikz}
  3.  
  4. usetikzlibrary{calc,intersections}
  5.  
  6. [![enter image description here][1]][1]
  7. begin{document}
  8. begin{tikzpicture}[xscale=0.015,yscale=0.01]
  9.  
  10. draw[domain=0:500,samples=1000,variable=x,name path=A] plot ({x},{475.-712.*exp(-0.133e-2*x*10)+238.*exp(-0.400e-2*x*10)});
  11. draw[-latex] (0,0)coordinate(O)-- (500,0) node[above]{$t$};
  12. draw[-latex] (O) -- (0,500) node[right]{$theta_s(t)$};
  13.  
  14. draw[dashed,thick,name path=S100] (0,{475}) -- (500,{475});
  15.  
  16. draw[dashed,thick,name path=S95] (0,{475*0.95}) -- (500,{475*0.95});
  17. path[name intersections={of=S95 and A,by=E}];
  18.  
  19.  
  20. draw (E) |- (O-|E);
  21.  
  22. end{tikzpicture}
  23. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement