کد متلب ضریب فعالیت بنزن و استیک اسید نوع فایل: Matlab Total Pressure for the Benzene(1)/Acetic Acid(2) System at 50°C x1 P (mmHg) x1 P (mmHg) 0.0 57.52 0.8286 250.20 0.0069 58.2 0.8862 259.00 0.1565 126.00 ...
کد متلب محاسبه ی ضریب فوگاسیته ی اجزای مخلوط ورودی ها: ni,P,T,Pc,Tc,w,k,state,eos خروجی ها: [Z,V,phi] نوع فایل: Matlab % Estimates fugacity coefficients of all components in a mixture using % the cubic equation of state % Inputs: % ni: number of moles (or mole fractions) of each component (vector) % P, T: pressure(Pa) and temperature(K) % Pc, Tc: critical P(Pa) and T(K) of all components (vector) % w: acentric factors of all components (vector) % k: symmetric matrix of binary interaction parameters (n x n) % state: fluid state('L': liquid, 'V': vapor) % eos: equation of state('RK', 'SRK', or 'PR') % Outputs: % V: molar volume (m3/mol) % Z: compressibility factor % phi: fugacity coefficient vector ...
کد متلب محاسبه ی آنتالپی مخلوط ورودی ها: (x,P,T,state,eos,mxp) خروجی ها: [Z H] نوع فایل: Matlab % Estimation of enthalpy of mixture % Inputs: % x: mole fractions of all components (column vector) % P, T: pressure(Pa) and temperature(K) % state: fluid state('L': liquid, 'V': vapor) % eos: equation of state('RK', 'SRK', or 'PR') % mxp: structure with property fields % mxp.Pc, mxp.Tc: critical P(Pa) and T(K) (column vector) % mxp.w: acentric factors of all components (column vector) % mxp.k: binary interaction parameter matrix(n x n symmetric) % mxp.Afi: coefficients of ideal gas heat capacity relation(J/mol/K) % Outputs: % Z: compressibility factor % H: enthalpy of mixture (J/mol) ...
کد متلب محاسبه ی فوگاسیته ی جزء خالص ورودی ها: (state,eos,T,P,Tc,Pc,w) خروجی ها: [phig f] نوع فایل:Matlab % Estimates the fugacity coefficient using the virial and cubic EOS. % input % state: fluid state('L': liquid, 'V': vapor) % eos: equation of state (VR, VDW, RK, SRK, PR) % P,T: pressure(bar) and temperature(K) % Tc,Pc: critical T(K) and P(bar) % w: acentric factor % output: % phig: fugacity coefficient % f: fugacity (bar) ...
کد متلب محاسبه ی آنتالپی و آنتروپی مواد خالص در حالت تغییر فاز ورودی ها: state,eos,T1,P1,T2,P2,cmp خروجی ها: [dH dS] نوع فایل: Matlab % state: fluid state (liquid: L, vapor: V) % eos: type of the equation of state (VR, VDW, RK, SRK, PR) % T1,P1: temperature (K) and pressure (bar) at state 1 % T2,P2: temperature (K) and pressure (bar) at state 2 % cmp: structure containing the properties of pure fluids % (A, B, C, D (coefficients of Cp equation), Tc, Pc, w) % outputs: % dH: change in enthalpy % dS: change in entropy Enthalpy and Entropy Departures at Each State State 1 State 2 ...
کد متلب محاسبه ی تغییرات آنتالپی و آنتروپی با معادلات حالت ورودی ها: state,eos,T,P,Tc,Pc,w خروجی ها: [Z V dH dS] نوع فایل: Matlab % state: fluid state (liquid: L, vapor: V) % eos: type of the equation of state (VR, VDW, RK, SRK, PR) % T,P: temperature (K) and pressure (bar) % Tc,Pc: critical temperature (K) and critical pressure (bar) % w: acentric factor % outputs: % Z: compressibility factor % V: molar volume % dH: enthalpy departure % dS: entropy departure ...
کد متلب محاسبه ی ضریب تراکم پذیری و حجم با معادلات حالات درجه سوم ورودی ها: state,eos,T,P,Tc,Pc,w خروجی ها: [Z V] نوع فایل: Matlab % Estimation of Z and V using cubic equations of state% % input% ( state: fluid state (liquid: L, vapor: V% ( eos: type of equation being used (VDW, RK, SRK, PR% ( T,P: temperature (K) and pressure (bar% ( Tc,Pc: critical temperature (K) and pressure (bar% w: acentric factor% Example ; T=350; P=9.4573; Tc=425.1; Pc=37.96; w=0.2 ; state ='v'; eos = 'vdw' (Z V] = cubicEOSZ(state,eos,T,P,Tc,Pc,w] Z = 0.8667 V = 2.6669e+03 ...
کد متلب محاسبه ی تغییرات آنتالپی ورودی ها: C,T1,T2 خروجی ها: [Q, mc] نوع فایل: Matlab % Calculates enthalpy change and avg. heat capacity of pure material % input: % C: coefficients of Cp relation (C=[A,B,C,D]) % T1,T2: temperature range (lower and upper limits of integral) % output: % Q: delta H >> [Q mc] = delH([1.702 9.081e-3 -2.164e-6 0], 533.15, 873.15) Q = 1.9778e+04 mc = 6.9965 ...
کد متلب محاسبه ی ضریب تراکم پذیری با معادله لی کسلر (Lee-Kesler) ورودی: g خروجی: Z نوع فایل: Matlab zLK.m: calculates compressibility factor using the Lee-Kesler equation% Constants of the Lee–Kesler Equation Constants Simple Fluid Reference Fluid b1 0.1181193 0.2026579 b2 0.265728 0.331511 b3 0.154790 0.027665 b4 ...
کد متلب محاسبه ی ضریب تراکم پذیری و حجم با معادله حالت ویریال ورودی ها: P,T,Pc,Tc,w خروجی ها: [Z,V] Estimation of compressibility factor and molar volume% at given T and P using the virial equation of state% :inputs% (P,Pc: pressure and critical pressure (atm% (T,Tc:temperature and critical temperature (K% w: acentric factor :outputs% Z: compressibility factor% V: molar volume% ...
کد متلب ضریب نفوذ فاز مایع نوع فایل: Matlab Liquid-Phase Diffusion Coefficients ...
کد متلب ضریب تراکم پذیری گازطبیعی COMPRESSIBILITY FACTOR OF NATURAL GASES نوع فایل: Matlab ...
کد متلب محاسبه ی گرمای آزاد گیبس نوع فایل: Matalb ...
کد متلب محاسبه ی آنتالپی تبخیر با معادله ی Clausius/Clapeyron نوع فایل: Matlab ...
کد متلب محاسبه ی گرمای تشکیل گازهای ایده آل نوع فایل: Matlab ...
کد متلب محاسبه ی فشار بخار با معادله ی واگنر (Wagner) نوع فایل: Matlab ...
کد متلب محاسبه ی فشار بخار با معادله ی Rarey-Moller نوع فایل: Matlab ...
کد متلب محاسبه ی آنتالپی تبخیر با معادله ی واتسون نوع فایل: Matlab ...
کد متلب محاسبه ی کشش سطحی مایعات نوع فایل: Matlab ...
کد متلب محاسبه ی فشار بخار با معادله ی آنتوان نوع فایل: Matlab ...