PROPERTIES OF ORDINARY WATER SUBSTANCE AT SATURATION FROF TME CRITICAL POINT DOWN TO 66 C EQUATIONS & TABLES

Μέγεθος: px
Εμφάνιση ξεκινά από τη σελίδα:

Download "PROPERTIES OF ORDINARY WATER SUBSTANCE AT SATURATION FROF TME CRITICAL POINT DOWN TO 66 C EQUATIONS & TABLES"

Transcript

1 PROPERTIES OF ORDINARY WATER SUBSTANCE AT SATURATION FROF TME CRITICAL POINT DOWN TO 66 C EQUATIONS & TABLES M. CONDE ENGINEERING, 2002

2 M. CONDE ENGINEERING, Zurich 2002

3 Properties of ordinary water substance at saturation M. CONDE ENGINEERING Page 1 / 23 Equations and Tables for the Thermodynamic Properties of Ordinary Water Substance at Saturation from the Critical Point down to 66 C ABSTRACT This report summarizes and extends the range of the equations proposed by Saul and Wagner (1987) down to -60 C. The uniformity of the equations used is extremely practical for use in computer programs. For temperatures above the triple point, the coefficients determined by Saul and Wagner are maintained, except for density, for which the new coefficients proposed by the IAPWS (1997) were adopted. For temperatures below that, new coefficients were determined, while retaining the same form of the equations. A listing of a calculation routine for the whole temperature range, written in the Borland Pascal programming language is included in Appendix A. SI Units are used throughout for all quantities. A table of properties at saturation, for the whole temperature range considered, is included as Appendix B. Nomenclature Thermodynamic quantities: h specific enthalpy I enthalpy of phase transition P vapour pressure s specific entropy T temperature density auxiliary quantity for specific enthalpy auxiliary quantity for specific entropy = T/T c = 1 Subscripts: c s L V sg fg sat value at the critical point value for solid phase value for liquid phase value for vapour phase solid to vapour phase transition liquid to vapour phase transition at saturation Reference constants T c = P c = x10 6 c = 322 R = M = K Pa kg m 3 J kg 1 K 1

4 2 / 23 M. CONDE ENGINEERING Properties of ordinary water substance at saturation Vapour pressure LN P P SAT c = a τ + a τ + a τ + a τ + a τ + a τ τ K T K K T K a a a a a a Density of the condensed phase ρ ρ L c = + bτ + b τ + b τ + b τ + b τ + b τ 1 1 / / / / / 110/ K T K K T K b b b b b b Density of the gaseous phase ρv LN = c1τ + c2τ + c3τ + c4τ + c5τ + c6τ ρ c / / / / 71/ 6

5 Properties of ordinary water substance at saturation M. CONDE ENGINEERING Page 3 / K T K K T K c c c c c c Specific enthalpy and entropy Auxiliary equations α α = d + d θ + d θ + d θ + d θ + d θ α ϕ ϕ = dϕ + d1θ + d2 LNθ + d3θ + d4θ + d5θ K T K K T K d x10 8 d d d d d d with 0 = = 0 /T c J kg 1 J kg 1 K 1

6 4 / 23 M. CONDE ENGINEERING Properties of ordinary water substance at saturation Specific enthalpy of the condensed phase h L = α + T dp ρ dt L sat Specific enthalpy of the gaseous phase h G = α + T dp ρ dt G sat Specific entropy of the condensed phase s L = ϕ + 1 ρ L dp sat dt Specific entropy of the gaseous phase s G = ϕ + 1 ρ G dp sat dt Range of validity of the equations The equations presented here are valid for K T K References Saul, A., W. Wagner International Equations for the Saturation Properties of Ordinary Water Substance, J. Phys. Chem. Ref. Data, 16(4), IAPWS (The International Association for the Properties of Water and Steam) Release on the IAPWS Industrial Formulation 1997 for the Thermodynamic Properties of Water and Steam, London, UK.

7 Properties of ordinary water substance at saturation M. CONDE ENGINEERING Page 5 / 23 APPENDIX A

8 6 / 23 M. CONDE ENGINEERING Properties of ordinary water substance at saturation {$N+,F+,D+} UNIT SatWater; { For the calculation of the properties of saturated water between and the critical point. Equations used have the form proposed by Saul & Wagner (1987) in J. Phys. Chem. Ref. Data, Vol.16, No. 4, The coefficients for solid state were adjusted using data from ASHRAE - Psychrometrics Theory and Practice, 1996 M. Conde Engineering, Created, June 16, 1997 Last Update, June 17, 2002 } Interface Uses DOS,Crt; TYPE TH2oParamArray = ARRAY[0..6] OF DOUBLE; TH2oPropRec = RECORD RH2o : DOUBLE; MH2o : DOUBLE; H2oTc : DOUBLE; H2oPc : DOUBLE; H2oRhoc : DOUBLE; H2oAlpha0 : DOUBLE; IceVp : TH2oParamArray; H2oVp : TH2oParamArray; IceRho : TH2oParamArray; H2oRho : TH2oParamArray; VapIceRho : TH2oParamArray; VapH2oRho : TH2oParamArray; IceAux : TH2oParamArray; H2oAux : TH2oParamArray; H2oFil = FILE OF TH2oPropRec; CONST DH2o : TH2oPropRec = (RH2o : ; { J/kg K } MH2o : ; H2oTc : ; { K } H2oPc : E+6; { Pa } H2oRhoc : 322.0; { kg/m3 } H2oAlpha0 : ; { J/kg } IceVp : ( 0.0, { Vapour pressure over ice } , , , , , ); H2oVp : ( 0.0, { Vapour pressure over liquid } ,

9 Properties of ordinary water substance at saturation M. CONDE ENGINEERING Page 7 / , , , , ); IceRho : ( 0.0, { Solid density } , , , , , ); H2oRho : ( 0.0, { Liquid density } , , , , , ); VapIceRho : ( 0.0, { Density of steam over ice } , , , , , ); VapH2oRho : ( 0.0, { Density of steam over liquid } , , , , , ); IceAux : ( , { Saul & Wagner's d_alpha } 0.0, , , , 0.0, ); { Saul & Wagner's d_phi } H2oAux : ( , { Saul & Wagner's d_alpha } E-8, , , , , )); { Saul & Wagner's d_phi } Error : BOOLEAN = FALSE;

10 8 / 23 M. CONDE ENGINEERING Properties of ordinary water substance at saturation FUNCTION VapPressure (T : REAL) : REAL; FUNCTION SatTemp (P : REAL) : REAL; FUNCTION CondensPhaseRho (T : REAL) : REAL; FUNCTION VapourPhaseRho (T : REAL) : REAL; FUNCTION LiqEnthalpy (T : REAL) : REAL; FUNCTION VapEnthalpy (T : REAL) : REAL; FUNCTION LiqEntropy (T : REAL) : REAL; FUNCTION VapEntropy (T : REAL) : REAL; FUNCTION LatentEnthalpy (T: REAL) : REAL; FUNCTION LatentEntropy (T : REAL) : REAL; Implementation CONST PTol = 0.01; { Pascal } MaxIter = 30; FUNCTION TRangeOK (T : REAL) : BOOLEAN; TRangeOK:=((T >= 213.0) AND (T <= DH2o.H2oTc)); FUNCTION PRangeOK (P : REAL) : BOOLEAN; PRangeOK:=((P >= 1.08) AND (P <= DH2o.H2oPc)); FUNCTION dpsatdt (T : REAL) : DOUBLE; { Calculates the derivative of the vapour pressure in relation to the saturation temperature } VAR PParm : TH2oParamArray; FUNCTION dpdtcalc (T : REAL) : REAL; VAR Ps, Tau, X, LnTau : DOUBLE; Ps:=VapPressure(T); Tau:=1.0-T/DH2o.H2oTc; LnTau:=LN(Tau); X:=7.5*PParm[6]*EXP(6.5*LnTau); X:=X+4.0*PParm[5]*Tau*Tau*Tau; X:=X+3.5*PParm[4]*EXP(2.5*LnTau); X:=X+3.0*PParm[3]*Tau*Tau; X:=X+1.5*PParm[2]*EXP(0.5*LnTau); X:=X+PParm[1]+LN(Ps/DH2o.H2oPc); dpdtcalc:=-ps/t*x; { dpsatdt } IF ((T >= 213.0) AND (T <= )) THEN { Condensed phase is solid }

11 Properties of ordinary water substance at saturation M. CONDE ENGINEERING Page 9 / 23 PParm:=DH2o.IceVp; dpsatdt:=dpdtcalc(t); END ELSE IF ((T > ) AND (T < DH2o.H2oTc)) THEN { Condensed phase is liquid } PParm:=DH2o.H2oVp; dpsatdt:=dpdtcalc(t); END ELSE IF T = DH2o.H2oTc THEN dpsatdt:=0.0; { dpsatdt } FUNCTION VapPressure (T : REAL) : REAL; VAR PParm : TH2oParamArray; FUNCTION PsatCalc (T : REAL) : REAL; VAR Tau, LnTau, X : REAL; Tau:=1.0-T/DH2o.H2oTc; LnTau:=LN(Tau); X:=PParm[6]*EXP(7.5*LnTau); X:=X+PParm[5]*EXP(4.0*LnTau); X:=X+PParm[4]*EXP(3.5*LnTau); X:=X+PParm[3]*Tau*Tau*Tau; X:=X+PParm[2]*EXP(1.5*LnTau); X:=X+PParm[1]*Tau; PSatCalc:=DH2o.H2oPc*EXP(DH2o.H2oTc*X/T); { VapPressure } IF TRangeOk(T) THEN IF ((T >= 213.0) AND (T <= )) THEN { Condensed phase is solid } PParm:=DH2o.IceVp; VapPressure:=PSatCalc(T); END ELSE IF ((T > ) AND (T < DH2o.H2oTc)) THEN { Condensed phase is liquid } PParm:=DH2o.H2oVp; VapPressure:=PSatCalc(T); END ELSE IF T = DH2o.H2oTc THEN VapPressure:=DH2o.H2oPc; END ELSE { Error: T Out of Range } FUNCTION SatTemp (P : REAL) : REAL; VAR PCalc, dpdt, T : REAL; Itc : INTEGER;

12 10 / 23 M. CONDE ENGINEERING Properties of ordinary water substance at saturation { SatTemp } IF PRangeOk(P) THEN T:=293.15; Itc:=0; REPEAT INC(Itc); PCalc:=VapPressure(T); dpdt:=dpsatdt(t); T:=T-(PCalc-P)/dPdT; UNTIL ((ABS(PCalc-P) < PTol) OR (Itc > MaxIter)); IF (Itc > MaxIter) THEN { Error: Convergence not found on P } END ELSE { Error: P Out of Range } FUNCTION CondensPhaseRho (T : REAL) : REAL; VAR RParm : TH2oParamArray; FUNCTION RhoCalc (T : REAL) : REAL; VAR Tau, LnTau, X : REAL; Tau:=1.0-T/DH2o.H2oTc; LnTau:=LN(Tau); X:=RParm[6]*EXP(110.0*LnTau/3.0); X:=X+RParm[5]*EXP(43.0*LnTau/3.0); X:=X+RParm[4]*EXP(16.0*LnTau/3.0); X:=X+RParm[3]*EXP(5.0*LnTau/3.0); X:=X+RParm[2]*EXP(2.0*LnTau/3.0); X:=X+RParm[1]*Exp(LnTau/3.0); RhoCalc:=DH2o.H2oRhoc*(1.0+X); { CondensPhaseRho } IF TRangeOK(T) THEN IF ((T >= 213.0) AND (T <= )) THEN { Condensed phase is solid } RParm:=DH2o.IceRho; CondensPhaseRho:=RhoCalc(T); END ELSE IF ((T > ) AND (T < DH2o.H2oTc)) THEN { Condensed phase is liquid } RParm:=DH2o.H2oRho; CondensPhaseRho:=RhoCalc(T); END ELSE IF T = DH2o.H2oTc THEN CondensPhaseRho:=DH2o.H2oRhoc;

13 Properties of ordinary water substance at saturation M. CONDE ENGINEERING Page 11 / 23 END ELSE { Error: T Out of Range } { CondensPhaseRho } FUNCTION VapourPhaseRho (T : REAL) : REAL; VAR RParm : TH2oParamArray; FUNCTION RhoCalc (T : REAL) : REAL; VAR Tau, LnTau, X : REAL; Tau:=1.0-T/DH2o.H2oTc; LnTau:=LN(Tau); X:=RParm[6]*EXP(71.0*LnTau/6.0); X:=X+RParm[5]*EXP(37.0*LnTau/6.0); X:=X+RParm[4]*EXP(3.0*LnTau); X:=X+RParm[3]*EXP(4.0*LnTau/3.0); X:=X+RParm[2]*EXP(2.0*LnTau/3.0); X:=X+RParm[1]*Exp(LnTau/3.0); RhoCalc:=DH2o.H2oRhoc*EXP(X); { VapourPhaseRho } IF TRangeOK(T) THEN IF ((T >= 213.0) AND (T <= )) THEN { Condensed phase is solid } RParm:=DH2o.VapIceRho; VapourPhaseRho:=RhoCalc(T); END ELSE IF ((T > ) AND (T < DH2o.H2oTc)) THEN { Condensed phase is liquid } RParm:=DH2o.VapH2oRho; VapourPhaseRho:=RhoCalc(T); END ELSE IF T = DH2o.H2oTc THEN VapourPhaseRho:=DH2o.H2oRhoc; END ELSE { Error: T Out of Range } { VapourPhaseRho } FUNCTION FAlpha (T: REAL) : DOUBLE; VAR AParm : TH2oParamArray; FUNCTION CalcAlpha (T : REAL) : REAL; VAR Theta, LnTheta, X : REAL; Theta:=T/DH2o.H2oTc; LnTheta:=LN(Theta);

14 12 / 23 M. CONDE ENGINEERING Properties of ordinary water substance at saturation X:=AParm[5]*EXP(54.5*LnTheta); X:=X+AParm[4]*EXP(5.0*LnTheta); X:=X+AParm[3]*EXP(4.5*LnTheta); X:=X+AParm[2]*Theta; X:=X+AParm[1]*EXP(-19.0*LnTheta); CalcAlpha:=1000.0*(X+AParm[0]); IF TRangeOK(T) THEN IF ((T >= 213.0) AND (T <= )) THEN { Condensed phase is solid } AParm:=DH2o.IceAux ELSE IF ((T > ) AND (T <= DH2o.H2oTc)) THEN { Condensed phase is liquid } AParm:=DH2o.H2oAux; FAlpha:=CalcAlpha(T); END ELSE { Error: T Out of Range } { FAlpha } FUNCTION LiqEnthalpy (T : REAL) : REAL; VAR Rho, dpdt : REAL; IF TRangeOK(T) THEN Rho:=CondensPhaseRho(T); dpdt:=dpsatdt(t); IF NOT Error THEN LiqEnthalpy:=FAlpha(T)+T/Rho*dPdT; END ELSE { Error: T Out of Range } FUNCTION VapEnthalpy (T : REAL) : REAL; VAR Rho, dpdt : REAL; IF TRangeOK(T) THEN Rho:=VapourPhaseRho(T); dpdt:=dpsatdt(t); IF NOT Error THEN VapEnthalpy:=FAlpha(T)+T/Rho*dPdT; END ELSE { Error: T Out of Range } FUNCTION FPhi (T : REAL) : DOUBLE;

15 Properties of ordinary water substance at saturation M. CONDE ENGINEERING Page 13 / 23 VAR AParm : TH2oParamArray; FUNCTION CalcPhi (T : REAL) : REAL; VAR Theta, LnTheta, X : REAL; Theta:=T/DH2o.H2oTc; LnTheta:=LN(Theta); X:=109.0/107.0*AParm[5]*EXP(53.5*LnTheta); X:=X+5.0/4.0*AParm[4]*EXP(4.0*LnTheta); X:=X+9.0/7.0*AParm[3]*EXP(3.5*LnTheta); X:=X+AParm[2]*LnTheta; X:=X+19.0/20.0*AParm[1]*EXP(-20.0*LnTheta); CalcPhi:=1000.0/DH2o.H2oTc*(AParm[6]+X); { CalcPhi } IF TRangeOK(T) THEN IF ((T >= 213.0) AND (T <= )) THEN { Condensed phase is solid } AParm:=DH2o.IceAux ELSE IF ((T > ) AND (T <= DH2o.H2oTc)) THEN { Condensed phase is liquid } AParm:=DH2o.H2oAux; FPhi:=CalcPhi(T); END ELSE { Error: T Out of Range } { FPhi} FUNCTION LiqEntropy (T : REAL) : REAL; VAR Rho, dpdt : REAL; IF TRangeOK(T) THEN Rho:=CondensPhaseRho(T); dpdt:=dpsatdt(t); IF NOT Error THEN LiqEntropy:=FPhi(T)+1.0/Rho*dPdT; END ELSE { Error: T Out of Range } FUNCTION VapEntropy (T : REAL) : REAL; VAR Rho, dpdt : REAL; IF TRangeOK(T) THEN Rho:=VapourPhaseRho(T); dpdt:=dpsatdt(t);

16 14 / 23 M. CONDE ENGINEERING Properties of ordinary water substance at saturation IF NOT Error THEN VapEntropy:=FPhi(T)+1.0/Rho*dPdT; END ELSE { Error: T Out of Range } FUNCTION LatentEnthalpy (T: REAL) : REAL; VAR RhoL, RhoG, dpdt : REAL; IF TRangeOK(T) THEN RhoG:=VapourPhaseRho(T); RhoL:=CondensPhaseRho(T); dpdt:=dpsatdt(t); IF NOT Error THEN LatentEnthalpy:=T*(1.0/RhoG-1.0/RhoL)*dPdT; END ELSE { Error: T Out of Range } FUNCTION LatentEntropy (T : REAL) : REAL; VAR RhoL, RhoG, dpdt : REAL; IF TRangeOK(T) THEN RhoG:=VapourPhaseRho(T); RhoL:=CondensPhaseRho(T); dpdt:=dpsatdt(t); IF NOT Error THEN LatentEntropy:=(1.0/RhoG-1.0/RhoL)*dPdT; END ELSE { Error: T Out of Range } END. { Implementation Part }

17 APPENDIX B

18 [ C] Psat [kpa] ρ L ρ V h L h fg h V s L s fg s V e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e M. CONDE ENGINEERING, 2002 Thermodynamic Properties of Normal Water at Saturation Page 16 / 23 t

19 [ C] Psat [kpa] ρ L ρ V h L h fg h V s L s fg s V e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e M. CONDE ENGINEERING, 2002 Thermodynamic Properties of Normal Water at Saturation Page 17 / 23 t

20 [ C] Psat [kpa] ρ L ρ V h L h fg h V s L s fg s V e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e M. CONDE ENGINEERING, 2002 Thermodynamic Properties of Normal Water at Saturation Page 18 / 23 t

21 [ C] Psat [kpa] ρ L ρ V h L h fg h V s L s fg s V e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e M. CONDE ENGINEERING, 2002 Thermodynamic Properties of Normal Water at Saturation Page 19 / 23 t

22 [ C] Psat [kpa] ρ L ρ V h L h fg h V s L s fg s V e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e M. CONDE ENGINEERING, 2002 Thermodynamic Properties of Normal Water at Saturation Page 20 / 23 t

23 [ C] Psat [kpa] ρ L ρ V h L h fg h V s L s fg s V e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e M. CONDE ENGINEERING, 2002 Thermodynamic Properties of Normal Water at Saturation Page 21 / 23 t

24 [ C] Psat [kpa] ρ L ρ V h L h fg h V s L s fg s V e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e M. CONDE ENGINEERING, 2002 Thermodynamic Properties of Normal Water at Saturation Page 22 / 23 t

25 [ C] Psat [kpa] ρ L ρ V h L h fg h V s L s fg s V e e e e e e e e e e e e e e e e e e e e e e e e e e e e e e M. CONDE ENGINEERING, 2002 Thermodynamic Properties of Normal Water at Saturation Page 23 / 23 t

Technical Information T-9100 SI. Suva. refrigerants. Thermodynamic Properties of. Suva Refrigerant [R-410A (50/50)]

Technical Information T-9100 SI. Suva. refrigerants. Thermodynamic Properties of. Suva Refrigerant [R-410A (50/50)] d Suva refrigerants Technical Information T-9100SI Thermodynamic Properties of Suva 9100 Refrigerant [R-410A (50/50)] Thermodynamic Properties of Suva 9100 Refrigerant SI Units New tables of the thermodynamic

Διαβάστε περισσότερα

DuPont Suva 95 Refrigerant

DuPont Suva 95 Refrigerant Technical Information T-95 ENG DuPont Suva refrigerants Thermodynamic Properties of DuPont Suva 95 Refrigerant (R-508B) The DuPont Oval Logo, The miracles of science, and Suva, are trademarks or registered

Διαβάστε περισσότερα

DuPont Suva 95 Refrigerant

DuPont Suva 95 Refrigerant Technical Information T-95 SI DuPont Suva refrigerants Thermodynamic Properties of DuPont Suva 95 Refrigerant (R-508B) The DuPont Oval Logo, The miracles of science, and Suva, are trademarks or registered

Διαβάστε περισσότερα

DuPont Suva. DuPont. Thermodynamic Properties of. Refrigerant (R-410A) Technical Information. refrigerants T-410A ENG

DuPont Suva. DuPont. Thermodynamic Properties of. Refrigerant (R-410A) Technical Information. refrigerants T-410A ENG Technical Information T-410A ENG DuPont Suva refrigerants Thermodynamic Properties of DuPont Suva 410A Refrigerant (R-410A) The DuPont Oval Logo, The miracles of science, and Suva, are trademarks or registered

Διαβάστε περισσότερα

STEAM TABLES. Mollier Diagram

STEAM TABLES. Mollier Diagram STEAM TABLES and Mollier Diagram (S.I. Units) dharm \M-therm\C-steam.pm5 CONTENTS Table No. Page No. 1. Saturated Water and Steam (Temperature) Tables I (ii) 2. Saturated Water and Steam (Pressure) Tables

Διαβάστε περισσότερα

Figure 1 T / K Explain, in terms of molecules, why the first part of the graph in Figure 1 is a line that slopes up from the origin.

Figure 1 T / K Explain, in terms of molecules, why the first part of the graph in Figure 1 is a line that slopes up from the origin. Q1.(a) Figure 1 shows how the entropy of a molecular substance X varies with temperature. Figure 1 T / K (i) Explain, in terms of molecules, why the entropy is zero when the temperature is zero Kelvin.

Διαβάστε περισσότερα

Mean bond enthalpy Standard enthalpy of formation Bond N H N N N N H O O O

Mean bond enthalpy Standard enthalpy of formation Bond N H N N N N H O O O Q1. (a) Explain the meaning of the terms mean bond enthalpy and standard enthalpy of formation. Mean bond enthalpy... Standard enthalpy of formation... (5) (b) Some mean bond enthalpies are given below.

Διαβάστε περισσότερα

DESIGN OF MACHINERY SOLUTION MANUAL h in h 4 0.

DESIGN OF MACHINERY SOLUTION MANUAL h in h 4 0. DESIGN OF MACHINERY SOLUTION MANUAL -7-1! PROBLEM -7 Statement: Design a double-dwell cam to move a follower from to 25 6, dwell for 12, fall 25 and dwell for the remader The total cycle must take 4 sec

Διαβάστε περισσότερα

By R.L. Snyder (Revised March 24, 2005)

By R.L. Snyder (Revised March 24, 2005) Humidity Conversion By R.L. Snyder (Revised March 24, 2005) This Web page provides the equations used to make humidity conversions and tables o saturation vapor pressure. For a pd ile o this document,

Διαβάστε περισσότερα

Pof moist air and uses these properties to analyze conditions and

Pof moist air and uses these properties to analyze conditions and CHAPTER 6 PSYCHROMETRICS Composition of Dry and Moist Air... 6.1 United States Standard Atmosphere... 6.1 Thermodynamic Properties of Moist Air... 6.2 Thermodynamic Properties of Water at Saturation...

Διαβάστε περισσότερα

Approximation of distance between locations on earth given by latitude and longitude

Approximation of distance between locations on earth given by latitude and longitude Approximation of distance between locations on earth given by latitude and longitude Jan Behrens 2012-12-31 In this paper we shall provide a method to approximate distances between two points on earth

Διαβάστε περισσότερα

Dynamic types, Lambda calculus machines Section and Practice Problems Apr 21 22, 2016

Dynamic types, Lambda calculus machines Section and Practice Problems Apr 21 22, 2016 Harvard School of Engineering and Applied Sciences CS 152: Programming Languages Dynamic types, Lambda calculus machines Apr 21 22, 2016 1 Dynamic types and contracts (a) To make sure you understand the

Διαβάστε περισσότερα

- Αναπαράσταση ακέραιας τιµής : - Εύρος ακεραίων : - Ακέραιοι τύποι: - Πράξεις µε ακεραίους (DIV - MOD)

- Αναπαράσταση ακέραιας τιµής : - Εύρος ακεραίων : - Ακέραιοι τύποι: - Πράξεις µε ακεραίους (DIV - MOD) Η Γλώσσα Pascal Χαρακτηριστικά Τύποι Δεδοµένων Δοµή προγράµµατος 1. Βασικές έννοιες Χαρακτηριστικά της γλώσσας Pascal Γλώσσα προγραµµατισµού Συντακτικό Σηµασιολογία Αλφάβητο της γλώσσας Pascal (Σύνολο

Διαβάστε περισσότερα

ΓΕΩΜΕΣΡΙΚΗ ΣΕΚΜΗΡΙΩΗ ΣΟΤ ΙΕΡΟΤ ΝΑΟΤ ΣΟΤ ΣΙΜΙΟΤ ΣΑΤΡΟΤ ΣΟ ΠΕΛΕΝΔΡΙ ΣΗ ΚΤΠΡΟΤ ΜΕ ΕΦΑΡΜΟΓΗ ΑΤΣΟΜΑΣΟΠΟΙΗΜΕΝΟΤ ΤΣΗΜΑΣΟ ΨΗΦΙΑΚΗ ΦΩΣΟΓΡΑΜΜΕΣΡΙΑ

ΓΕΩΜΕΣΡΙΚΗ ΣΕΚΜΗΡΙΩΗ ΣΟΤ ΙΕΡΟΤ ΝΑΟΤ ΣΟΤ ΣΙΜΙΟΤ ΣΑΤΡΟΤ ΣΟ ΠΕΛΕΝΔΡΙ ΣΗ ΚΤΠΡΟΤ ΜΕ ΕΦΑΡΜΟΓΗ ΑΤΣΟΜΑΣΟΠΟΙΗΜΕΝΟΤ ΤΣΗΜΑΣΟ ΨΗΦΙΑΚΗ ΦΩΣΟΓΡΑΜΜΕΣΡΙΑ ΕΘΝΙΚΟ ΜΕΣΟΒΙΟ ΠΟΛΤΣΕΧΝΕΙΟ ΣΜΗΜΑ ΑΓΡΟΝΟΜΩΝ-ΣΟΠΟΓΡΑΦΩΝ ΜΗΧΑΝΙΚΩΝ ΣΟΜΕΑ ΣΟΠΟΓΡΑΦΙΑ ΕΡΓΑΣΗΡΙΟ ΦΩΣΟΓΡΑΜΜΕΣΡΙΑ ΓΕΩΜΕΣΡΙΚΗ ΣΕΚΜΗΡΙΩΗ ΣΟΤ ΙΕΡΟΤ ΝΑΟΤ ΣΟΤ ΣΙΜΙΟΤ ΣΑΤΡΟΤ ΣΟ ΠΕΛΕΝΔΡΙ ΣΗ ΚΤΠΡΟΤ ΜΕ ΕΦΑΡΜΟΓΗ ΑΤΣΟΜΑΣΟΠΟΙΗΜΕΝΟΤ

Διαβάστε περισσότερα

Phys460.nb Solution for the t-dependent Schrodinger s equation How did we find the solution? (not required)

Phys460.nb Solution for the t-dependent Schrodinger s equation How did we find the solution? (not required) Phys460.nb 81 ψ n (t) is still the (same) eigenstate of H But for tdependent H. The answer is NO. 5.5.5. Solution for the tdependent Schrodinger s equation If we assume that at time t 0, the electron starts

Διαβάστε περισσότερα

Homework 8 Model Solution Section

Homework 8 Model Solution Section MATH 004 Homework Solution Homework 8 Model Solution Section 14.5 14.6. 14.5. Use the Chain Rule to find dz where z cosx + 4y), x 5t 4, y 1 t. dz dx + dy y sinx + 4y)0t + 4) sinx + 4y) 1t ) 0t + 4t ) sinx

Διαβάστε περισσότερα

ΑΥΤΟΜΑΤΟΠΟΙΗΣΗ ΜΟΝΑΔΑΣ ΘΡΑΥΣΤΗΡΑ ΜΕ ΧΡΗΣΗ P.L.C. AUTOMATION OF A CRUSHER MODULE USING P.L.C.

ΑΥΤΟΜΑΤΟΠΟΙΗΣΗ ΜΟΝΑΔΑΣ ΘΡΑΥΣΤΗΡΑ ΜΕ ΧΡΗΣΗ P.L.C. AUTOMATION OF A CRUSHER MODULE USING P.L.C. ΤΕΧΝΟΛΟΓΙΚΟ ΕΚΠΑΙΔΕΥΤΙΚΟ ΙΔΡΥΜΑ ΑΝ. ΜΑΚΕΔΟΝΙΑΣ ΚΑΙ ΘΡΑΚΗΣ ΣΧΟΛΗ ΤΕΧΝΟΛΟΓΙΚΩΝ ΕΦΑΡΜΟΓΩΝ ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ Τ.Ε ΠΤΥΧΙΑΚΗ ΕΡΓΑΣΙΑ ΑΥΤΟΜΑΤΟΠΟΙΗΣΗ ΜΟΝΑΔΑΣ ΘΡΑΥΣΤΗΡΑ ΜΕ ΧΡΗΣΗ P.L.C. AUTOMATION OF A

Διαβάστε περισσότερα

Enthalpy data for the reacting species are given in the table below. The activation energy decreases when the temperature is increased.

Enthalpy data for the reacting species are given in the table below. The activation energy decreases when the temperature is increased. Q1.This question is about the reaction given below. O(g) + H 2O(g) O 2(g) + H 2(g) Enthalpy data for the reacting species are given in the table below. Substance O(g) H 2O(g) O 2(g) H 2(g) ΔH / kj mol

Διαβάστε περισσότερα

Spherical Coordinates

Spherical Coordinates Spherical Coordinates MATH 311, Calculus III J. Robert Buchanan Department of Mathematics Fall 2011 Spherical Coordinates Another means of locating points in three-dimensional space is known as the spherical

Διαβάστε περισσότερα

CHAPTER 25 SOLVING EQUATIONS BY ITERATIVE METHODS

CHAPTER 25 SOLVING EQUATIONS BY ITERATIVE METHODS CHAPTER 5 SOLVING EQUATIONS BY ITERATIVE METHODS EXERCISE 104 Page 8 1. Find the positive root of the equation x + 3x 5 = 0, correct to 3 significant figures, using the method of bisection. Let f(x) =

Διαβάστε περισσότερα

Practice Exam 2. Conceptual Questions. 1. State a Basic identity and then verify it. (a) Identity: Solution: One identity is csc(θ) = 1

Practice Exam 2. Conceptual Questions. 1. State a Basic identity and then verify it. (a) Identity: Solution: One identity is csc(θ) = 1 Conceptual Questions. State a Basic identity and then verify it. a) Identity: Solution: One identity is cscθ) = sinθ) Practice Exam b) Verification: Solution: Given the point of intersection x, y) of the

Διαβάστε περισσότερα

Thermodynamic Tables to accompany Modern Engineering Thermodynamics

Thermodynamic Tables to accompany Modern Engineering Thermodynamics Thermodynamic Tables to accompany Modern Engineering Thermodynamics This page intentionally left blank Thermodynamic Tables to accompany Modern Engineering Thermodynamics Robert T. Balmer AMSTERDAM BOSTON

Διαβάστε περισσότερα

ddupont Fluorochemicals

ddupont Fluorochemicals Technical Information T-23 ENG ddupont Fluorochemicals Thermodynamic Properties of HFC-23 (trifluoromethane) DuPont Product Names: Freon 23 Thermodynamic Properties of HFC-23 Refrigerant (trifluoromethane)

Διαβάστε περισσότερα

Potential Dividers. 46 minutes. 46 marks. Page 1 of 11

Potential Dividers. 46 minutes. 46 marks. Page 1 of 11 Potential Dividers 46 minutes 46 marks Page 1 of 11 Q1. In the circuit shown in the figure below, the battery, of negligible internal resistance, has an emf of 30 V. The pd across the lamp is 6.0 V and

Διαβάστε περισσότερα

Second Order RLC Filters

Second Order RLC Filters ECEN 60 Circuits/Electronics Spring 007-0-07 P. Mathys Second Order RLC Filters RLC Lowpass Filter A passive RLC lowpass filter (LPF) circuit is shown in the following schematic. R L C v O (t) Using phasor

Διαβάστε περισσότερα

APPENDIX A. Summary of the English Engineering (EE) System of Units

APPENDIX A. Summary of the English Engineering (EE) System of Units Appendixes A. Summary of the English Engineering (EE) System of Units B. Summary of the International System (SI) of Units C. Friction-Factor Chart D. Oblique-Shock Charts (γ = 1.4) (Two-Dimensional) E.

Διαβάστε περισσότερα

Συστήματα Βιομηχανικών Διεργασιών 6ο εξάμηνο

Συστήματα Βιομηχανικών Διεργασιών 6ο εξάμηνο Συστήματα Βιομηχανικών Διεργασιών 6ο εξάμηνο Μέρος 1 ο : Εισαγωγικά (διαστ., πυκν., θερμ., πίεση, κτλ.) Μέρος 2 ο : Ισοζύγια μάζας Μέρος 3 ο : 8 ο μάθημα Εκτός ύλης ΔΠΘ-ΜΠΔ Συστήματα Βιομηχανικών Διεργασιών

Διαβάστε περισσότερα

Math 6 SL Probability Distributions Practice Test Mark Scheme

Math 6 SL Probability Distributions Practice Test Mark Scheme Math 6 SL Probability Distributions Practice Test Mark Scheme. (a) Note: Award A for vertical line to right of mean, A for shading to right of their vertical line. AA N (b) evidence of recognizing symmetry

Διαβάστε περισσότερα

Second Order Partial Differential Equations

Second Order Partial Differential Equations Chapter 7 Second Order Partial Differential Equations 7.1 Introduction A second order linear PDE in two independent variables (x, y Ω can be written as A(x, y u x + B(x, y u xy + C(x, y u u u + D(x, y

Διαβάστε περισσότερα

Correction Table for an Alcoholometer Calibrated at 20 o C

Correction Table for an Alcoholometer Calibrated at 20 o C An alcoholometer is a device that measures the concentration of ethanol in a water-ethanol mixture (often in units of %abv percent alcohol by volume). The depth to which an alcoholometer sinks in a water-ethanol

Διαβάστε περισσότερα

ΕΘΝΙΚΗ ΣΧΟΛΗ ΔΗΜΟΣΙΑΣ ΔΙΟΙΚΗΣΗΣ ΙΓ' ΕΚΠΑΙΔΕΥΤΙΚΗ ΣΕΙΡΑ

ΕΘΝΙΚΗ ΣΧΟΛΗ ΔΗΜΟΣΙΑΣ ΔΙΟΙΚΗΣΗΣ ΙΓ' ΕΚΠΑΙΔΕΥΤΙΚΗ ΣΕΙΡΑ ΕΘΝΙΚΗ ΣΧΟΛΗ ΔΗΜΟΣΙΑΣ ΔΙΟΙΚΗΣΗΣ ΙΓ' ΕΚΠΑΙΔΕΥΤΙΚΗ ΣΕΙΡΑ ΤΜΗΜΑ ΤΟΠΙΚΗΣ ΑΥΤΟΔΙΟΙΚΗΣΗΣ ΚΑΙ ΠΕΡΙΦΕΡΕΙΑΚΗΣ ΑΝΑΠΤΥΞΗΣ ΤΕΛΙΚΗ ΕΡΓΑΣΙΑ: ΠΕΡΙΒΑΛΛΟΝ ΚΑΙ ΑΝΑΠΤΥΞΗ: ΠΡΟΣΕΓΓΙΣΗ ΜΕΣΩ ΔΕΙΚΤΩΝ Επιβλέπων: Αθ.Δελαπάσχος

Διαβάστε περισσότερα

Εργαστήριο Οργάνωσης Η/Υ. Δαδαλιάρης Αντώνιος

Εργαστήριο Οργάνωσης Η/Υ. Δαδαλιάρης Αντώνιος Εργαστήριο Οργάνωσης Η/Υ Δαδαλιάρης Αντώνιος dadaliaris@uth.gr Σχόλια: - - This is a single line comment - - There is no alternative way to write multi-line comments Αναγνωριστικά: Τα αναγνωριστικά

Διαβάστε περισσότερα

Ύγρανση και Αφύγρανση. Ψυχρομετρία. 21-Nov-16

Ύγρανση και Αφύγρανση. Ψυχρομετρία. 21-Nov-16 Ύγρανση και Αφύγρανση Ψυχρομετρία η μελέτη των ιδιοτήτων του υγρού αέρα δηλαδή του μίγματος αέρα-ατμού-νερού. Ένα βασικό πρόβλημα: Δεδομένων των P (bar) Πίεση T ( o C) Θερμοκρασία Υ (kg/kg ξβ) Υγρασία

Διαβάστε περισσότερα

4.6 Autoregressive Moving Average Model ARMA(1,1)

4.6 Autoregressive Moving Average Model ARMA(1,1) 84 CHAPTER 4. STATIONARY TS MODELS 4.6 Autoregressive Moving Average Model ARMA(,) This section is an introduction to a wide class of models ARMA(p,q) which we will consider in more detail later in this

Διαβάστε περισσότερα

Problem Set 9 Solutions. θ + 1. θ 2 + cotθ ( ) sinθ e iφ is an eigenfunction of the ˆ L 2 operator. / θ 2. φ 2. sin 2 θ φ 2. ( ) = e iφ. = e iφ cosθ.

Problem Set 9 Solutions. θ + 1. θ 2 + cotθ ( ) sinθ e iφ is an eigenfunction of the ˆ L 2 operator. / θ 2. φ 2. sin 2 θ φ 2. ( ) = e iφ. = e iφ cosθ. Chemistry 362 Dr Jean M Standard Problem Set 9 Solutions The ˆ L 2 operator is defined as Verify that the angular wavefunction Y θ,φ) Also verify that the eigenvalue is given by 2! 2 & L ˆ 2! 2 2 θ 2 +

Διαβάστε περισσότερα

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 24/3/2007

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 24/3/2007 Οδηγίες: Να απαντηθούν όλες οι ερωτήσεις. Όλοι οι αριθμοί που αναφέρονται σε όλα τα ερωτήματα μικρότεροι του 10000 εκτός αν ορίζεται διαφορετικά στη διατύπωση του προβλήματος. Αν κάπου κάνετε κάποιες υποθέσεις

Διαβάστε περισσότερα

The Simply Typed Lambda Calculus

The Simply Typed Lambda Calculus Type Inference Instead of writing type annotations, can we use an algorithm to infer what the type annotations should be? That depends on the type system. For simple type systems the answer is yes, and

Διαβάστε περισσότερα

Econ 2110: Fall 2008 Suggested Solutions to Problem Set 8 questions or comments to Dan Fetter 1

Econ 2110: Fall 2008 Suggested Solutions to Problem Set 8  questions or comments to Dan Fetter 1 Eon : Fall 8 Suggested Solutions to Problem Set 8 Email questions or omments to Dan Fetter Problem. Let X be a salar with density f(x, θ) (θx + θ) [ x ] with θ. (a) Find the most powerful level α test

Διαβάστε περισσότερα

Example Sheet 3 Solutions

Example Sheet 3 Solutions Example Sheet 3 Solutions. i Regular Sturm-Liouville. ii Singular Sturm-Liouville mixed boundary conditions. iii Not Sturm-Liouville ODE is not in Sturm-Liouville form. iv Regular Sturm-Liouville note

Διαβάστε περισσότερα

Mock Exam 7. 1 Hong Kong Educational Publishing Company. Section A 1. Reference: HKDSE Math M Q2 (a) (1 + kx) n 1M + 1A = (1) =

Mock Exam 7. 1 Hong Kong Educational Publishing Company. Section A 1. Reference: HKDSE Math M Q2 (a) (1 + kx) n 1M + 1A = (1) = Mock Eam 7 Mock Eam 7 Section A. Reference: HKDSE Math M 0 Q (a) ( + k) n nn ( )( k) + nk ( ) + + nn ( ) k + nk + + + A nk... () nn ( ) k... () From (), k...() n Substituting () into (), nn ( ) n 76n 76n

Διαβάστε περισσότερα

Solutions to Exercise Sheet 5

Solutions to Exercise Sheet 5 Solutions to Eercise Sheet 5 jacques@ucsd.edu. Let X and Y be random variables with joint pdf f(, y) = 3y( + y) where and y. Determine each of the following probabilities. Solutions. a. P (X ). b. P (X

Διαβάστε περισσότερα

Right Rear Door. Let's now finish the door hinge saga with the right rear door

Right Rear Door. Let's now finish the door hinge saga with the right rear door Right Rear Door Let's now finish the door hinge saga with the right rear door You may have been already guessed my steps, so there is not much to describe in detail. Old upper one file:///c /Documents

Διαβάστε περισσότερα

Dr. D. Dinev, Department of Structural Mechanics, UACEG

Dr. D. Dinev, Department of Structural Mechanics, UACEG Lecture 4 Material behavior: Constitutive equations Field of the game Print version Lecture on Theory of lasticity and Plasticity of Dr. D. Dinev, Department of Structural Mechanics, UACG 4.1 Contents

Διαβάστε περισσότερα

6.1. Dirac Equation. Hamiltonian. Dirac Eq.

6.1. Dirac Equation. Hamiltonian. Dirac Eq. 6.1. Dirac Equation Ref: M.Kaku, Quantum Field Theory, Oxford Univ Press (1993) η μν = η μν = diag(1, -1, -1, -1) p 0 = p 0 p = p i = -p i p μ p μ = p 0 p 0 + p i p i = E c 2 - p 2 = (m c) 2 H = c p 2

Διαβάστε περισσότερα

Homework 3 Solutions

Homework 3 Solutions Homework 3 Solutions Igor Yanovsky (Math 151A TA) Problem 1: Compute the absolute error and relative error in approximations of p by p. (Use calculator!) a) p π, p 22/7; b) p π, p 3.141. Solution: For

Διαβάστε περισσότερα

HOMEWORK 4 = G. In order to plot the stress versus the stretch we define a normalized stretch:

HOMEWORK 4 = G. In order to plot the stress versus the stretch we define a normalized stretch: HOMEWORK 4 Problem a For the fast loading case, we want to derive the relationship between P zz and λ z. We know that the nominal stress is expressed as: P zz = ψ λ z where λ z = λ λ z. Therefore, applying

Διαβάστε περισσότερα

b. Use the parametrization from (a) to compute the area of S a as S a ds. Be sure to substitute for ds!

b. Use the parametrization from (a) to compute the area of S a as S a ds. Be sure to substitute for ds! MTH U341 urface Integrals, tokes theorem, the divergence theorem To be turned in Wed., Dec. 1. 1. Let be the sphere of radius a, x 2 + y 2 + z 2 a 2. a. Use spherical coordinates (with ρ a) to parametrize.

Διαβάστε περισσότερα

ANSWERSHEET (TOPIC = DIFFERENTIAL CALCULUS) COLLECTION #2. h 0 h h 0 h h 0 ( ) g k = g 0 + g 1 + g g 2009 =?

ANSWERSHEET (TOPIC = DIFFERENTIAL CALCULUS) COLLECTION #2. h 0 h h 0 h h 0 ( ) g k = g 0 + g 1 + g g 2009 =? Teko Classes IITJEE/AIEEE Maths by SUHAAG SIR, Bhopal, Ph (0755) 3 00 000 www.tekoclasses.com ANSWERSHEET (TOPIC DIFFERENTIAL CALCULUS) COLLECTION # Question Type A.Single Correct Type Q. (A) Sol least

Διαβάστε περισσότερα

Section 8.3 Trigonometric Equations

Section 8.3 Trigonometric Equations 99 Section 8. Trigonometric Equations Objective 1: Solve Equations Involving One Trigonometric Function. In this section and the next, we will exple how to solving equations involving trigonometric functions.

Διαβάστε περισσότερα

3.4 SUM AND DIFFERENCE FORMULAS. NOTE: cos(α+β) cos α + cos β cos(α-β) cos α -cos β

3.4 SUM AND DIFFERENCE FORMULAS. NOTE: cos(α+β) cos α + cos β cos(α-β) cos α -cos β 3.4 SUM AND DIFFERENCE FORMULAS Page Theorem cos(αβ cos α cos β -sin α cos(α-β cos α cos β sin α NOTE: cos(αβ cos α cos β cos(α-β cos α -cos β Proof of cos(α-β cos α cos β sin α Let s use a unit circle

Διαβάστε περισσότερα

(C) 2010 Pearson Education, Inc. All rights reserved.

(C) 2010 Pearson Education, Inc. All rights reserved. Connectionless transmission with datagrams. Connection-oriented transmission is like the telephone system You dial and are given a connection to the telephone of fthe person with whom you wish to communicate.

Διαβάστε περισσότερα

department listing department name αχχουντσ ϕανε βαλικτ δδσϕηασδδη σδηφγ ασκϕηλκ τεχηνιχαλ αλαν ϕουν διξ τεχηνιχαλ ϕοην µαριανι

department listing department name αχχουντσ ϕανε βαλικτ δδσϕηασδδη σδηφγ ασκϕηλκ τεχηνιχαλ αλαν ϕουν διξ τεχηνιχαλ ϕοην µαριανι She selects the option. Jenny starts with the al listing. This has employees listed within She drills down through the employee. The inferred ER sttricture relates this to the redcords in the databasee

Διαβάστε περισσότερα

An Inventory of Continuous Distributions

An Inventory of Continuous Distributions Appendi A An Inventory of Continuous Distributions A.1 Introduction The incomplete gamma function is given by Also, define Γ(α; ) = 1 with = G(α; ) = Z 0 Z 0 Z t α 1 e t dt, α > 0, >0 t α 1 e t dt, α >

Διαβάστε περισσότερα

Integrals in cylindrical, spherical coordinates (Sect. 15.7)

Integrals in cylindrical, spherical coordinates (Sect. 15.7) Integrals in clindrical, spherical coordinates (Sect. 5.7 Integration in spherical coordinates. Review: Clindrical coordinates. Spherical coordinates in space. Triple integral in spherical coordinates.

Διαβάστε περισσότερα

; +302 ; +313; +320,.

; +302 ; +313; +320,. 1.,,*+, - +./ +/2 +, -. ; +, - +* cm : Key words: snow-water content, surface soil, snow type, water permeability, water retention +,**. +,,**/.. +30- +302 ; +302 ; +313; +320,. + *+, *2// + -.*, **. **+.,

Διαβάστε περισσότερα

Partial Differential Equations in Biology The boundary element method. March 26, 2013

Partial Differential Equations in Biology The boundary element method. March 26, 2013 The boundary element method March 26, 203 Introduction and notation The problem: u = f in D R d u = ϕ in Γ D u n = g on Γ N, where D = Γ D Γ N, Γ D Γ N = (possibly, Γ D = [Neumann problem] or Γ N = [Dirichlet

Διαβάστε περισσότερα

Selecting Critical Properties of Terpenes and Terpenoids through Group-Contribution Methods and Equations of State

Selecting Critical Properties of Terpenes and Terpenoids through Group-Contribution Methods and Equations of State Supporting Information Selecting Critical Properties of Terpenes and Terpenoids through Group-Contribution Methods and Equations of State Mónia A. R. Martins, 1,2 Pedro J. Carvalho, 1 André M. Palma, 1

Διαβάστε περισσότερα

Math221: HW# 1 solutions

Math221: HW# 1 solutions Math: HW# solutions Andy Royston October, 5 7.5.7, 3 rd Ed. We have a n = b n = a = fxdx = xdx =, x cos nxdx = x sin nx n sin nxdx n = cos nx n = n n, x sin nxdx = x cos nx n + cos nxdx n cos n = + sin

Διαβάστε περισσότερα

Supplementary Material for The Cusp Catastrophe Model as Cross-Sectional and Longitudinal Mixture Structural Equation Models

Supplementary Material for The Cusp Catastrophe Model as Cross-Sectional and Longitudinal Mixture Structural Equation Models Supplementary Material for The Cusp Catastrophe Model as Cross-Sectional and Longitudinal Mixture Structural Equation Models Sy-Miin Chow Pennsylvania State University Katie Witkiewitz University of New

Διαβάστε περισσότερα

Other Test Constructions: Likelihood Ratio & Bayes Tests

Other Test Constructions: Likelihood Ratio & Bayes Tests Other Test Constructions: Likelihood Ratio & Bayes Tests Side-Note: So far we have seen a few approaches for creating tests such as Neyman-Pearson Lemma ( most powerful tests of H 0 : θ = θ 0 vs H 1 :

Διαβάστε περισσότερα

Αποτελέσματα προόδου

Αποτελέσματα προόδου ΠΡΟΓΡΑΜΜΑΤΙΣΜΟΣ ΗΛΕΚΤΡΟΝΙΚΩΝ ΥΠΟΛΟΓΙΣΤΩΝ http://courses.softlab.ntua.gr/progintro/ Διδάσκοντες: Στάθης Ζάχος (zachos@cs.ntua.gr) Νίκος Παπασπύρου (nickie@softlab.ntua.gr) Δημήτρης Φωτάκης (fotakis@cs.ntua.gr)

Διαβάστε περισσότερα

CHAPTER 101 FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD

CHAPTER 101 FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD CHAPTER FOURIER SERIES FOR PERIODIC FUNCTIONS OF PERIOD EXERCISE 36 Page 66. Determine the Fourier series for the periodic function: f(x), when x +, when x which is periodic outside this rge of period.

Διαβάστε περισσότερα

Congruence Classes of Invertible Matrices of Order 3 over F 2

Congruence Classes of Invertible Matrices of Order 3 over F 2 International Journal of Algebra, Vol. 8, 24, no. 5, 239-246 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/.2988/ija.24.422 Congruence Classes of Invertible Matrices of Order 3 over F 2 Ligong An and

Διαβάστε περισσότερα

Geodesic Equations for the Wormhole Metric

Geodesic Equations for the Wormhole Metric Geodesic Equations for the Wormhole Metric Dr R Herman Physics & Physical Oceanography, UNCW February 14, 2018 The Wormhole Metric Morris and Thorne wormhole metric: [M S Morris, K S Thorne, Wormholes

Διαβάστε περισσότερα

Higher Derivative Gravity Theories

Higher Derivative Gravity Theories Higher Derivative Gravity Theories Black Holes in AdS space-times James Mashiyane Supervisor: Prof Kevin Goldstein University of the Witwatersrand Second Mandelstam, 20 January 2018 James Mashiyane WITS)

Διαβάστε περισσότερα

Fourier Series. MATH 211, Calculus II. J. Robert Buchanan. Spring Department of Mathematics

Fourier Series. MATH 211, Calculus II. J. Robert Buchanan. Spring Department of Mathematics Fourier Series MATH 211, Calculus II J. Robert Buchanan Department of Mathematics Spring 2018 Introduction Not all functions can be represented by Taylor series. f (k) (c) A Taylor series f (x) = (x c)

Διαβάστε περισσότερα

Biodiesel quality and EN 14214:2012

Biodiesel quality and EN 14214:2012 3η Ενότητα: «Αγορά Βιοκαυσίμων στην Ελλάδα: Τάσεις και Προοπτικές» Biodiesel quality and EN 14214:2012 Dr. Hendrik Stein Pilot Plant Manager, ASG Analytik Content Introduction Development of the Biodiesel

Διαβάστε περισσότερα

UNIVERSITY OF CALIFORNIA. EECS 150 Fall ) You are implementing an 4:1 Multiplexer that has the following specifications:

UNIVERSITY OF CALIFORNIA. EECS 150 Fall ) You are implementing an 4:1 Multiplexer that has the following specifications: UNIVERSITY OF CALIFORNIA Department of Electrical Engineering and Computer Sciences EECS 150 Fall 2001 Prof. Subramanian Midterm II 1) You are implementing an 4:1 Multiplexer that has the following specifications:

Διαβάστε περισσότερα

1. (a) (5 points) Find the unit tangent and unit normal vectors T and N to the curve. r(t) = 3cost, 4t, 3sint

1. (a) (5 points) Find the unit tangent and unit normal vectors T and N to the curve. r(t) = 3cost, 4t, 3sint 1. a) 5 points) Find the unit tangent and unit normal vectors T and N to the curve at the point P, π, rt) cost, t, sint ). b) 5 points) Find curvature of the curve at the point P. Solution: a) r t) sint,,

Διαβάστε περισσότερα

Strain gauge and rosettes

Strain gauge and rosettes Strain gauge and rosettes Introduction A strain gauge is a device which is used to measure strain (deformation) on an object subjected to forces. Strain can be measured using various types of devices classified

Διαβάστε περισσότερα

SPECIAL FUNCTIONS and POLYNOMIALS

SPECIAL FUNCTIONS and POLYNOMIALS SPECIAL FUNCTIONS and POLYNOMIALS Gerard t Hooft Stefan Nobbenhuis Institute for Theoretical Physics Utrecht University, Leuvenlaan 4 3584 CC Utrecht, the Netherlands and Spinoza Institute Postbox 8.195

Διαβάστε περισσότερα

Calculating the propagation delay of coaxial cable

Calculating the propagation delay of coaxial cable Your source for quality GNSS Networking Solutions and Design Services! Page 1 of 5 Calculating the propagation delay of coaxial cable The delay of a cable or velocity factor is determined by the dielectric

Διαβάστε περισσότερα

Appendix to On the stability of a compressible axisymmetric rotating flow in a pipe. By Z. Rusak & J. H. Lee

Appendix to On the stability of a compressible axisymmetric rotating flow in a pipe. By Z. Rusak & J. H. Lee Appendi to On the stability of a compressible aisymmetric rotating flow in a pipe By Z. Rusak & J. H. Lee Journal of Fluid Mechanics, vol. 5 4, pp. 5 4 This material has not been copy-edited or typeset

Διαβάστε περισσότερα

Η ΕΠΙΔΡΑΣΗ ΤΗΣ ΑΙΘΑΝΟΛΗΣ,ΤΗΣ ΜΕΘΑΝΟΛΗΣ ΚΑΙ ΤΟΥ ΑΙΘΥΛΟΤΡΙΤΟΤΑΓΗ ΒΟΥΤΥΛΑΙΘΕΡΑ ΣΤΙΣ ΙΔΙΟΤΗΤΕΣ ΤΗΣ ΒΕΝΖΙΝΗΣ

Η ΕΠΙΔΡΑΣΗ ΤΗΣ ΑΙΘΑΝΟΛΗΣ,ΤΗΣ ΜΕΘΑΝΟΛΗΣ ΚΑΙ ΤΟΥ ΑΙΘΥΛΟΤΡΙΤΟΤΑΓΗ ΒΟΥΤΥΛΑΙΘΕΡΑ ΣΤΙΣ ΙΔΙΟΤΗΤΕΣ ΤΗΣ ΒΕΝΖΙΝΗΣ ΤΕΧΝΟΛΟΓΙΚΟ ΕΚΠΑΙΔΕΥΤΙΚΟ ΙΔΡΥΜΑ ΚΑΒΑΛΑΣ ΣΧΟΛΗ ΤΕΧΝΟΛΟΓΙΚΩΝ ΕΦΑΡΜΟΓΩΝ ΠΤΥΧΙΑΚΗ ΕΡΓΑΣΙΑ Η ΕΠΙΔΡΑΣΗ ΤΗΣ ΑΙΘΑΝΟΛΗΣ,ΤΗΣ ΜΕΘΑΝΟΛΗΣ ΚΑΙ ΤΟΥ ΑΙΘΥΛΟΤΡΙΤΟΤΑΓΗ ΒΟΥΤΥΛΑΙΘΕΡΑ ΣΤΙΣ ΙΔΙΟΤΗΤΕΣ ΤΗΣ ΒΕΝΖΙΝΗΣ ΟΝΟΜΑΤΕΠΩΝΥΜΟ

Διαβάστε περισσότερα

Written Examination. Antennas and Propagation (AA ) April 26, 2017.

Written Examination. Antennas and Propagation (AA ) April 26, 2017. Written Examination Antennas and Propagation (AA. 6-7) April 6, 7. Problem ( points) Let us consider a wire antenna as in Fig. characterized by a z-oriented linear filamentary current I(z) = I cos(kz)ẑ

Διαβάστε περισσότερα

Inverse trigonometric functions & General Solution of Trigonometric Equations. ------------------ ----------------------------- -----------------

Inverse trigonometric functions & General Solution of Trigonometric Equations. ------------------ ----------------------------- ----------------- Inverse trigonometric functions & General Solution of Trigonometric Equations. 1. Sin ( ) = a) b) c) d) Ans b. Solution : Method 1. Ans a: 17 > 1 a) is rejected. w.k.t Sin ( sin ) = d is rejected. If sin

Διαβάστε περισσότερα

k A = [k, k]( )[a 1, a 2 ] = [ka 1,ka 2 ] 4For the division of two intervals of confidence in R +

k A = [k, k]( )[a 1, a 2 ] = [ka 1,ka 2 ] 4For the division of two intervals of confidence in R + Chapter 3. Fuzzy Arithmetic 3- Fuzzy arithmetic: ~Addition(+) and subtraction (-): Let A = [a and B = [b, b in R If x [a and y [b, b than x+y [a +b +b Symbolically,we write A(+)B = [a (+)[b, b = [a +b

Διαβάστε περισσότερα

Instruction Execution Times

Instruction Execution Times 1 C Execution Times InThisAppendix... Introduction DL330 Execution Times DL330P Execution Times DL340 Execution Times C-2 Execution Times Introduction Data Registers This appendix contains several tables

Διαβάστε περισσότερα

Exercises to Statistics of Material Fatigue No. 5

Exercises to Statistics of Material Fatigue No. 5 Prof. Dr. Christine Müller Dipl.-Math. Christoph Kustosz Eercises to Statistics of Material Fatigue No. 5 E. 9 (5 a Show, that a Fisher information matri for a two dimensional parameter θ (θ,θ 2 R 2, can

Διαβάστε περισσότερα

EE512: Error Control Coding

EE512: Error Control Coding EE512: Error Control Coding Solution for Assignment on Finite Fields February 16, 2007 1. (a) Addition and Multiplication tables for GF (5) and GF (7) are shown in Tables 1 and 2. + 0 1 2 3 4 0 0 1 2 3

Διαβάστε περισσότερα

9.09. # 1. Area inside the oval limaçon r = cos θ. To graph, start with θ = 0 so r = 6. Compute dr

9.09. # 1. Area inside the oval limaçon r = cos θ. To graph, start with θ = 0 so r = 6. Compute dr 9.9 #. Area inside the oval limaçon r = + cos. To graph, start with = so r =. Compute d = sin. Interesting points are where d vanishes, or at =,,, etc. For these values of we compute r:,,, and the values

Διαβάστε περισσότερα

ES440/ES911: CFD. Chapter 5. Solution of Linear Equation Systems

ES440/ES911: CFD. Chapter 5. Solution of Linear Equation Systems ES440/ES911: CFD Chapter 5. Solution of Linear Equation Systems Dr Yongmann M. Chung http://www.eng.warwick.ac.uk/staff/ymc/es440.html Y.M.Chung@warwick.ac.uk School of Engineering & Centre for Scientific

Διαβάστε περισσότερα

Παραμύθια τησ Χαλιμϊσ, τομ. A Σελύδα 1

Παραμύθια τησ Χαλιμϊσ, τομ. A Σελύδα 1 Παραμύθια τησ Χαλιμϊσ, τομ. A Σελύδα 1 Παραμύθια τησ Χαλιμϊσ, τομ. A Σελύδα 2 Dervish Abu Bekr, «Παραμύθια τησ Χαλιμϊσ, τομ. Α» Ιούνιοσ 2013 Φωτo εξωφύλλου: Βαςιλεύα Αςπαςύα Μαςούρα Επιμϋλεια ϋκδοςησ:

Διαβάστε περισσότερα

1 String with massive end-points

1 String with massive end-points 1 String with massive end-points Πρόβλημα 5.11:Θεωρείστε μια χορδή μήκους, τάσης T, με δύο σημειακά σωματίδια στα άκρα της, το ένα μάζας m, και το άλλο μάζας m. α) Μελετώντας την κίνηση των άκρων βρείτε

Διαβάστε περισσότερα

Figure A.2: MPC and MPCP Age Profiles (estimating ρ, ρ = 2, φ = 0.03)..

Figure A.2: MPC and MPCP Age Profiles (estimating ρ, ρ = 2, φ = 0.03).. Supplemental Material (not for publication) Persistent vs. Permanent Income Shocks in the Buffer-Stock Model Jeppe Druedahl Thomas H. Jørgensen May, A Additional Figures and Tables Figure A.: Wealth and

Διαβάστε περισσότερα

RECIPROCATING COMPRESSOR CALCULATION SHEET

RECIPROCATING COMPRESSOR CALCULATION SHEET Gas properties, flowrate and conditions 1 Gas name Air RECIPRCATING CMPRESSR CALCULATIN SHEET WITH INTERCLER ( Sheet : 1. f 4.) Item or symbol Quantity Unit Item or symbol Quantity Unit 2 Suction pressure,

Διαβάστε περισσότερα

Answers - Worksheet A ALGEBRA PMT. 1 a = 7 b = 11 c = 1 3. e = 0.1 f = 0.3 g = 2 h = 10 i = 3 j = d = k = 3 1. = 1 or 0.5 l =

Answers - Worksheet A ALGEBRA PMT. 1 a = 7 b = 11 c = 1 3. e = 0.1 f = 0.3 g = 2 h = 10 i = 3 j = d = k = 3 1. = 1 or 0.5 l = C ALGEBRA Answers - Worksheet A a 7 b c d e 0. f 0. g h 0 i j k 6 8 or 0. l or 8 a 7 b 0 c 7 d 6 e f g 6 h 8 8 i 6 j k 6 l a 9 b c d 9 7 e 00 0 f 8 9 a b 7 7 c 6 d 9 e 6 6 f 6 8 g 9 h 0 0 i j 6 7 7 k 9

Διαβάστε περισσότερα

Πανεπιστήμιο Κρήτης, Τμήμα Επιστήμης Υπολογιστών Άνοιξη 2009. HΥ463 - Συστήματα Ανάκτησης Πληροφοριών Information Retrieval (IR) Systems

Πανεπιστήμιο Κρήτης, Τμήμα Επιστήμης Υπολογιστών Άνοιξη 2009. HΥ463 - Συστήματα Ανάκτησης Πληροφοριών Information Retrieval (IR) Systems Πανεπιστήμιο Κρήτης, Τμήμα Επιστήμης Υπολογιστών Άνοιξη 2009 HΥ463 - Συστήματα Ανάκτησης Πληροφοριών Information Retrieval (IR) Systems Στατιστικά Κειμένου Text Statistics Γιάννης Τζίτζικας άλ ιάλεξη :

Διαβάστε περισσότερα

UDZ Swirl diffuser. Product facts. Quick-selection. Swirl diffuser UDZ. Product code example:

UDZ Swirl diffuser. Product facts. Quick-selection. Swirl diffuser UDZ. Product code example: UDZ Swirl diffuser Swirl diffuser UDZ, which is intended for installation in a ventilation duct, can be used in premises with a large volume, for example factory premises, storage areas, superstores, halls,

Διαβάστε περισσότερα

Προγραμματισμός PASCAL

Προγραμματισμός PASCAL Προγραμματισμός PASCAL 1 PASCAL Η PASCAL σχεδιάστηκε από τον Worth το 1968 στη Ζυρίχη, αρχικά σαν εργαλείο για τη διδασκαλία προγραμματισμού. Είναι γλώσσα για σειριακό προγραμματισμό. 2 Απλή και εύκολη

Διαβάστε περισσότερα

( )( ) ( ) ( )( ) ( )( ) β = Chapter 5 Exercise Problems EX α So 49 β 199 EX EX EX5.4 EX5.5. (a)

( )( ) ( ) ( )( ) ( )( ) β = Chapter 5 Exercise Problems EX α So 49 β 199 EX EX EX5.4 EX5.5. (a) hapter 5 xercise Problems X5. α β α 0.980 For α 0.980, β 49 0.980 0.995 For α 0.995, β 99 0.995 So 49 β 99 X5. O 00 O or n 3 O 40.5 β 0 X5.3 6.5 μ A 00 β ( 0)( 6.5 μa) 8 ma 5 ( 8)( 4 ) or.88 P on + 0.0065

Διαβάστε περισσότερα

Overview. Transition Semantics. Configurations and the transition relation. Executions and computation

Overview. Transition Semantics. Configurations and the transition relation. Executions and computation Overview Transition Semantics Configurations and the transition relation Executions and computation Inference rules for small-step structural operational semantics for the simple imperative language Transition

Διαβάστε περισσότερα

Advanced Subsidiary Unit 1: Understanding and Written Response

Advanced Subsidiary Unit 1: Understanding and Written Response Write your name here Surname Other names Edexcel GE entre Number andidate Number Greek dvanced Subsidiary Unit 1: Understanding and Written Response Thursday 16 May 2013 Morning Time: 2 hours 45 minutes

Διαβάστε περισσότερα

Απόκριση σε Μοναδιαία Ωστική Δύναμη (Unit Impulse) Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο. Απόστολος Σ.

Απόκριση σε Μοναδιαία Ωστική Δύναμη (Unit Impulse) Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο. Απόστολος Σ. Απόκριση σε Δυνάμεις Αυθαίρετα Μεταβαλλόμενες με το Χρόνο The time integral of a force is referred to as impulse, is determined by and is obtained from: Newton s 2 nd Law of motion states that the action

Διαβάστε περισσότερα

ΠΟΛΥΤΕΧΝΕΙΟ ΚΡΗΤΗΣ ΣΧΟΛΗ ΜΗΧΑΝΙΚΩΝ ΠΕΡΙΒΑΛΛΟΝΤΟΣ

ΠΟΛΥΤΕΧΝΕΙΟ ΚΡΗΤΗΣ ΣΧΟΛΗ ΜΗΧΑΝΙΚΩΝ ΠΕΡΙΒΑΛΛΟΝΤΟΣ ΠΟΛΥΤΕΧΝΕΙΟ ΚΡΗΤΗΣ ΣΧΟΛΗ ΜΗΧΑΝΙΚΩΝ ΠΕΡΙΒΑΛΛΟΝΤΟΣ Τομέας Περιβαλλοντικής Υδραυλικής και Γεωπεριβαλλοντικής Μηχανικής (III) Εργαστήριο Γεωπεριβαλλοντικής Μηχανικής TECHNICAL UNIVERSITY OF CRETE SCHOOL of

Διαβάστε περισσότερα

Aquinas College. Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET

Aquinas College. Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET Aquinas College Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET Pearson Edexcel Level 3 Advanced Subsidiary and Advanced GCE in Mathematics and Further Mathematics Mathematical

Διαβάστε περισσότερα

2. THEORY OF EQUATIONS. PREVIOUS EAMCET Bits.

2. THEORY OF EQUATIONS. PREVIOUS EAMCET Bits. EAMCET-. THEORY OF EQUATIONS PREVIOUS EAMCET Bits. Each of the roots of the equation x 6x + 6x 5= are increased by k so that the new transformed equation does not contain term. Then k =... - 4. - Sol.

Διαβάστε περισσότερα

Matrices and Determinants

Matrices and Determinants Matrices and Determinants SUBJECTIVE PROBLEMS: Q 1. For what value of k do the following system of equations possess a non-trivial (i.e., not all zero) solution over the set of rationals Q? x + ky + 3z

Διαβάστε περισσότερα

ΑΡΙΣΤΟΤΕΛΕΙΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΟΝΙΚΗΣ ΤΜΗΜΑ ΟΔΟΝΤΙΑΤΡΙΚΗΣ ΕΡΓΑΣΤΗΡΙΟ ΟΔΟΝΤΙΚΗΣ ΚΑΙ ΑΝΩΤΕΡΑΣ ΠΡΟΣΘΕΤΙΚΗΣ

ΑΡΙΣΤΟΤΕΛΕΙΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΟΝΙΚΗΣ ΤΜΗΜΑ ΟΔΟΝΤΙΑΤΡΙΚΗΣ ΕΡΓΑΣΤΗΡΙΟ ΟΔΟΝΤΙΚΗΣ ΚΑΙ ΑΝΩΤΕΡΑΣ ΠΡΟΣΘΕΤΙΚΗΣ ΑΡΙΣΤΟΤΕΛΕΙΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΟΝΙΚΗΣ ΤΜΗΜΑ ΟΔΟΝΤΙΑΤΡΙΚΗΣ ΕΡΓΑΣΤΗΡΙΟ ΟΔΟΝΤΙΚΗΣ ΚΑΙ ΑΝΩΤΕΡΑΣ ΠΡΟΣΘΕΤΙΚΗΣ ΣΥΓΚΡΙΤΙΚΗ ΜΕΛΕΤΗ ΤΗΣ ΣΥΓΚΡΑΤΗΤΙΚΗΣ ΙΚΑΝΟΤΗΤΑΣ ΟΡΙΣΜΕΝΩΝ ΠΡΟΚΑΤΑΣΚΕΥΑΣΜΕΝΩΝ ΣΥΝΔΕΣΜΩΝ ΑΚΡΙΒΕΙΑΣ

Διαβάστε περισσότερα

ΑΛΛΗΛΕΠΙ ΡΑΣΗ ΜΟΡΦΩΝ ΛΥΓΙΣΜΟΥ ΣΤΙΣ ΜΕΤΑΛΛΙΚΕΣ ΚΑΤΑΣΚΕΥΕΣ

ΑΛΛΗΛΕΠΙ ΡΑΣΗ ΜΟΡΦΩΝ ΛΥΓΙΣΜΟΥ ΣΤΙΣ ΜΕΤΑΛΛΙΚΕΣ ΚΑΤΑΣΚΕΥΕΣ ΕΘΝΙΚΟ ΜΕΤΣΟΒΙΟ ΠΟΛΥΤΕΧΝΕΙΟ ΤΜΗΜΑ ΠΟΛΙΤΙΚΩΝ ΜΗΧΑΝΙΚΩΝ Τοµέας οµοστατικής Εργαστήριο Μεταλλικών Κατασκευών ΑΛΛΗΛΕΠΙ ΡΑΣΗ ΜΟΡΦΩΝ ΛΥΓΙΣΜΟΥ ΣΤΙΣ ΜΕΤΑΛΛΙΚΕΣ ΚΑΤΑΣΚΕΥΕΣ ιπλωµατική Εργασία Ιωάννη Σ. Προµπονά

Διαβάστε περισσότερα