Aplikasi Termodinamika Menggunakan Tabel XSteam.

Slides:



Advertisements
Similar presentations
 Masuklah Kebawah meja dan lindungi tubuh anda dari benda – benda yang berjatuhan  Menggunakan bantal untuk melindungi kepala  Jangan menyalakan kompor,
Advertisements

Jenis-jenis pili Pili berbibir Pili bertiang Apa itu pili ?
P A C I F I C C O N C O U R S E D R. S U I T E L O S A N G E L E S, C A P | F | E I.
Perencanaan Underpass Jalan Masuk Gandaria City
- PERTEMUAN 2- CONSTRUCTOR PBO. Definisi Konstruktor Konstruktor adalah sebuah metode yang dapat digunakan untuk memberikan nilai awal saat objek diciptakan.
REKAYASA FONDASI I PERTEMUAN III TEKANAN TANAH LATERAL PADA DPT Oleh :
MATERI-8 UJI-z OLEH IR. INDRAWANI SINOEM, MS. Pada dasarnya uji-z sama dengan uji-t, hanya uji-z ditujukan untuk jumlah data yg relatif besar (> 30).
Power Plant Construction and QA/QC Section 2.4– Boiler Auxiliaries
Reheat cycle.
1 May 6, 2009 C. Lu Continuously Monitoring the RPC Gas Mixture with a Gas Chromatograph C. Lu Princeton University.
Note that I broke the recycle after the boiler. While not really necessary, it does make life easier. I used three design specs in this problem. The closed.
1 May 6, 2009 C. Lu Continuously Monitoring the RPC Gas Mixture with a Gas Chromatograph C. Lu Princeton University.
Generating Electricity: Wind Power. Wind Resources.
Turbinator Electric CHP Team of Ammonia Based Fertilizer Production
New R&D Initiatives in Solar Thermal at NISE
Recent Developments in Reheat Rankine Cycle BY P M V Subbarao Professor Mechanical Engineering Department I I T Delhi New Efforts to Realize Isothermal.
MwpntspeciesMwcalc 191H+1, C+11, CH+13, CH2+13, CH3+15, C2+24, C2H+24, C2H2+25,94874.
General, Organic, and Biological Chemistry Copyright © 2010 Pearson Education, Inc. 1 Chapter 9 Chemical Equilibrium 9.5 Changing Equilibrium Conditions:
Thermochemistry.  What is energy?  Energy is the ability to do work or produce heat.  The Law of Conservation of Energy: ◦ This law states that can.
Analysis of Rankine Cycle with FWH P M V Subbarao Professor Mechanical Engineering Department I I T Delhi Engineering solution to Pure Thoughts..…..
Reversibility. Reversible Process  Quasi-static processes meant that each step was slo enough to maintain equilibrium.  If the process is reversed the.
Prof. R. Shanthini Nov 12, An engineering example for unsustainable development.
Bulk 5 Dehydration Experiment To find the nature of oscillations in the derivative of the lysimeter weight, we’ll show transpiration rate (S-G Smoothed.
Thermodynamics and Energy The First Law The Second Law Dimensions and Units Dimensions Units – English and SI Example: In Europe, many tanks are rated.
Engines. Second Law I  Real processes often make sense in only one direction in time.  The second law of thermodynamics states this: Heat flows naturally.
Wind Turbine Power Plant. Sources ●
第 三 章 矿物在正交偏光镜下的 均质性、非均质性.
海港自由貿易港區及自由經濟示範區之加值作業
Date of download: 10/2/2017 Copyright © ASME. All rights reserved.
Vapor ,Gas and Combined Power Cycles
Multi-step Problems.
Date of download: 10/10/2017 Copyright © ASME. All rights reserved.
Engines.
Reducing the need for time-consuming experiments Phase Transformations and Complex Properties Group Steam turbines.
Reversibility.
Cook Nuclear Power Plant
Main Speaker – 5732 Specifications Frequency Response
Power Plant Technology Combined Cycle and Renewable Energy Power Systems (Assignment 1) by Mohamad Firdaus Basrawi, Dr. (Eng) Mechanical Engineering Faculty.
Date of download: 12/24/2017 Copyright © ASME. All rights reserved.
ES 211: Thermodynamics Tutorial 5 & 6
Date of download: 12/29/2017 Copyright © ASME. All rights reserved.
Turbomachinery in Biofuel Production
Poznan power generation
Chapter 5 The First Law of Thermodynamics for Opened Systems
WIND TURBINE GENERATORS.
Carnotization of Rankine Cycle thru Regeneration
פיתוח אנרגית השמש בישראל
Lecture Objectives: Finish with Electric Energy Generation
إستراتيجيات ونماذج التقويم
SPECIMEN HL1. SPECIMEN HL1 SPECIMEN HL1 SPECIMEN HL1.
Energy Conservation(cont.)
PHYSICAL PROCESS q EQUATIONS DECISION MAP
Calculating Energy Changes at Phase Changes
Chapter Three: Part One
Calculating Energy Changes at Phase Changes
Calculating Energy Changes at Phase Changes
Flash Distillation Flash distillation is the simplest method of separation. A feed stream is “flashed” into a chamber or “flash drum” and the liquid and.
Example 1 The internal energy of a closed system can be increased by adding heat or doing work. In the following example, 1 kg of saturated liquid water.
Chapter Three: Part One
Calculating Energy Changes at Phase Changes
Find the area of the surface obtained by rotating the curve about the x-axis. {image} {image}
Find the area of the surface obtained by rotating the curve about the x-axis. {image}
Br+ (n=?) agust,heima,...Sept10/Br ks ak.ppt
Enthalpy and Phase Changes
Generation of Most Eligible Steam for Rankine Cycle
Do Now: Just to review before we start…
Calculating Energy Changes at Phase Changes
When in Our Music God Is Glorified
ආහාර සඳහා වු යහපත් නිෂ්පාදන පිළිවෙත් අවශ්‍යතා
Needed for Team A on -End
Presentation transcript:

Aplikasi Termodinamika Menggunakan Tabel XSteam

Berapa entalpi uap jenuh pd Temperatur Steam 10 C

clear all; clc; daya_keluar = input('berapa daya keluar netto Turbin (MW) ='); % sebagai input nilai daya keluar p_1 = input('berapa tekanan masuk turbin (bar) ='); h1=XSteam('hV_p',p_1); s1 = XSteam('sV_p',p_1); s2=s1; p_2 = input('berapa tekanan keluar turbin (bar) ='); sf= XSteam('sL_p',p_2); sg= XSteam('sV_p',p_2); x2 = (s2-sf)/(sg-sf); hf = XSteam('hL_p',p_2); hfg= XSteam('hV_p',p_2)- XSteam('hL_p',p_2); h2= hf + ((x2*hfg)) ; h3= hf; v3 = XSteam('vL_p',p_2); kerja_pompa = XSteam('vL_p',p_2)*(p_1-p_2); h4= h3 + kerja_pompa; kerja_turbin = h1-h2; panas_masuk = h1-h4;