Given data,Number of poles, P= 4Power rating, P = 20 MVA (Mega Volt Ampere)Rated voltage, V = 13.2 kV (kilo Volt)Frequency, f = 50 HzInertia constant, H = 8.5 kW- s/kVA(a) Kinetic energy stored in the rotor at synchronous speed:Synchronous speed (Ns) = 120f/P
The kinetic energy stored in the rotor (E) = 1/2 * Inertia constant * (Power rating in kVA)^2 / (Synchronous speed in rpm)Kinetic energy stored in the rotor at synchronous speedE = 1/2 * H * (P × 1000)^2 / NsE = 1/2 * 8.5 * (20,000)^2 / 1500E = 1,133,333.33 J× 1000 / 1500)α = 1.71 rad/s^2(c) Change in torque angle in that period and the RPM at the end of 10 cycles:Initial torque angle = δ1 = cos⁻¹ (Pm / (V × Ia)) = cos⁻¹ (17300 / (13200 × 1557.73)) = 1.5566 radTime period of 10 cycles, T = 10 / f = 0.2 sAt the end of 10 cycles, the final torque angle = δ2 = cos⁻¹ (Pm / (V × Ia)) = cos⁻¹ ((Pm – J × α × N × δ1) / (V × Ia))δ2 = cos⁻¹ ((423.36 – 8.5 × 20,000 × 1.71 × 1500 × 1.5566) / (13200 × 1557.73))δ2 = 1.853 radChange in torque angle, Δδ = δ2 – δ1Δδ = 1.853 – 1.5566Δδ = 0.296 radRPM at the end of 10 cycles, N1 = (P × 1000 × 60) / (Poles × f)N1 = (20,000 × 60) / (4 × 50)N1 = 2400 rpmAt the end of 10 cycles, the RPM will be given by,N2 = N1 – (α × δ1 × 30 / π)²N2 = 2400 – (1.71 × 1.5566 × 30 / π)²N2 = 2299.15 rpm
Therefore, The kinetic energy stored in the rotor at synchronous speed is 1,133,333.33J. The acceleration is 1.71 rad/s². The change in torque angle in that period is 0.296rad and the RPM at the end of 10 cycles is 2299.15 rpm.
To know more about Number visit :
https://brainly.com/question/3589540
#SPJ11
What are the timer/counter working modes? And list the function description for each mode briefly.
The timer/counter working modes refer to different ways in which a timer or counter can operate. Some common modes include normal mode, clear Timer on Compare Match (CTC) mode, fast PWM mode, phase Correct PWM mode, and input Capture mode
Normal mode:
In normal mode, the timer/counter simply counts from 0 to its maximum value and then restarts from 0. The value of the timer/counter can be obtained by reading the corresponding register.
For example, if an 8-bit timer/counter is used, it will count from 0 to 255 (2^8 - 1) and then wrap around to 0. The calculation is straightforward and does not involve any additional configuration.
Clear Timer on Compare Match (CTC) mode:
In CTC mode, the timer/counter counts from 0 to a specified value (compare match value) and then resets back to 0.
The compare match value is typically set by writing to a specific register. The calculation to determine the compare match value depends on the desired frequency or period.
For example, if a 16-bit timer/counter with a system clock frequency of 16 MHz is used and we want to generate a square wave with a frequency of 1 kHz, the compare match value would be calculated as follows:
Compare Match Value = (System Clock Frequency / (Desired Frequency x Prescaler)) - 1
= (16,000,000 / (1000 x 1)) - 1
= 15,999
The output signal can be toggled or set to a specific state when the compare match occurs, depending on the configuration.
Fast PWM mode:
In Fast PWM mode, the timer/counter counts from 0 to its maximum value and then starts over. Additionally, it compares the counter value with a specified compare match value and changes the output signal accordingly.
The compare match value is set in a register similar to CTC mode. The calculation to determine the compare match value is the same as in CTC mode. The output signal can be set, cleared, or toggled when the compare match occurs, depending on the configuration.
Phase Correct PWM mode:
Phase Correct PWM mode is similar to Fast PWM mode, but it changes the output signal gradually as the counter counts up and then counts down.
This mode improves the symmetry and reduces noise in the PWM signal. The calculation for the compare match value and the configuration options are the same as in Fast PWM mode.
Input Capture mode:
In Input Capture mode, the timer/counter captures the value of an external signal when a specific event occurs, such as a rising or falling edge.
The value captured by the timer/counter represents the time interval between the events and can be used to measure the frequency or period of the signal.
The calculation to determine the frequency or period depends on the timer/counter resolution and the system clock frequency.
The timer/counter working modes provide different functionalities for timers and counters.
The modes include normal mode for basic counting, Clear Timer on Compare Match (CTC) mode for generating periodic interrupts or PWM signals, Fast PWM mode for generating analog-like output signals, Phase Correct PWM mode for improved symmetry and reduced noise, and Input Capture mode for measuring the frequency or period of an external signal.
The specific calculations and configurations vary depending on the mode and desired functionality.
To learn more about timer, visit
https://brainly.com/question/31217713
#SPJ11
A long rectangular open channel that carries 10 m³/s consists of three segments: AB, BC and CD. The bottom widths of the three segments are 3 m, 4 m, and 5 m, respectively. Plot how the 'flow depth' varies with the 'specific energy' (d vs Es) for this channel system (not to scale). Present all three charts in one plot and clearly name the curves and the axes (with units).
A rectangular open channel that carries 10 m³/s consists of three segments: AB, BC, and CD. The bottom widths of the three segments are 3 m, 4 m, and 5 m, respectively. Plot how the flow depth varies with the specific energy (d vs Es) for this channel system (not to scale).
Present all three charts in one plot and clearly name the curves and the axes (with units).When the flow depth is plotted versus the specific energy, three curves can be obtained representing the three segments AB, BC, and CD. The critical flow depth can be determined from the intersection of the AB and CD curves, as well as from the horizontal tangent of the BC curve.
The depth of flow for each segment of the rectangular channel can be determined using this graph. In the rectangular channel, specific energy is given by the equation, `Es = (y²/2g) + (Q²/2gAy²)`.Here, y is the flow depth, A is the cross-sectional area, g is the acceleration due to gravity, and Q is the flow rate.
To know more about rectangular visit:
https://brainly.com/question/21416050
#SPJ11
Write a code to use CMP to find the highest byte in a series of 5 bytes
Your answer
Here's the code to use CMP to find the highest byte in a series of 5 bytes:
Fmov al, [series] ; move the first byte of the series into the AL registermov bh, al ; move the byte into the BH register, which will hold the highest byte valuecmp [series+1], bh ; compare the next byte in the series to the current highest byte valuejg set_highest ; jump to set_highest if the next byte is greater than the current highest byte valuejmp next_byte ; jump to next_byte if the next byte is not greater than the current highest byte valueset_highest:mov bh, [series+1] ; set the current highest byte value to the next byte in the seriesnext_byte:cmp [series+2], bh ; compare the next byte in the series to the current highest byte valuejg set_highest ; jump to set_highest if the next byte is greater than the current highest byte valuejmp third_byte ; jump to third_byte if the next byte is not greater than the current highest byte valuethird_byte:cmp [series+3], bh ; compare the third byte in the series to the current highest byte valuejg set_highest ; jump to set_highest if the third byte is greater than the current highest byte valuejmp fourth_byte ; jump to fourth_byte if the third byte is not greater than the current highest byte valuefourth_byte:cmp [series+4], bh ; compare the fourth byte in the series to the current highest byte valuejg set_highest ; jump to set_highest if the fourth byte is greater than the current highest byte valuemov [highest], bh ; move the highest byte value into the highest variable,
The code above is one way to use CMP to find the highest byte in a series of 5 bytes. This code can be used as a starting point for more complex byte comparison functions, and it can be modified to suit a wide variety of programming needs. Overall, this code uses a series of comparisons to identify the highest byte in a series of 5 bytes, and it demonstrates the use of several key programming concepts, including conditional jumps and variable assignment. T
Learn more about CMP here:
brainly.com/question/30399511
#SPJ11
Two arrays, one of length 4 (18, 7, 22, 35) and the other of length 3 (9, 11, (12) 2) are inputs to an add function of LabVIEV. Show these and the resulting output.
Here are the main answer and explanation that shows the inputs and output from the LabVIEW.
Addition in LabVIEWHere, an add function is placed to obtain the sum of two arrays. This function is placed in the block diagram and not in the front panel. Since it does not display anything in the front panel.1. Here is the front panel. It shows the input arrays.
Here is the block diagram. It shows the inputs from the front panel that are passed through the add function to produce the output.3. Here is the final output. It shows the sum of two arrays in the form of a new array. Note: The resultant array has 4 elements. The sum of the first and the third elements of the first array with the first element of the second array, the sum of the second and the fourth elements of the first array with the second element of the second array,
To know more about LabVIEW visit:-
https://brainly.com/question/29751884
#SPJ11
0.6 kg of a gas mixture of N₂ and O₂ is inside a rigid tank at 1.2 bar, 50°C with an initial composition of 18% O₂ by mole. O2 is added such that the final mass analysis of O2 is 33%. How much O₂ was added? Express your answer in kg.
If O2 is added such that the final mass analysis of O2 is 33%, approximately 0.134 kg of O₂ was added to the mixture.
To solve the problem, we are given a gas mixture containing nitrogen (N₂) and oxygen (O₂) with an initial composition of 18% O₂ by mole. The total mass of the mixture is 0.6 kg. We need to determine how much additional O₂ should be added to the mixture so that the final mass analysis of O₂ is 33%. calculate the initial mass of O₂ in the mixture by multiplying the initial mole fraction of O₂ (0.18) by the total mass of the mixture (0.6 kg). This gives us the initial mass of O₂.
Next, set up an equation to calculate the final mass of O₂ required. We multiply the final mole fraction of O₂ (0.33) by the total mass of the mixture plus the additional mass of O₂ (x). Finally, subtract the initial mass of O₂ from the final mass of O₂ to find the amount of O₂ added. By simplifying and solving the equation, we find that approximately 0.134 kg of O₂ should be added to the mixture to achieve the desired final mass analysis.
Learn more about mixture here:
https://brainly.com/question/24898889
#SPJ11
Define a neutral axis under the theory of bending.
State the bending moment equation.
A load of 75 kN is carried by a column made of cast-iron. The external and internal diameters are 200mm and 180mm respectively. If the eccentricity of the load is 35mm, calculate; (i) The maximum and minimum stress intensities. (ii) Upto what eccentricity there is no tensile stress in the column? A 250mm (depth) x 150 mm (width) rectangular beam is subjected to maximum bending moment of 750 kNm. Calculate; (i) The maximum stress in the beam, (ii) If the value of E for the beam material is 200 GN/m², calculate the radius of curvature for that portion of the beam where the bending is maximum. (iii) The value of the longitudinal stress at a distance of 65mm from the top surface of the beam.
In the theory of bending, the neutral axis is a line within a beam or column where there is no tension or compression. The bending moment equation calculates the bending moment at a given point in a structure. For a column made of cast iron carrying a load with an eccentricity of 35mm, the maximum and minimum stress intensities can be determined, as well as the eccentricity limit where there is no tensile stress. Similarly, for a rectangular beam subjected to a maximum bending moment of 750 kNm, the maximum stress, radius of curvature, and longitudinal stress at a specific distance can be calculated.
Under the theory of bending, the neutral axis refers to a line or axis within a beam or column that experiences no tension or compression when subjected to bending loads. It is the line where the cross-section of the structure remains unchanged during bending. The position of the neutral axis is determined based on the distribution of stresses and strains in the structure.
The bending moment equation is a fundamental equation used to analyze the behavior of beams and columns under bending loads. It relates the bending moment (M) at a specific point in the structure to the applied load, the distance from the point to the neutral axis, and the moment of inertia of the cross-section. The bending moment equation is given by:
M = (P * e) / (I * y)
Where:
M is the bending moment at the point,
P is the applied load,
e is the eccentricity of the load (distance from the line of action of the load to the neutral axis),
I is the moment of inertia of the cross-section of the structure,
y is the perpendicular distance from the neutral axis to the point.
Now, let's apply these concepts to the given scenarios:
(i) For the cast-iron column with external and internal diameters of 200mm and 180mm respectively, and an eccentricity of 35mm, the maximum and minimum stress intensities can be calculated. The maximum stress intensity occurs at the outermost fiber of the column, while the minimum stress intensity occurs at the innermost fiber. By applying appropriate formulas, the stress intensities can be determined.
(ii) To determine the limit of eccentricity where there is no tensile stress in the column, we need to find the point where the stress changes from compression to tension. This occurs when the stress intensity at the outermost fiber reaches zero. By calculating the stress intensity at different eccentricities, we can identify the limit.
For the rectangular beam subjected to a maximum bending moment of 750 kNm, the following calculations can be made:
(i) The maximum stress in the beam can be determined by dividing the bending moment by the section modulus of the beam's cross-section. The section modulus depends on the dimensions of the beam.
(ii) The radius of curvature for the portion of the beam where the bending is maximum can be calculated using the formula: radius of curvature (R) = (Mmax / σmax) * (1 / E), where Mmax is the maximum bending moment, σmax is the maximum stress, and E is the modulus of elasticity.
(iii) The value of the longitudinal stress at a distance of 65mm from the top surface of the beam can be obtained by using appropriate formulas based on the beam's geometry and the known values of the bending moment and section modulus.
To learn more about inertia click here: brainly.com/question/3268780
#SPJ11
(a) (b) There are THREE (3) design domains in the flow of VLSI IC design (i) Discuss about TWO (2) of these domains. (ii) Draw a flow chart that distinguished these domains Explain about geometrical scaling and relate it to Dennard Scaling.
The front-end design and back-end design are two of the three design domains in the flow of VLSI IC design. The geometrical scaling technique reduces the size of electronic devices without reducing their functionality, and Dennard scaling is a scaling method that keeps the electric field constant as the dimensions of a transistor are scaled down.
Explanation:
(a) The three design domains in the flow of VLSI IC design are listed below:
Front-end design Back-end design
Fabrication :
(i) The front-end design and back-end design are the two domains that we will talk about.
Front-end design: This step includes designing and simulating the various VLSI circuit building blocks using hardware description languages such as VHDL and Verilog.
The circuit can be tested and verified by simulation using this domain.
Back-end design: This step includes the physical design of the chip, which includes the placement of circuits and wires on the chip and the creation of an abstract representation of the circuit (a layout).
Design rule checks and verification of the layout is also performed in this domain.
(ii) The flow chart below distinguishes these domains:
Explanation of geometrical scaling:
Geometrical scaling is a technique for reducing the size of electronic devices without reducing their functionality.
Dennard scaling is a scaling method that keeps the electric field constant as the dimensions of a transistor are scaled down.
This constant electric field allows the performance of the transistor to remain constant even as its size is reduced.
To know more about Back-end design, visit:
https://brainly.com/question/19921481
#SPJ11
In a thermodynamic process, if 135 kJ amount of heat is required to increase 5.1 kg of metal from 18.0°C to 44.0 °C estimate the specific heat of the metal.
The estimated specific heat of the metal is approximately 0.527 kJ/(kg·°C).
The specific heat capacity (c) of a substance is defined as the amount of heat required to raise the temperature of 1 kilogram of the substance by 1 degree Celsius. Mathematically, it can be expressed as:
Q = m * c * ΔT
Where Q is the heat energy, m is the mass of the substance, c is the specific heat, and ΔT is the change in temperature.
Given that 135 kJ of heat is required to increase 5.1 kg of metal from 18.0°C to 44.0°C, we can rearrange the formula to solve for c:
c = Q / (m * ΔT)
Substituting the values into the formula, we have:
c = 135 kJ / (5.1 kg * (44.0°C - 18.0°C))
c = 135 kJ / (5.1 kg * 26.0°C)
c ≈ 0.527 kJ/(kg·°C)
Therefore, the estimated specific heat of the metal is approximately 0.527 kJ/(kg·°C).
The specific heat of a substance represents its ability to store and release heat energy. By calculating the specific heat of the metal using the given heat input, mass, and temperature change, we estimated the specific heat to be approximately 0.527 kJ/(kg·°C). This estimation provides insight into the thermal properties of the metal and helps in understanding its behavior in thermodynamic processes.
To know more about heat, visit:-
https://brainly.com/question/13260450
#SPJ11
A smooth, flat plate, 3.0 meters wide and 0.6 meters long parallel to the flow, is immersed in 15°C water (p = 999.1 kg/m³, v = 1.139 x 106 m² /s) flowing at an undisturbed velocity of 0.9 m/s. a) How thick is the boundary layer at the plate's center? b) Find the location and magnitude of the minimum surface shear stress experienced by the plate. c) Find the total friction drag on one side of the plate.
The thickness of the boundary layer at the plate's center is approximately 6.32 x 10^(-6) meters. the location of the minimum surface shear stress is approximately 0.3984 meters from the leading edge of the plate, and its magnitude is approximately 533.46 Pa. Total friction drag on one side of the plate is 499.55kg.
a) The thickness of the boundary layer at the plate's center can be determined using the formula: δ = 5.0 * (ν / U)
where δ represents the boundary layer thickness, ν is the kinematic viscosity of water, and U is the undisturbed velocity of the flow.
Given:
Width of the plate (W) = 3.0 meters
Length of the plate (L) = 0.6 meters
Kinematic viscosity (ν) = 1.139 x 10^(-6) m²/s
Undisturbed velocity (U) = 0.9 m/s
Substituting these values into the formula, we can calculate the boundary layer thickness: δ = 5.0 * (1.139 x 10^(-6) m²/s) / (0.9 m/s)
δ ≈ 6.32 x 10^(-6) meters
Therefore, the thickness of the boundary layer at the plate's center is approximately 6.32 x 10^(-6) meters.
b) The location and magnitude of the minimum surface shear stress can be determined using the Blasius solution for a flat plate boundary layer. For a smooth plate, the minimum surface shear stress occurs at approximately 0.664 times the distance from the leading edge of the plate.
Given: Length of the plate (L) = 0.6 meters
The location of the minimum surface shear stress can be calculated as:
Location = 0.664 * L
Location ≈ 0.664 * 0.6 meters
Location ≈ 0.3984 meters
The magnitude of the minimum surface shear stress can be determined using the equation: τ = 0.664 * (ρ * U²)
where ρ is the density of water and U is the undisturbed velocity of the flow.
Given:
Density of water (ρ) = 999.1 kg/m³
Undisturbed velocity (U) = 0.9 m/s
Substituting these values into the equation, we can calculate the magnitude of the minimum surface shear stress:
τ = 0.664 * (999.1 kg/m³ * (0.9 m/s)²)
τ ≈ 533.46 Pa
Therefore, the location of the minimum surface shear stress is approximately 0.3984 meters from the leading edge of the plate, and its magnitude is approximately 533.46 Pa.
c) The total friction drag on one side of the plate can be calculated using the equation: Fd = 0.5 * ρ * U² * Cd * A
where ρ is the density of water, U is the undisturbed velocity of the flow, Cd is the drag coefficient, and A is the area of the plate.
Given:
Density of water (ρ) = 999.1 kg/m³
Undisturbed velocity (U) = 0.9 m/s
Width of the plate (W) = 3.0 meters
Length of the plate (L) = 0.6 meters
Cd = Drag coefficient
To calculate the total friction drag, we need to find the drag coefficient (Cd) for the flat plate. The drag coefficient depends on the flow regime and surface roughness. For a smooth, flat plate, the drag coefficient can be approximated using the Blasius solution as Cd ≈ 1.328.
Substituting the given values into the equation, we can calculate the total friction drag:
A = W * L
A = 3.0 meters * 0.6 meters
A = 1.8 m²
Fd = 0.5 * 999.1 kg = 499.55 kg
LEARN MORE ABOUT friction drag here: brainly.com/question/29355763
#SPJ11
Two helical gears of the same hand are used to connect two shafts that are 90° apart. The smaller gear has 24 teeth and a helix angle of 35º. Determine the center distance between the shafts if the speed ratio is . The normal circular pitch is 0.7854 in.
The center distance between the two shafts is given as 1.79 inches. A helical gear is a gear in which the teeth are cut at an angle to the face of the gear.
Helical gears can be used to transfer motion between shafts that are perpendicular to each other, and they are often used in automotive transmissions and other machinery.Two helical gears of the same hand are used to connect two shafts that are 90° apart. The smaller gear has 24 teeth and a helix angle of 35º. The speed ratio is 1:2.The center distance between the two shafts is given as:D = [(T1+T2)/2 + (N/2)² * (cos² α + 1)]1/2Where, T1 and T2 are the number of teeth on the gears. α is the helix angle.
N is the speed ratio.Substituting the given values:T1 = 24N
= 1:2α
= 35°
The normal circular pitch is 0.7854 in. Therefore, the pitch diameter is:P.D. = (T/n) * Circular Pitch
Substituting the given values:T = 24n
= 1:2
Circular pitch = 0.7854 in.P.D.
= (24/(1/2)) * 0.7854
= 47.124 inches
The addendum = 1/p.
The dedendum = 1.25/p.
Total depth = 2.25/p.Substituting the values:
p = 0.7854
Addendum = 1/0.7854
= 1.27
Dedendum = 1.25/0.7854
= 1.59
Total depth = 2.25/0.7854
= 2.864
The center distance is given as:
D = [(T1+T2)/2 + (N/2)² * (cos² α + 1)]1/2
= [(24+48)/2 + (1/4)² * (cos² 35° + 1)]1/2
= 36 inches * 1.79
= 64.44 inches≈ 1.79 inches (rounded to two decimal places)
Therefore, the center distance between the two shafts is 1.79 inches.
To know more about center distance visit:
https://brainly.com/question/32040568
#SPJ11
(e) In supersonic flow, besides linearized theory, for an airfoil of the type illustrated above, there is another method based on some concepts from AE 2010, that can also allow us to calculate the lift and drag coefficients. Please describe the essential principles involved, with both words and sketches. (f) Finally, suppose the straight edges of the airfoil above are replaced by curved profiles. How would the LPE and the other approach in (e) compare in their accuracy and utility?
Besides linearized theory, another method for calculating lift and drag coefficients in supersonic flow is the area rule, based on the concepts from AE 2010.
This method considers the variation of cross-sectional area distribution along the airfoil. By accounting for the compression and expansion of the flow, it allows for a more accurate estimation of the lift and drag coefficients. The essential principle is that the change in cross-sectional area influences the distribution of shock waves and pressure gradients, affecting the aerodynamic forces. Sketches illustrating the cross-sectional area distribution and shock wave patterns can provide visual representations of this concept.
On the other hand, the area rule method can still be applicable and provide reasonable estimations for the lift and drag coefficients. However, it may require additional modifications or considerations to account for the curvature. The accuracy and utility of both approaches would depend on the specific characteristics of the curved profiles and the flow conditions. Comparing the two, the area rule method may offer better accuracy and utility when dealing with highly curved airfoils.
Learn more about Supersonic flow here:
https://brainly.com/question/32010392
#SPJ11
A rigid wire placed horizontally in a magnetic field and
perpendicular to it carries a current of 5 A in a downward direction.
the East. If the mass per unit length is 20 g/m, what is the
magnitude and direction of the magnetic field to lift
vertically the wire?
A rigid wire that is placed horizontally in a magnetic field and perpendicular to it carries a current of 5 A in a downward direction, and the East. The mass per unit length is 20 g/m. We are required to find the magnitude and direction of the magnetic field to lift the wire vertically.
Let's derive an expression to calculate the magnetic force on the wire:F = BIL sinθ where F is the magnetic force, B is the magnetic field, I is the current, L is the length of the wire in the magnetic field, and θ is the angle between the direction of the magnetic field and the direction of the current in the wire.When the wire is lifted vertically, the angle between the magnetic field and the direction of the current is 90°. Therefore, sinθ = 1.Substituting the given values:F = BIL sinθ = B × 5 A × L × 1 = 5BL g
The magnetic force will balance the force of gravity acting on the wire. The wire will be lifted vertically if the magnetic force is greater than or equal to the weight of the wire per unit length. Therefore,5BL = mg/L20 g/m × 9.81 m/s²5B = 9.81B = 1.962 TThe magnitude of the magnetic field required to lift the wire vertically is 1.962 T. The direction of the magnetic field can be found by applying the right-hand grip rule.
To know more about perpendicular visiṭ:
https://brainly.com/question/12746252
#SPJ11
Find the input for the following outputs of a 10-bits Analog to Digital Converter with Vᵣₑ = 10Volts; 1. Digital Word = 00 1001 1111 2. Digital Word = 01 0010 1100 3. Digital Word = 01 1110 0101 4. Digital Word = 11 0010 1001 5. Digital Word = 11 1011 0111
The input voltages for the given digital words are 26.749, 46.377, 53.344, 129.356, and 146.161 respectively.
Analog to Digital Converter (ADC) is a device used to convert continuous signals into a digital format. The digital output produced by an ADC device depends on the reference voltage, which is the voltage against which the input signal is compared. The resolution of an ADC depends on the number of bits of the digital output produced. For a 10-bit ADC with a reference voltage of 10 Volts, the output word is represented by 10 bits. Let's solve the problem given above.1. Digital Word = 00 1001 1111
To find the input, we need to convert the digital word into its decimal equivalent. Decimal equivalent = 2735 Input Voltage = Decimal Equivalent x Reference Voltage / Maximum Value of Digital Word
Input Voltage = 2735 x 10 / 1023 = 26.7492. Digital Word = 01 0010 1100
Decimal equivalent = 4748
Input Voltage = Decimal Equivalent x Reference Voltage / Maximum Value of Digital Word
Input Voltage = 4748 x 10 / 1023 = 46.3773. Digital Word = 01 1110 0101Decimal equivalent = 5461Input Voltage = Decimal Equivalent x Reference Voltage / Maximum Value of Digital WordInput Voltage = 5461 x 10 / 1023 = 53.3444. Digital Word = 11 0010 1001
Decimal equivalent = 13241
Input Voltage = Decimal Equivalent x Reference Voltage / Maximum Value of Digital Word
Input Voltage = 13241 x 10 / 1023 = 129.3565. Digital Word = 11 1011 0111
Decimal equivalent = 14999Input Voltage = Decimal Equivalent x Reference Voltage / Maximum Value of Digital WordInput Voltage = 14999 x 10 / 1023 = 146.161
To know more about voltages visit:
brainly.com/question/32002804
#SPJ11
A single stage reciprocating compressor takes 1m of air per minute and 1.013 bar and 15°C and delivers at 7 bar. Assuming Adiabatic law (n=1.35) and no clearance. Calculate: 1.1. Mass flow rate (1.226 kg/min) 1.2. Delivery Temperature (475.4 K) 1.3. Indicated power (4.238 kW)
Single-stage reciprocating compressor is used to compress the air. It takes 1 m³ of air per minute at 1.013 bar and 15°C and delivers at 7 bar. It is required to calculate mass flow rate, delivery temperature, and indicated power of the compressor.
Let's calculate these one by one. 1. Calculation of Mass flow rate:
Mass flow rate can be calculated by using the following formula;[tex]$$\dot m = \frac {PVn} {RT}$$[/tex]
Where:
P = Inlet pressure
V = Volume of air at inlet
n = Adiabatic exponent
R = Universal gas constant
T = Temperature of air at inlet[tex]$$R = 287 \space J/kg.[/tex]
K Substituting the values in the above formula;
Hence, the mass flow rate of the compressor is 1.326 kg/min.2. Calculation of Delivery temperature:
Delivery temperature can be calculated by using the following formula;
To know more about reciprocating visit:
https://brainly.com/question/15590281
#SPJ11
Write True or False for the following: The orientation of Charpy impact test specimens can make a difference in the results you get Most intergranular fractures are predominantly brittle failures Increasing grain size can result in lower fatigue life for a given applied stress when smooth un-notched specimens are tested It is often hard to distinguish between hydrogen embrittlement failure and SCC failure without knowing the history of exposure but HE cracks are typically trans-granular Shear deformation bands can be seen in metals, polymers as well as Ceramics Failure of fiber reinforced polymer matrix composite is predominantly due to fiber pull out, fiber debonding or fiber fracture. Polymers are most susceptible to temperature variations (low or high) leading to failure as compared to ceramics or metals Metals, Ceramics, and Polymers are susceptible to fatigue failures Advances in Fracture Mechanics has helped testing for failures due to causes such as Fatigue, Stress Corrosion Cracking, Hydrogen Embrittlement etc. Failure due to wear is common in moving parts that are in contact with each other such as bearings
The orientation of Charpy impact test specimens can make a difference in the results you get:
True.Most intergranular fractures are predominantly brittle failures.
True.Increasing grain size can result in lower fatigue life for a given applied stress when smooth un-notched specimens are tested.
True.It is often hard to distinguish between hydrogen embrittlement failure and SCC failure without knowing the history of exposure but HE cracks are typically trans-granular
True.Shear deformation bands can be seen in metals, polymers as well as Ceramic
True.Failure of fiber reinforced polymer matrix composite is predominantly due to fiber pull out, fiber debonding or fiber fracture
True,Polymers are most susceptible to temperature variations (low or high) leading to failure as compared to ceramics or metals
True.Metals, Ceramics, and Polymers are susceptible to fatigue failures
True,Advances in Fracture Mechanics have helped testing for failures due to causes such as Fatigue, Stress Corrosion Cracking, Hydrogen Embrittlement, etc.
True.Failure due to wear is common in moving parts that are in contact with each other such as bearings
Charpy impact test specimens:The orientation of Charpy impact test specimens can make a difference in the results you get.Intergranular fractures:
Most intergranular fractures are predominantly brittle failures.Increasing grain size:
Increasing grain size can result in lower fatigue life for a given applied stress when smooth un-notched specimens are tested.Hydrogen embrittlement failure
It is often hard to distinguish between hydrogen embrittlement failure and SCC failure without knowing the history of exposure but HE cracks are typically trans-granular.
Shear deformation bands:
Shear deformation bands can be seen in metals, polymers as well as ceramics.
Failure of fiber reinforced polymer:
Failure of fiber reinforced polymer matrix composite is predominantly due to fiber pull out, fiber debonding or fiber fracture.
Temperature variations:
Polymers are most susceptible to temperature variations (low or high) leading to failure as compared to ceramics or metals.
Fatigue failure
Metals, Ceramics, and Polymers are susceptible to fatigue failures.
Advances in Fracture Mechanics:
Advances in Fracture Mechanics have helped testing for failures due to causes such as Fatigue, Stress Corrosion Cracking, Hydrogen Embrittlement etc.Failure due to wear
Failure due to wear is common in moving parts that are in contact with each other such as bearings.
To know more about susceptible visit:-
https://brainly.com/question/4054549
#SPJ11
QI Answer: Consider an analog signal x(t) = 10cos(5at) which is then sampled using Ts=0.01 sec and 0.1 sec. Obtain the equivalent discrete signal for both Ts. Is the discrete signal periodic or not? If yes, calculate the fundamental period.
The equivalent discrete signals for Ts = 0.01 sec and Ts = 0.1 sec are xs(n) = 10cos(0.5anπ) and xs(n) = 10cos(anπ) respectively.
Both discrete signals are periodic, and their fundamental periods are 0.4 sec.
The given analog signal is x(t) = 10cos(5at).
Using the sampling period, Ts = 0.01 sec, the sampled signal is xs(t) = x(t) * δ(t), which simplifies to xs(t) = 10cos(5at) * δ(t).
The sampling frequency is fs = 1/Ts = 100 Hz.
Let the sampled signal be xs(n). At nTs, the sampled signal is xs(n) = 10cos(5anTs). Plugging in the values, we get xs(n) = 10cos(5an0.01) = 10cos(0.5anπ).
At Ts = 0.01 sec, the equivalent discrete signal for xs(n) is xs(n) = 10cos(0.5anπ).
Using the sampling period, Ts = 0.1 sec, the sampling frequency is fs = 1/Ts = 10 Hz.
Let the sampled signal be xs(n). At nTs, the sampled signal is xs(n) = 10cos(5anTs). Plugging in the values, we get xs(n) = 10cos(5an0.1) = 10cos(anπ).
At Ts = 0.1 sec, the equivalent discrete signal for xs(n) is xs(n) = 10cos(anπ).
The discrete signal is periodic because it is a discrete-time signal, and its amplitude is a periodic function of time. The fundamental period of a periodic function is the smallest T such that f(nT) = f((n+1)T) = f(nT + T), for all integers n.
Using this equation for the given discrete signal xs(n) = 10cos(anπ), we find that the smallest value of k for which this equation holds true for all values of n is k = 1.
So, the fundamental period is T = 2π/a = 2π/5a = 0.4 sec.
Learn more about discrete signals
https://brainly.com/question/33315708
#SPJ11
(b) A hollow shaft of diameter ratio 3/8 is required to transmit 650 kW at 120 rpm, the maximum torque being 30% greater than the mean. The shear stress is not to exceed 75 MN/m2 and the twist in a length of 3 m is not to exceed 1.6°. Calculate the maximum external diameter satisfying these conditions. Take G=84-GN/m².
External diameter refers to the overall diameter of a cylindrical object or structure, including any additional layers or surfaces that may be present on the outer side.
To calculate the maximum external diameter satisfying the given conditions, we can use the following steps:
Step 1: Calculate the mean power and maximum torque.
Given:
Power (P) = 650 kW
Speed (N) = 120 rpm
Mean power (P_mean) = P / N
Maximum torque (T_max) = 1.3 * P_mean [30% greater than the mean]
Step 2: Calculate the maximum shear stress and maximum angle of twist.
Given:
Shear stress (τ_max) = 75 MN/m²
Length of shaft (L) = 3 m
Maximum angle of twist (θ_max) = 1.6°
Step 3: Calculate the maximum external diameter.
Given:
Diameter ratio (d_ratio) = 3/8
Shear modulus (G) = 84 GN/m²
We can use the formula for torque (T) in a hollow shaft:
T = (π/16) * G * (D^4 - d^4) / L
We can rearrange this formula to solve for the maximum external diameter (D):
D^4 = (16 * T * L) / (π * G) + d^4
D = ((16 * T * L) / (π * G) + d^4)^(1/4)
Substituting the given values and solving for D:
D = ((16 * T_max * L) / (π * G) + (d_ratio * D)^4)^(1/4)
To know more about External Diameter visit:
https://brainly.com/question/17138287
#SPJ11
The minimum pressure on an object moving horizontally in water (Ttemperatu at10 degree centrigrade) at (x + 5) mm/s (where x is the last two digits of your student ID) at a depth of 1 m is 80 kPa (absolute). Calculate the velocity that will initiate cavitation. Assume the atmospheric pressure as 100 kPa (absolute). Scan the solution and upload in vUWS before moving to the next question.
The pressure at a depth h below the water surface is given byP = P₀ + ρghwhereρ is the density of water, g is the acceleration due to gravity, and h is the depth of the object.
From the above equations, P = P₀ + ρghρ₀ = 1000 kg/m³ (density of water at T₀ = 4°C)β = 2.07 × 10⁻⁴ /°C (volumetric coefficient of thermal expansion of water)Pv = 1.227 kPa (vapor pressure of water at 10°C)ρ = ₀ [1 - β(T - T₀)] = 1000 [1 - 2.07 × 10⁻⁴ (10 - 4)]ρ = 999.294 kg/m³P = 100 + 999.294 × 9.81 × 1P = 1.097 MPa (absolute)Since the minimum pressure on the object is 80 kPa (absolute), there is no cavitation. To initiate cavitation, we need to find the velocity of the object that will reduce the pressure to the vapor pressure of water.v² = (P₀ - Pv) × 2 / ρv = (100 - 1.227) × 2 / 999.294v = 0.0175 m/sv = 17.5 mm/sThe velocity that will initiate cavitation is 17.5 mm/s.
To know more about acceleration visit:-
https://brainly.com/question/33165116
#SPJ11
Water is contained within a frictionless piston-cylinder arrangement equipped with a linear spring, as shown in the following figure. Initially, the cylinder contains 0.06kg water at a temperature of T₁-110°C and a volume of V₁-30 L. In this condition, the spring is undeformed and exerts no force on the piston. Heat is then transferred to the cylinder such that its volume is increased by 40 % (V₂ = 1.4V₁ ) ; at this point the pressure is measured to be P2=400 kPa. The piston is then locked with a pin (to prevent it from moving) and heat is then removed from the cylinder in order to return the water to its initial temperature: T₁=T₁=110°C. a) Determine the phase (liquid, vapour or mixture) and state (P, T and quality if applicable) of the water at states 1, 2 and 3
State 1: Vapor phase (P₁, T₁, vapor)
State 2: Assumption 1: Vapor phase (P₂, T₂, vapor) or Assumption 2: Mixture (P₂, T₂, mixture)
State 3: Vapor phase (P₃, T₃, vapor)
To determine the phase and state of water at states 1, 2, and 3, let's analyze the given information and apply the principles of thermodynamics.
State 1:
Initial temperature (T₁) = 110°C
Initial volume (V₁) = 30 L
Since the temperature is given above the boiling point of water at atmospheric pressure (100°C), we can infer that the water at state 1 is in the vapor phase.
State 2:
Volume after expansion (V₂) = 1.4 * V₁
Pressure (P₂) = 400 kPa
Based on the given information, we can determine the state of water at state 2. However, we need additional data to precisely determine the phase and state. Without the specific data, we can make assumptions.
Assumption 1: If the water is in the vapor phase at state 2:
The water would remain in the vapor phase as it expands, assuming the pressure remains high enough to keep it above the saturation pressure at the given temperature range. The state can be represented as (P₂, T₂, vapor).
Assumption 2: If the water is in the liquid phase at state 2:The water would undergo a phase change as it expands, transitioning from liquid to vapor phase during the expansion. The state can be represented as (P₂, T₂, mixture), indicating a mixture of liquid and vapor phases.
State 3:
Final temperature (T₃) = 110°C
Same volume as state 1 (V₃ = V₁)
Since the final temperature (110°C) is again above the boiling point of water at atmospheric pressure (100°C), we can infer that the water at state 3 is in the vapor phase.
To know more about saturation pressure, visit:
https://brainly.com/question/13441330
#SPJ11
4. (a) (i) Materials can be subject to structural failure via a number of various modes of failure. Briefly explain which failure modes are the most important to consider for the analyses of the safety of a loaded structure? (4 marks)
(ii) Identify what is meant by a safety factor and how this relates to the modes of failure identified above. (2 marks) (b) (i) Stresses can develop within a material if it is subject to loads. Describe, with the aid of diagrams the types of stresses that may be developed at any point within a load structure. (7 marks)
(ii) Comment on how complex stresses at a point could be simplified to develop a reliable failure criteria and suggest the name of criteria which is commonly used to predict failure based on yield failure criteria in ductile materials. (5 marks)
(iii) Suggest why a yield strength analysis may not be appropriate as a failure criteria for analysis of brittle materials. (2 marks)
(a) (i) The most important failure modes that should be considered for the analyses of the safety of a loaded structure are: Fracture due to high applied loads. This type of failure occurs when the material is subjected to high loads that cause it to break and separate completely.
Shear failure is another type of failure that occurs when the material is subjected to forces that cause it to break down along the plane of the force. In addition, buckling failure occurs when the material is subjected to compressive loads that are too great for it to withstand, causing it to buckle and fail. Finally, Fatigue failure, which is a type of failure that occurs when a material is subjected to repeated cyclic stresses over time, can also lead to structural failure.
(ii) A safety factor is a ratio of the ultimate strength of a material to the maximum expected stress in a material. It is used to ensure that a material does not fail under normal working conditions. Safety factors are used in the design process to ensure that the structure can withstand any loads or forces that it may be subjected to. The safety factor varies depending on the type of material and the nature of the loading. The safety factor is used to determine the maximum expected stress that a material can withstand without failure, based on the mode of failure identified above.
(b) (i) Stresses can develop within a material if it is subject to loads. Describe, with the aid of diagrams the types of stresses that may be developed at any point within a loaded structure. (7 marks)There are three types of stresses that may be developed at any point within a loaded structure:Tensile stress: This type of stress occurs when a material is pulled apart by two equal and opposite forces. It is represented by a positive value, and the direction of the stress is away from the center of the material.Compressive stress: This type of stress occurs when a material is pushed together by two equal and opposite forces. It is represented by a negative value, and the direction of the stress is towards the center of the material.Shear stress: This type of stress occurs when a material is subjected to a force that is parallel to its surface. It is represented by a subscript xy or τ, and the direction of the stress is parallel to the surface of the material.
(ii) The complex stresses at a point can be simplified to develop a reliable failure criterion by using principal stresses and a failure criterion. The Von Mises criterion is commonly used to predict failure based on yield failure criteria in ductile materials. It is based on the principle of maximum shear stress and assumes that a material will fail when the equivalent stress at a point exceeds the yield strength of the material.
(iii) A yield strength analysis may not be appropriate as a failure criterion for the analysis of brittle materials because brittle materials fail suddenly and without any warning. They do not exhibit plastic deformation, which is the characteristic of ductile materials. Therefore, it is not possible to determine the yield strength of brittle materials as they do not have a yield point. The failure of brittle materials is dependent on their fracture toughness, which is a measure of a material's ability to resist the propagation of cracks.
To know more about Shear failure refer to:
https://brainly.com/question/13108235
#SPJ11
1 a-Explain the chemical compositions of rail steels and their important mechanical properties. b- Classify rail steel grades according to their microstructure. 2- What is the ductile and brittle transition temperature in steels? Explain in detail the factors affecting this property in steels. How can the ductile-brittle transition temperature properties of steels be improved without reducing the weldability, ductility, hardness and strength values?
Chemical compositions and important mechanical properties of rail steelsRail steel is a high-carbon steel, with a maximum carbon content of 1 percent. It also includes manganese, silicon, and small quantities of phosphorus and sulfur.
The chemical compositions of rail steels are as follows:Carbon (C)Manganese (Mn)Phosphorus (P)Sulfur (S)Silicon (Si)0.70% to 1.05%0.60% to 1.50%0.035% maximum 0.040% maximum0.10% to 0.80%The following are the mechanical properties of rail steel:
Type of Rail Minimum Ultimate Tensile Strength Minimum Yield Strength Elongation in 50 mm Area Reduction in Cross-Section HardnessRail grade A/R260 (L)260 ksi200 ksi (1380 MPa)10%20%402-505HB (heat-treated).These steels provide excellent strength and ductility, as well as excellent wear resistance.Austenite rail steels are heat-treated to produce a bainitic microstructure. These steels have excellent wear resistance, hardness, and toughness.
To know more about compositions visit:
https://brainly.com/question/32502695
#SPJ11
A 2.15 KV. 1100-HP, unity power factor, 60-Hz, 2-pole, A-connected synchronous motor has a synchronous reactance of 14.30 per-phase and a negligible armature resistance. The friction and windage losses together with the core losses are 4.4 KW. The open-circuit characteristic of this motor is shown below in a tabular form This motor is being supplied from a large power system. How much field current is required to run this motor at 1100 HP 2.15 KV, and PF = 1? IF (A) O 1.0 20 3.0 3.5 14.0 4.5 5.0 6.0 7.0 8.0 9.0 10.0 VT.OC (V) 0 650 1250 1800 2000 2200 2375 2500 2650 2800 2820 2850 2880 (V) Select one: O a. IF = 6.5 A O b. None O c. IF= 8.0 A O d. IF= 9.1 A O e. IF = 7.2 A
The field current required to run the motor at 1100 HP, 2.15 KV, and unity power factor is approximately 9.1 A.
To determine the field current required, we need to refer to the open-circuit characteristic (OCC) of the motor. The OCC provides the relationship between the field current (IF) and the open-circuit terminal voltage (VT.OC). By selecting the data point that corresponds to the desired operating conditions (1100 HP, 2.15 KV, PF = 1), we can find the corresponding field current.
From the given table, the closest VT.OC to 2150 V is 2120 V at IF = 8.0 A. However, since the desired power factor is unity, we need to increase the field current slightly to compensate for the reactive power. By analyzing the table, we can see that the VT.OC increases with an increase in field current, which suggests that increasing the field current will improve the power factor.
The next higher field current value is 9.0 A, corresponding to VT.OC = 2650 V. This is the closest value to 2150 V and satisfies the unity power factor requirement. Therefore, the field current required to run the motor at 1100 HP, 2.15 KV, and PF = 1 is approximately 9.1 A.
Learn more about field current (IF).
brainly.com/question/30722849
#SPJ11
1- Explain any one domestic application of transformer in detail .
2- Explain the Armature reaction in DC machines .
Important Note :
1. TWO Questions are given in Assignment 2 .
2. Answers should be typed in MS word format and submitted through given Turnitin link
3-Should type minimum of 150 words for each question answer
1. Domestic application of transformer:
The primary function of a transformer is to step up or down AC voltage levels. This makes it ideal for applications in domestic power supply, where the voltage requirements of various appliances differ. One example of a domestic application of a transformer is a voltage stabilizer, which is used to regulate the voltage supply to various household appliances.
Voltage stabilizers are used to regulate the voltage output of the main power supply in a home. They are connected to the main power supply and automatically regulate the voltage level according to the requirements of the connected appliances. This is achieved by using a transformer with multiple taps on its primary winding. The taps are connected to an automatic voltage regulator, which switches between taps to maintain the required voltage output.
2. Armature reaction in DC machines:
The armature reaction is a phenomenon that occurs in DC machines when the armature current flows through the armature conductors. The magnetic field produced by the armature current interacts with the main magnetic field of the machine, resulting in a shift in the position of the neutral plane and a distortion of the main magnetic field.
The armature reaction can be divided into two types, namely cross-magnetizing and demagnetizing. Cross-magnetizing occurs when the armature current produces a magnetic field that is perpendicular to the main magnetic field, resulting in a shift in the neutral plane. Demagnetizing, on the other hand, occurs when the armature current produces a magnetic field that opposes the main magnetic field, resulting in a weakening of the magnetic field.
To counter the effects of armature reaction, DC machines are designed with compensating windings, which produce a magnetic field that opposes the armature reaction. This ensures that the neutral plane remains in its original position and the main magnetic field is not distorted. Additionally, DC machines are designed with interpoles, which are small auxiliary poles that produce a magnetic field that is opposite in direction to the armature reaction, thereby neutralizing its effects.
To know more about voltage stabilizer visit:
https://brainly.com/question/20113723
#SPJ11
Steam at 35 bar and 300°C is supplied to a group of six nozzles. The exit pressure of steam is 8 bar. The rate of flow of steam being 5.2 kg/s. Determine : (i) The dimensions of the nozzle of rectangular cross- section with aspect ratio of 3: 1. The expansion may be considered as metastable and friction neglected. (ii) The degree of undercooling and supersaturation. (iii) Loss in available heat drop due to irreversibility. (iv) Increase in entropy. (v) Ratio of mass flow rate with metastable expansion to thermal expansion.
The calculation involves determining the nozzle dimensions, degree of undercooling and supersaturation, heat loss due to irreversibility, entropy increase, and the ratio of mass flow rates under metastable expansion to thermal expansion.
Key concepts applied include thermodynamics, heat transfer, and fluid dynamics.
Determining these values requires the use of various thermodynamics principles and properties of steam. Initially, the throat area of the nozzle is calculated using the known values of the steam flow rate and its specific volume at the entrance and exit conditions. For a rectangular nozzle with an aspect ratio of 3:1, the dimensions are calculated accordingly. Degree of undercooling and supersaturation are deduced from the difference between saturation and actual temperatures, while the heat loss due to irreversibility and entropy increase are obtained from the entropy-enthalpy (Mollier) chart. Finally, the ratio of mass flow rates is calculated using appropriate formulas considering metastable and thermal expansions.
Learn more about thermodynamics here:
https://brainly.com/question/1368306
#SPJ11
Name and briefly explain 3 methods used to design digital
filters, clearly identifying the advantages and disadvantages of
each method
There are various methods used to design digital filters. Three commonly used methods are:
1. Windowing method:
The windowing method is a time-domain approach to designing filters. It is a technique used to convert an ideal continuous-time filter into a digital filter. The approach involves multiplying the continuous-time filter's impulse response with a window function, which is then sampled at regular intervals. The major advantage of this method is that it allows for fast and efficient implementation of digital filters. However, this method suffers from a lack of stop-band attenuation and increased sidelobe levels.
2. Frequency Sampling method:
Frequency Sampling is a frequency-domain approach to designing digital filters. This method works by taking the Fourier transform of the desired frequency response and then setting the coefficients of the digital filter to match the transform's values. The advantage of this method is that it provides high stop-band attenuation and low sidelobe levels. However, this method is computationally complex and can be challenging to implement in real-time systems.
3. Pole-zero placement method:
The pole-zero placement method involves selecting the number of poles and zeros in a digital filter and then placing them at specific locations in the complex plane to achieve the desired frequency response. The advantage of this method is that it provides excellent control over the filter's frequency response, making it possible to design filters with very sharp transitions between passbands and stopbands. The main disadvantage of this method is that it is computationally complex and may require a significant amount of time to optimize the filter's performance.
In conclusion, the method used to design digital filters depends on the application requirements and the desired filter characteristics. Windowing is ideal for designing filters with fast and efficient implementation, Frequency Sampling is ideal for designing filters with high stop-band attenuation and low sidelobe levels, and Pole-zero placement is ideal for designing filters with very sharp transitions between passbands and stopbands.
To know more about designing digital filters visit:
https://brainly.com/question/33214970
#SPJ11
1. A 76.2 mm in diameter shafting of SAE 1040 grade, cold rolled, having a yield point of 50 ksi and with a . x 5 inches key. Compute the minimum yield point in the key in order to transmit the torque of the shaft. The factor of safety to use is 2 and Sys = 0.50 Sy.
Answer: D
A. 39.120 ksi
B. 42.130 ksi
C. 279.20 ksi
D. 47.120 ksi
Given data: Diameter of the shaft = 76.2 mm SAE 1040 cold rolled grade shaft Yield point of the shaft = 50 ksi Length of the key = 2 x 5 inches Factor of safety to use is 2Sys = 0.50 Sy To find.
Minimum yield point in the key Formula used:
T = ((Shear stress developed in the shaft) x (Area on which the stress is acting) ) / (Factor of safety x Sys)Torque equation is T = (π/16) x τmax x d³where, d = diameter of the shaftτmax = Maximum shear stress on the shaftNow, Maximum shear stress on the shaftτmax = 16T / (π x d³)τmax = (16 x T) / (π x (76.2 mm)³ ).
Converting the value of diameter from mm to inches, we getτmax = (16 x T) / (π x (3 inches)³ ) On substituting the given values, we getτmax = (16 x T) / (π x 27 ).....(1)Also, Shear stress developed in the shaftτ1 = (T x R) / Jτ1 = (T x 32) / (π x d⁴)τ1 = (T x 32) / (π x (76.2 mm)⁴ )Converting the value of diameter from mm to inches, we getτ1 = (T x 32) / (π x (3 inches)⁴ ).
To know more about Diameter visit:
https://brainly.com/question/32968193
#SPJ11
Unpolarised light is incident on an air-glass interface from the air side. You are told that the glass has a refractive index of 1.45, explain what measurement, involving polarisation, that you could do to confirm this is correct.
To confirm the refractive index of the glass, a measurement involving polarization could be done by observing the phenomenon of Brewster's angle.
Brewster's angle is the angle of incidence at which light that is polarized parallel to the plane of incidence (s-polarized) is perfectly transmitted through a transparent medium, while light polarized perpendicular to the plane of incidence (p-polarized) is completely reflected.
This angle can be used to determine the refractive index of a material.
In this case, unpolarised light is incident on the air-glass interface. The first step would be to pass this unpolarised light through a polarising filter to obtain polarised light.
The polarising filter allows only light waves oscillating in a particular direction (perpendicular to the filter's polarization axis) to pass through, while blocking light waves oscillating in other directions.
Next, the polarised light is directed towards the air-glass interface. By varying the angle of incidence of the polarised light, we can observe the intensity of the reflected light.
When the angle of incidence matches Brewster's angle for the glass with a refractive index of 1.45, the reflected intensity of p-polarized light will be minimum. This minimum intensity indicates that the light is polarized parallel to the plane of incidence, confirming the refractive index of the glass.
By measuring the angle at which the minimum intensity occurs, we can calculate the refractive index of the glass using the equation:
n = tan(θB),
where n is the refractive index and θB is Brewster's angle.
Learn more about glass
brainly.com/question/31666746
#SPJ11
nly decimals 0,3,4 and 9 are inputs to a logic system, the minimum number of bits needed to represent these numbers in binary is Select one: a. 2 b. 3 C. 4 d. 5
The minimum number of bits needed to represent these numbers in binary is option C, that is, 4.
Given that only decimals 0, 3, 4, and 9 are inputs to a logic system. We need to determine the minimum number of bits needed to represent these numbers in binary.
To represent a decimal number in binary format, we can use the following steps:
Step 1: Divide the decimal number by 2.
Step 2: Write the remainder (0 or 1) on the right side of the dividend.
Step 3: Divide the quotient of the previous division by 2.
Step 4: Write the remainder obtained in Step 2 to the right of this new quotient.
Step 5: Repeat Step 3 and Step 4 until the quotient obtained in any division becomes 0 or 1. Step 6: Write the remainders from bottom to top, that is, the bottom remainder is the most significant bit (MSB) and the top remainder is the least significant bit (LSB).
Let's represent the given decimal numbers in binary format:
To represent decimal number 0 in binary format:0/2 = 0 remainder 0
So, the binary format of 0 is 0.
To represent decimal number 3 in binary format:
3/2 = 1 remainder 1(quotient is 1) 1/2 = 0 remainder 1
So, the binary format of 3 is 0011.
To represent decimal number 4 in binary format:
4/2 = 2 remainder 0(quotient is 2)
2/2 = 1 remainder 0(quotient is 1)
1/2 = 0 remainder 1
So, the binary format of 4 is 0100.
To represent decimal number 9 in binary format:
9/2 = 4 remainder 1(quotient is 4)
4/2 = 2 remainder 0(quotient is 2)
2/2 = 1 remainder 0(quotient is 1)
1/2 = 1 remainder 1
So, the binary format of 9 is 1001.
The maximum value that can be represented by using 3 bits is 2³ - 1 = 7.
Hence, we need at least 4 bits to represent the given decimal numbers in binary.
To know more about the binary, visit:
https://brainly.com/question/32260955
#SPJ11
To aid the commercial team, your experimental testing team has designed a similarly shaped rocket and tests it with flow conditions where the free stream pressure (P[infinity]), density (rho[infinity]) and velocity (V[infinity]) is 0.63 atm,0.798 kg/m3 and 300 m/s, respectively. At a given point on its surface, the pressure is measured to be 48.3kPa. Glven cp,R and γ are 1.0045 kJ/kgK,0.287 kJ/kgK and 1.4, respectively. Determine the velocity at that point and briefly describe any assumptions made. Also, quantify the percentage error if the flow is assumed to be incompressible.
To find the velocity at that point on the surface of the rocket, the Bernoulli equation and the formula for compressible flow over a flat plate must be used. If the flow is assumed to be incompressible, the percentage error must be calculated.
To find the velocity at that point on the surface of the rocket, the Bernoulli equation and the formula for compressible flow over a flat plate must be used. If the flow is assumed to be incompressible, the percentage error must be calculated.
The assumptions made are:
a) The flow is a steady, compressible, and adiabatic
b) The air behaves like a perfect gas.
c) The density of the air is constant.
By applying the Bernoulli equation and the formula for compressible flow over a flat plate, the velocity is calculated to be 605 m/s.
The velocity at the point on the surface of the rocket is 605 m/s and the percentage error if the flow is assumed to be incompressible is 16.83%.
To know more about Bernoulli equation visit:
https://brainly.com/question/6047214
#SPJ11
The 602SE NI-DAQ card allows several analog input channels. The resolution is 12 bits, and allows several ranges from +-10V to +-50mV. If the actual input voltage is 1.190 mv, and the range is set to +-50mv. Calculate the LabVIEW display of this voltage (mv). Also calculate the percent error relative to the actual input. ans: 2 1 barkdrHW335) 1: 1.18437 2: -0.473028
To calculate the LabVIEW display of the voltage and the percent error relative to the actual input, we can follow these steps:
Actual input voltage (V_actual) = 1.190 mV
Range (V_range) = ±50 mV
First, let's calculate the LabVIEW display of the voltage (V_display) using the resolution of 12 bits. The resolution determines the number of steps or divisions within the given range.
The number of steps (N_steps) can be calculated using the formula:
N_steps = 2^12 (since the resolution is 12 bits)
The voltage per step (V_step) can be calculated by dividing the range by the number of steps:
V_step = V_range / N_steps
Now, let's calculate the LabVIEW display of the voltage by finding the closest step to the actual input voltage and multiplying it by the voltage per step:
V_display = (closest step) * V_step
To calculate the percent error, we need to compare the difference between the actual input voltage and the LabVIEW display voltage with the actual input voltage. The percent error (PE) can be calculated using the formula:
PE = (|V_actual - V_display| / V_actual) * 100
Now, let's substitute the given values into the calculations:
N_steps = 2^12 = 4096
V_step = ±50 mV / 4096 = ±0.0122 mV (approximately)
To find the closest step to the actual input voltage, we calculate the difference between the actual input voltage and each step and choose the step with the minimum difference.
Closest step = step with minimum |V_actual - (step * V_step)|
Finally, substitute the closest step into the equation to calculate the LabVIEW display voltage, and calculate the percent error using the formula above.
Note: The provided answers (2 1 barkdrHW335) 1: 1.18437 2: -0.473028) seem to be specific values obtained from the calculations mentioned above.
To know more about LabVIEW display visit:
https://brainly.com/question/31675223
#SPJ11