Data - Soil sequences

Size: px
Start display at page:

Download "Data - Soil sequences"

Transcription

1 A Data - Soil sequences Thicknesses (cm) of named tephras (i = 1,..., 22) observed at locations (j = ). r j denotes the distance from the vent (km), θ j denotes the angular direction from the vent (radians anticlockwise from east). Approximate ages for the named tephra formations are reported as given in Alloway (1989) and Alloway et al. (1995). The thicknesses are obtained from descriptions of the reference sections in Alloway (1989) or, where not specifically stated, have been measured from scale figures showing the section stratigraphy. In situations where the figures in Alloway (1989) do not separate the different beds, the total thickness is apportioned so that the thickness of the dominant phase(s) is proportional to that observed in the reference sections. Name Manganui.c (3.1 ka) Inglewood.b (3.6 ka) Korito.b (4.1 ka) Tariki.f ( ka) Tariki.e ( ka) Waipuku (5.2 ka) Kaponga.f ( ka) Konini.b (10.1 ka) Mahoe.a ( ka) Paetahi.a ( ka) Tuikonga.d ( ka) Koru.a ( ka) Pukeiti (26.2 ka) Waitepuku.a ( ka) Mangatoki.a (4.4 ka) Kaponga.d ( ka) Kaihouri.h ( ka) Poto.a ( ka) Mangapotoa.a ( ka) Waitui (55.0 ka) Araheke ( ka) Te Arei (75.0 ka) ID i ID j r j θ j Thickness (cm)

2 B Data - Core sequences Resulting arrangement of tephra thicknesses and estimated ages across the six sediment cores: Lake Umutekai (Um), Lake Rotokare (Ro), Near Source (NS), Eltham Swamp (El), Lake Rangatauanui (Ra) and Auckland (Au). There is no tephra number 27 in the Umutekai and Rotokare records and no tephra number 4 in the Rangatauanui record as these are the rhyolitic Stent Ash sourced from the Taupo Volcanic Centre ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± Manganui.c 3577± ± ± Continued on next page

3 Continued from previous page ± ± ± ± Inglewood.b 4019± ± ± ± ± ± ± ± ± Korito.b 4804± Mangatoki.a 4840± ± ± ± ± ± ± ± ± ± Tariki.f 5344± Tariki.e 5412± ± ± Waipuku 5664± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± Kaponga.f 6944± ± ± ± ± ± ± ± Continued on next page

4 Continued from previous page ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± Kaponga.d 10738± ± ± ± ± ± ± Continued on next page

5 Continued from previous page ± ± ± ± ± Konini.b 12354± ± ± Mahoe.a 13036± ± ± ± ± ± ± ± ± ± ± ± ± ± ± Kaihouri.h 18316± ± ± ± ± ± ± ± ± Paetahi.a 22770± ± ± ± ± Poto.a 25637± ± ± ± ± Tuikonga.d 29030± ± ± ± ± ± ± ± ± Koru.a 29522± Continued on next page

6 Continued from previous page ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± Pukeiti 31725± ± ± ± Waitepuku.a 32456± ± ± ± ± ± ± ± Mangapotoa.a 33679± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± ± Continued on next page

7 Continued from previous page ± ± ± ± ± ± ± ± ± ± ± ± ± Waitui 51189± ± Araheke 58524± ± Te Arei 67161± ±

8 C WinBUGS code model{ for (j in 1:nSites){ for (i in 1:nTephras){ thick[i,j] ~ dlnorm(mu[i,j],0.3156)i(0,cens[i,j]) mu[i,j] <- log(0.5*g[i,j]*exp(f1[i,j])+(1-0.5)*g[i,j]*exp(f2[i,j])) g[i,j] <- exp(a[j])*pow(v[i],(c[i]+1)/3)/pow(r[j]+d[i]*pow(v[i],1/3),c[i]) f1[i,j] <- alpha1[i]*cos(theta[j]-phi1[i])+beta1[i]*cos(2*(theta[j]-phi1[i])) f2[i,j] <- alpha2[i]*cos(theta[j]-phi2[i])+beta2[i]*cos(2*(theta[j]-phi2[i])) DATA # cens[i,j] = censoring variable, # cens[i,j] = 0.05 for missing tephras in the sediment cores, cens[i,j] = 100 otherwise # r[j] = distance (in km) of location j from the vent # theta[j] = angular direction (radians) of location j from the vent # thick[i,j] = thickness (in cm) of tephra i observed at location j # q[i] = probability of observing two lobes # nsites = 39 # ntephras = 270 #### # prior for the presence of 2 lobes for (i in 1:nTephras){ X[i] ~ dbern(q[i]) # if x = 0 one lobe, if x = 1 two lobes. # prior for the site-specific effect # for the coring sites for (j in 1:6){ a[j] ~ dnorm(0,0.0001) # for the exposed locations for (j in 7:nSites){ a[j] ~ dnorm(7.9137,302.68) # prior for the volume V[i] (in cubic km) # for the named tephras V[1] ~ dlnorm( ,138.72) V[2] ~ dlnorm( ,44.178) V[3] ~ dlnorm( ,94.214) V[4] ~ dlnorm( ,33.996) V[5] ~ dlnorm( ,87.722) V[6] ~ dlnorm( ,89.698) V[7] ~ dlnorm( ,87.749) V[8] ~ dlnorm( ,37.672) V[9] ~ dlnorm( ,26.886) V[10] ~ dlnorm(-1.685,40.336)

9 V[11] ~ dlnorm( ,48.753) V[12] ~ dlnorm( ,15.453) V[13] ~ dlnorm( ,161.17) V[14] ~ dlnorm( ,142.66) # for the named tephras that do not have isopach diagrams for (i in 15:22){ V[i] ~ dlnorm( ,3.7521) # for the unnamed tephras for (i in 23:nTephras){ V[i] ~ dbeta( , ) # prior for c[i] # for the named tephras for (i in 1:14){ clog[i] ~ dlnorm( ,5.1758) c[i] <- clog[i]+2 # constraint c > 2 # for the remaining tephras for (i in 15:nTephras){ clog[i] ~ dlnorm(-1.160,2.604) c[i] <- clog[i]+2 # constraint c > 2 # prior for d[i] # for the named tephras for (i in 1:14){ d[i] ~ dlnorm( ,5.2213) # for the remaining tephras for (i in 15:nTephras){ d[i] ~ dlnorm(0.1798,1.1485) # prior for the shape parameters alpha1[i] alpha2[i] beta1[i] beta2[i] for (i in 1:nTephras){ V1[i] ~ dgamma( , ) # variable for difference alpha1-4*beta1 V2[i] ~ dgamma( , ) # variable for difference alpha2-4*beta2 W1[i] ~ dgamma(1.4556,3.6992) # variable for beta1 W2[i] ~ dgamma(1.4556,3.6992) # variable for beta2 alpha1[i] <- 4*W1[i]+V1[i] # constraint alpha > 4beta beta1[i] <- W1[i] # if there is only 1 lobe (X = 0) then alpha2 = alpha1 and beta2 = beta1. alpha2[i] <- (1-X[i])*alpha1[i]+ X[i]*(4*W2[i]+V2[i]) beta2[i] <- (1-X[i])* beta1[i] + X[i]* W2[i]

10 # prior for the wind directional parameters phi1[i] and phi2[i] # for the named tephras angle1[1] ~ dbeta(116.07,58.377) angle1[2] ~ dbeta(172.82,62.382) angle1[3] ~ dbeta(181.3,80.407) angle1[4] ~ dbeta(99.237,77.905) angle1[5] ~ dbeta(228.44,154.44) angle1[6] ~ dbeta(49.174,20.009) angle1[7] ~ dbeta(164.32,81.006) angle1[8] ~ dbeta(77.758,77.758) angle1[9] ~ dbeta(93.247,93.247) angle1[10] ~ dbeta(92.478,61.08) angle1[11] ~ dbeta(100.39,35.174) angle1[12] ~ dbeta(11.487,3.5526) angle1[13] ~ dbeta(36.38,7.3343) angle1[14] ~ dbeta(87.87,37.23) angle2[1] ~ dbeta(11.915,29.058) angle2[2] ~ dbeta(13.237,27.513) angle2[3] ~ dbeta(20.896,39.176) angle2[4] ~ dbeta(3.7532,8.8708) angle2[5] ~ dbeta(11.601,20.691) angle2[6] ~ dbeta(14.41,35.051) angle2[7] ~ dbeta(4.8731,8.8458) angle2[8] ~ dbeta(11.957,48.479) angle2[9] ~ dbeta(7.0225,21.197) angle2[10] ~ dbeta(43.648,111.36) angle2[11] ~ dbeta(1,1) # one lobe for Tuikonga angle2[12] ~ dbeta(3.4986,6.6165) angle2[13] ~ dbeta(1,1) # one lobe for Pukeiti angle2[14] ~dbeta(1,1) # one lobe for Waitepuku # for the remaining tephras for (i in 15:nTephras){ angle1[i] ~ dbeta(2.0909,2.0776) # beta distribution on interval 0-1 angle2[i] ~ dbeta(2.0909,2.0776) # convert beta distributions to -pi/2 - pi/2 interval. for (i in 1:nTephras){ phi1[i] <- (angle1[i]-0.5)*( ) # create temporary variable for the absolute difference phi1 - phi2 Y[i] <-abs( (angle1[i]-0.5)*( ) -(angle2[i]-0.5)*( )) # if only one lobe (X = 0) then phi2 = phi1, if two lobes (X = 1) then phi2 is some angle Y from phi1. # if phi1 > 0 then phi2 is south of phi1, If phi1 < 0 then phi2 is north of phi1. phi2[i] <- phi1[i]+(-step(phi1[i])+(1-step(phi1[i])))*y[i]*x[i]

11 Frequency D Models for eruptive volume Density functions and parameter estimates for a range of distributions fitted to the logarithm of the posterior mean volume estimates (km 3 ) Volume Data Mixture of Normals Mixture of Lognormals Mixture of Weibulls Mixture of Weibulls Mixture of Lognormals Mixture of Normals p = ± p = ± p = ± k 1 = ± µ 1 = ± µ 1 = ± δ 1 = ± σ 1 = ± σ 1 = ± k 2 = ± µ 2 = ± µ 2 = ± δ 2 = ± σ 2 = ± σ 2 = ± log L log L log L AIC = AIC = AIC =

The Incubation Period of Cholera: A Systematic Review Supplement. A. S. Azman, K. E. Rudolph, D.A.T. Cummings, J. Lessler

The Incubation Period of Cholera: A Systematic Review Supplement. A. S. Azman, K. E. Rudolph, D.A.T. Cummings, J. Lessler The Incubation Period of Cholera: A Systematic Review Supplement A. S. Azman, K. E. Rudolph, D.A.T. Cummings, J. Lessler 1 Basic Model Our models follow the approach for analysis of coarse data from Reich

More information

Probabilistic Modeling of Fatigue Damage in Steel Box-Girder Bridges Subject to Stochastic Vehicle Loads

Probabilistic Modeling of Fatigue Damage in Steel Box-Girder Bridges Subject to Stochastic Vehicle Loads 505 Probabilistic Modeling of Fatigue Damage in Steel Box-Girder Bridges Subject to Stochastic Vehicle Loads Yuan Luo 1), Dong-huang Yan 1) and Nai-wei Lu 2) 1) School of Civil Engineering and Architecture,

More information

Thermodynamic Properties of SUVA MP66 Refrigerant (R-401B) Technical Information T-MP66- SI. DuPont Fluorochemicals

Thermodynamic Properties of SUVA MP66 Refrigerant (R-401B) Technical Information T-MP66- SI. DuPont Fluorochemicals DuPont Fluorochemicals Technical Information T-MP66- SI Technical Information Technical Information Thermodynamic Properties of SUVA MP66 Refrigerant (R-401B) Thermodynamic Properties of Suva MP66 Refrigerant

More information

Photo: DA518, 05/05/2009 Photo: DA468, 05/05/2009 Photo: DA462, 05/05/2009

Photo: DA518, 05/05/2009 Photo: DA468, 05/05/2009 Photo: DA462, 05/05/2009 GSA DATA REPOSITORY 2013156 Item DR1 Photographs of the Southern Sector of Stromboli s Crater Terrace showing changes in observable bomb distribution in this sector between each of the six major explosions

More information

interval. Martindale et al. 2 and et al. 3

interval. Martindale et al. 2 and et al. 3 Supplementary Figure 1: Generic diversity, pco 2, andd extinctionn rates across the T-J interval. a) Generic diversity of the Cambrian, Paleozoic, and Modern Faunas, highlighting that the T-J extinction

More information

Habitat Associations of Seabirds and Marine Debris in the North East Pacific at Multiple Spatial Scales

Habitat Associations of Seabirds and Marine Debris in the North East Pacific at Multiple Spatial Scales Habitat Associations of Seabirds and Marine Debris in the North East Pacific at Multiple Spatial Scales Andrew Titmus David Hyrenbach Hawaii Pacific University, Waimanalo, Hawaii Objectives Introduction

More information

On Using Storage and Genset for Mitigating Power Grid Failures

On Using Storage and Genset for Mitigating Power Grid Failures 1 / 27 On Using Storage and Genset for Mitigating Power Grid Failures Sahil Singla ISS4E lab University of Waterloo Collaborators: S. Keshav, Y. Ghiassi-Farrokhfal 1 / 27 Outline Introduction Background

More information

MD x230V. Grundfos Pump GRUNDFOS DATA BOOKLET

MD x230V. Grundfos Pump GRUNDFOS DATA BOOKLET GRUNDFOS DATA BOOKLET MD.24.3.2 3x23V Grundfos Pump 979191 Thank you for your interest in our products Please contact us for more information, or visit our website https://www.lenntech.com/grundfos/muldoub/979191/md-24-3-2.html

More information

MD x400V. Grundfos pump GRUNDFOS DATA BOOKLET

MD x400V. Grundfos pump GRUNDFOS DATA BOOKLET GRUNDFOS DATA BOOKLET MD.15.3.4 3x4V Grundfos pump 979187 Thank you for your interest in our products. Please contact us for more information, or visit our website https://www.lenntech.com/grundfos/muldoub/979187/md-15-3-4.html

More information

Integrated Risk Management Framework for Improving the Safety of Hazardous Materials Transportation by Rail

Integrated Risk Management Framework for Improving the Safety of Hazardous Materials Transportation by Rail Integrated Risk Management Framework for Improving the Safety of Hazardous Materials Transportation by Rail Xiang Liu, Mohd Rapik Saat, Christopher P.L. Barkan Rail Transportation and Engineering Center

More information

Performance of the Mean- and Variance-Adjusted ML χ 2 Test Statistic with and without Satterthwaite df Correction

Performance of the Mean- and Variance-Adjusted ML χ 2 Test Statistic with and without Satterthwaite df Correction FORDHAM UNIVERSITY THE JESUIT UNIVERSITY OF NEW YORK Performance of the Mean- and Variance-Adjusted ML χ 2 Test Statistic with and without Satterthwaite df Correction Jonathan M. Lehrfeld Heining Cham

More information

5. CONSTRUCTION OF THE WEIGHT-FOR-LENGTH AND WEIGHT-FOR- HEIGHT STANDARDS

5. CONSTRUCTION OF THE WEIGHT-FOR-LENGTH AND WEIGHT-FOR- HEIGHT STANDARDS 5. CONSTRUCTION OF THE WEIGHT-FOR-LENGTH AND WEIGHT-FOR- HEIGHT STANDARDS 5.1 Indicator-specific methodology The construction of the weight-for-length (45 to 110 cm) and weight-for-height (65 to 120 cm)

More information

BARRED GALAXIES. I. A CATALOG

BARRED GALAXIES. I. A CATALOG Published in "Astrophysics", Vol. 41, No. 1, pp. 1-13, 1998 BARRED GALAXIES. I. A CATALOG R. A. Kandalian and A. T. Kalloghlian Abstract. A catalog of barred spiral galaxies of types SB and SAB with B

More information

CHAPTER 3 DESIGN OF THE LIMITED ANGLE BRUSHLESS TORQUE MOTOR

CHAPTER 3 DESIGN OF THE LIMITED ANGLE BRUSHLESS TORQUE MOTOR 33 CHAPTER 3 DESIGN OF THE LIMITED ANGLE BRUSHLESS TORQUE MOTOR 3.1 INTRODUCTION This chapter presents the design of frameless Limited Angle Brushless Torque motor. The armature is wound with toroidal

More information

Anexo 6. Análisis de piezas de fallo único.

Anexo 6. Análisis de piezas de fallo único. Anexo 6 Análisis de piezas de fallo único. Máquina Probability Plot for C Lognormal - 9% CI 9 0 Loc 2.932 Scale 0.79776 Mean 2.8 StDev 24.349 Median 8.7783 IQ R 2.9 Failure 2 AD*.6 Correlation 0.987 0

More information

Bayes Factors. Structural Equation Models (SEMs): Schwarz BIC and Other Approximations

Bayes Factors. Structural Equation Models (SEMs): Schwarz BIC and Other Approximations Bayes Factors in Structural Equation Models (SEMs): Schwarz BIC and Other Approximations Kenneth A. Bollen University of North Carolina, Chapel Hill Surajit Ray SAMSI and University of North Carolina,

More information

Damping in. Prepared by: Steven Hale, M.S.M.E Senior Engineering Manager

Damping in. Prepared by: Steven Hale, M.S.M.E Senior Engineering Manager in ANSYS/LS-Dyna Prepared by: Steven Hale, M.S.M.E Senior Engineering Manager ANSYS/LS-Dyna allows Rayleigh damping constants α and β only. What is damping? The energy dissipation mechanism that causes

More information

DATA REPOSITORY. Table DR1. Coring sites. Table DR2. Geochemistry of tephra grains. Table DR3. Geochemistry of tephra standards

DATA REPOSITORY. Table DR1. Coring sites. Table DR2. Geochemistry of tephra grains. Table DR3. Geochemistry of tephra standards GSA Data Repository Item 2017369 Boes, E., Van Daele, M., Moernaut, J., Schmidt, S., Jensen, B.J.L., Praet, N., Kaufman, D., Haeussler, P., Loso, M.G., and De Batist, M., 2017, Varve formation during the

More information

PUBLICATIONS Silvia Ferrari February 24, 2017

PUBLICATIONS Silvia Ferrari February 24, 2017 PUBLICATIONS Silvia Ferrari February 24, 2017 [1] Cordeiro, G.M., Ferrari, S.L.P. (1991). A modified score test statistic having chi-squared distribution to order n 1. Biometrika, 78, 573-582. [2] Cordeiro,

More information

HASIL OUTPUT SPSS. Reliability Scale: ALL VARIABLES

HASIL OUTPUT SPSS. Reliability Scale: ALL VARIABLES 139 HASIL OUTPUT SPSS Reliability Scale: ALL VARIABLES Case Processing Summary N % 100 100.0 Cases Excluded a 0.0 Total 100 100.0 a. Listwise deletion based on all variables in the procedure. Reliability

More information

Sharif University of Technology. Graduate School of Management and Economics. Econometrics I. Fall Seyed Mahdi Barakchian

Sharif University of Technology. Graduate School of Management and Economics. Econometrics I. Fall Seyed Mahdi Barakchian Sharif University of Technology Graduate School of Management and Economics Econometrics I Fall 2010 Seyed Mahdi Barakchian Textbook: Wooldridge, J., Introductory Econometrics: A Modern Approach, South

More information

Heat Transfer Enhancement for Double Pipe Heat Exchanger Using Twisted Wire Brush Inserts

Heat Transfer Enhancement for Double Pipe Heat Exchanger Using Twisted Wire Brush Inserts Heat Transfer Enhancement for Double Pipe Heat Exchanger Using Twisted Wire Brush Inserts Deepali Gaikwad 1, Kundlik Mali 2 Assistant Professor, Department of Mechanical Engineering, Sinhgad College of

More information

ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH

ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH APPENDIX G ACCIDENT MODIFICATION FACTORS FOR MEDIAN WIDTH INTRODUCTION Studies on the effect of median width have shown that increasing width reduces crossmedian crashes, but the amount of reduction varies

More information

EFFECT OFSHIMMING ON THE ROTORDYNAMIC FORCE COEFFICIENTS OF A BUMP TYPE FOIL BEARING TRC-B&C

EFFECT OFSHIMMING ON THE ROTORDYNAMIC FORCE COEFFICIENTS OF A BUMP TYPE FOIL BEARING TRC-B&C TRC Project 32513/1519F3 EFFECT OFSHIMMING ON THE ROTORDYNAMIC FORCE COEFFICIENTS OF A BUMP TYPE FOIL BEARING TRC-B&C-01-2014 A Shimmed Bump Foil Bearing: Measurements of Drag Torque, Lift Off Speed, and

More information

SPECIFICATION OF TRAILOR MOUNTED SEWER JETTING MACHINE RAMJET 1500 Lts.

SPECIFICATION OF TRAILOR MOUNTED SEWER JETTING MACHINE RAMJET 1500 Lts. Specification of Trailer Mounted Sewer Jetting Machine (Ramjet 1500 Lts.) Page 1 of 5 GENERAL :- SPECIFICATION OF TRAILOR MOUNTED SEWER JETTING MACHINE RAMJET 1500 Lts. The trailor mounted Sewer Jetting

More information

Growing Charging Station Networks with Trajectory Data Analytics

Growing Charging Station Networks with Trajectory Data Analytics Growing Charging Station Networks with Trajectory Data Analytics Yanhua Li 1, Jun Luo 2, Chi-Yin Chow 3, Kam-Lam Chan 3, Ye Ding 4, and Fan Zhang 2 1WPI, CAS 2, CityU 3, HKUST 4 Contact: yli15@wpi.edu

More information

Sand and Dust Monitoring in RA II

Sand and Dust Monitoring in RA II Sand and Dust Monitoring in RA II Xiang Fang National Satellite Meteorological Center,CMA Outline Major progresses in 2015 Plan for Next Two Years on Dust monitoring Major progress in 2015 AODretrievalfromHimawari-8(H8)

More information

FE Review-Transportation-II. D e p a r t m e n t o f C i v i l E n g i n e e r i n g U n i v e r s i t y O f M e m p h i s

FE Review-Transportation-II. D e p a r t m e n t o f C i v i l E n g i n e e r i n g U n i v e r s i t y O f M e m p h i s FE Review-Transportation-II D e p a r t m e n t o f C i v i l E n g i n e e r i n g U n i v e r s i t y O f M e m p h i s Learning Objectives Design, compute, and solve FE problems on Freeway level of

More information

semi-transparent cirrus & their correlations with the state of the atmosphere

semi-transparent cirrus & their correlations with the state of the atmosphere Retrieval of effective ice crystal size and IWP of large-scale semi-transparent cirrus & their correlations with the state of the atmosphere Gaby Rädel Claudia Stubenrauch, Fadoua Eddounia Laboratoire

More information

8. Supplementary Material

8. Supplementary Material 8. Supplementary Material 8.1. Proofs Proof of Proposition 1 Proof. (R2) = (R3): As for both (R2) and (R3) we have µ L and µ ( s) = µ s (u), s X u, we only need to prove that µ s conv(x s ), s L is equivalent

More information

Recent Predictions on NPR Capsules by Integrated Fuel Performance Model

Recent Predictions on NPR Capsules by Integrated Fuel Performance Model Massachusetts Institute of Technology Department of Nuclear Engineering Advanced Reactor Technology Pebble Bed Project Recent Predictions on NPR Capsules by Integrated Fuel Performance Model Jing Wang

More information

ZCK-Y39 ZCK-Y49 ZCK-Y33 ZCK-Y34 ZCK-Y31 ZCK-D109 ZCK-D41 ZCK-D06 ZCK-M2H29 ZCK-M2H29

ZCK-Y39 ZCK-Y49 ZCK-Y33 ZCK-Y34 ZCK-Y31 ZCK-D109 ZCK-D41 ZCK-D06 ZCK-M2H29 ZCK-M2H29 ZCK-Y39 ZCK-Y43 ZCK-Y49 ZCK-Y41 ZCK-D239 ZCK-D23 ZCK-D59 ZCK-Y55 ZCK-Y54 ZCK-Y59 ZCK-D219 ZCK-D21 ZCK-D81 ZCK-D91 ZCK-Y91 ZCK-Y31 ZCK-Y33 ZCK-Y34 ZCK-Y81 ZCK-D029 ZCK-D02 ZCK-D05 ZCK-D109 ZCK-D41 ZCK-D06

More information

2017 Lake Worth Lagoon Benthic Community Study Permanent Seagrass Transects. Preliminary Results

2017 Lake Worth Lagoon Benthic Community Study Permanent Seagrass Transects. Preliminary Results 2017 Lake Worth Lagoon Benthic Community Study Permanent Seagrass Transects Preliminary Results 2016 Benthic Study Objectives The main objective of the 2016 CAP 1135 study was to compare softbottom benthic

More information

TE-II (10CV63) Ballast

TE-II (10CV63) Ballast Lecture-09 10CV63 TE-II Introduction Ballast The ballast is a layer of broken stones, gravel, moorum, or any other granular material placed and packed below and around sleepers for distributing load from

More information

w o r k o G E x - p e S i n c e r t Elegance and Strength BBR HiAm CONA Strand Stay Cable Damping Systems

w o r k o G E x - p e S i n c e r t Elegance and Strength BBR HiAm CONA Strand Stay Cable Damping Systems o b a l N e t w o r k l o G f A E x - p e S i n c e 1 9 4 4 - s r t Elegance and Strength BBR HiAm CONA Strand Stay Cable Damping Systems 1 Cable vibration and damping Despite the wide use of cable-stayed

More information

ANALYSIS OF DYNAMIC CHARACTERISTICS OF ROLLING BEARINGS IN ROTOR SUPPORTS N. KIKOT S. DEGTIAREV M. LEONTIEV E. SNETKOVA

ANALYSIS OF DYNAMIC CHARACTERISTICS OF ROLLING BEARINGS IN ROTOR SUPPORTS N. KIKOT S. DEGTIAREV M. LEONTIEV E. SNETKOVA ANALYSIS OF DYNAMIC CHARACTERISTICS OF ROLLING BEARINGS IN ROTOR SUPPORTS N. KIKOT S. DEGTIAREV M. LEONTIEV E. SNETKOVA The article considers the methodology of analysis of deformed and force state of

More information

NCHRP Project Short- and Long-Term Binder Aging Methods to Accurately Reflect Aging in Asphalt Mixtures

NCHRP Project Short- and Long-Term Binder Aging Methods to Accurately Reflect Aging in Asphalt Mixtures NCHRP Project 9-61 Short- and Long-Term Binder Aging Methods to Accurately Reflect Aging in Asphalt Mixtures Ramon Bonaquist, P.E. Research Team Ramon Bonaquist - PI Western Research Insititute Jeramie

More information

Test Which component has the highest Energy Density? A. Accumulator. B. Battery. C. Capacitor. D. Spring.

Test Which component has the highest Energy Density? A. Accumulator. B. Battery. C. Capacitor. D. Spring. Test 1 1. Which statement is True? A. Pneumatic systems are more suitable than hydraulic systems to drive powerful machines. B. Mechanical systems transfer energy for longer distances than hydraulic systems.

More information

Reliability of Hybrid Vehicle System

Reliability of Hybrid Vehicle System Reliability of Hybrid Vehicle System 2004 Toyota Prius hybrid vehicle Department of Industrial and Manufacturing Systems Engineering Iowa State University December 13, 2016 1 Hybrid Vehicles 2 Motivation

More information

SOOT SENSOR FOR EMISSION ONBOARD CONTROL SYSTEMS

SOOT SENSOR FOR EMISSION ONBOARD CONTROL SYSTEMS SOOT SENSOR FOR EMISSION ONBOARD CONTROL SYSTEMS Victor GHEORGHIU Prof. PhD ME HAW Hamburg University of Applied Sciences, Germany Return CONTENT Emissions Legislation Characteristic of PM-Measuring with

More information

PJM Generator Interconnection Request Queue #R60 Robison Park-Convoy 345kV Impact Study September 2008

PJM Generator Interconnection Request Queue #R60 Robison Park-Convoy 345kV Impact Study September 2008 PJM enerator Interconnection Request Queue #R60 Robison Park-Convoy 345kV Impact Study 504744 September 2008 PJM Interconnection 2008. All rights reserved R60 Robison Park-Convoy 345kV Impact Study eneral

More information

Nanoparticle emissions from LNG and other low sulfur marine fuels

Nanoparticle emissions from LNG and other low sulfur marine fuels Nanoparticle emissions from LNG and other low sulfur marine fuels Maria Anderson, PhD-student at Chalmers University of Technology, Sweden Kent Salo, Chalmers & Erik Fridell, IVL & Chalmers Why consider

More information

Report of the North Western Working Group (NWWG)

Report of the North Western Working Group (NWWG) ICES NWWG REPORT 2017 ICES ADVISORY COMMITTEE ICES CM 2017/ACOM:08 REF. ACOM Report of the North Western Working Group (NWWG) 27 April 4 May 2017 Copenhagen, Denmark International Council for the Exploration

More information

The UCD community has made this article openly available. Please share how this access benefits you. Your story matters!

The UCD community has made this article openly available. Please share how this access benefits you. Your story matters! Provided by the author(s) and University College Dublin Library in accordance with publisher policies., Please cite the published version when available. Title The Determination of Site-Specific Imposed

More information

Ghassan Y. Antar University of California San Diego

Ghassan Y. Antar University of California San Diego Progress in understanding Intermittency in Magnetically Confined Plasma Devices Ghassan Y. Antar University of California San Diego Acknowledgments G. Counsell (MAST, UK) P. Devynck (Tore Supra, France)

More information

2.007 Design and Manufacturing I

2.007 Design and Manufacturing I MIT OpenCourseWare http://ocw.mit.edu 2.007 Design and Manufacturing I Spring 2009 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. Page 1 of 8 2.007 Design

More information

STATE OF MINNESOTA DEPARTMENT OF TRANSPORTATION - TABULATION OF BIDS. Start Dt: 05/08/17 Comp. Dt:

STATE OF MINNESOTA DEPARTMENT OF TRANSPORTATION - TABULATION OF BIDS. Start Dt: 05/08/17 Comp. Dt: Letting: 17012700 Letting Dt: January 27, 2017 9:30 A.M. State Proj.: 4308-34 Contract ID: Contract Description: Contract Location: Recommendation: 170004 STATE OF MINNESOTA DEPARTMENT OF TRANSPORTATION

More information

1ZSE EN, REV. 7. Oil SF 6. bushings type GOEK Technical guide

1ZSE EN, REV. 7. Oil SF 6. bushings type GOEK Technical guide 1ZSE 2750-106 EN, REV. 7 Oil SF 6 bushings type GOEK Technical guide Original instruction The information provided in this document is intended to be general and does not cover all possible applications.

More information

Courtesy of CMA/Flodyne/Hydradyne Motion Control Hydraulic Pneumatic Electrical Mechanical (800)

Courtesy of CMA/Flodyne/Hydradyne Motion Control Hydraulic Pneumatic Electrical Mechanical (800) 01_1 Miniature st Headline_36 Ball Rail pt/14.4 Systems mm second line 2 Linear Motion and Assembly Technologies Miniature Ball Rail Systems Ball Rail Systems Roller Rail Systems Linear Bushings and Shafts

More information

ABSTRACT INTRODUCTION

ABSTRACT INTRODUCTION Wind tunnel investigation of waste air re-entry with wall ventilation P. Broas Technical Research Centre of Finland, Ship Laboratory, Tekniikantie 12, SF-02150, Espoo, Finland ABSTRACT A wind tunnel investigation

More information

Company name: GSI Created by: Xiao Ying Wong Phone: Date: 10/03/2017 Client: Client Number: Contact:

Company name: GSI Created by: Xiao Ying Wong Phone: Date: 10/03/2017 Client: Client Number: Contact: Position Qty. Description 2 NBG 125-8-16/156 A-F2-A-BAQE Product No.: On request Non-self-priming, single-stage, centrifugal volute pump designed according to ISO 5199 with dimensions and rated performance

More information

STUDY OF HYDROGEN DIFFUSION AND DEFLAGRATION IN A CLOSED SYSTEM

STUDY OF HYDROGEN DIFFUSION AND DEFLAGRATION IN A CLOSED SYSTEM STUDY OF HYDROGEN DIFFUSION AND DEFLAGRATION IN A CLOSED SYSTEM Yuki Ishimoto 1, Erik Merilo 2, Mark Groethe 2, Seiki Chiba 3, Hiroyuki Iwabuchi 1, Kou Sakata 1 1 The Institute of Applied Energy, 14-2,Nishishinbashi

More information

GROUP SIX Mficoticari Emoteq Division MF Series Torque Motors - Thin Ring Design - Direct Drive eliminates backlash - Extremely low cogging torque Con

GROUP SIX Mficoticari Emoteq Division MF Series Torque Motors - Thin Ring Design - Direct Drive eliminates backlash - Extremely low cogging torque Con GRUP SIX Mficoticari Emoteq Division MF Series Torque Motors - Thin Ring Design - Direct Drive eliminates backlash - Extremely low cogging torque Contact Us! Email Purchase Source: GRUP SIX () Te,4,2t

More information

EARTH RESISTANCE DET24C

EARTH RESISTANCE DET24C EARTH DET24C 1 AUTOMATED NUMBER OF TESTS: 1 SERIAL NO. CURRENT A TIME FILTER on/off INSTRUMENT SERIAL NO. TEST NOTES REVISED 9/4/2013 INTERSECTING CURVES 2 GENERAL NUMBER OF GROUND RODS INCHES AWG DIAGONAL

More information

Unit-I MEASURING INSTRUMENTS

Unit-I MEASURING INSTRUMENTS Unit-I MEASURING INSTRUMENTS 1.1 Definition of instruments: An instrument is a device in which we can determine the magnitude or value of the quantity to be measured. The measuring quantity can be voltage,

More information

SERVICE SOLUTIONS For Engine setups

SERVICE SOLUTIONS For Engine setups SERVICE SOLUTIONS For Engine setups The document provides solutions to the different problems faced by customers during use of engine setups manufactured by Apex Innovations Contents in the document subject

More information

RM Core. RM Core Components. Adjuster. Clip. Clip. Coilformer. RM Core

RM Core. RM Core Components. Adjuster. Clip. Clip. Coilformer. RM Core RM ore omponents djuster RM ore oilformer RM ore RM ores RM (Rectangular modulus) cores arose due to the demand for coil formers with integrated pins that allow for efficient winding and high P packing

More information

SmartBall Gas Leak Inspection

SmartBall Gas Leak Inspection SmartBall Gas Leak Inspection EnCana Severn to Crowfoot Pipeline Prepared By: Pure Technologies 705 11 th Ave. SW Calgary, AB (+1) 403.266.6794 www.puretechnologiesltd.com June 22 nd, 2010 Registered Trademark,

More information

Paper #1 February 22, 2009

Paper #1 February 22, 2009 The technology that will be discussed in this series of papers will be flywheel energy storage. Flywheel energy storage consists of storing energy in the rotational kinetic energy of a spinning disk. This

More information

TM ETRS-TM35FIN-ETRS89 WTG

TM ETRS-TM35FIN-ETRS89 WTG Noise calculation model: ISO 9613-2 General Wind speed: 8,0 m/s Ground attenuation: General, Ground factor: 0,4 Meteorological coefficient, C0: 0,0 db Type of demand in calculation: 1: WTG noise is compared

More information

SVE135 Sealed High-Voltage Contactor Having High Overcurrent Withstand Capability

SVE135 Sealed High-Voltage Contactor Having High Overcurrent Withstand Capability VE135 ealed High-Voltage Contactor Having High Over Withstand Capability AKA, Yasuhiro * HIBA, Yuji * AKURAI, Yuya * A B T R A C T The spread of environmentally friendly vehicles mounted with large-capacity

More information

Hydraulic & Lubrication Filters

Hydraulic & Lubrication Filters Hydraulic & Lubrication Filters Part II: Proper Filter Sizing Every filter has a minimum of two components. They are the filter housing and filter element. Most filters include an integral bypass valve.

More information

Marc ZELLAT, Driss ABOURI and Stefano DURANTI CD-adapco

Marc ZELLAT, Driss ABOURI and Stefano DURANTI CD-adapco 17 th International Multidimensional Engine User s Meeting at the SAE Congress 2007,April,15,2007 Detroit, MI RECENT ADVANCES IN DIESEL COMBUSTION MODELING: THE ECFM- CLEH COMBUSTION MODEL: A NEW CAPABILITY

More information

PETRA III Damping Sections

PETRA III Damping Sections PETRA III Damping Sections Markus Tischer, HASYLAB 05.05.06 Damping wiggler sections BINP / DESY cooperation on Damping wiggler Vacuum system Absorber M. Tischer PETRA III Damping Sections (MAC meeting,

More information

Temporary Rotor Inertial Control of Wind Turbine to Support the Grid Frequency Regulation

Temporary Rotor Inertial Control of Wind Turbine to Support the Grid Frequency Regulation Temporary Rotor Inertial Control of Wind Turbine to Support the Grid Frequency Regulation Bing Liu, Kjetil Uhlen, Tore Undeland Department of Electric Power Engineering, NTNU The 9th Deep Sea Offshore

More information

SHC Swedish Centre of Excellence for Electromobility

SHC Swedish Centre of Excellence for Electromobility SHC Swedish Centre of Excellence for Electromobility Cost effective electric machine requirements for HEV and EV Anders Grauers Associate Professor in Hybrid and Electric Vehicle Systems SHC SHC is a national

More information

THE 3.5 KEV CANDIDATE DARK MATTER DECAY SIGNAL - CURRENT STATUS AND NEAR-FUTURE PROSPECTS

THE 3.5 KEV CANDIDATE DARK MATTER DECAY SIGNAL - CURRENT STATUS AND NEAR-FUTURE PROSPECTS THE 3.5 KEV CANDIDATE DARK MATTER DECAY SIGNAL - CURRENT STATUS AND NEAR-FUTURE PROSPECTS Jeroen Franse Instituut Lorentz & Leiden Observatory Garching, 8 December 2015 With Alexey Boyarsky, Oleg Ruchayskiy,

More information

Regional Feedstock Partnership 2010 Switchgrass Report

Regional Feedstock Partnership 2010 Switchgrass Report Regional Feedstock Partnership 21 Switchgrass Report Vance Owens South Dakota State University Knoxville, TN 15-17 February 211 Field trial PIs: D. Bransby and C. Hopkings (AL), E. Heaton (IA), R. Farris

More information

Pinion Gear ii Project information?

Pinion Gear ii Project information? B Bevel gearing with straight, oblique and curved teeth [inch/agma] i Calculation without errors. Pinion Gear ii Project information? Input section 1.0 1.1 Options of basic input parameters Transferred

More information

Aerodynamically induced power loss in hard disk drives

Aerodynamically induced power loss in hard disk drives Microsyst Technol (2005) 11: 741 746 DOI 10.1007/s00542-005-0575-8 TECHNICAL PAPER Sung-Oug Cho Æ Seung-Yop Lee Æ Yoon-Chul Rhim Aerodynamically induced power loss in hard disk drives Received: 30 June

More information

Lecture 2. Review of Linear Regression I Statistics Statistical Methods II. Presented January 9, 2018

Lecture 2. Review of Linear Regression I Statistics Statistical Methods II. Presented January 9, 2018 Review of Linear Regression I Statistics 211 - Statistical Methods II Presented January 9, 2018 Estimation of The OLS under normality the OLS Dan Gillen Department of Statistics University of California,

More information

Like poles repel, unlike poles attract can be made into a magnet

Like poles repel, unlike poles attract can be made into a magnet Topic 7 Magnetism and Electromagnetism 7.1 Magnets and Magnetic Fields A permanent magnet has its own magnetic field : region in which a magnetic force is felt Poles are the places where the magnetic force

More information

Belgian Proof Marks present. Double proof as prescribed by the French law of 1810

Belgian Proof Marks present. Double proof as prescribed by the French law of 1810 Mark Number 1 Belgian Proof Marks Description Dates Used Mark The Perron, sole proof mark until dropped in 1810, Since 1853 used to indicate inspection or proof of breeching system. Not used on revolvers.

More information

Environment Restoration Operations Solid Waste Management Unit (SWMU) 52: Filling Tanks 2 and 4 with a Permanent Insoluble Material - September 2013

Environment Restoration Operations Solid Waste Management Unit (SWMU) 52: Filling Tanks 2 and 4 with a Permanent Insoluble Material - September 2013 University of New Mexico UNM Digital Repository Environmental Restoration Sandia National Labs/NM Technical Reports 10-9-2013 Environment Restoration Operations Solid Waste Management Unit (SWMU) 52: Filling

More information

Heat Exchangers (Chapter 5)

Heat Exchangers (Chapter 5) Heat Exchangers (Chapter 5) 2 Learning Outcomes (Chapter 5) Classification of heat exchangers Heat Exchanger Design Methods Overall heat transfer coefficient LMTD method ε-ntu method Heat Exchangers Pressure

More information

Current accuracy class. Sensor principles

Current accuracy class. Sensor principles Indoor Combi Sensor 12, 17.5 and 25 kv 1250 A and 3200 A KEVCD Highest voltage for equipment kv 12.24 Rated continuous primary current A 1250.3200 Rated transformation ratio for current measurement, K

More information

Porous Packaging Inspection Solutions Non-Destructive Package Testing

Porous Packaging Inspection Solutions Non-Destructive Package Testing Porous Packaging Inspection Solutions Non-Destructive Package Testing Package Integrity Syringes Blister Packs Transfer of environmental contaminants. Synergistic effects of contaminants (O 2, H 2 O, Bacteria).

More information

Hydrogen Station Equipment Performance Device (HyStEP Device) Specification

Hydrogen Station Equipment Performance Device (HyStEP Device) Specification Hydrogen Station Equipment Performance Device (HyStEP Device) Specification Overview Policies and technology solutions need to be developed and implemented to help reduce the time from when a new hydrogen

More information

Upstream Emissions from Electric Vehicle Charging

Upstream Emissions from Electric Vehicle Charging Upstream Emissions from Electric Vehicle Charging Jeremy Michalek Professor Engineering and Public Policy Mechanical Engineering Carnegie Mellon University CMU Vehicle Electrification Group Founded in

More information

Hydraulic Flywheel Accumulator for Mobile Energy Storage

Hydraulic Flywheel Accumulator for Mobile Energy Storage Hydraulic Flywheel Accumulator for Mobile Energy Storage Paul Cronk University of Minnesota October 14 th, 2015 I. Overview Outline I. Background on Mobile Energy Storage II. Hydraulic Flywheel Accumulator

More information

High Pressure Filters. 15P/30P Series. MAX 200 I/min bar. High pressure filters

High Pressure Filters. 15P/30P Series. MAX 200 I/min bar. High pressure filters P/3P Series MAX 2 I/min - 27 bar 9 High pressure filters P/3P Series Features & Benefits Features Compact aluminium housing Two head sizes and two bowl lengths Large ports and wide flow paths Microglass

More information

Supplement of Model simulations of cooking organic aerosol (COA) over the UK using estimates of emissions based on measurements at two sites in London

Supplement of Model simulations of cooking organic aerosol (COA) over the UK using estimates of emissions based on measurements at two sites in London Supplement of Atmos. Chem. Phys., 1, 13773 13789, 1 http://www.atmos-chem-phys.net/1/13773/1/ doi:1.19/acp-1-13773-1-supplement Author(s) 1. CC Attribution 3. License. Supplement of Model simulations of

More information

Rotor Position Detection of CPPM Belt Starter Generator with Trapezoidal Back EMF using Six Hall Sensors

Rotor Position Detection of CPPM Belt Starter Generator with Trapezoidal Back EMF using Six Hall Sensors Journal of Magnetics 21(2), 173-178 (2016) ISSN (Print) 1226-1750 ISSN (Online) 2233-6656 http://dx.doi.org/10.4283/jmag.2016.21.2.173 Rotor Position Detection of CPPM Belt Starter Generator with Trapezoidal

More information

Structural and Rotordynamic Force Coefficients of a Shimmed Bump Foil Bearing: an Assessment of a Simple Engineering Practice

Structural and Rotordynamic Force Coefficients of a Shimmed Bump Foil Bearing: an Assessment of a Simple Engineering Practice Proceedings of ASME Turbo Expo 2015: Turbine Technical Conference and Exposition, June 15-19, 2015, Montreal, Canada Paper GT2015-43734 Structural and Rotordynamic Force Coefficients of a Shimmed Bump

More information

Electrostatic Ignition Hazards Associated with the Pneumatic Transfer of Flammable Powders through Insulating or Dissipative Tubes and Hoses

Electrostatic Ignition Hazards Associated with the Pneumatic Transfer of Flammable Powders through Insulating or Dissipative Tubes and Hoses 691 A publication of CHEMICAL ENGINEERING TRANSACTIONS VOL. 31, 2013 Guest Editors: Eddy De Rademaeker, Bruno Fabiano, Simberto Senni Buratti Copyright 2013, AIDIC Servizi S.r.l., ISBN 978-88-95608-22-8;

More information

Appendix E Hydrology, Erosion and Sediment Transport Studies

Appendix E Hydrology, Erosion and Sediment Transport Studies Appendix E Hydrology, Erosion and Sediment Transport Studies Hatch 2012/10 Appendix E1 EA Hydrology Memorandum February 2011 (Hatch. 2011a) Hatch 2012/10 Project Memo February 23, 2011 TO: Larry King FROM:

More information

Traffic Data Quality Verification and Sensor Calibration for Weigh-In-Motion (WIM) Systems

Traffic Data Quality Verification and Sensor Calibration for Weigh-In-Motion (WIM) Systems Traffic Data Quality Verification and Sensor Calibration for Weigh-In-Motion (WIM) Systems Final Report Prepared by: Chen-Fu Liao Minnesota Traffic Observatory Laboratory Department of Civil Engineering

More information

Technical Information. T-HP62 SI f. Suva refrigerants. Thermodynamic Properties of Suva HP62. Refrigerant [R-404A (44/52/4]

Technical Information. T-HP62 SI f. Suva refrigerants. Thermodynamic Properties of Suva HP62. Refrigerant [R-404A (44/52/4] Technical Information T-HP62 SI f Suva refrigerants Thermodynamic Properties of Suva HP62 Refrigerant [R-404A (44/52/4] Thermodynamic Properties of SUVA HP62 Refrigerant SI Units New tables of the thermodynamic

More information

Eliminator Liquid line filter driers, type DCL and DML

Eliminator Liquid line filter driers, type DCL and DML Eliminator Liquid line filter driers, type DCL and DML Flare connection Solder connection (copper) REFRIGERATION AND AIR CONDITIONING Technical leaflet Eliminator Liquid line filter driers, type DCL and

More information

High Pressure Compression Series

High Pressure Compression Series : HIGH PRESSURE SERIES High Pressure Compression Series High Spring Rates in a Narrow Profile High Pressure Compression Springs are a series of slender low index compression springs with relatively high

More information

Magnetic Effects of Electric Current

Magnetic Effects of Electric Current CHAPTER13 Magnetic Effects of Electric Current Multiple Choice Questions 1. Choose the incorrect statement from the following regarding magnetic lines of field (a) The direction of magnetic field at a

More information

Wheels for a MEMS MicroVehicle

Wheels for a MEMS MicroVehicle EE245 Fall 2001 1 Wheels for a MEMS MicroVehicle Isaac Sever and Lloyd Lim sever@eecs.berkeley.edu, limlloyd@yahoo.com ABSTRACT Inch-worm motors achieve high linear displacements with high forces while

More information

Correlations between microphysical properties of large-scale. semi-transparent cirrus

Correlations between microphysical properties of large-scale. semi-transparent cirrus Correlations between microphysical properties of large-scale semi-transparent cirrus (from TOVS) and the state of the atmosphere (from ECMWF ERA-40) Gaby Rädel Claudia Stubenrauch, Fadoua Eddounia Laboratoire

More information

Azimuth Positioners - Heavy Duty

Azimuth Positioners - Heavy Duty LEGACY SERIES AZ HEAVY DUTY Azimuth Positioners - Heavy Duty AL- 2760-1 AL-2760-1-1.5HP AL- 2761-1 AL- 2763-1 AL- 2860-1 AL-2860-1-1.5HP AL- 2861-1 AL- 2960-1 AL- 4750-1 AL- 4760-1 AL- 4860-1 AL- 7760-1

More information

The Four Stroke Cycle

The Four Stroke Cycle 1 Induction As the piston travels down the cylinder it draws filtered air at atmospheric pressure and ambient temperature through an air filter and inlet valves into the cylinder. 2 Compression When the

More information

Assistant Professor, Dept. of Mechanical Engg., Shri Ram College of Engineering & Management, Banmore, Gwalior (M.P) 2

Assistant Professor, Dept. of Mechanical Engg., Shri Ram College of Engineering & Management, Banmore, Gwalior (M.P) 2 EXPERIMENTAL INVESTIGATION OF 4 STROKE COMPRESSION IGNITION ENGINE BY USING DIESEL AND PROCESSED WASTE COOKING OIL BLEND Neelesh Soni 1, Om Prakash Chaurasia 2 1 Assistant Professor, Dept. of Mechanical

More information

SPECIFICATION OF TRUCK MOUNTED SEWER JETTING MACHINE RAMJET 3000 Lts.

SPECIFICATION OF TRUCK MOUNTED SEWER JETTING MACHINE RAMJET 3000 Lts. Specification Of Truck Mounted Sewer Jetting Machine (Ramjet 3000 Lts.) Page 1 of 6 GENERAL :- SPECIFICATION OF TRUCK MOUNTED SEWER JETTING MACHINE RAMJET 3000 Lts. The truck mounted Sewer Jetting Machine

More information

Bearing retention and clearances

Bearing retention and clearances Bearing retention and clearances Bearing retention 9 Radial retention 9 Axial retention 91 Positioning of single bearing assemblies 91 Positioning of two bearing assemblies 92 Axial retention processes

More information

EECS 461 Final Project: Adaptive Cruise Control

EECS 461 Final Project: Adaptive Cruise Control EECS 461 Final Project: Adaptive Cruise Control 1 Overview Many automobiles manufactured today include a cruise control feature that commands the car to travel at a desired speed set by the driver. In

More information

COMMERCIAL SCHEME Approval No

COMMERCIAL SCHEME Approval No COMMERCIAL SCHEME Approval No. 12806 MADE at the City of Calgary, in the Province of Alberta, on ALBERTA ENERGY REGULATOR IN THE MATTER of a commercial scheme of Imperial Oil Resources Ventures Limited

More information