Free Essay

Helper

In:

Submitted By jeepking96
Words 2316
Pages 10
ME 2330 By K. L. Ting 5. Tangential and Normal components Let R(s) = x(s) i + y(s) j represent a curve and s is the independent parameter representing the arc length of the curve measured from a reference point. At s and s’, a particle moves from P to P’ and the displacement is dR (Fig. 1). If P and P’ is infinitesimally separated, i.e. ds= s’-s → 0, l dR l = ds, dR/ds = ut.

ut is a unit vector (called unit tangent) tangent to the curve at P (Fig. 2). At P and P’, let ut and ut‘ be the unit vectors in the tangent direction. The lines normal to ut and ut‘ intersect at O (Fig. 2). With ds → 0, point O is the center of curvature and ds/dθ = ρ where ρ, called radius of curvature, is the length OP. In Fig. 3, one may observe that dut is normal to ut and since ut and ut’ are unit vectors, dut/dθ is a unit vector, designated as un. un is the unit vector (called unit normal) in the direction from P to O. That is, dut/ds =(dut/dθ)(dθ/ds) = (1/ρ) un or dut/ds = k un

where k (= 1/ρ = dθ/ds) is the curvature at P.

Fig. 1

Fig. 2

Fig. 3

With a Cartesian coordinate system, the radius of curvature at (x, y) can be calculated as

ρ = [1 + (dy/dx)2]3/2/ ld2y/dx2l or ρ=

where the dots on x and y represent the first and second derivatives with respect to any independent parameter, such as t or s. In a circle, the center of curvature is the center of the circle and the radius of curvature is the radius of the circle.

Let a particle move along a path R(s). Differentiating R with respect to time yields V = dR/dt = (dR/ds)(ds/dt) = ut where it again yields a = dV/dt = where = ut )dt = ut + (dut /ds)(ds/dt) = ut + ( 2/ρ)un. at represents the tangential acceleration, which is caused by the is the tangential velocity or the speed of the particle. Differentiating

change of the speed, and 2/ρ = v2/ρ the normal acceleration of the particle. The normal acceleration, which is caused by the change of traveling direction, is always toward the center of curvature. The above equations can be written as V = v ut a = at ut + (v2/ρ)un. v is the speed of the particle and its direction is always tangent to the path. at is the tangential acceleration and (v2/ρ) is the normal acceleration. v2/ρ = 0 if the particle travels on a straight path, i.e. ρ = 0. In a circular motion, (v2/ρ) is called centrifugal acceleration.

Example: A skier skies on a path y = x2/20. At x = 10 m, he has a speed of 6 m/s, which increasing at 2 m/s2. What is the acceleration? Solution: At x = 10, y = 100/20 = 5. The skier skies on a curve with v = 6 m/s and at = 2 m/s2. The acceleration is a = at ut + (v2/ρ)un. Since y = x2/20, at x = 10, dy/dx = x/10 = 1, d2y/dx2 = 0.1 and ρ = [1 + (dy/dx)2]3/2/(d2y/dx2) = (1+12)3/2/(0.1) = 28.28 m a = at ut + (v2/ρ)un = 2 ut + (62/28.8)un = 2 ut + 1.273un φ = Atan2(1.273, 2) = 57.5°

Example: A race car travels around a horizontal circular track of radius 300 ft. It starts from rest and accelerate at a constant rate of 7 ft/s2 . What is the velocity and acceleration at t = 15 s? Solution: Tangential acceleration 7 ft/s2. Tangential velocity: v = v0 + at = 0 + 7t = 7(15) = 105 a = at ut + (v2/ρ)un = 7 ut + (1052/300)un = 7 ut + 36.75un 6. Complex numbers in Polar coordinates Real numbers: a2 ≥ 0 ft/s

All real number may be expressed on the real axis:

Imaginary numbers:

a2 ≤ 0

Then:

All imaginary number may be expressed ona the imaginary axis Example:

16i – 5i = (16 – 5)i = 11i (3i)(4i) = (3·4)(i·i) = (12)(i2) = (12)(–1) = –12 (i)(2i)(–3i) = (2 · –3)(i 3) = 6i Complex numbers: A complex number is an ordered pair of real numbers, expressed as a + bi where a and b are real numbers and i2 = -1. a and b are the real and imaginary parts of the complex number. A complex number may be used to express a point position or a vector on a plane (Fig. 1). The x and y axes in a xy-system are called real and imaginary axes respectively in complex number system. Thus, the position (a, b) of a point in the xy coordinate system is expressed as (a + bi) in complex number (Fig. 2). In other words, the position of a point as well as any vector on a plane can be expressed in complex number, in which the real part is the x-component and the imaginary part the y-component. The operation rules of vectors and complex numbers are different and complex numbers are not applicable in 3D motion. But complex numbers are more convenient to use in planar motion especially with rotation.

Fig. 1

Fig. 2

Fig. 3

A complex number may also be expressed in polar form as (Fig. 3) R = r eiθ, where i2 = -1 and eiθ = cosθ + sinθ i. All angles are measured from the real axis and positive if measured counterclockwise and negative if clockwise. If then and R = r eiθ = x + y i, x = r cosθ, r2 = x2 + y2, y = r sinθ θ = tan-1 (y/x) or in Excel, θ = atan2(x, y).

Atan2(x, y) is a function used in EXCEL and MATLAB. In C/C++, it is written as atan2(y, x). Atan2(x, y) gives the angle in the proper quadrant. Example: R1 = 1 + i, R2 = 1 - i, R3 = -1 + i, R4 = -1 - i. Express them in polar form. Solution: R1 = 1 + i = R2 = 1 - i = R3 = -1 + i = θ3 = R4 = -1 - i = θ4 = , where = atan2(-1, -1) , where θ1 = , where θ2 = , where or θ1 = atan2(1, 1) = . .

or θ2 = atan2(1, -1) =-

Fig. 4 Complex number operation: Generally speaking, real number operation rules have their counterparts in complex numbers except that i2= -1. Complex number operations are available in C/C++, Fortran, Matlab, and spread sheet, such as EXCEL. For any two complex numbers, say A1 = x1 + y1 i = r1 eiθ1 and A2 = x2 + y2 i = r2 eiθ2 Addition and subtraction: A1 ± A2 = (x1 ± x2) + (y2 ± y2) i Or A1 ± A2 =(r1 cosθ1 + r1 sinθ1 i) ± (r2 cosθ2 + r2 sinθ2 i)

= (r1 cosθ1 ± r2 cosθ2 ) + (r1 sinθ1 ± r2 sinθ2 ) i Product: A1 A2 = (x1+y1i) (x2+ y2i) =(x1x2 +y1y2 i2)+(x1y2 i + x2y1 i)=(x1x2 - y1y2) +(x1y2 + x2y1) i Or A1 A2 = (r1 eiθ1)(r2 eiθ2) = (r1r2) ei(θ1+θ2)

Since A1 eiθ2 = (r1 eiθ1)(eiθ2) = (r1) ei(θ1+θ2), A1 eiθ2 represents the rotation operation of A1 through θ2 counterclockwise (Figure 5).

Fig. 5

Fig. 6

If θ2 = 90°, then ei90° = cos 90° + i sin 90° = i. Therefore, eiθ(ei90°) = i eiθ. That is, if eiθ represents a unit vector ur, then ieiθ represents the unit vector uθ, which is in the direction obtained by rotating ur through 90° counterclockwise (Figure 6).

Division:

A1 A2 = (r1 eiθ1)/(r2 eiθ2) = (r1/r2) ei(θ1-θ2) There is no inner or outer product as in vectors.

Differentiation: Let R = x + yi, i2 = -1. Since i is a constant, dR/dt = (dx/dt) + (dy/dt) i d(eθ)/dθ = eθ d(eiθ)/dθ = [d(eu)/du](du/dθ) = eu (i) = i eiθ , where u = iθ and du/dθ = i d(eiθ)/dt = [d(eiθ)/dθ](dθ/dt) = (i eiθ ) = (ieiθ)

Example: Let A = x + yi = aeiα , B = u + v i = beiβ Example: Let R = reθ describe the position of a particle, where r and θ are functions of time. The velocity and acceleration of the particle can be described as V = dR/dt = d(reiθ)/dt = (dr/dt)eiθ + r d(eiθ)/dt = eiθ + r (i eiθ ). Let ur and uθ be the unit vectors along the radial and transverse directions. Since and are the complex numbers representing the unit vectors in the radial and transverse directions,

is the radial component of the velocity. r is the transverse component of the velocity.

Differentiating the above equation yields a = dR2/dt2 = d2(reiθ)/dt2 = d[ eiθ + r (i eiθ )]/dt = d( eiθ)/dt + d[r (i eiθ )]/dt

= = = =[

eiθ + d(eiθ)/dt] + [( eiθ + -r eiθ - r -r (2 ] + [( + (2 (2 eiθ ] eiθ

eiθ+ r eiθ+ r ]

]

is the radial component of the acceleration. is the transverse component of the acceleration.

In vectors, the position, velocity, and acceleration of the particle can be expressed as R = r ur V = ur + r uθ a= -r ur+ (2 uθ

If the particle travels on a circular path, = = 0, then V = dR/dt = d(reiθ)/dt = r (i eiθ ). a = dR2/dt2 = - r Or, in the vector form, V = r uθ a=-r r un ur + uθ = ut + r un + eiθ)

As shown in Fig. 7, in a circular motion, (-eiθ) and eiθ) are the complex number representation of the unit normal (radial) and unit tangent (transverse).

Fig. 7 Some complex number functions used in FORTRAN, C/C++, MATLAB (or Ch), and EXCEL are listed below.
FORTRAN, C/C++ COMPLEX T,P P=CMPLX(x,y) PRINT P x=REAL(P) r=CABS(P) q=ATAN2(y,x) P=CONJ(P) Q=CEXP(P)
P= r * CEXP(CMPLX(0,q))

EXCEL =Complex(x, y)

MATLAB, Ch P = x + i*y

Remarks To declare T and P as complex numbers To form the complex number x + iy To print a complex number(two ordered real numbers, x and y)

=IMREAL(P) =IMABS(P) =IMARGUMENT(P) or = atan2(x,y) =IMCONJUGATE(P) =IMEXP(P)
IMPRODUCT(r, IMEXP(COMPLEX (0,q)) )

x = real(P) y = imag(P) r = abs(P) q = atan2(x,y) P = conj(P) Q = exp(P) P = r * exp(i * q)

To obtain the real part of P To obtain the imaginary part of P To obtain the magnitude(modulus) of P To obtain the argument angle q of P = x + iy To obtain the complex conjugate P of P. To calculate Q = e
T (i*q)

y=AIMAG(P) = IMAGINARY(P)

To calculate P = r*e

*For EXCEL:

IMSUM(_,_), which calculates the complex sum of two complex numbers IMSUB(_,_), which calculates the complex difference of two complex numbers IMPRODUCT(_,_), which calculates the complex product of two complex numbers IMDIV(_,_), which calculates the complex quotient of two complex numbers Exercise: Let A1 = x1 + y1i = r1 eiθ1 and A2 = x2 + y2 i = r2 eiθ2. 1. A1 = 2 – 4i, A2 = -3 -2i. Find r1, α1 and r2, α2. 2. r1 = 2, α1 = 45°, r2 = 4, α2 = 2 rad. Find x1, y1, x2, y2. 3. In the above problem, find A1A2 and A1/A2. Express them in polar form with α in degrees.

Example: A child is on a merry-go-round, which rotates at a constant speed of 60 rpm (cw) while the child moves on the platform at a uniform speed of 1 ft/s toward the center of rotation. What are the velocity and acceleration of the child? r = 4 ft, = =0 = -1 ft/s, = - 60 rpm = -1 rev/s = -2π rad/s

= (4)(-2π) = -8π r 2 r = 4(-2π)2 16π2 = 2(-1)(-2π) = 4π =0 or V = -1 ur - 8 π uθ + 2(4π) eiθ = -16π2 + 8π eiθ

V = eiθ + r (i eiθ ) = -1 eiθ - 8π (i eiθ ) a= or -r + [(2

eiθ = (0 -16π2)

a = -16π2 ur + 8π uθ.

Example 12.18 A rod rotates in the horizontal plane such that θ = t 3 rad and the collar B is sliding outward along OA so that r = 100 t2 mm. t is in seconds. Determine the velocity and acceleration of the collar when t = 1 s.

At t = 1, r = 100 t2 = 100, θ = t3 = 1 rad, R = r eiθ

= 200 t = 200,

= 200

= 3 t2 = 3 rad/s,

= 6 t = 6 rad2/s2

V = eiθ + r (i eiθ ) = 200 eiθ + 100(3) (i eiθ ).

a=

-r = -800

+ (2 + 1800 ( eiθ)

eiθ = [200 – (100)(

+ [(2)(200)(3)

eiθ

Example 12.20: A ball slides in the rotating forked rod and travels around the slotted path, described as r = 0.5(1-cosθ) ft.

1. At θ = 180°, the ball velocity is v = 4 ft/s, and acceleration a = 30 ft/s2,. Find of the fork. 2. If of the ball at θ = 180°. Solution: R = r eiθ V = eiθ + r (i eiθ ) a= -r + (2 eiθ eiθ = -1 = -0.5 /s2 ccw. Find the velocity and acceleration

At θ = 180°, r = 0.5(1-cosθ) = 1, = 0.5 sin θ = 0, = 0.5 sin θ + 0.5 1. V = eiθ + r (i eiθ ) = 0 + (1) (-i) = -4 i, a= -r = 24 (24)2 + 2. If V = eiθ + r (i eiθ ) = 0 + (1)(-5)(-i) = 5 i a= -r +(2 eiθ
2

= 4 rad/s – (1)(16)](-1) + [0 + (1) ] (-i)

+ (2

eiθ = [-0.5

= (30)2,

= 18 rad/s2

ft/s

=[-0.5 4. Cylindrical coordinate

2

– (1)(16)](-1)+[0 + (1)

] (-i)= 28.5 – 20 i

ft/s2

If z-axis is normal to the plane of ur and uθ, a cylindrical coordinate system is formed. The position of a particle in a cylindrical coordinate system is expressed as R = r ur + z uz. Since uz does not change the direction, its derivative is zero. Therefore, V = ur + r uθ + uz a= -r ur+ (2 uθ + uz

Similar Documents

Premium Essay

The Hinton Helper Passage

...of the South” Hinton Rowan Helper argued that by over focusing on slavery the slave failed to nourish its other economic facets and had become over reliant on the northern economy. Helper decried that the south had “no foreign trade,” and that southerners contributed nothing to “literature, polite arts, and inventions of the age.” He believed that the slavery was not only ruining the economics of the south, but also its culture, and the minds of its very people. Helper also declared that the talented intelligent southerner would have no reason to stay in the south and this bothered him very dearly; later in the essay Helper mentioned that non slave holding whites in the south are among the most illiterate people in the world. Helper felt that slavery was bringing economic and cultural destruction to his home land. In addition to slavery making the south subservient to the north, Helper also argued that southerners outside the slavery system were severely disadvantaged. He claimed that poor southern whites were “regarded with less esteem than Negroes” and were “infinitely worse off” than even their slave counterparts. Helper was arguing that over focusing on slavery caused the government to neglect those not exploiting slave labor to get by. Not only did this lead to poverty for many poor white folk but it also gave tremendous power to a select few slave holders who became disproportionally wealthy and controlled and unfair amount of society. Helper also bemoaned southern arrogance...

Words: 413 - Pages: 2

Free Essay

Resume Helper

...IT1115 Exercise 4 Virtual and Cloud Computing 1. There’s a huge difference between client/server and peer-to-peer networks. For instance, a peer-to-peer network has no central server. Each workstation on the network shares its files equally with the others. There’s no central storage or authentication of users. Conversely, there are separate dedicated servers and clients in a client/server network. Through client workstations, users can access most files, which are generally stored on the server. The server will determine which users can access the files on the network. Peer-to-peer networks should be installed in homes or in very small businesses where employees interact regularly. They are inexpensive to set up (comparatively speaking); however, they offer almost no security. On the other hand, client/server networks can become as big as you need them to be. Some support millions of users and offer elaborate security measures. As you can imagine, client/server networks can become very expensive. 2. The main advantages of using virtual machines are Multiple OS environments can exist simultaneously on the same machine, isolated from each other; Virtual machine can offer an instruction set architecture that differs from real computer’s; Easy maintenance, application provisioning, availability and convenient recovery. The disadvantages of using virtual machines are When multiple virtual machines are simultaneously running on a host computer, each virtual machine may introduce...

Words: 609 - Pages: 3

Premium Essay

How to Be a People Helper

...How to Be a People Helper is a book by Dr. Gary R. Collins, it is based on the belief that people helping must be built on the Bible, God’s Words, and must be consistent with the Great Commission in which Jesus commanded his followers to make disciples of all nations. This edition has been revised, and changes were added in counseling techniques, approaches to training, research findings, and types of problems. There are many books on counseling; however, How to Be a People Helper has continued to be the basis for people helping training programs in a number of churches, colleges, and Christian organizations. This book is translated into several foreign languages and it is written to help people become skilled Christian people helper who serves Christ by helping others. Dr. Gary R. Collins is a Clinical Psychologist and is the President of the American Association of Christian Counselors and the editor of Christian Counseling Today. He refers to Christians who wants to learn counseling skills as people helper or lay-counselor. He admits that lay-counseling may be even more useful than professional counseling. He states that while professional psychological help is vital in dangerous life-threatening situations, lay-counseling is the matter of everyday life and therefore, is compulsory as the means of keeping people in a healthy psychological state in their daily routine. He believes that psychological help should not be a mere treatment with the help of test and medication...

Words: 774 - Pages: 4

Free Essay

Being an Effective Helper

...Being an Effective Helper Some people are limited in their social interaction; this may be a result of how they were brought up by their parents. Maybe they were home schooled or sheltered as a child. Maybe they were simply not allowed to interact with anyone outside of their family unit. Not every person is capable of learning the same way. As an instructor, you have to be aware of this fact and be able to recognize a person’s inability to learn a certain way and to help provide guidance in the correct direction, a path that will allow them to find their own way of learning the specific task sought after. Personally, there are multiple situations or client personalities that I feel that I would have difficulties in helping. The majority of them come from previous encounters with those types of situations or types of personalities. I know that for myself to improve as an instructor and a helper that I must find a way to see beyond these prejudices that I hold. It can be difficult to get past a certain distaste, as a small child my parent’s forced me to eat Brussels sprouts, and to this day they absolutely disgust me. I have tried to eat them on numerous occasions and I am not sure if it will ever happen. The first example that comes to mind is dealing with stubborn and difficult people. In my experience as a flight instructor, I have encountered this type of person in two different aspects. The first is that they believe that they are better than they actually are...

Words: 1826 - Pages: 8

Free Essay

2014 Fantasy Helper

...2014 ESPN Fantasy Football Draft Kit Standard PPR League Cheat Sheet 1. (9) 2. (13) 3. (17) 4. (22) 5. (25) 6. (40) 7. (47) 8. (56) 9. (62) 10. (66) 11. (72) 12. (76) 13. (98) 14. (104) 15. (113) 16. (120) 17. (126) 18. (135) 19. (146) 20. (168) 21. (173) 22. (185) 23. (193) 24. (200) 25. (229) 26. (236) 27. (248) 28. (260) 29. (280) 30. (304) 31. (319) 32. (326) 33. (340) 34. (347) 35. (352) 36. (356) 37. (358) 38. (360) 39. (361) 40. (363) Quarterbacks Peyton Manning, DEN Aaron Rodgers, GB Drew Brees, NO Matthew Stafford, DET Cam Newton, CAR Andrew Luck, IND Robert Griffin III, WAS Nick Foles, PHI Colin Kaepernick, SF Russell Wilson, SEA Matt Ryan, ATL Tom Brady, NE Tony Romo, DAL Philip Rivers, SD Jay Cutler, CHI Ben Roethlisberger, PIT Andy Dalton, CIN Eli Manning, NYG Carson Palmer, ARI Josh McCown, TB Joe Flacco, BAL Ryan Tannehill, MIA Johnny Manziel, CLE Alex Smith, KC EJ Manuel, BUF Sam Bradford, STL Geno Smith, NYJ Jake Locker, TEN Michael Vick, NYJ Matt Schaub, OAK Chad Henne, JAC Ryan Fitzpatrick, HOU Matt Cassel, MIN Teddy Bridgewater, MIN Brian Hoyer, CLE Mike Glennon, TB Kirk Cousins, WAS Blake Bortles, JAC Shaun Hill, STL Mark Sanchez, PHI Tight Ends Jimmy Graham, NO Julius Thomas, DEN Rob Gronkowski, NE Vernon Davis, SF Jordan Cameron, CLE Jason Witten, DAL Dennis Pitta, BAL Greg Olsen, CAR Jordan Reed, WAS Kyle Rudolph, MIN Martellus Bennett, CHI Delanie Walker, TEN Charles Clay, MIA Zach Ertz, PHI Antonio Gates, SD Ladarius Green, SD Heath Miller, PIT Coby...

Words: 1834 - Pages: 8

Premium Essay

Housing-Helpers Financial Model

...organizational survival (Greco, 2011). The financial model below demonstrates how Housing Helpers will support its home improvement work for low socioeconomic status households. Budge Responsibility A key component of financial sustainability is the commitment of board and staff to financial management that includes timely review of financial reports and advance planning. One way that board and staff plan for income and expenses in the future is by creating a budget. Approval of the annual budget is one of the fundamental building blocks of sound financial...

Words: 919 - Pages: 4

Free Essay

Filipino Helpers in Hong Kong

...Filipinos helpers in Hong Kong are at the risk of being maltreated Introduction Castillo Clariza Avenales who was in her age of 33, had her right thumb being chopped by her male employer after she reported his sexual misconduct to his wife last year. She was not the first one experienced such an unfortunate incident. Hong Kong, which comes to the top rank in world domestic labor employment, has long been seen as somewhere nearby to earn good salaries for better livings by the Filipinos. However, these people might place themselves under the danger of being abused in this workplace. In a 2001 survey conducted by the Hong Kong Human Rights Monitor which is a shadow committee of the United Nations, 1000 maids out of 2500 claimed they were physically abused while 175 of them said they were either harassed or raped. (Stafford, 2001, p. 5) This number was underestimated, according to the Hong Kong Overseas Maid-Employer Association dean, since it was not precise and scientific enough as the police figures which the authorities never revealed. It is actually not uncommon to see Filipinos getting involved in discrimination, unfair treatments, and even violence. Discrimination, unfair treatments, abuses and violence Gatmaytan (1997) stated that “Filipinas are imported by other countries for jobs their own citizens will not perform and for wages domestic citizens would not accept,” (p. 247) which is very true. In Hong Kong, Filipinos are receiving salaries that two times or...

Words: 1483 - Pages: 6

Premium Essay

Injection of T Cells

...programmed cell death. 2. A patient with AIDS has a low TH cell count. Why does this patient have trouble making antibodies? How does this patient make any antibodies? Patients with AIDS have a low TH cell count because their immune system is being attacked on a constant basis. “This virus however, can also infect other cells, which include macrophages and certain other kinds of cells, which can engulf substances through a process known as phagocytosis. As a consequence of the interaction with CD4 on helper T-cells, HIV specifically infects the very cells necessary to activate both B-cell and cytotoxic T-cell immune responses. Without helper T-cells, the body cannot make antibodies properly, nor can infected cells containing HIV (an intracellular pathogen) be properly eliminated. Consequently, the virus can: multiply, kill the helper T-cell in which it lives, infect adjacent helper T-cells, repeat the cycle, and on and on, until eventually there is a substantial loss of helper T-cells” (Brown, 2007). 3. Newborns (under 1 year) who contract...

Words: 620 - Pages: 3

Premium Essay

Treatment and Diagnois of Aids

...Brittany Taylor Treatment and Diagnosis for Aids Diagnosing AIDS. HIV and Aids are two very different things- Though HIV is the virus that causes AIDS, there is a difference between being infected with HIV and having AIDS. A person can have HIV without having AIDS, but cannot have AIDS without HIV. There are five stages of HIV infection, with the last being AIDS. Window Period, The first stage of HIV infection is also called the "window period." This is a period when the infected person may not be ill at all and may not test positive, but they will have a high viral load and be very infectious. Seroconversion is the second stage of HIV infection and is another period in which an infected person is highly infectious. It is during seroconversion that the body develops antibodies to HIV that can be detected on tests. Various symptoms of infection may appear as well, including fever, rash, fatigue and neurologic symptoms. The asymptomatic period is the third stage of HIV infection in which a person may not show any symptoms nor have a major increase in viral load. This period may last up to ten years or longer, especially with medical treatment. HIV-positive patients in the asymptomatic period are still not considered to have AIDS. Symptomatic Stages, Once the asymptomatic period ends, an HIV-positive individual will pass through early-stage and mid-stage symptomatic periods. Early-stage symptoms will include rashes, fatigue, weight loss, and other relatively common symptoms...

Words: 968 - Pages: 4

Premium Essay

Hiv/Aids

...HIV/ AIDS   What is AIDS ? It is a pandemic disease. AIDS cannot be compared to disease like malaria and cholera which claim more live in country currently. It has a greater impact than other disease. The treatment options are still in the initial stages and are prohibitively expensive. There are instances of quacks taking advantage of the situation. This has compounded  the misery of AIDS patients. History of HIV AIDS: It was first noticed in USA in 1981. The American and French scientist independently identified the AIDS virus 1984. The virus first named as HCLV III ( Human cell leukemia virus III). The name (Human cell leukemia deficiency virus) is now preferred. It now seems that HIV first passed into human from chimpanzees by eating butchered chimps. 10%  of the people, who get AIDS  virus infection, actually develop full blown AIDS. Causes of HIV/AIDS HIV is a retrovirus capable of rapid mutation that produces a latent infection that develops over a long period. To infect a human, HIV must attach to specific host cells known as CD4 cells, which are responsible for regulating the immune system. Once it has occupied a host cell, the virus copies the DNA of the cell, rendering it invisible to the body's defense system. The virus replicates itself within the cells, producing numerous virus particles that bud from the surface of the cell, destroying the cell and moving on to attach to another CD4 cell. For several weeks or months after initial infection the patient...

Words: 1179 - Pages: 5

Premium Essay

Pathophysiology

...1. A 21 year-old college student notices that she frequently develops “cold sores” during stressful final exam week.   1. What is the association between stress and the immune system? The human body has a built in stress response system that usually self regulates. When a threat is perceived the body deploys white blood cells to the area of the body that is under attack (Segerstrom & Miller, 2006). Because of this, less important cellular activities are reduced and the immune system is left vulnerable. When the body perceives a threat there are three phases it goes through. (Story, 2012). The first is the alarm stage, in which the sympathetic nervous system is stimulated and in response deploys the release of catecholamines and cortisol. This stage is known as the fight or flight response (Story, 2012). The body then enters the resistance phase and either adapts or alters activity to become desensitized to the stressor (Story, 2012). If the stressor overwhelms the body it becomes exhausted, which is the last phase. The immune system is suppressed more in times of greater stress (Segerstrom & Miller, 2006). A person’s effort to manage stress, such as smoking and drug use can also suppress the immune system. (Story, 2012). References: Story, Lachel. (2012). Pathophysiology: A Practical Approach. Massachusetts: Jones and Bartlett Learning, LLC. Segerstrom, Suzanne C. & Miller, Gregory E. (2006). Psychological Stress and the Human...

Words: 947 - Pages: 4

Premium Essay

Housing Helpers Case Study 1

...Housing Helpers Case Study 1 By Kevin Wilkerson BUS-4046 Employee and Labor Relations U07A1 Instructor Andrew Ansoorian May 26th, 2014 As the contract negotiation continues between Beth and Jim: Beth: That sounds very tempting Jim, but even though the CPI has risen by just 2%, the cost of living has risen by 3.5% and the working force needs that money now to support their families. Jim: Well, is there any other thing that we can propose that might get us closer to an agreement? Beth: Well, Jim, I think that we will hold a membership meeting to see where the members stand on this issue and your offer of 2% each year for 4 years. Jim: Ok, we will reschedule another session after the meeting. Another meeting resumes: Beth: The members have met and we have a couple of other proposals that might be of interest to you. Jim: Ok, what do you have in mind? Beth: We would like to propose a 3%. Cost of living allowance increase as well as an additional 5 days paid vacation for all employees, and work hours that are flexible such as 4 10 hour days or a 5/4/9 schedule which would keep production up, but allow the employees to spend more time with their families also. Jim: Beth, we simply cannot afford for employees to receive such a pay increase right now, but the alternative work hours might be something that we can talk about. Beth: HR has run the numbers, and the number of employees that have seniority and are getting up there in age are costing us more in...

Words: 433 - Pages: 2

Free Essay

The Stages of Hiv Infection

...English 98 1 April 2015 Title: The Stages of HIV infection Site: AIDS info Date: Sept. 23 2014 HIV is a virus that ultimately leads to AIDS and death. This is because this virus attacks and weakens the immune system, and along the way destroys the infection fighting cells. If the virus is treated as soon as it is discovered, medications can help a person live a longer, healthier life. Without treatment this virus gets worse over time causing the infection to advance in stages, until the person’s immune system becomes so weak, which puts them at risk for getting opportunistic infections, which causes death. There are three phases to this infection. The first stage is called acute HIV, which develops anywhere between two and four weeks after a person is infected. “During this time, people experience flu- like symptoms, which may include headaches, fevers, and sometimes rashes.” In this stage, HIV spreads very fast, throughout the infected body. This virus starts to attack the fighting CD4 cells which are the cells that help to fight infection when a person is sick. HIV can be transmitted at any of the three stages. The greatest risk is the first stage in which the virus spreads rapidly, known as acute HIV stage. The next stage of this infection is known as “chronic HIV, asymptomatic HIV, or clinical latency.” During this phase, HIV continues to increase but at a very slow pace. At this time, people who are infected may be asymptomatic, but can spread this disease without...

Words: 455 - Pages: 2

Free Essay

Helper Questions About Fungi

...Question about topic: Why does fungus grow in caves more than out in the open sun? Background Information: Fungi enjoy living in damp and dank areas. For example near large water sources, such as, rivers, streams, and springs in the woods. They are unable to be self-sufficient due to being unable to produce their own food independently with photosynthesis. They must absorb nutrients vital to sustain themselves that is most readily found in woods or forests with water sources in or near by them. The fallen leaves and flowing water bring many nutrients to them through the flow of the water as well as the decay of the leaves that contain some of the nutrients of the tree it once was a part of. They are also capable of living inside plants and animals. Also aiding in the decomposition and fertilization, fungi help decompose plant and animal materials (i.e. waste, flesh, etc.). My hypothesis: I hypothesize that fungi grow in dark areas with water sources and other miscellaneous animal traffic due to the independence from the sun and animal traffic leaving waste and other materials as they come and go. Experiment: The experiment is to first purchase fungi and split them into two equal amounts. Once separated take the first half and plant them next to the flowing water source leaving openly exposed to the sun. Next take the left over half of fungi, plant them in a dark closed in area with the flowing water, such as a wood box flipped upside down. Once that is done set...

Words: 458 - Pages: 2

Premium Essay

Stress and the Immune System

...‘Outline and evaluate a piece of research that shows a relationship between stress and the immune system’ The immune system is a collection of billions of cells that travel through the bloodstream.  They move in and out of tissues and organs, defending the body against foreign bodies (antigens), such as bacteria, viruses and cancerous cells. There are two types of lymphocytes within the immune system, these are; B cells- produce antibodies which are released into the fluid surrounding the body’s cells to destroy the invading viruses and bacteria. T cells- if the invader gets inside a cell, these (T cells) lock on to the infected cell, multiply and destroy it. The main types of immune cells are white blood cells. There are two types of white blood cells – lymphocytes and phagocytes. When people are stressed, the immune system’s ability to fight off antigens is reduced. That is why we are more prone to infectious disease. The stress hormone corticosteroid can suppress the effectiveness of the immune system (lowers the number of lymphocytes). Stress can also have an indirect effect on the immune system as a person may use unhealthy behavioural coping strategies to reduce their stress, such as drinking and smoking which further inhibit the immune system. There has been a lot of research into the relationship between stress and the immune system. One group of psychologists who researched this was Kiecolt- Glaser et al (1984). Their aim was to investigate whether stress of...

Words: 609 - Pages: 3