Simulation Core
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TD_PipePropertiesReadData.f90 615 B

1234567891011121314151617181920212223242526
  1. subroutine TD_PipePropertiesReadData
  2. Use TD_DrillStemComponents
  3. Use TD_WellElements
  4. Use TD_WellGeometry
  5. Use TD_GeneralData
  6. implicit none
  7. Integer :: i
  8. !====================================================
  9. ! Set Pipe Properties Data
  10. !====================================================
  11. Do i = 1 , TD_DrillStemComponentsNumbs
  12. TD_DrillStems(i)%Density = 7850.d0*0.06242796d0 ![kg/m3]*0.06242796=[lb/ft3]
  13. TD_DrillStems(i)%ElasticModule = 200.0d9*0.02088543d0 ![lb/ft2] !200GPa=29Mpsi (steel)
  14. End Do
  15. end subroutine