Télécharger thed3d.eso

Retour à la liste

Numérotation des lignes :

thed3d
  1. C THED3D SOURCE PV090527 23/01/27 21:16:04 11574
  2. subroutine thed3d(t,t0,t1,m,p,f)
  3.  
  4. c reduction des parametres par effet thermique pour endo3d
  5. c (A.Sellier 2021/04/26)
  6. implicit real*8 (a-h,o-z)
  7. implicit integer (i-n)
  8.  
  9. real*8 t,t0,t1,m,p,f
  10.  
  11. if(m.ne.0.) then
  12. if((t.ge.t0).and.(t1.gt.t0)) then
  13. t7 = ((t - t0) / (t1 - t0)) ** m
  14. t8 = exp(-t7)
  15. f = p + t8 * (0.1D1 - p)
  16. else
  17. f=1.d0
  18. end if
  19. else
  20. f=1.d0
  21. end if
  22.  
  23. return
  24. end
  25.  
  26.  
  27.  

© Cast3M 2003 - Tous droits réservés.
Mentions légales