Writing a VUMAT. Appendix 3. Overview

Size: px
Start display at page:

Download "Writing a VUMAT. Appendix 3. Overview"

Transcription

1 ABAQUS/Expliit: Advaned Topis Appendix 3 Writing a VUMAT ABAQUS/Expliit: Advaned Topis A3.2 Overview Introdution Motivation Steps Required in Writing a VUMAT Example: VUMAT for Kinemati Hardening Plastiity

2 ABAQUS/Expliit: Advaned Topis Introdution ABAQUS/Expliit: Advaned Topis A3.4 Introdution ABAQUS/Expliit has an interfae that allows you to implement general onstitutive equations. In ABAQUS/Expliit the user-defined material model is implemented in user subroutine VUMAT. Use VUMAT when none of the existing material models inluded in the ABAQUS/Expliit material library aurately represents the behavior of the material to be modeled.

3 ABAQUS/Expliit: Advaned Topis A3.5 Introdution These interfaes make it possible to define any (proprietary) onstitutive model of arbitrary omplexity. User-defined material models an be used with any ABAQUS/Expliit strutural element type. Multiple user materials an be implemented in a single VUMAT routine and an be used together. In this leture the implementation of material models in VUMAT will be disussed and illustrated with an example. ABAQUS/Expliit: Advaned Topis Motivation

4 ABAQUS/Expliit: Advaned Topis A3.7 Motivation Proper testing of advaned onstitutive models to simulate experimental results often requires omplex finite element models. Complex material modeling Speial analysis problems our if the onstitutive model simulates material instabilities and loalization phenomena. The material model developer should be onerned only with the development of the material model and not with the development and maintenane of the FE software. Developments unrelated to material modeling Porting problems with new systems Long-term program maintenane of user-developed ode ABAQUS/Expliit: Advaned Topis Steps Required in Writing a VUMAT

5 ABAQUS/Expliit: Advaned Topis A3.9 Steps Required in Writing a VUMAT Proper definition of the onstitutive equation, whih requires one of the following: Expliit definition of stress (Cauhy stress for large-strain appliations) Definition of the stress rate only (in orotational framework) Furthermore, it is likely to require: Definition of dependene on time, temperature, or field variables Definition of internal state variables, either expliitly or in rate form ABAQUS/Expliit: Advaned Topis A3.10 Steps Required in Writing a VUMAT Transformation of the onstitutive rate equation into an inremental equation using a suitable integration proedure: Forward Euler (expliit integration) Bakward Euler (impliit integration) Midpoint method

6 ABAQUS/Expliit: Advaned Topis A3.11 Steps Required in Writing a VUMAT This is the hard part! Forward Euler (expliit) integration methods are simple but have a stability limit, ε < ε stab, where ε stab is usually less than the elasti strain magnitude. For expliit integration the time inrement must be ontrolled. For impliit or midpoint integration, the algorithm is more ompliated and often requires loal iteration. However, there is usually no stability limit. An inremental expression for the internal state variables must also be obtained. ABAQUS/Expliit: Advaned Topis A3.12 Steps Required in Writing a VUMAT Coding the VUMAT. Follow FORTRAN 77 or C onventions. Make sure that the ode an be vetorized. Make sure that all variables are defined and initialized properly. Use ABAQUS utility routines as required. Assign enough storage spae for state variables with the DEPVAR option.

7 ABAQUS/Expliit: Advaned Topis A3.13 Steps Required in Writing a VUMAT Verifying the VUMAT with a small (one element) input file. 1 2 Run tests with all displaements presribed to verify the integration algorithm for stresses and state variables. Suggested tests inlude: Uniaxial Uniaxial in oblique diretion Uniaxial with finite rotation Finite shear Compare test results with analytial solutions or standard ABAQUS material models, if possible. If the above verifiation is suessful, apply to more ompliated problems. ABAQUS/Expliit: Advaned Topis

8 ABAQUS/Expliit: Advaned Topis A3.15 The following ats as the interfae to a VUMAT in whih kinemati hardening plastiity is defined. *MATERIAL, NAME=KINPLAS *USER MATERIAL, CONSTANTS=4 30.E6, 0.3, 30.E3, 40.E3 *DEPVAR 5 *INITIAL CONDITIONS, TYPE=SOLUTION Data line to speify initial solutiondependent variables ABAQUS/Expliit: Advaned Topis A3.16 The user subroutine, whih must be kept in a separate file, is invoked with the ABAQUS exeution proedure, as follows: abaqus job=... user=... The user subroutine must be invoked in a restarted analysis beause user subroutines are not saved on the restart file.

9 ABAQUS/Expliit: Advaned Topis A3.17 Additional notes: Solution-dependent state variables an be output with identifiers SDV1, SDV2, et. Contour, path, and X Y plots of SDVs an be plotted in ABAQUS/Viewer. Inlude only a single VUMAT subroutine in the analysis. If more than one material must be defined, test on the material name in the VUMAT routine and branh. ABAQUS/Expliit: Advaned Topis A3.18 The VUMAT subroutine header is shown below: subroutine vumat( Read only (unmodifiable) variables- 1 nblok, ndir, nshr, nstatev, nfieldv, nprops, lanneal, 2 steptime, totaltime, dt, mname, oordmp, harlength, 3 props, density, strainin, relspinin, 4 tempold, strethold, defgradold, fieldold, 5 stressold, stateold, enerinternold, enerinelasold, 6 tempnew, strethnew, defgradnew, fieldnew, write only (modifiable) variables - 7 stressnew, statenew, enerinternnew, enerinelasnew) inlude 'vaba_param.in'

10 ABAQUS/Expliit: Advaned Topis A3.19 dimension props(nprops), density(nblok), oordmp(nblok), 1 harlength(nblok), strainin(nblok, ndir+nshr), 2 relspinin(nblok, nshr), tempold(nblok), 3 strethold(nblok, ndir+nshr),defgradold(nblok,ndir+nshr+nshr), 4 fieldold(nblok, nfieldv), stressold(nblok, ndir+nshr), 5 stateold(nblok, nstatev), enerinternold(nblok), 6 enerinelasold(nblok), tempnew(nblok), 7 strethnew(nblok, ndir+nshr),defgradnew(nblok,ndir+nshr+nshr), 8 fieldnew(nblok, nfieldv), stressnew(nblok,ndir+nshr), 9 statenew(nblok, nstatev), enerinternnew(nblok), 1 enerinelasnew(nblok) harater*80 mname ABAQUS/Expliit: Advaned Topis A3.20 VUMAT variables The following quantities are available in VUMAT, but they annot be redefined: Stress, streth, and SDVs at the start of the inrement Relative rotation vetor and deformation gradient at the start and end of an inrement and strain inrement Total and inremental values of time, temperature, and user-defined field variables at the start and end of an inrement Material onstants, density, material point position, and a harateristi element length Internal and dissipated energies at the beginning of the inrement Number of material points to be proessed in a all to the routine (NBLOCK) A flag indiating whether the routine is being alled during an annealing proess

11 ABAQUS/Expliit: Advaned Topis A3.21 The following quantities must be defined: Stress and SDVs at the end of an inrement The following variables may be defined: Internal and dissipated energies at the end of the inrement Many of these variables are equivalent or similar to those in UMAT. Complete desriptions of all parameters are provided in the VUMAT setion in Chapter 25 of the ABAQUS Analysis User s Manual. ABAQUS/Expliit: Advaned Topis A3.22 The header is usually followed by dimensioning of loal arrays. It is good pratie to define onstants via parameters and to inlude omments. parameter( zero = 0.d0, one = 1.d0, two = 2.d0, three = 3.d0, 1 third = one/three, half = 0.5d0, two_thirds = two/three, 2 three_halfs = 1.5d0) The parameter assignments yield aurate floating point onstant definitions on any platform.

12 ABAQUS/Expliit: Advaned Topis A3.23 VUMAT onventions Stresses and strains are stored as vetors. For plane stress elements: σ 11, σ 22, σ 12. For plane strain and axisymmetri elements: σ 11, σ 22, σ 33, σ 12. For three-dimensional elements: σ 11, σ 22, σ 33, σ 12,, σ 23, σ 31. For three-dimensional elements, this storage sheme is different than that for ABAQUS/Standard. The shear strain is stored as tensor shear strains, 1 ε12 = γ12. 2 ABAQUS/Expliit: Advaned Topis A3.24 The deformation gradient is stored similar to the way in whih symmetri tensors are stored. For plane stress elements: F 11, F 22, F 12, F 21. For plane strain and axisymmetri elements: F 11, F 22, F 33, F 12, F 21. For three-dimensional elements: F 11, F 22, F 33, F 12, F 23, F 31, F 21, F 32, F 13.

13 ABAQUS/Expliit: Advaned Topis A3.25 VUMAT formulation aspets Vetorized interfae In VUMAT the data are passed in and out in large bloks (dimension nblok). nblok typially is equal to 64 or 128. Eah entry in an array of length nblok orresponds to a single material point. All material points in the same blok have the same material name and belong to the same element type. This struture allows vetorization of the routine. A vetorized VUMAT should make sure that all operations are done in vetor mode with nblok the vetor length. In vetorized ode branhing inside loops should be avoided. Element type based branhing should be outside the nblok loop. ABAQUS/Expliit: Advaned Topis A3.26 Corotational formulation The onstitutive equation is formulated in a orotational framework, based on the Green-Naghdi rate. The inremental rotation is obtained from the total rotation T F = R U with the expression Ω = R R. The strain inrement is obtained with Hughes-Winget. Other measures an be obtained from the deformation gradient. The relative spin inrement ω Ω is also provided. The quantity ω orresponds to the Jaumann rate. In ABAQUS it is used in ertain instanes: e.g., solid elements using the built-in linear elasti and plasti material models.

14 ABAQUS/Expliit: Advaned Topis A3.27 The user must define the Cauhy stress: this stress reappears during the next inrement as the old stress. There is no need to rotate tensor state variables. A rotation is needed, however, if a rate other than the Green- Naghdi rate is desired. For example, to use the Jaumann rate, evaluate the expression defined by Hughes and Winget for the rotation inrement using the relative spin inrement: R = I ( ω Ω ) + ( ) 2 I ω Ω 2 Then, rotate all old tensor quantities before performing onstitutive updates. For example, for the stress tensor: stressold stressnew t t = t T σ + R σ R + σ ABAQUS/Expliit: Advaned Topis A3.28 VUMATs and hyperelastiity Hyperelasti onstitutive equations relate the Cauhy stress σ to the deformation gradient F through the left Cauhy-Green deformation tensor B. Using F for hyperelasti onstitutive models in a VUMAT presents some diffiulties, however, beause ABAQUS/Expliit uses a orotational system whih automatially aounts for rigid body rotations. The deformation gradient that is passed into the VUMAT is referred to a fixed basis assoiated with the original onfiguration. It also inorporates the rotations reall the deformation gradient an be written as F = RU, where R is the rotation tensor and U is the streth tensor.

15 ABAQUS/Expliit: Advaned Topis A3.29 Thus, to avoid inluding the effets of the rotations twie, hyperelasti onstitutive models implemented in a VUMAT should be formulated in terms of the streth tensor U. This allows you to obtain the orotational Cauhy stress diretly. For example, for neo-hookean hyperelastiity: 2 C 1 2 σ = 10 B tr( B) I + ( 1) J 3 D J I B = B J 23,. Substituting F = RU into the above expressions yields: 2 C tr( ) ( 1) J 3 D J T σ = R U U I + I R, where U = U J. 1 1 The orotational stress is the quantity ontained within the urly brakets: orot σ = C10 U tr( U ) I + ( J 1) I. J 3 D 1 ABAQUS/Expliit: Advaned Topis Example: VUMAT for Kinemati Hardening Plastiity

16 ABAQUS/Expliit: Advaned Topis A3.31 Example: VUMAT for Kinemati Hardening Plastiity Governing equations Elastiity: el el ij ij kk ij σ = λδ ε + 2µε, or in a Jaumann (orotational) rate form: J el el ij ij& kk s & ij & σ = λδ ε + µε. The Jaumann rate equation is integrated in a orotational framework: J el el ij ij kk ij σ = λδ ε + 2µ ε. ABAQUS/Expliit: Advaned Topis A3.32 Example: VUMAT for Kinemati Hardening Plastiity Plastiity: Yield funtion: 3 2 ( S )( S ) α α σ = 0. ij ij ij ij y Equivalent plasti strain rate: & pl 2 pl pl ε = & εij & εij. 3 Plasti flow law: pl 3 pl & εij = ( Sij αij ) & ε σ y. 2 Prager-Ziegler (linear) kinemati hardening: 2 pl & αij = h& εij. 3

17 ABAQUS/Expliit: Advaned Topis A3.33 Example: VUMAT for Kinemati Hardening Plastiity Integration proedure We first alulate the equivalent stress based on purely elasti behavior (elasti preditor), 0 ( )( ) pr 3 pr o pr pr o σ = Sij αij Sij α ij, Sij = Sij + 2µ eij. 2 Plasti flow ours if the elasti preditor is larger than the yield stress. The bakward Euler method is used to integrate the equations, ( S ) 3 ε pl pr o pl pr ij = ij αij ε σ. 2 After some manipulation we obtain a losed form expression for the equivalent plasti strain inrement, pl pr ( y ) ( h 3 ) ε = σ σ + µ. ABAQUS/Expliit: Advaned Topis A3.34 Example: VUMAT for Kinemati Hardening Plastiity This leads to the following update equations for the shift tensor, the stress, and the plasti strain: pl pl 3 pl αij = ηijh ε, εij = ηij ε, 2 o 1 pr pr o pr σ ij = αij + αij + ηijσ y + δijσ kk, ηij = ( Sij αij ) σ. 3 The integration proedure for kinemati hardening is desribed in the ABAQUS Analysis User s Manual. The appropriate oding is shown on the following pages.

18 ABAQUS/Expliit: Advaned Topis A3.35 Example: VUMAT for Kinemati Hardening Plastiity Coding for kinemati hardening plastiity VUMAT J2 Mises plastiity with kinemati hardening for plane strain ase. The state variables are stored as: state(*, 1) = bak stress omponent 11 state(*, 2) = bak stress omponent 22 state(*, 3) = bak stress omponent 33 state(*, 4) = bak stress omponent 12 state(*, 5) = equivalent plasti strain e = props(1) xnu = props(2) yield = props(3) hard = props(4) elasti onstants twomu = e / ( one + xnu ) thremu = three_halfs * twomu sixmu = three * twomu alamda = twomu * ( e - twomu ) / ( sixmu - two * e ) term = one / ( twomu * ( one + hard/thremu ) ) on1 = sqrt( two_thirds ) ABAQUS/Expliit: Advaned Topis A3.36 Example: VUMAT for Kinemati Hardening Plastiity If steptime equals to zero, assume the material pure elasti and use initial elasti modulus if( steptime.eq. zero ) then do i = 1, nblok C C Trial Stress trae = strainin (i, 1) + strainin (i, 2) + strainin (i, 3) stressnew(i, 1)=stressOld(i, 1) + alamda*trae 1 + twomu*strainin(i,1) stressnew(i, 2)=stressOld(i, 2) + alamda*trae 1 + twomu*strainin(i, 2) stressnew(i, 3)=stressOld(i, 3) + alamda*trae 1 + twomu*strainin(i,3) stressnew(i, 4)=stressOld(i, 4) 1 + twomu*strainin(i, 4) end do else

19 ABAQUS/Expliit: Advaned Topis A3.37 Example: VUMAT for Kinemati Hardening Plastiity C C Plastiity alulations in blok form C do i = 1, nblok C Elasti preditor stress trae = strainin(i, 1) + strainin(i, 2) + strainin(i, 3) sig1= stressold(i, 1) + alamda*trae + twomu*strainin(i, 1) sig2= stressold(i, 2) + alamda*trae + twomu*strainin(i, 2) sig3= stressold(i, 3) + alamda*trae + twomu*strainin(i, 3) sig4= stressold(i, 4) + twomu*strainin(i, 4) C Elasti preditor stress measured from the bak stress s1 = sig1 - stateold(i, 1) s2 = sig2 - stateold(i, 2) s3 = sig3 - stateold(i, 3) s4 = sig4 - stateold(i, 4) C Deviatori part of preditor stress measured from the bak stress smean = third * ( s1 + s2 + s3 ) ds1 = s1 - smean ds2 = s2 - smean ds3 = s3 - smean C Magnitude of the deviatori preditor stress differene dsmag = sqrt( ds1**2 + ds2**2 + ds3**2 + two*s4**2 ) ABAQUS/Expliit: Advaned Topis A3.38 Example: VUMAT for Kinemati Hardening Plastiity Chek for yield by determining the fator for plastiity, zero for elasti, one for yield radius = on1 * yield fayld = zero if( dsmag - radius.ge. zero ) fayld = one Add a protetive addition fator to prevent a divide by zero when DSMAG is zero. If DSMAG is zero, we will not have exeeded the yield stress and FACYLD will be zero. dsmag = dsmag + ( one - fayld ) Calulated inrement in gamma ( this expliitly inludes the time step) diff = dsmag - radius dgamma = fayld * term * diff

20 ABAQUS/Expliit: Advaned Topis A3.39 Example: VUMAT for Kinemati Hardening Plastiity Update equivalent plasti strain deqps = on1 * dgamma statenew(i, 5) = stateold(i, 5) + deqps Divide DGAMMA by DSMAG so that the deviatori stresses are expliitly onverted to tensors of unit magnitude in the following alulations dgamma = dgamma / dsmag Update bak stress fator = hard * dgamma * two_thirds statenew(i, 1) = stateold(i, 1) + fator * ds1 statenew(i, 2) = stateold(i, 2) + fator * ds2 statenew(i, 3) = stateold(i, 3) + fator * ds3 statenew(i, 4) = stateold(i, 4) + fator * s4 ABAQUS/Expliit: Advaned Topis A3.40 Example: VUMAT for Kinemati Hardening Plastiity Update stress fator = twomu * dgamma stressnew(i, 1) = sig1 - fator * ds1 stressnew(i, 2) = sig2 - fator * ds2 stressnew(i, 3) = sig3 - fator * ds3 stressnew(i, 4) = sig4 - fator * s4 Update the speifi internal energy - stresspower = half * ( 1 ( stressold(i, 1)+stressNew(i, 1) )*strainin(i, 1) 2 + ( stressold(i, 2)+stressNew(i, 2) )*strainin(i, 2) 3 + ( stressold(i, 3)+stressNew(i, 3) )*strainin(i, 3) 4 + two*( stressold(i, 4)+stressNew(i, 4) )*strainin(i, 4) ) enerinternnew(i) = enerinternold(i) 1 + stresspower/density(i)

21 ABAQUS/Expliit: Advaned Topis A3.41 Example: VUMAT for Kinemati Hardening Plastiity Update the dissipated inelasti speifi energy - smean = third* (stressnew(i, 1)+stressNew(i, 2) 1 + stressnew(i, 3)) equivstress = sqrt( three_halfs 1 * ( (stressnew(i, 1)-smean)**2 2 + (stressnew(i, 2)-smean)**2 3 + (stressnew(i, 3)-smean)**2 4 + two * stressnew(i, 4)**2 ) ) plastiworkin = equivstress * deqps enerinelasnew(i) = enerinelasold(i) 1 + plastiworkin / density(i) end do end if return end ABAQUS/Expliit: Advaned Topis A3.42 Example: VUMAT for Kinemati Hardening Plastiity Remarks In the datahek phase, VUMAT is alled with a set of fititious strains and a TOTALTIME and STEPTIME both equal to 0.0. A hek is done on the user s onstitutive relation, and an initial stable time inrement is determined based on alulated equivalent initial material properties. You should ensure that elasti properties are used in this all to VUMAT; otherwise, too large an initial time inrement may be used, leading to instability. A warning message is printed to the status (.sta) file, informing the user that this hek is being performed.

22 ABAQUS/Expliit: Advaned Topis A3.43 Example: VUMAT for Kinemati Hardening Plastiity Speial oding tehniques are used to obtain vetorized oding. All small loops inside the material routine are unrolled. The same ode is exeuted regardless of whether the behavior is purely elasti or elasti plasti. Speial are must be taken to avoid divides by zero. No external subroutines are alled inside the loop. The use of loal salar variables inside the loop is allowed. The ompiler will automatially expand these loal salar variables to loal vetors. Iterations should be avoided. If iterations annot be avoided, use a fixed number of iterations and do not test on onvergene.

Lecture 6 Writing a UMAT or VUMAT

Lecture 6 Writing a UMAT or VUMAT Lecture 6 Writing a UMAT or VUMAT Overview Motivation Steps Required in Writing a UMAT or VUMAT UMAT Interface Examples VUMAT Interface Examples Writing User Subroutines with ABAQUS L6.1 Overview Overview

More information

Q2. [40 points] Bishop-Hill Model: Calculation of Taylor Factors for Multiple Slip

Q2. [40 points] Bishop-Hill Model: Calculation of Taylor Factors for Multiple Slip 27-750, A.D. Rollett Due: 20 th Ot., 2011. Homework 5, Volume Frations, Single and Multiple Slip Crystal Plastiity Note the 2 extra redit questions (at the end). Q1. [40 points] Single Slip: Calulating

More information

(c) Calculate the tensile yield stress based on a critical resolved shear stress that we will (arbitrarily) set at 100 MPa. (c) MPa.

(c) Calculate the tensile yield stress based on a critical resolved shear stress that we will (arbitrarily) set at 100 MPa. (c) MPa. 27-750, A.D. Rollett Due: 20 th Ot., 2011. Homework 5, Volume Frations, Single and Multiple Slip Crystal Plastiity Note the 2 extra redit questions (at the end). Q1. [40 points] Single Slip: Calulating

More information

Advanced Computational Fluid Dynamics AA215A Lecture 4

Advanced Computational Fluid Dynamics AA215A Lecture 4 Advaned Computational Fluid Dynamis AA5A Leture 4 Antony Jameson Winter Quarter,, Stanford, CA Abstrat Leture 4 overs analysis of the equations of gas dynamis Contents Analysis of the equations of gas

More information

7.1 Roots of a Polynomial

7.1 Roots of a Polynomial 7.1 Roots of a Polynomial A. Purpose Given the oeffiients a i of a polynomial of degree n = NDEG > 0, a 1 z n + a 2 z n 1 +... + a n z + a n+1 with a 1 0, this subroutine omputes the NDEG roots of the

More information

Uniaxial Concrete Material Behavior

Uniaxial Concrete Material Behavior COMPUTERS AND STRUCTURES, INC., JULY 215 TECHNICAL NOTE MODIFIED DARWIN-PECKNOLD 2-D REINFORCED CONCRETE MATERIAL MODEL Overview This tehnial note desribes the Modified Darwin-Peknold reinfored onrete

More information

Control Theory association of mathematics and engineering

Control Theory association of mathematics and engineering Control Theory assoiation of mathematis and engineering Wojieh Mitkowski Krzysztof Oprzedkiewiz Department of Automatis AGH Univ. of Siene & Tehnology, Craow, Poland, Abstrat In this paper a methodology

More information

The coefficients a and b are expressed in terms of three other parameters. b = exp

The coefficients a and b are expressed in terms of three other parameters. b = exp T73S04 Session 34: elaxation & Elasti Follow-Up Last Update: 5/4/2015 elates to Knowledge & Skills items 1.22, 1.28, 1.29, 1.30, 1.31 Evaluation of relaxation: integration of forward reep and limitations

More information

vulcanhammer.net Visit our companion site

vulcanhammer.net Visit our companion site this doument downloaded from vulanhammer.net Sine 1997, your omplete online resoure for information geotenial engineering and deep foundations: The Wave Equation Page for Piling Online books on all aspets

More information

A NORMALIZED EQUATION OF AXIALLY LOADED PILES IN ELASTO-PLASTIC SOIL

A NORMALIZED EQUATION OF AXIALLY LOADED PILES IN ELASTO-PLASTIC SOIL Journal of Geongineering, Vol. Yi-Chuan 4, No. 1, Chou pp. 1-7, and April Yun-Mei 009 Hsiung: A Normalized quation of Axially Loaded Piles in lasto-plasti Soil 1 A NORMALIZD QUATION OF AXIALLY LOADD PILS

More information

ADHESION MEASURES OF ELASTO-PLASTIC THIN FILM VIA BUCKLE-DRIVEN DELAMINATION

ADHESION MEASURES OF ELASTO-PLASTIC THIN FILM VIA BUCKLE-DRIVEN DELAMINATION ADHESION MEASURES OF ELASTO-PLASTIC THIN FILM VIA BUCKLE-DRIVEN DELAMINATION Yu Shouwen and Li Qunyang Department of Engineering Mehanis, Tsinghua University, Beijing 184, China Yusw@mail.tsinghua.edu.n

More information

A multiscale description of failure in granular materials

A multiscale description of failure in granular materials A multisale desription of failure in granular materials Nejib Hadda, François Niot, Lu Sibille, Farhang Radjai, Antoinette Tordesillas et al. Citation: AIP Conf. Pro. 154, 585 (013); doi: 10.1063/1.4811999

More information

ANSYS USER Material Subroutine USERMAT

ANSYS USER Material Subroutine USERMAT - 1 - ANSYS USER Material Subroutine USERMAT Mehanis Group Development Department ANSYS, In. Southpointe 275 Tehnology Drive Canonsburg, PA 15317 November, 1999 - 2 - CONTENTS 1. INTRODUCTION... 3 2. USER

More information

Fig Review of Granta-gravel

Fig Review of Granta-gravel 0 Conlusion 0. Sope We have introdued the new ritial state onept among older onepts of lassial soil mehanis, but it would be wrong to leave any impression at the end of this book that the new onept merely

More information

Singular Event Detection

Singular Event Detection Singular Event Detetion Rafael S. Garía Eletrial Engineering University of Puerto Rio at Mayagüez Rafael.Garia@ee.uprm.edu Faulty Mentor: S. Shankar Sastry Researh Supervisor: Jonathan Sprinkle Graduate

More information

( ) ( ) Volumetric Properties of Pure Fluids, part 4. The generic cubic equation of state:

( ) ( ) Volumetric Properties of Pure Fluids, part 4. The generic cubic equation of state: CE304, Spring 2004 Leture 6 Volumetri roperties of ure Fluids, part 4 The generi ubi equation of state: There are many possible equations of state (and many have been proposed) that have the same general

More information

A Mechanism-Based Approach for Predicting Ductile Fracture of Metallic Alloys

A Mechanism-Based Approach for Predicting Ductile Fracture of Metallic Alloys The University of Akron IdeaExhange@UAkron Mehanial Engineering Faulty Researh Mehanial Engineering Department 6-13 A Mehanism-Based Approah for Prediting Dutile Frature of Metalli Alloys Xiaosheng Gao

More information

Four-dimensional equation of motion for viscous compressible substance with regard to the acceleration field, pressure field and dissipation field

Four-dimensional equation of motion for viscous compressible substance with regard to the acceleration field, pressure field and dissipation field Four-dimensional equation of motion for visous ompressible substane with regard to the aeleration field, pressure field and dissipation field Sergey G. Fedosin PO box 6488, Sviazeva str. -79, Perm, Russia

More information

22.54 Neutron Interactions and Applications (Spring 2004) Chapter 6 (2/24/04) Energy Transfer Kernel F(E E')

22.54 Neutron Interactions and Applications (Spring 2004) Chapter 6 (2/24/04) Energy Transfer Kernel F(E E') 22.54 Neutron Interations and Appliations (Spring 2004) Chapter 6 (2/24/04) Energy Transfer Kernel F(E E') Referenes -- J. R. Lamarsh, Introdution to Nulear Reator Theory (Addison-Wesley, Reading, 1966),

More information

MODELLING THE POSTPEAK STRESS DISPLACEMENT RELATIONSHIP OF CONCRETE IN UNIAXIAL COMPRESSION

MODELLING THE POSTPEAK STRESS DISPLACEMENT RELATIONSHIP OF CONCRETE IN UNIAXIAL COMPRESSION VIII International Conferene on Frature Mehanis of Conrete and Conrete Strutures FraMCoS-8 J.G.M. Van Mier, G. Ruiz, C. Andrade, R.C. Yu and X.X. Zhang Eds) MODELLING THE POSTPEAK STRESS DISPLACEMENT RELATIONSHIP

More information

23.1 Tuning controllers, in the large view Quoting from Section 16.7:

23.1 Tuning controllers, in the large view Quoting from Section 16.7: Lesson 23. Tuning a real ontroller - modeling, proess identifiation, fine tuning 23.0 Context We have learned to view proesses as dynami systems, taking are to identify their input, intermediate, and output

More information

Particle-wave symmetry in Quantum Mechanics And Special Relativity Theory

Particle-wave symmetry in Quantum Mechanics And Special Relativity Theory Partile-wave symmetry in Quantum Mehanis And Speial Relativity Theory Author one: XiaoLin Li,Chongqing,China,hidebrain@hotmail.om Corresponding author: XiaoLin Li, Chongqing,China,hidebrain@hotmail.om

More information

Where as discussed previously we interpret solutions to this partial differential equation in the weak sense: b

Where as discussed previously we interpret solutions to this partial differential equation in the weak sense: b Consider the pure initial value problem for a homogeneous system of onservation laws with no soure terms in one spae dimension: Where as disussed previously we interpret solutions to this partial differential

More information

Analysis of strain localization by a damage front approach

Analysis of strain localization by a damage front approach Analysis of strain loalization by a damage front approah Prabu MANOHARAN Eole Centrale Nantes 1, rue de Noël Nantes 443 Thesis Advisors Prof. Niolas Moës Prof. Steven Le Corre May 29 ABSTRACT Manufaturing

More information

Failure Assessment Diagram Analysis of Creep Crack Initiation in 316H Stainless Steel

Failure Assessment Diagram Analysis of Creep Crack Initiation in 316H Stainless Steel Failure Assessment Diagram Analysis of Creep Crak Initiation in 316H Stainless Steel C. M. Davies *, N. P. O Dowd, D. W. Dean, K. M. Nikbin, R. A. Ainsworth Department of Mehanial Engineering, Imperial

More information

A NEW FLEXIBLE BODY DYNAMIC FORMULATION FOR BEAM STRUCTURES UNDERGOING LARGE OVERALL MOTION IIE THREE-DIMENSIONAL CASE. W. J.

A NEW FLEXIBLE BODY DYNAMIC FORMULATION FOR BEAM STRUCTURES UNDERGOING LARGE OVERALL MOTION IIE THREE-DIMENSIONAL CASE. W. J. A NEW FLEXIBLE BODY DYNAMIC FORMULATION FOR BEAM STRUCTURES UNDERGOING LARGE OVERALL MOTION IIE THREE-DIMENSIONAL CASE W. J. Haering* Senior Projet Engineer General Motors Corporation Warren, Mihigan R.

More information

Millennium Relativity Acceleration Composition. The Relativistic Relationship between Acceleration and Uniform Motion

Millennium Relativity Acceleration Composition. The Relativistic Relationship between Acceleration and Uniform Motion Millennium Relativity Aeleration Composition he Relativisti Relationship between Aeleration and niform Motion Copyright 003 Joseph A. Rybzyk Abstrat he relativisti priniples developed throughout the six

More information

SEISMIC ANALYSIS OF SPHERICAL TANKS INCLUDING FLUID-STRUCTURE-SOIL INTERACTION

SEISMIC ANALYSIS OF SPHERICAL TANKS INCLUDING FLUID-STRUCTURE-SOIL INTERACTION 3 th World Conferene on Earthquake Engineering Vanouver, B.C., Canada August -6, 2004 aper o. 84 SEISMIC AALYSIS OF SHERICAL TAKS ICLUDIG FLUID-STRUCTURE-SOIL ITERACTIO T.L. Karavasilis, D.C. Rizos 2,

More information

MODE I FATIGUE DELAMINATION GROWTH ONSET IN FIBRE REINFORCED COMPOSITES: EXPERIMENTAL AND NUMERICAL ANALYSIS

MODE I FATIGUE DELAMINATION GROWTH ONSET IN FIBRE REINFORCED COMPOSITES: EXPERIMENTAL AND NUMERICAL ANALYSIS 21 st International Conferene on Composite Materials Xi an, 20-25 th August 2017 MODE I FATIUE DELAMINATION ROWTH ONSET IN FIBRE REINFORCED COMPOSITES: EXPERIMENTAL AND NUMERICAL ANALYSIS Man Zhu 1,3,

More information

Aharonov-Bohm effect. Dan Solomon.

Aharonov-Bohm effect. Dan Solomon. Aharonov-Bohm effet. Dan Solomon. In the figure the magneti field is onfined to a solenoid of radius r 0 and is direted in the z- diretion, out of the paper. The solenoid is surrounded by a barrier that

More information

Conformal Mapping among Orthogonal, Symmetric, and Skew-Symmetric Matrices

Conformal Mapping among Orthogonal, Symmetric, and Skew-Symmetric Matrices AAS 03-190 Conformal Mapping among Orthogonal, Symmetri, and Skew-Symmetri Matries Daniele Mortari Department of Aerospae Engineering, Texas A&M University, College Station, TX 77843-3141 Abstrat This

More information

WRAP-AROUND GUSSET PLATES

WRAP-AROUND GUSSET PLATES WRAP-AROUND GUSSET PLATES Where a horizontal brae is loated at a beam-to-olumn intersetion, the gusset plate must be ut out around the olumn as shown in Figure. These are alled wrap-around gusset plates.

More information

MOLECULAR ORBITAL THEORY- PART I

MOLECULAR ORBITAL THEORY- PART I 5.6 Physial Chemistry Leture #24-25 MOLECULAR ORBITAL THEORY- PART I At this point, we have nearly ompleted our rash-ourse introdution to quantum mehanis and we re finally ready to deal with moleules.

More information

SURFACE WAVES OF NON-RAYLEIGH TYPE

SURFACE WAVES OF NON-RAYLEIGH TYPE SURFACE WAVES OF NON-RAYLEIGH TYPE by SERGEY V. KUZNETSOV Institute for Problems in Mehanis Prosp. Vernadskogo, 0, Mosow, 75 Russia e-mail: sv@kuznetsov.msk.ru Abstrat. Existene of surfae waves of non-rayleigh

More information

STUDY OF INTERFACIAL BEHAVIOR OF CNT/POLYMER COMPOSITE BY CFE METHOD

STUDY OF INTERFACIAL BEHAVIOR OF CNT/POLYMER COMPOSITE BY CFE METHOD THE 19TH INTERNATIONAL CONFERENCE ON COMPOSITE MATERIALS STUDY OF INTERFACIAL BEHAVIOR OF CNT/POLYMER COMPOSITE BY CFE METHOD Q. S. Yang*, X. Liu, L. D. Su Department of Engineering Mehanis, Beijing University

More information

PROBABILISTIC FINITE ELEMENT METHODS FOR THE EVALUATION OF WOOD COMPOSITES WEI YANG

PROBABILISTIC FINITE ELEMENT METHODS FOR THE EVALUATION OF WOOD COMPOSITES WEI YANG PROBABILISTIC FINITE ELEMENT METHODS FOR THE EVALUATION OF WOOD COMPOSITES By WEI YANG A thesis submitted in partial fulfillment of the requirements for the degree of MASTER OF SCIENCE IN CIVIL ENGINEERING

More information

Drilling couples and refined constitutive equations in the resultant geometrically non-linear theory of elastic shells

Drilling couples and refined constitutive equations in the resultant geometrically non-linear theory of elastic shells Submitted to International Journal of Solids and Strutures on Otober, 01 Revised on February 1, 014 Drilling ouples and refined onstitutive equations in the resultant geometrially non-linear theory of

More information

Chapter 13, Chemical Equilibrium

Chapter 13, Chemical Equilibrium Chapter 13, Chemial Equilibrium You may have gotten the impression that when 2 reatants mix, the ensuing rxn goes to ompletion. In other words, reatants are onverted ompletely to produts. We will now learn

More information

IMPEDANCE EFFECTS OF LEFT TURNERS FROM THE MAJOR STREET AT A TWSC INTERSECTION

IMPEDANCE EFFECTS OF LEFT TURNERS FROM THE MAJOR STREET AT A TWSC INTERSECTION 09-1289 Citation: Brilon, W. (2009): Impedane Effets of Left Turners from the Major Street at A TWSC Intersetion. Transportation Researh Reord Nr. 2130, pp. 2-8 IMPEDANCE EFFECTS OF LEFT TURNERS FROM THE

More information

An Adaptive Optimization Approach to Active Cancellation of Repeated Transient Vibration Disturbances

An Adaptive Optimization Approach to Active Cancellation of Repeated Transient Vibration Disturbances An aptive Optimization Approah to Ative Canellation of Repeated Transient Vibration Disturbanes David L. Bowen RH Lyon Corp / Aenteh, 33 Moulton St., Cambridge, MA 138, U.S.A., owen@lyonorp.om J. Gregory

More information

Chapter 2 Linear Elastic Fracture Mechanics

Chapter 2 Linear Elastic Fracture Mechanics Chapter 2 Linear Elasti Frature Mehanis 2.1 Introdution Beginning with the fabriation of stone-age axes, instint and experiene about the strength of various materials (as well as appearane, ost, availability

More information

INTERNATIONAL JOURNAL OF CIVIL AND STRUCTURAL ENGINEERING Volume 2, No 4, 2012

INTERNATIONAL JOURNAL OF CIVIL AND STRUCTURAL ENGINEERING Volume 2, No 4, 2012 INTERNATIONAL JOURNAL OF CIVIL AND STRUCTURAL ENGINEERING Volume, No 4, 01 Copyright 010 All rights reserved Integrated Publishing servies Researh artile ISSN 0976 4399 Strutural Modelling of Stability

More information

CMSC 451: Lecture 9 Greedy Approximation: Set Cover Thursday, Sep 28, 2017

CMSC 451: Lecture 9 Greedy Approximation: Set Cover Thursday, Sep 28, 2017 CMSC 451: Leture 9 Greedy Approximation: Set Cover Thursday, Sep 28, 2017 Reading: Chapt 11 of KT and Set 54 of DPV Set Cover: An important lass of optimization problems involves overing a ertain domain,

More information

Wavetech, LLC. Ultrafast Pulses and GVD. John O Hara Created: Dec. 6, 2013

Wavetech, LLC. Ultrafast Pulses and GVD. John O Hara Created: Dec. 6, 2013 Ultrafast Pulses and GVD John O Hara Created: De. 6, 3 Introdution This doument overs the basi onepts of group veloity dispersion (GVD) and ultrafast pulse propagation in an optial fiber. Neessarily, it

More information

Development of a user element in ABAQUS for modelling of cohesive laws in composite structures

Development of a user element in ABAQUS for modelling of cohesive laws in composite structures Downloaded from orbit.dtu.dk on: Jan 19, 2019 Development of a user element in ABAQUS for modelling of ohesive laws in omposite strutures Feih, Stefanie Publiation date: 2006 Doument Version Publisher's

More information

Wave Propagation through Random Media

Wave Propagation through Random Media Chapter 3. Wave Propagation through Random Media 3. Charateristis of Wave Behavior Sound propagation through random media is the entral part of this investigation. This hapter presents a frame of referene

More information

ELASTO-PLASTIC AND ELASTO-DAMAGE MODELS BASED ON STRAIN GRADIENT ELASTICITY WITH EVOLVING INTERNAL LENGTH

ELASTO-PLASTIC AND ELASTO-DAMAGE MODELS BASED ON STRAIN GRADIENT ELASTICITY WITH EVOLVING INTERNAL LENGTH ELASTO-PLASTIC AND ELASTO-DAMAGE MODELS BASED ON STRAIN GRADIENT ELASTICITY WITH EVOLVING INTERNAL LENGTH Triantafyllou 1,, A.E. Giannakopoulos T. Papatheoharis 1, P.C. Perdikaris 1 1 Laboratory of Reinfored

More information

3 Tidal systems modelling: ASMITA model

3 Tidal systems modelling: ASMITA model 3 Tidal systems modelling: ASMITA model 3.1 Introdution For many pratial appliations, simulation and predition of oastal behaviour (morphologial development of shorefae, beahes and dunes) at a ertain level

More information

Hankel Optimal Model Order Reduction 1

Hankel Optimal Model Order Reduction 1 Massahusetts Institute of Tehnology Department of Eletrial Engineering and Computer Siene 6.245: MULTIVARIABLE CONTROL SYSTEMS by A. Megretski Hankel Optimal Model Order Redution 1 This leture overs both

More information

A Queueing Model for Call Blending in Call Centers

A Queueing Model for Call Blending in Call Centers A Queueing Model for Call Blending in Call Centers Sandjai Bhulai and Ger Koole Vrije Universiteit Amsterdam Faulty of Sienes De Boelelaan 1081a 1081 HV Amsterdam The Netherlands E-mail: {sbhulai, koole}@s.vu.nl

More information

CALCULATION OF NONLINEAR TUNE SHIFT USING BEAM POSITION MEASUREMENT RESULTS

CALCULATION OF NONLINEAR TUNE SHIFT USING BEAM POSITION MEASUREMENT RESULTS International Journal of Modern Physis A Vol. 24, No. 5 (2009) 974 986 World Sientifi Publishing Company CALCULATION OF NONLINEAR TUNE SHIFT USING BEAM POSITION MEASUREMENT RESULTS PAVEL SNOPOK, MARTIN

More information

The universal model of error of active power measuring channel

The universal model of error of active power measuring channel 7 th Symposium EKO TC 4 3 rd Symposium EKO TC 9 and 5 th WADC Workshop nstrumentation for the CT Era Sept. 8-2 Kosie Slovakia The universal model of error of ative power measuring hannel Boris Stogny Evgeny

More information

ES 247 Fracture Mechanics Zhigang Suo

ES 247 Fracture Mechanics Zhigang Suo ES 47 Frature Mehanis Zhigang Suo The Griffith Paper Readings. A.A. Griffith, The phenomena of rupture and flow in solids. Philosophial Transations of the Royal Soiety of London, Series A, Volume 1 (191)

More information

Remark 4.1 Unlike Lyapunov theorems, LaSalle s theorem does not require the function V ( x ) to be positive definite.

Remark 4.1 Unlike Lyapunov theorems, LaSalle s theorem does not require the function V ( x ) to be positive definite. Leture Remark 4.1 Unlike Lyapunov theorems, LaSalle s theorem does not require the funtion V ( x ) to be positive definite. ost often, our interest will be to show that x( t) as t. For that we will need

More information

Flexural Strength Design of RC Beams with Consideration of Strain Gradient Effect

Flexural Strength Design of RC Beams with Consideration of Strain Gradient Effect World Aademy of Siene, Engineering and Tehnology Vol:8, No:6, 04 Flexural Strength Design of RC Beams with Consideration of Strain Gradient Effet Mantai Chen, Johnny Ching Ming Ho International Siene Index,

More information

Slenderness Effects for Concrete Columns in Sway Frame - Moment Magnification Method

Slenderness Effects for Concrete Columns in Sway Frame - Moment Magnification Method Slenderness Effets for Conrete Columns in Sway Frame - Moment Magnifiation Method Slender Conrete Column Design in Sway Frame Buildings Evaluate slenderness effet for olumns in a sway frame multistory

More information

DIGITAL DISTANCE RELAYING SCHEME FOR PARALLEL TRANSMISSION LINES DURING INTER-CIRCUIT FAULTS

DIGITAL DISTANCE RELAYING SCHEME FOR PARALLEL TRANSMISSION LINES DURING INTER-CIRCUIT FAULTS CHAPTER 4 DIGITAL DISTANCE RELAYING SCHEME FOR PARALLEL TRANSMISSION LINES DURING INTER-CIRCUIT FAULTS 4.1 INTRODUCTION Around the world, environmental and ost onsiousness are foring utilities to install

More information

Identification of Ductile Damage Parameters for Austenitic Steel

Identification of Ductile Damage Parameters for Austenitic Steel Identifiation of utile amage Parameters for Austeniti Steel J. zugan, M. Spaniel, P. Konopík, J. Ruzika, J. Kuzelka Abstrat The modeling of inelasti behavior of asti materials requires measurements providing

More information

Department of Mechanical, Aerospace, and Nuclear Engineering, Rensselaer Polytechnic Institute, Troy, NY 12180, USA. ε = 1 ( ε θ = α(θ) dθ, (3)

Department of Mechanical, Aerospace, and Nuclear Engineering, Rensselaer Polytechnic Institute, Troy, NY 12180, USA. ε = 1 ( ε θ = α(θ) dθ, (3) reprint Phys. Status Solidi C 12, No. 4 5, 345 348 (201 ) / DOI 10.1002/pss.201 00 Modeling miromehanial response to thermal history in bulk grown aluminum nitride physia pss www.pss-.om urrent topis in

More information

max min z i i=1 x j k s.t. j=1 x j j:i T j

max min z i i=1 x j k s.t. j=1 x j j:i T j AM 221: Advaned Optimization Spring 2016 Prof. Yaron Singer Leture 22 April 18th 1 Overview In this leture, we will study the pipage rounding tehnique whih is a deterministi rounding proedure that an be

More information

Developing Excel Macros for Solving Heat Diffusion Problems

Developing Excel Macros for Solving Heat Diffusion Problems Session 50 Developing Exel Maros for Solving Heat Diffusion Problems N. N. Sarker and M. A. Ketkar Department of Engineering Tehnology Prairie View A&M University Prairie View, TX 77446 Abstrat This paper

More information

Green s function for the wave equation

Green s function for the wave equation Green s funtion for the wave equation Non-relativisti ase January 2019 1 The wave equations In the Lorentz Gauge, the wave equations for the potentials are (Notes 1 eqns 43 and 44): 1 2 A 2 2 2 A = µ 0

More information

Array Design for Superresolution Direction-Finding Algorithms

Array Design for Superresolution Direction-Finding Algorithms Array Design for Superresolution Diretion-Finding Algorithms Naushad Hussein Dowlut BEng, ACGI, AMIEE Athanassios Manikas PhD, DIC, AMIEE, MIEEE Department of Eletrial Eletroni Engineering Imperial College

More information

A.1. Member capacities A.2. Limit analysis A.2.1. Tributary weight.. 7. A.2.2. Calculations. 7. A.3. Direct design 13

A.1. Member capacities A.2. Limit analysis A.2.1. Tributary weight.. 7. A.2.2. Calculations. 7. A.3. Direct design 13 APPENDIX A APPENDIX A Due to its extension, the dissertation ould not inlude all the alulations and graphi explanantions whih, being not essential, are neessary to omplete the researh. This appendix inludes

More information

FREQUENCY DOMAIN FEEDFORWARD COMPENSATION. F.J. Pérez Castelo and R. Ferreiro Garcia

FREQUENCY DOMAIN FEEDFORWARD COMPENSATION. F.J. Pérez Castelo and R. Ferreiro Garcia FREQUENCY DOMAIN FEEDFORWARD COMPENSATION F.J. Pérez Castelo and R. Ferreiro Garia Dept. Ingeniería Industrial. Universidad de La Coruña javierp@ud.es, Phone: 98 7.Fax: -98-7 ferreiro@ud.es, Phone: 98

More information

Chapter 3 Lecture 7. Drag polar 2. Topics. Chapter-3

Chapter 3 Lecture 7. Drag polar 2. Topics. Chapter-3 hapter 3 eture 7 Drag polar Topis 3..3 Summary of lift oeffiient, drag oeffiient, pithing moment oeffiient, entre of pressure and aerodynami entre of an airfoil 3..4 Examples of pressure oeffiient distributions

More information

Three-dimensional Meso-scopic Analyses of Mortar and Concrete Model by Rigid Body Spring Model

Three-dimensional Meso-scopic Analyses of Mortar and Concrete Model by Rigid Body Spring Model Three-dimensional Meso-sopi Analyses of Mortar and Conrete Model by Rigid Body Spring Model K. Nagai, Y. Sato & T. Ueda Hokkaido University, Sapporo, Hokkaido, JAPAN ABSTRACT: Conrete is a heterogeneity

More information

Simplified Buckling Analysis of Skeletal Structures

Simplified Buckling Analysis of Skeletal Structures Simplified Bukling Analysis of Skeletal Strutures B.A. Izzuddin 1 ABSRAC A simplified approah is proposed for bukling analysis of skeletal strutures, whih employs a rotational spring analogy for the formulation

More information

Bending resistance of high performance concrete elements

Bending resistance of high performance concrete elements High Performane Strutures and Materials IV 89 Bending resistane of high performane onrete elements D. Mestrovi 1 & L. Miulini 1 Faulty of Civil Engineering, University of Zagreb, Croatia Faulty of Civil

More information

Influence of transverse cracks on the onset of delamination: application to L-angle specimens. F. Laurin*, A. Mavel, P. Nuñez, E.

Influence of transverse cracks on the onset of delamination: application to L-angle specimens. F. Laurin*, A. Mavel, P. Nuñez, E. Influene of transverse raks on the onset of delamination: appliation to L-angle speimens F. Laurin*, A. Mavel, P. Nuñez, E. Auguste Composite strutures subjeted to 3D loading Wings Strutures under 3D loadings

More information

Metric of Universe The Causes of Red Shift.

Metric of Universe The Causes of Red Shift. Metri of Universe The Causes of Red Shift. ELKIN IGOR. ielkin@yande.ru Annotation Poinare and Einstein supposed that it is pratially impossible to determine one-way speed of light, that s why speed of

More information

Quantum Mechanics: Wheeler: Physics 6210

Quantum Mechanics: Wheeler: Physics 6210 Quantum Mehanis: Wheeler: Physis 60 Problems some modified from Sakurai, hapter. W. S..: The Pauli matries, σ i, are a triple of matries, σ, σ i = σ, σ, σ 3 given by σ = σ = σ 3 = i i Let stand for the

More information

15.12 Applications of Suffix Trees

15.12 Applications of Suffix Trees 248 Algorithms in Bioinformatis II, SoSe 07, ZBIT, D. Huson, May 14, 2007 15.12 Appliations of Suffix Trees 1. Searhing for exat patterns 2. Minimal unique substrings 3. Maximum unique mathes 4. Maximum

More information

A Constitutive Model of Pseudo-Hyperelasticity for Description of Rubber-Like Materials

A Constitutive Model of Pseudo-Hyperelasticity for Description of Rubber-Like Materials MAEC Web of Conferenes 7, 6 (7) DO:.5/ mateonf/776 XXV R-S-P Seminar 7, heoretial Foundation of Civil Engineering A Constitutive Model of Pseudo-Hyperelastiity for Desription of Rubber-Like Materials Stanisław

More information

Universities of Leeds, Sheffield and York

Universities of Leeds, Sheffield and York promoting aess to White Rose researh papers Universities of Leeds, Sheffield and York http://eprints.whiterose.a.uk/ This is an author produed version of a paper published in Journal of Composites for

More information

The Concept of Mass as Interfering Photons, and the Originating Mechanism of Gravitation D.T. Froedge

The Concept of Mass as Interfering Photons, and the Originating Mechanism of Gravitation D.T. Froedge The Conept of Mass as Interfering Photons, and the Originating Mehanism of Gravitation D.T. Froedge V04 Formerly Auburn University Phys-dtfroedge@glasgow-ky.om Abstrat For most purposes in physis the onept

More information

PHYSICS 104B, WINTER 2010 ASSIGNMENT FIVE SOLUTIONS N { N 2 + 1, N 2 + 2, N

PHYSICS 104B, WINTER 2010 ASSIGNMENT FIVE SOLUTIONS N { N 2 + 1, N 2 + 2, N PHYSICS 4B, WINTER 2 ASSIGNMENT FIVE SOLUTIONS [.] For uniform m =. and springs g = 2. the eigenvalues have the analyti form, The ode jaobi test yields λ k = 2g ( os k) m k = k n = 2πn N = 2π N { N 2 +,

More information

COMBINED PROBE FOR MACH NUMBER, TEMPERATURE AND INCIDENCE INDICATION

COMBINED PROBE FOR MACH NUMBER, TEMPERATURE AND INCIDENCE INDICATION 4 TH INTERNATIONAL CONGRESS OF THE AERONAUTICAL SCIENCES COMBINED PROBE FOR MACH NUMBER, TEMPERATURE AND INCIDENCE INDICATION Jiri Nozika*, Josef Adame*, Daniel Hanus** *Department of Fluid Dynamis and

More information

1 sin 2 r = 1 n 2 sin 2 i

1 sin 2 r = 1 n 2 sin 2 i Physis 505 Fall 005 Homework Assignment #11 Solutions Textbook problems: Ch. 7: 7.3, 7.5, 7.8, 7.16 7.3 Two plane semi-infinite slabs of the same uniform, isotropi, nonpermeable, lossless dieletri with

More information

Bäcklund Transformations: Some Old and New Perspectives

Bäcklund Transformations: Some Old and New Perspectives Bäklund Transformations: Some Old and New Perspetives C. J. Papahristou *, A. N. Magoulas ** * Department of Physial Sienes, Helleni Naval Aademy, Piraeus 18539, Greee E-mail: papahristou@snd.edu.gr **

More information

The gravitational phenomena without the curved spacetime

The gravitational phenomena without the curved spacetime The gravitational phenomena without the urved spaetime Mirosław J. Kubiak Abstrat: In this paper was presented a desription of the gravitational phenomena in the new medium, different than the urved spaetime,

More information

Masonry Beams. Ultimate Limit States: Flexure and Shear

Masonry Beams. Ultimate Limit States: Flexure and Shear Masonry Beams 4:30 PM 6:30 PM Bennett Banting Ultimate Limit States: Flexure and Shear Leture Outline 1. Overview (5) 2. Design for Flexure a) Tension Reinforement (40) b) Compression Reinforement (20)

More information

An Integrated Architecture of Adaptive Neural Network Control for Dynamic Systems

An Integrated Architecture of Adaptive Neural Network Control for Dynamic Systems An Integrated Arhiteture of Adaptive Neural Network Control for Dynami Systems Robert L. Tokar 2 Brian D.MVey2 'Center for Nonlinear Studies, 2Applied Theoretial Physis Division Los Alamos National Laboratory,

More information

Application of the Dyson-type boson mapping for low-lying electron excited states in molecules

Application of the Dyson-type boson mapping for low-lying electron excited states in molecules Prog. Theor. Exp. Phys. 05, 063I0 ( pages DOI: 0.093/ptep/ptv068 Appliation of the Dyson-type boson mapping for low-lying eletron exited states in moleules adao Ohkido, and Makoto Takahashi Teaher-training

More information

Beams on Elastic Foundation

Beams on Elastic Foundation Professor Terje Haukaas University of British Columbia, Vanouver www.inrisk.ub.a Beams on Elasti Foundation Beams on elasti foundation, suh as that in Figure 1, appear in building foundations, floating

More information

CHBE320 LECTURE X STABILITY OF CLOSED-LOOP CONTOL SYSTEMS. Professor Dae Ryook Yang

CHBE320 LECTURE X STABILITY OF CLOSED-LOOP CONTOL SYSTEMS. Professor Dae Ryook Yang CHBE320 LECTURE X STABILITY OF CLOSED-LOOP CONTOL SYSTEMS Professor Dae Ryook Yang Spring 208 Dept. of Chemial and Biologial Engineering 0- Road Map of the Leture X Stability of losed-loop ontrol system

More information

Review of Force, Stress, and Strain Tensors

Review of Force, Stress, and Strain Tensors Review of Fore, Stress, and Strain Tensors.1 The Fore Vetor Fores an be grouped into two broad ategories: surfae fores and body fores. Surfae fores are those that at over a surfae (as the name implies),

More information

9 Geophysics and Radio-Astronomy: VLBI VeryLongBaseInterferometry

9 Geophysics and Radio-Astronomy: VLBI VeryLongBaseInterferometry 9 Geophysis and Radio-Astronomy: VLBI VeryLongBaseInterferometry VLBI is an interferometry tehnique used in radio astronomy, in whih two or more signals, oming from the same astronomial objet, are reeived

More information

FINITE ELEMENT ANALYSES OF SLOPES IN SOIL

FINITE ELEMENT ANALYSES OF SLOPES IN SOIL Contrat Report S-68-6 FINITE ELEMENT ANALYSES OF SLOPES IN SOIL A Report of an Investigation by Peter Dunlop, J. M. Dunan and H. Bolton Seed Sponsored by OFFICE, CHIEF OF ENGINEERS U. S. ARMY Conduted

More information

What are the locations of excess energy in open channels?

What are the locations of excess energy in open channels? Leture 26 Energy Dissipation Strutures I. Introdution Exess energy should usually be dissipated in suh a way as to avoid erosion in unlined open hannels In this ontext, exess energy means exess water veloity

More information

Motor Sizing Application Note

Motor Sizing Application Note PAE-TILOGY Linear Motors 70 Mill orest d. Webster, TX 77598 (8) 6-7750 ax (8) 6-7760 www.trilogysystems.om E-mail emn_support_trilogy@parker.om Motor Sizing Appliation Note By Jak Marsh Introdution Linear

More information

Plate bending approximation: thin (Kirchhoff) plates and C1 continuity requirements

Plate bending approximation: thin (Kirchhoff) plates and C1 continuity requirements Plate bending approximation: thin (Kirhhoff) plates and C1 ontinuity requirements 4.1 Introdution The subjet of bending of plates and indeed its extension to shells was one of the first to whih the finite

More information

4 Puck s action plane fracture criteria

4 Puck s action plane fracture criteria 4 Puk s ation plane frature riteria 4. Fiber frature riteria Fiber frature is primarily aused by a stressing σ whih ats parallel to the fibers. For (σ, σ, τ )-ombinations the use of a simple maximum stress

More information

THE EFFECT OF CONSOLIDATION RATIOS ON DYNAMIC SHEAR MODULUS OF SOIL

THE EFFECT OF CONSOLIDATION RATIOS ON DYNAMIC SHEAR MODULUS OF SOIL Otober 12-17, 28, Beijing, China THE EFFECT OF CONSOLIDATION RATIOS ON DYNAMIC SHEAR MODULUS OF SOIL J. Sun 1 and X.M. Yuan 2 1 Assoiate Professor, Institute of Civil Engineering, Heilongjiang University,

More information

Ayan Kumar Bandyopadhyay

Ayan Kumar Bandyopadhyay Charaterization of radiating apertures using Multiple Multipole Method And Modeling and Optimization of a Spiral Antenna for Ground Penetrating Radar Appliations Ayan Kumar Bandyopadhyay FET-IESK, Otto-von-Guerike-University,

More information

Directional Coupler. 4-port Network

Directional Coupler. 4-port Network Diretional Coupler 4-port Network 3 4 A diretional oupler is a 4-port network exhibiting: All ports mathed on the referene load (i.e. S =S =S 33 =S 44 =0) Two pair of ports unoupled (i.e. the orresponding

More information

MultiPhysics Analysis of Trapped Field in Multi-Layer YBCO Plates

MultiPhysics Analysis of Trapped Field in Multi-Layer YBCO Plates Exerpt from the Proeedings of the COMSOL Conferene 9 Boston MultiPhysis Analysis of Trapped Field in Multi-Layer YBCO Plates Philippe. Masson Advaned Magnet Lab *7 Main Street, Bldg. #4, Palm Bay, Fl-95,

More information

The Effectiveness of the Linear Hull Effect

The Effectiveness of the Linear Hull Effect The Effetiveness of the Linear Hull Effet S. Murphy Tehnial Report RHUL MA 009 9 6 Otober 009 Department of Mathematis Royal Holloway, University of London Egham, Surrey TW0 0EX, England http://www.rhul.a.uk/mathematis/tehreports

More information

n n=1 (air) n 1 sin 2 r =

n n=1 (air) n 1 sin 2 r = Physis 55 Fall 7 Homework Assignment #11 Solutions Textbook problems: Ch. 7: 7.3, 7.4, 7.6, 7.8 7.3 Two plane semi-infinite slabs of the same uniform, isotropi, nonpermeable, lossless dieletri with index

More information

12.1 Events at the same proper distance from some event

12.1 Events at the same proper distance from some event Chapter 1 Uniform Aeleration 1.1 Events at the same proper distane from some event Consider the set of events that are at a fixed proper distane from some event. Loating the origin of spae-time at this

More information