Simulation Core
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

sROP_Other_Variables.f90 1.9 KiB

1 yıl önce
12345678910111213141516171819202122232425262728293031
  1. module sROP_Other_Variables
  2. implicit none
  3. integer :: FormationNumber
  4. real(8) :: FormationTopDepth, Condition
  5. CHARACTER(len=20) :: filename ! Name of file to open
  6. INTEGER :: name , status ! I/O status
  7. REAL(8) :: H1, H2, H3, w_d_max ! The real value read in
  8. ! $$$$$**$$$$$**$$$$$**$$$$$**$$ End of Introduction of Module Inputs $$**$$$$$**$$$$$**$$$$$**$$$$$
  9. character(len = 20) :: Formation_Type = 'Shale' ! Default = Shale
  10. ! -----**-----**-----**-----**-----** Bit Type: *-----**-----**-----**-----**-----
  11. Integer :: Bit_Class ! Default = Rollar Cone
  12. real(8) :: Diameter_of_Bit ! unit : [in.] (Typical Range: 3.0 to 30.0)
  13. Integer :: Number_of_Bit_Nozzles ! (Typical Range: 1 to 10)
  14. real(8) :: Diameter_of_Bit_Nozzle ! unit : [1/32 in.] (Typical Values: 8.0 to 32.0)
  15. ! -----**-----**-----**-----**-----** End of Bit Type: *-----**-----**-----**-----**-----
  16. real(8) :: Critical_Mud_Density ! unit : [ppg] or [lb/gal] (Typical Range: 0 to 10.0)
  17. real(8) :: Critical_Weight_on_Bit ! unit : [klb] (Typical Range: 0 to 10)
  18. real(8) :: Reynolds_Number ! unit : [klb] (Typical Range: 0.1 to 1000.0)
  19. ! -----**-----**-----**-----**-----** Other Rate_of_Penetration Model Variables: *-----**-----**-----**-----**-----
  20. real(8) :: x1, x2, x3, x4, x5, x6, x7, x8
  21. real(8) :: f1, f2, f3, f4, f5, f6, f7, f8
  22. real(8) :: a1, a2, a3, a4, a5, a6, a7, a8
  23. real(8) :: Br_Coef
  24. real(8) :: dt , Tou_H
  25. integer,dimension(8) :: ROP_StartTime , ROP_EndTime
  26. ! -----**-----**-----**-----**--- End of Other Rate_of_Penetration Model Variables ---**-----**-----**-----**-----
  27. real(8), parameter :: PI = 3.1415926 ! PI Number
  28. ! $$$$$**$$$$$**$$$$$**$$$$$**$$$$$** End of Variable Definition *$$$$$**$$$$$**$$$$$**$$$$$**$$$$$
  29. end module sROP_Other_Variables