Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
702 B

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