Uživatel:Dean/Pískoviště

Z WikiSkript

Dokažte, že napětí na pseudounipolárním Golbergově svodu je 1,5-násobek napětí klasického unipolárního svodu.

Řešení
Searchtool right.svg Podrobnější informace naleznete na stránce Elektrokardiografie/Fyzika .

Napětí mezi dvěma body je definováno jako rozdíl jejich potenciálů. Označme R, L, F potenciál na pravé horní, levé horní a levé dolní končetině. Bez újmy na obecnosti si zvolíme elektrodu na levé dolní končetine. V klasickém unipolárním svodu je její měřena vůči Wilsonově svorce. Potenciál Wilsonovy svorky (značme W) je aritmetickým průměrem potenciálů všech končetinových svodů, aneb:

Napětí klasického unipolární svodu dolní končetiny (značme VF) je tedy rovno:

Oddělením členu F ze zlomku dostáváme:

Což je rovno:

Vynásobme rovnicí zlomkem 3/2 aby jsme oslobodili člen F.

Pravá strana tohoto výrazu je ale z definice napětí na Goldberově psedounipolárním svodu.

Tedy skutečně platí:


Derive the formula for pH of a weak acid with initial concentration c and acid disocciation constant K. Neglect the self-ionization of water.

Solution

General equation for acid dissociation is:

Equilibrium constant, or acid dissociation constant, is defined as:

Note that these concentrations are in equilibrium. Fraction of initial acid concentration c disassociates. Amount which disassociates is equal to . Remaining (equilibirum) amount is the aforementioned . Therefore:

Since we neglect self-ionization of water, the only source of protons is the acid, therefore it holds:

For simplicity, let us denote either of these . What we are trying to find is the pH, that is by definition:

Plugging in to the formula for the equilibrium constant we obtain:

Rewriting into the standard form of quadratic equation:

Solutions to this equation are:

We choose the solution with positive sign, for we assume only non-negative concentration. Overall result is therefore:

Remark: Let's assume K is very small compared to c. That is a reasonable assumption, sice we are dealing with weak acid (small K) of a reasonable concentration ("big" c). Then disregarding all the terms in the numerator except the one with c, we would obtain:

Which is the familiar simplified formula. Alternative (and simpler) way te derive it, would be to assume , that is to assume essentially all of the acid would remain undissociated. Taking log of acid dissociation constant would then yield the result. Because of the added assumption, this formula is less accurate than the one we derived.


Prove the identity log(xy)=log(x)+log(y).

Solution

Let's begin with the definition of log. Assume that x is a positive number expressed as a power of some base b (also positive, distinct from 1), that is

then logarithm (of base b) is a function that outputs this exponent:

We will omit the base of log in the following text. Plugging this for n into the first equation we conclude that every such number x can be expressed as:

Let's express in this way both terms in the xy product:

From the property of exponentials we can equivalently write:

Taking log of both sides yields:

But from the definition of log, we can cancel exponential and log on the right side:

Which proves the original identity.


Derive the formula for expressing log(x) in the terms of ln(x).

Solution

From previous problem we know that every positive number x can be expressed as:

But the base itself can also be written in this form. Let's choose Euler's number for the base on the right side. Log with this base is called natural logarithm and denoted ln(x).

Let's combine these two expression, that is plug in the second equation for b into the first equation.

But from the property of exponents, this expression is equal to:

Taking natural log of both sides:

Rearranging we get the final result:


Derive the formula for hydrostatic pressure of incompressible fluid.

Solution

Pressure in general is the force acting on a surface, divided by that surface area:

With hydrostatic pressure, the acting force is the weight of the fluid. Weight of a body is calculated as:

Where m is the mass of the body and g is the gravitational acceleration. Combining these two equations we have:

We put lower index to denote the pressure is hydrostatic. Let us introduce density into the equation. Density is by definition mass per unit volume:

Solving for m and plugging into the previous equation we obtain:

We will assume that the volume of interest is prism or cylinder. Its height h is then perpendicular to its base, whose surface area is again A. Volume can therefore be calculated as:

Combining with the previous we get:

We can see that the surface areas cancel out, thus the hydrostatic pressure truly does not depend on the shape of the contatiner, only its height.


Derive the formula for atmospheric pressure as a function of altitude. Assume the air is ideal gas with constant temperature.

Solution

In the previous problem we built on the fact, that the liquid is incompressible, thus its density is independent of pressure. Hydrostatic pressure was then a linear function of height. However, this does not hold in gases. Yet it is still true, that the small change in pressure is proportional to the small change in height, or:

In contrast to the previous problem, we choose such coordinate system, that height (altitude) is increasing upwards, in centrifugal direction. Gravitational acceleration is then negative, yet we will employ absolute value and put negative sign before.

We will need to integrate this function to get p(h), keeping in mind that the density is dependent on the pressure. We will need to find this function ρ(p) first. State equation of ideal gas tells us that:

where the right side of the equation is the number of moles, universal gas constant and absolute temperature respectively. With slight modification, we get:

Dimensions are mole per unit volume, but the density is mass per unit volume. If we therefore multiply both sides by molar mass M, the dimensions would be as desired.

Plugging the density into our original equation:

Rearranging:

Now we can integrate the equation with appropriate integral bounds. Lower bound is the reference height (let's choose 0) with pressure denoted . Upper bound is the height of interest h with presure of interest p.

Performing the integration and assuming the right side contains only the constants, we get:

After slight rearranging, we get out final result:

We can see that the pressure decreases in exponential manner with altitude.

Kalkulačka srdeční osy - Python[upravit | editovat zdroj]

import math

print("QRS amplitude in lead I [mV]:")
I=float(input())
print("QRS amplitude in lead aVF [mV]:")
aVF=float(input())

if I!=0:
    if I>0:
        axis=math.atan((aVF*2)/(math.sqrt(3)*I))

    if I<0 and aVF>=0:
        axis=math.atan((aVF*2)/(math.sqrt(3)*I))+math.pi

    if I<0 and aVF<0:
        axis=math.atan((aVF*2)/(math.sqrt(3)*I))-math.pi

    print("Cardiac axis is",int(180*axis/math.pi), "degrees.")

if I==0:
    if aVF>0:
        print("Cardiac axis is",90, "degrees.")
    
    if aVF<0:
        print("Cardiac axis is",-90, "degrees.")

    if aVF==0:
        print("Cardiac axis is undefined. Verify input values or electrode placement.")


Sandbox[upravit | editovat zdroj]