Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. {Prova 3 - Termodinamica - Lucas Paladini}
  2.  
  3. W_dot_liq = 150000 [kW]
  4.  
  5. eta_Turbina = 0,8
  6. eta_Turbina = (h_5-h_6)/(h_5-h_6s)
  7. eta_Turbina = (h_5-h_7)/(h_5-h_7s)
  8.  
  9. s_5 = s_6s
  10. s_5 = s_7s
  11.  
  12. eta_Bomba = 0,75
  13. eta_Bomba = (h_3-h_4s)/(h_3-h_4)
  14. eta_Bomba = (h_1-h_2s)/(h_1-h_2)
  15.  
  16. s_3 = s_4s
  17. s_1 = s_2s
  18.  
  19. T_F_turbina = 350 [k]
  20. T_F_bomba = 350 [K]
  21. T_F_caldeira = 1300 [K]
  22. T_F_condensador = 300 [K]
  23.  
  24. 0 = -10/T_F_turbina + m_dot_5*s_5 - m_dot_6*s_6 + sigma_T1
  25. 0 = -20/T_F_turbina + m_dot_5*s_5 - m_dot_7*s_7 + sigma_T2
  26. 0 = Q_dot_cond/T_F_condensador + m_dot_7*s_7 - m_dot_1*s_1 + sigma_Cond
  27. 0 = -1/T_F_bomba + m_dot_1*(s_1-s_2) + sigma_B1
  28. 0 = 0 + (m_dot_2*s_2 + m_dot_6*s_6) - (m_dot_3*s_3) + sigma_Reg
  29. 0 = -1/T_F_bomba + m_dot_3*s_3 - m_dot_4*s_4 + sigma_B2
  30. 0 = Q_dot_caldeira/T_F_caldeira + m_dot_4*s_4 - m_dot_5*s_5 + sigma_Cald
  31.  
  32. 0 = -10 - W_dot_T1 + m_dot_5*h_5 - m_dot_6*h_6
  33. 0 = -20 - W_dot_T2 + m_dot_5*h_5 - m_dot_7*h_7
  34.  
  35. 0 = 0 + (m_dot_2*h_2 + m_dot_6*h_6) - (m_dot_3*h_3)
  36.  
  37. 0 = Q_dot_cond + m_dot_7*h_7 - m_dot_1*h_1
  38. 0 = -1 - W_dot_B1 + m_dot_1*h_1 - m_dot_2*h_2
  39. 0 = -1 - W_dot_B2 + m_dot_3*h_3 - m_dot_4*h_4
  40. 0 = Q_dot_caldeira + m_dot_4*h_4 - m_dot_5*h_5
  41.  
  42. W_dot_T1 + W_dot_T2 + W_dot_B1 + W_dot_B2 = W_dot_liq
  43.  
  44. P_5 = 10000 [kPa]
  45. T_5 = 773 [K]
  46. s_5 = Entropy(Water;p=p_5;t=t_5)
  47. h_5 = Enthalpy(Water;p=p_5;t=t_5)
  48. v_5 = Volume(Water;p=p_5;t=t_5)
  49.  
  50. P_6 = 500 [kPa]
  51. h_6s = Enthalpy(Water;p=p_6;s=s_6s)
  52. s_6 = Entropy(Water;p=p_6;h=h_6)
  53.  
  54. P_7 = 10 [kPa]
  55. h_7s = Enthalpy(Water;p=p_7;s=s_7s)
  56. s_7 = Entropy(Water;p=p_7;h=h_7)
  57.  
  58. x_1 = 0
  59. p_1 = p_7
  60. h_1 = Enthalpy(Water;p=p_1;x=x_1)
  61. s_1 = Entropy(Water;p=p_1;x=x_1)
  62.  
  63. s_2 = Entropy(Water;p=p_2;h=h_2)
  64.  
  65. x_3 = 0
  66. p_3 = p_6
  67. p_3 = p_2
  68. h_3 = Enthalpy(Water;x=x_3;p=p_3)
  69. s_3 = Entropy(Water;x=x_3;p=p_3)
  70.  
  71. p_4 = p_5
  72.  
  73. m_dot_5 = m_dot_6 + m_dot_7
  74. m_dot_6 + m_dot_2 = m_dot_3
  75.  
  76. m_dot_4 = m_dot_5
  77. m_dot_3 = m_dot_4
  78. m_dot_7 = m_dot_1
  79. m_dot_1 = m_dot_2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement