def int_extractor(*strings): return [int(char) for string in strings for char in string.split() if char.isdigit()]
Write a Python function named `int_extractor` in a file named `lab14_p4.py` that takes a variable number of strings as parameters and uses list comprehension to build a new list containing only the integer values found in any of the strings.Here is the function `int_extractor` written in Python as requested:
```python
def int_extractor(*strings):
return [int(char) for string in strings for char in string.split() if char.isdigit()]
```
This function takes a variable number of strings as parameters. It uses list comprehension with two nested for loops to iterate over each word in the strings. The `split()` method is used to split each string into individual words. The `isdigit()` method is then used to check if a word consists of digits only. If it does, the `int()` function is applied to convert the digit string to an integer. The resulting integers are collected in a new list, which is returned by the function.
Example usage:
```python
str1 = "Get only the numbers 1"
str2 = "in a sentence like 'In 1984"
str3 = "there were 13 instances of a"
str4 = "protest with over 1000 people attending'"
resulting_list = int_extractor(str1, str2, str3, str4)
print(resulting_list) # Output: [1, 1984, 13, 1000]
```
Please make sure to save this code in a file named `lab14_p4.py` to use it as a module.
Learn more about strings
brainly.com/question/946868
#SPJ11
The acceleration of a particle is defined by the relation a = 9 − 3t2, where a and t are expressed in ft/s2 and seconds, respectively. The particle starts at t = 0 with v = 0 and x = 5 ft. Determine (a) the time when the velocity is again zero, (b) the position and velocity when t = 4 s, (c) the total distance travelled by the particle from t = 0 to t = 4 s.
(a) To find the time when the velocity is again zero, we set the velocity equal to 0 and solve for t:
0 = v0 + at = 9t - 3t^3
Solving for t, we find that t = ±1.
(b) To find the position and velocity when t = 4 s, we first need to find the velocity equation by integrating the acceleration equation:
v = ∫a = ∫(9 - 3t^2)dt = 9t - t^3 + C
Using the initial condition v(0) = 0, we find C = 0 and
v(t) = 9t - t^3
Next, we integrate v(t) to find the position equation:
x = ∫v = ∫(9t - t^3)dt = 3t^2 - t^4 + C
Using the initial condition x(0) = 5, we find C = 5 and
x(t) = 3t^2 - t^4 + 5
Evaluating x(t) and v(t) at t = 4 s, we have:
x(4) = 3(4^2) - 4^4 + 5 = 51
v(4) = 9(4) - 4^3 = -36
(c) To find the total distance travelled by the particle from t = 0 to t = 4 s, we need to find the distance between the initial and final positions:
d = x(4) - x(0) = 51 - 5 = 46 ft
So the total distance travelled by the particle from t = 0 to t = 4 s is 46 ft.
Two added to four times a number, minus 3 times the number, equals 5.
x= 3.
Explanation:What is presented in this problem is basically an equation in verbal form.
1. Write the equation.
\(2+4x-3x=5\)
2. Solve for x.\(2+4x-3x=5\\ \\2+x=5\\ \\x=5-2\\ \\x=3\)
3. Express the result.x= 3.
Visit a fire station and obtain information about flow rates through hoses and discharge diameters. Using this information, estimate the impulse force to which the firefighters are subjected when holding a fire hose.
Water flowing through a flexible fire hose is turbulent flow and consists of a flow field of eddies.
What is the explanation?An eddy-filled flow field characterizes the turbulent flow of water via a flexible fire hose. The pressure against the pipe wall is affected by the turbulent kinetic energy of these eddies because it is shifted from large eddies into smaller eddies. Accelerometers are sensitive to the types of pipe vibrations that are caused by pressure changes.Piezoelectric pressure transducers and piezoelectric accelerometers are two categories of sensors that have been utilized in the literature to measure fluid flow in rigid pipes. Clinch employed a collection of flush-mounted piezoelectric pressure transducers along a water pipe's inner surface to monitor pressure changes brought on by turbulent water flow [11]. The variations in flow rate and pressure were found to be related.
To learn more about fire hose refer to:
https://brainly.com/question/22985932
#SPJ4
A seven inch diameter centrifuge carries a 50 mL of blood (blood density at 0.994g/mL). If the centripetal acceleration is 64 feet per second, rotational speed is 345 rpm. Determine the centrifugal force in pound force.
Centrifugal force is the force exerted on an object moving in a circular path and directed outward from the center. In order to determine the centrifugal force in pound-force of a centrifuge carrying 50mL of blood, we will need to use the formula for centripetal force:
Centrifugal force = (mass x acceleration)/radius
Here's how to solve the problem:
First, we need to determine the mass of the blood being carried by the centrifuge. We know the volume of blood (50 mL) and the density of blood (0.994 g/mL), so we can use the formula:
mass = volume x density
mass = 50 mL x 0.994 g/mL
mass = 49.7 g
Next, we need to convert the given units to SI units (meters and seconds):
Centripetal acceleration = 64 ft/s^2
1 ft = 0.3048 m
Centripetal acceleration = 64 ft/s^2 x 0.3048 m/ft = 19.5072 m/s^2
Rotational speed = 345 rpm
1 rpm = 1/60 s
Rotational speed = 345 rpm x 1/60 s = 5.75 s^-1
Now we can use the formula to calculate centrifugal force:
Centrifugal force = (mass x acceleration)/radius
The radius of the centrifuge is half the diameter (3.5 inches or 0.0889 meters):
Centrifugal force = (49.7 g x 19.5072 m/s^2)/0.0889 m
Centrifugal force = 10,879.52 N
Finally, we need to convert Newtons to pound-force:
1 N = 0.22481 lb-f
Centrifugal force = 10,879.52 N x 0.22481 lb-f/N
Centrifugal force = 2,442.69 lb-f
Therefore, the centrifugal force in pound-force is 2,442.69 lb-f.
To know more about determine visit :
https://brainly.com/question/29898039
#SPJ11
4. Which of these is NOT a power wrench?
OA. Impact
OB. Air ratchet
OC. Breaker bar
OD. Air hammer
Answer:
it's C
Explanation:
hopefully that helps you
The Breaker bar is not a power wrench, the power wrench are impact, air ratchet, and air hammer option (C) is correct.
What is a power wrench?To swiftly tighten or loosen nuts, use a power or impact wrench. They are essentially tiny, portable electric or pneumatic motors with high-speed socket wrench rotation.
As we know,
An impact wrench also referred to as an impactor, impact gun, air wrench, air gun, rattle gun, torque gun, or windy gun, is a type of socket wrench power tool that uses a rotating mass to store energy before abruptly releasing it into the output shaft to produce high torque output with little user effort.
Thus, the Breaker bar is not a power wrench, the power wrench are impact, air ratchet, and air hammer option (C) is correct.
Learn more about the power wrench here:
https://brainly.com/question/10186385
#SPJ2
Help with answering questions
Simply put, the thread form is how the thread is arranged in an axial plane and is made up of the crest, root, and flanks.
What are the different types of threads?Simply put, the thread form is how the thread is arranged in an axial plane and is made up of the crest, root, and flanks.The threads' crests and roots are at their tops and bottoms, respectively, with the flanks connecting them.Six of the most popular thread types:NPT and NPTF. UN/UNF.BSPP (BSP, parallel) (BSP, parallel).metric parallel BSPT, or BSP with a taper.Measured in metric.In terms of thread form, we mean the screw thread's profile.Thread standards that specify thread form, series, class, allowance, tolerance, and designation are often published per thread form.Be aware that different standards use different methods to identify screw threads.To learn more about threads refer
https://brainly.com/question/29212867
#SPJ1
Avapor mixture containing 50.0 mole % benzene and 50.0 mole % toluene at 1 atm is cooled isobarically in a closed container from an initial temperature of 115°C. Use the Tsy diagram below to answer the following questions. 115 110 1400 1300 105 100 Vapor 1200 95 Temperature (°C) 90 Liquid 1100 1000 900 Pressure (mm Hg) Liquid 85 800 Vapor 80 700 75 70 600 500 0 1.0 65 0 10 0.2 0.4 0.6 0.8 Mole fraction henvene Polarm 0.2 0.4 0.6 0.8 Mole fraction benzene 7100 First Condensation Your answer is partially correct. At what temperature does the first drop of condensate form? 104 °C What is its composition? 0.20 mol benzene/mol
Last Condensate Your answer is partially correct. At what temperature does the last bubble of vapor condense? °C 98 What is its composition? 0.53 mol benzene/mol
Answer:
105°touch sensce what I could wathskb
A hydrogenation catalyst is prepared by soaking alumina particles (100-150 mesh size) in aqueous NiNO3 solution. After drying and reduction, the particles contain about 7 wt% NiO. This catalyst is then made into large cylindrical pellets for rate studies. The gross measurements for one pellet are: Mass, g 3.15 Diameter, mm 25 Thickness, mm 6 Volume, cm3 3.22 The alumina particles contain micropores, and the pelleting process introduces macropores surrounding the particles. If the macropore volume of the pellet is 0.645 cm3 and the micropore volume is 0.40 cm3 /g of particles, determine: i] The density of the pellet ii] The macropore volume in cm3 /g iii] The macropore void fraction in the pellet iv] The micropore void fraction in the pellet v] The solid fraction vi] The density of the particles
i] The density of the pellet is 0.977 g/cm^{3}. ii] The macropore volume in cm^{3}/g is 0.205 cm^{3}/g. iii] The macropore void fraction in the pellet is 25.1%.iv] The micropore void fraction in the pellet is 49.0%. v] The solid fraction of the pellet is 25.9%. vi] The density of the particles is 1.222 g/cm^{3}.
i] To determine the density of the pellet, we can use the formula:
Density = Mass / Volume
Given that the mass of the pellet is 3.15 g and the volume is 3.22cm^{3}, we can calculate the density as follows:
Density = 3.15 g / 3.22 cm^{3}≈ 0.977 \(g/cm^{3\)
ii] The macropore volume in cm3/g can be calculated by dividing the macropore volume of the pellet (0.645 cm3) by the mass of the pellet (3.15 g):
Macropore volume = 0.645 cm^{3} / 3.15 g ≈ 0.205 \(cm^{3} /g\)
iii] The macropore void fraction in the pellet can be calculated using the formula:
Macropore void fraction = Macropore volume / Total volume of the pellet
Total volume of the pellet = Volume - Macropore volume = 3.22 cm^{3}- 0.645 cm^{3} = 2.575 cm^{3}
Macropore void fraction = 0.645 cm^{3} / 2.575 \(cm^{3}\)≈ 0.251 or 25.1%
iv] The micropore void fraction in the pellet can be calculated using the given micropore volume of the particles (0.40 cm^{3} /g) and the mass of the pellet (3.15 g):
Micropore volume in the pellet = Micropore volume/g x Mass
Micropore volume in the pellet = 0.40 \(cm^{3} /g\) x 3.15 g = 1.26 cm3
Micropore void fraction = Micropore volume in the pellet / Total volume of the pellet
Micropore void fraction = 1.26 \(cm^{3}\) / 2.575 \(cm^{3}\) ≈ 0.490 or 49.0%
v] The solid fraction of the pellet can be calculated by subtracting the sum of macropore and micropore void fractions from 1:
Solid fraction = 1 - (Macropore void fraction + Micropore void fraction)
Solid fraction = 1 - (0.251 + 0.490) ≈ 0.259 or 25.9%
vi] The density of the particles can be determined using the mass of the pellet (3.15 g) and the total volume of the particles:
Total volume of the particles = Volume - Macropore volume = 3.22 \(cm^{3}\)- 0.645 \(cm^{3}\) = 2.575\(cm^{3}\)
Density of the particles = Mass / Total volume of the particles
Density of the particles = 3.15 g / 2.575\(cm^{3}\) ≈ 1.222 \(g/cm^{3}\)
For more questions on pellet
https://brainly.com/question/14809745
#SPJ8
1.What is three phase? why it is needed?
2. What is the condition to be balanced? Write down voltage equation of a balanced 3 phase voltage source and draw their phasor diagram.
1. We can see here that three phase refers to a type of electrical power transmission that uses three alternating current (AC) waveforms that are 120 degrees out of phase with each other. This is different from single-phase power transmission, which uses only one AC waveform.
What is voltage?Voltage, also known as electric potential difference, is a measure of the electrical potential energy per unit of charge in an electrical circuit. It is defined as the amount of work required to move a unit of electric charge between two points in a circuit, typically measured in volts (V).
Three-phase power is needed because it allows for more power to be transmitted over a given amount of wire or cable. With three-phase power, the power is delivered in a more consistent manner, which means that there is less voltage drop over long distances.
2. In order for a three-phase system to be balanced, the three phases must have the same amplitude and be 120 degrees out of phase with each other. The voltage equation of a balanced three-phase voltage source is given by:
Vph = Vline / √3
where Vph is the phase voltage and Vline is the line voltage. The phasor diagram for a balanced three-phase system shows three sinusoidal waveforms that are displaced by 120 degrees from each other.
Learn more about voltage on https://brainly.com/question/27861305
#SPJ1
Polarization: Unpolarized light passes through three ideal polarizing filters. The first filter is oriented with a horizontal transmission axis, the second one has its transmission axis at 30° from the horizontal, and the third filter has a vertical transmission axis. What percent of the light gets through this combination?
Answer:
the percentage of light that gets through this combination is 9.38
Explanation:
Given the data in the question;
Let us represent the incident unpolarized light with \(I_0\).
So, the amount of light intensity passing through the first polarizer will be;
\(I_1\) = \(I_0\) / 2 ------ let this be equation 1
An the amount of light intensity passing through the second polarizer will be;
\(I_2\) = \(I_1\)cos²θ
given that; the second one has its transmission axis at 30°
so, we substitute;
\(I_2\) = \(I_1\) × cos²( 30° )
\(I_2\) = \(I_1\) × 0.75
\(I_2\) = 0.75\(I_1\)
from equation; \(I_1\) = \(I_0\) / 2
\(I_2\) = 0.75( \(I_0\) / 2 )
\(I_2\) = 0.375\(I_0\) .
Now, the amount of light intensity passing through the third polarizer will be;
\(I_3\) = \(I_2\)cos² ( 90° - 30° )
\(I_3\) = \(I_2\) × cos²( 60° )
\(I_3\) = \(I_2\) × 0.25
we substitute
\(I_3\) = 0.375\(I_0\) × 0.25
\(I_3\) = 0.09375\(I_0\)
∴ \(I_3\)/\(I_0\) × 100 = 0.09375 × 100
⇒ 9.38%
Therefore, the percentage of light that gets through this combination is 9.38
A cubic yard of concrete contains how many cubic feet
Most concrete purchases will be made in cubic yards, which equates to 27 cubic feet.At a depth of 3 inches, a cubic yard of material can be spread over a 10×10 area (100 square feet).
1 cubic yard is 46,656 cubic inches (36 inch x 36 inch x 36 inch)
36 inches or three feet make up one yard.
3 feet are equal to 1 yard.
As an illustration, consider a volume of 9-inch-thick, 12-foot-long, 12-foot-wide concrete:
The conversion from inches to feet is 9 inches by 12 inches, or 0.75 feet.
The amount of cubic feet can be calculated by multiplying the length, width, and thickness together: 0.75' x 12' x 12 = 108 cubic feet
We can now divide the concrete's volume, 108 cubic feet, by 27 because we know that 1 cubic yard equals 27 cubic feet.
Concrete equals 108/27 or 4 cubic yards.
learn more about cubic yards here:
https://brainly.com/question/17652034
#SPJ4
How many cubic feet in a cubic yard of concrete?
The boost converter of Fig. 6-8 has parameter Vs 20 V, D 0.6, R 12.5 , L 10 H, C 40 F, and the switching frequency is 200 kHz. (a) Determine the output voltage. (b) Determine the average, maximum, and minimum inductor currents. (c) Determine the output voltage ripple. (d) Determine the average current in the diode. Assume ideal components.
Answer:
a) the output voltage is 50 V
b)
- the average inductor current is 10 A
- the maximum inductor current is 13 A
- the maximum inductor current is 7 A
c) the output voltage ripple is 0.006 or 0.6%V₀
d) the average current in the diode under ideal components is 4 A
Explanation:
Given the data in the question;
a) the output voltage
V₀ = V\(_s\)/( 1 - D )
given that; V\(_s\) = 20 V, D = 0.6
we substitute
V₀ = 20 / ( 1 - 0.6 )
V₀ = 20 / 0.4
V₀ = 50 V
Therefore, the output voltage is 50 V
b)
- the average inductor current
\(I_L\) = V\(_s\) / ( 1 - D )²R
given that R = 12.5 Ω, V\(_s\) = 20 V, D = 0.6
we substitute
\(I_L\) = 20 / (( 1 - 0.6 )² × 12.5)
\(I_L\) = 20 / (( 0.4)² × 12.5)
\(I_L\) = 20 / ( 0.16 × 12.5 )
\(I_L\) = 20 / 2
\(I_L\) = 10 A
Therefore, the average inductor current is 10 A
- the maximum inductor current
\(I_{Lmax\) = [V\(_s\) / ( 1 - D )²R] + [ V
given that, R = 12.5 Ω, V\(_s\) = 20 V, D = 0.6, L = 10 μH, T = 1/200 kHz = 5 hz
we substitute
\(I_{Lmax\) = [20 / (( 1 - 0.6 )² × 12.5)] + [ (20 × 0.6 × 5) / (2 × 10) ]
\(I_{Lmax\) = [20 / 2 ] + [ 60 / 20 ]
\(I_{Lmax\) = 10 + 3
\(I_{Lmax\) = 13 A
Therefore, the maximum inductor current is 13 A
- The minimum inductor current
\(I_{Lmax\) = [V\(_s\) / ( 1 - D )²R] - [ V
given that, R = 12.5 Ω, V\(_s\) = 20 V, D = 0.6, L = 10 μH, T = 1/200 kHz = 5 hz
we substitute
\(I_{Lmin\) = [20 / (( 1 - 0.6 )² × 12.5)] - [ (20 × 0.6 × 5) / (2 × 10) ]
\(I_{Lmin\) = [20 / 2 ] -[ 60 / 20 ]
\(I_{Lmin\) = 10 - 3
\(I_{Lmin\) = 7 A
Therefore, the maximum inductor current is 7 A
c) the output voltage ripple
ΔV₀/V₀ = D/RCf
given that; R = 12.5 Ω, C = 40 μF = 40 × 10⁻⁶ F, D = 0.6, f = 200 Khz = 2 × 10⁵ Hz
we substitute
ΔV₀/V₀ = 0.6 / (12.5 × (40 × 10⁻⁶) × (2 × 10⁵) )
ΔV₀/V₀ = 0.6 / 100
ΔV₀/V₀ = 0.006 or 0.6%V₀
Therefore, the output voltage ripple is 0.006 or 0.6%V₀
d) the average current in the diode under ideal components;
under ideal components; diode current = output current
hence the diode current will be;
\(I_D\) = V₀/R
as V₀ = 50 V and R = 12.5 Ω
we substitute
\(I_D\) = 50 / 12.5
\(I_D\) = 4 A
Therefore, the average current in the diode under ideal components is 4 A
gypsum association specified six levels for the gypsum board installation/finishing process. which level is the minimum finish level for fire-resistance-rated gypsum board assemblies?
The gypsum association specifies six levels of gypsum board installation/finishing process ranging from level 0 (no finishing) to level 5 (highest quality finish).
The minimum finish level for fire-resistance-rated gypsum board assemblies is level 3. This level requires that all joints and fasteners are taped and finished with joint compound, and that corner beads are installed.
This level of finish is suitable for areas where walls will be painted or covered with heavy texture, such as in garages, warehouses, and storage areas. It is important to note that fire-resistance-rated gypsum board assemblies must meet specific requirements to ensure their effectiveness in preventing the spread of fire. These assemblies must be tested and approved by testing agencies such as Underwriters Laboratories (UL) and Intertek (ETL). In addition, the installation of these assemblies must be performed by certified professionals in accordance with the manufacturer's instructions and local building codes.In conclusion, the minimum finish level for fire-resistance-rated gypsum board assemblies is level 3, which requires taped joints, finished fasteners, and installed corner beads. It is important to ensure that these assemblies are tested and approved by recognized testing agencies and installed by certified professionals to ensure their effectiveness in preventing the spread of fire.know more about the gypsum
https://brainly.com/question/27536755
#SPJ11
The sounds heard during the first phase of blood-pressure measurement are called.
The sounds heard during the first phase of blood-pressure measurement are called the Korotkoff sounds.
What sounds are heard during blood pressure?The kind of sound that is bern heard during blood pressure is Korotkoff sounds which are produced underneath the distal half of the blood pressure cuff.
The sounds can be noticed when cuff pressures are between systolic and diastolic blood pressure.
Learn more about sounds at;
https://brainly.com/question/25871632
A steel pipe with an inside diameter of 10 in. will be used to transmit steam under a pressure of 800 psi. If the hoop stress in the pipe must be limited to 10 ksi because of a longitudinal weld in the pipe, determine the minimum satisfactory thickness for the pipe.
Answer:
The minimum satisfactory thickness for the pipe is 0.4. in
Explanation:
The computation of the minimum satisfactory thickness for the pipe is shown below:
As we know that
\(\sigma _h = \frac{pr}{t}\)
Now for determining the thickness we have to rearrange it
\(t = \frac{pr}{\sigma_h}\)
where,
p = pressure inside the pips
r = pipe radius
\(\sigma _h\) = stress of the hoop
Now put the given values to the above equation
So,
\(t = \frac{800 \times 5}{10 \times (10)^3}\)
= 0.4 in
Hence, the minimum satisfactory thickness for the pipe is 0.4. in
The same is to be considered
List four examples of what an engineer does.
Tech A says that it is best to use a knife or other type of sharp tool to cut away the insulation when
stripping a wire Tech B says that any issues with wing are more likely to be with the terminals than
with the wires themselves. Who is correct?
1. Which one of the following is correct about DSS (decision Support Systems)? A. Supports non-routine decision making, uses internal information as well as TPS and MIS data and serves top management B. OSS serves middle ® management. uses external information as well as TPS and MIS data and supports routine decision making. C. None of the given choices are correct about the DSS. D. Supports routine decision making. uses internal information as well as TPS and MIS data and serves Middle management. 2. Information system to develop strong ties and loyalty with customers and supplies is part of A. Customer and supply intimacy B. Supply chain C. Managing strategic transitions D. Sustaining competitive advantage 3. Data which is converted into unreadable text or unreadable code in the Encryption process is called...... A. Decryption B. Cipher text C. Public key D. Privet key 5. Which one of the following is not related to growing importance of collaboration? A. Changing scope of the firm B. Changing nature of work C. Mission of the organization D. Changing culture of work 7. Responding to customers and suppliers in real time is part of? A. Customers and suppliers intimacy B. Improve decision-making C. No nothing given choices D. Competitive advantage 8. According to the management information system which one of the following should be the head of the information system department? A. Note of the given B. CKO (cheif knowledge office) C. CPO (chief Privacy officer Privacy officer) D. CEO ( chief executive officer) 9. Which one of the following is correct about DSS decision A. DSS search middle management users external information as well as TPS and MIS data and supports routine decision making B. support to change decision making uses Internet internal information C. support non-routine decision-making uses until internal information as well as TPS and MIS data and serves top management D. none of the given choices are correct about the DSS 10. In an information system a message used to help organization to evaluate and make correction is known as process? A. True B. False 11. The purpose of supply chain management is to transport huge to amount of products to destination was high amount of time and lowest cost true A. True B. False 12. Set of elements that interact to accomplish a specific goal is known as A. Output 13. According to Michael Portillo there are A. 5 B. 2 C. 3 D. 4 14. Use of digital technology and went to the intranet to drive major in business process is known E-business a. True b. False
1. The correct option about DSS is A. DSS (Decision Support Systems) supports non-routine decision-making, uses internal information as well as TPS and MIS data, and serves top management.
2. The option A is correct. Customer and supply intimacy is an information system to develop strong ties and loyalty with customers and supplies.3. The correct term for data converted into unreadable text or unreadable code in the encryption process is Cipher text.5. Mission of the organization is not related to the growing importance of collaboration.7. Responding to customers and suppliers in real-time is part of customer and suppliers intimacy.8. The correct option according to the management information system, should be the head of the information system department is CEO (chief executive officer).9. The correct option about is that it supports non-routine decision-making, uses internal information as well as TPS and MIS data, and serves top management.10. The given statement is False. A message used to help the organization to evaluate and make corrections is known as Feedback.11. The given statement is True.12. The correct option is Output.13. According to Michael Portillo, there are 2.14. The given statement is True.
To know more about MIS data visit:
https://brainly.com/question/29433947
#SPJ11
A European apparel manufacturer has production facilities in Italy and China to serve its European market, where annual demand is for 1.9 million units. Demand is expected to stay at the same level over the foreseeable future. Each facility has a capacity of 1 million units per year. With the current exchange rates, the production and distribution cost from Italy is 10 euro per unit, whereas the production and distribution cost from China is 7 euro. Over each of the next three years, the Chinese currency could rise relative to the euro by 15 percent with a probability of 0.5 or drop by 5 percent with a probability of 0.5. An option being considered is to shut down 0.5 million units of capacity in Italy and move it to China at a one-time cost of 2 million euros. Assume a discount factor of 10 percent over the three years. Do you recommend this option?
very big question aa having i can't answer it
An aeroplane flies for 12 min at a velocity of 430 km/h due North. (a) Calculate the displacement of the aeroplane. (b) How long would the pilot take for the same flight if the average velocity of the acroplane is increased by 20%?
According to the information we can infer that the displacement of the airplane is 86 km due North (a); On the other hand, the pilot would take 10 minutes for the same flight if the average velocity of the airplane is increased by 20% (b).
How to calculate the displacement of the airplane?To calculate the displacement of the airplane, we can use the formula:
Displacement = Velocity x TimeGiven that the velocity of the airplane is 430 km/h and it flies for 12 minutes, we can convert the time to hours by dividing it by 60:
Time = 12 minutes / 60 = 0.2 hoursNow we can calculate the displacement:
Displacement = 430 km/h x 0.2 hours = 86 kmSo, the displacement of the airplane is 86 km due North.
How long would the pilot take for the same flight if the average velocity of the acroplane is increased by 20%?If the average velocity of the airplane is increased by 20%, we need to find the new velocity. 20% increase in velocity means adding 20% of the current velocity to the current velocity:
New velocity = Current velocity + (20% of current velocity)New velocity = 430 km/h + (0.2 x 430 km/h) = 430 km/h + 86 km/h = 516 km/hNow, we can calculate the time it would take for the same flight with the new velocity. Using the formula:
Time = Distance / VelocityDistance is the same (86 km) and the new velocity is 516 km/h:Time = 86 km / 516 km/h = 0.167 hours
Converting the time to minutes:
Time = 0.167 hours x 60 = 10 minutesSo, the pilot would take 10 minutes for the same flight if the average velocity of the airplane is increased by 20%.
Learn more about aeroplanes in: https://brainly.com/question/11150228
#SPJ1
A horizontal force P is applied to a 130 kN box resting on a 33 incline. The line of action of P passes through the center of gravity of the box. The box is 5m wide x 5m tall, and the coefficient of static friction between the box and the surface is u=0.15. Determine the smallest magnitude of the force P that will cause the box to slip or tip first. Specify what will happen first, slipping or tipping.
Answer:
SECTION LEARNING OBJECTIVES
By the end of this section, you will be able to do the following:
Distinguish between static friction and kinetic friction
Solve problems involving inclined planes
Section Key Terms
kinetic friction static friction
Static Friction and Kinetic Friction
Recall from the previous chapter that friction is a force that opposes motion, and is around us all the time. Friction allows us to move, which you have discovered if you have ever tried to walk on ice.
There are different types of friction—kinetic and static. Kinetic friction acts on an object in motion, while static friction acts on an object or system at rest. The maximum static friction is usually greater than the kinetic friction between the objects.
Imagine, for example, trying to slide a heavy crate across a concrete floor. You may push harder and harder on the crate and not move it at all. This means that the static friction responds to what you do—it increases to be equal to and in the opposite direction of your push. But if you finally push hard enough, the crate seems to slip suddenly and starts to move. Once in motion, it is easier to keep it in motion than it was to get it started because the kinetic friction force is less than the static friction force. If you were to add mass to the crate, (for example, by placing a box on top of it) you would need to push even harder to get it started and also to keep it moving. If, on the other hand, you oiled the concrete you would find it easier to get the crate started and keep it going.
Figure 5.33 shows how friction occurs at the interface between two objects. Magnifying these surfaces shows that they are rough on the microscopic level. So when you push to get an object moving (in this case, a crate), you must raise the object until it can skip along with just the tips of the surface hitting, break off the points, or do both. The harder the surfaces are pushed together (such as if another box is placed on the crate), the more force is needed to move them.
1.20 Three wooden planks are fastened together by a series of bolts to form a column. The diameter of each bolt is 12 mm and the inner diameter of each washer is 16 mm, which is slightly larger than the diameter of the holes in the planks. Determine the smallest allowable outer diameter d of the washers, knowing that the average normal stress in the bolts is 36 MPa and that the bearing stress between the washers and the planks must not exceed 8.5 MPa.
check photo solve
check photo solve
check photo solve
the smallest allowable outer diameter (d) of the washers is approximately 50.82 mm, considering the average normal stress in the bolts and the bearing stress between the washers and the planks.
What is the the average normal stressThe average normal stress in the bolts is given as 36 MPa, which is equal to 36 N/mm².
So, σ_avg = 36 N/mm² = 36 MPa
The bearing stress between the washers and the planks must not exceed 8.5 MPa, which is equal to 8.5 N/mm².
So, σ_bearing = 8.5 N/mm² = 8.5 MPa
Now, using the relationship between the bearing stress and the average normal stress:
σ_bearing = σ_avg * (d_bolt / d_washer)
8.5 = 36 * (12 mm / d_washer)
Now, solve for d_washer:
d_washer = 36 * 12 mm / 8.5
d_washer = 50.82 mm
Since the washer's inner diameter is 16 mm, the difference between the inner and outer diameters of the washers is 2 * t (the thickness of the washers).
So, d_washer - 16 mm = 2 * t
t = (d_washer - 16 mm) / 2
t ≈ (50.82 mm - 16 mm) / 2
t ≈ 17.41 mm
Read more about the average normal stress here:
https://brainly.com/question/14293037
#SPJ3
a registered engineer is retained as an expert witness by one of the parties in a civil case where the public safety is not involved. in investigating the technical data in the case, the engineer makes findings that are not favorable the side of the party who retained her. the engineer should:
As a registered engineer and expert witness, it is important to maintain ethical and professional standards in all aspects of your work, including your findings and conclusions. In this situation, where the engineer's findings are not favorable to the party who retained her, the engineer should:
Remain objectiveReport findings truthfullyMaintain confidentialityAvoid conflicts of interestCommunicate effectivelyRemain objective: The engineer should remain objective and impartial in her analysis of the technical data and should not let her personal opinions or biases influence her findings.
Report findings truthfully: The engineer should report her findings truthfully and accurately, regardless of whether they are favorable or unfavorable to the party who retained her.
Maintain confidentiality: The engineer should maintain confidentiality of the information provided to her by the party who retained her, unless she is required by law to disclose it.
Avoid conflicts of interest: The engineer should avoid conflicts of interest that may compromise her objectivity and independence.
Communicate effectively: The engineer should communicate her findings clearly and effectively to the parties involved, and should be prepared to explain her methodology and reasoning.
Learn more about registered engineer:
https://brainly.com/question/30825671
#SPJ11
describe the historical development of building material being used in the construction indsury
Answer:
Construction, the techniques and industry involved in the assembly and ... Early building materials were perishable, such as leaves, branches, and animal hides. ... The well-developed masonry technology of Mesopotamia was used to build large ... although its precise description is unknown; the concealed faces of stones
Explanation:
What is promotion? a company's portion of the total industry sales for a certain type of product the value placed on a product, usually given in monetary terms determining how to get the product to the right people, in the right amounts, at the right time and place any form of communication that a business uses to inform, persuade, or remind potential customers about their products
Promotion is any form of communication that a business uses to inform, persuade, or remind potential customers about their products. The goal is to raise awareness, draw attention to, and encourage consumers to purchase the product over competing options.
All of the activities that inform consumers about a product, brand, or service are referred to as promotions.
Companies communicate about sales promotions through a variety of media, including printed materials like posters, coupons, direct mail pieces, and billboards; radio and television commercials; and digital media like text messaging, email, websites, and social media, among others.
Follow the link below to learn on promotion strategies
https://brainly.com/question/14772910
#SPJ4
For a steel alloy it has been determined that a carburizing heat treatment of 11.3 h duration will raise the carbon concentration to 0.44 wt% at a point 1.8 mm from the surface. Estimate the time necessary to achieve the same concentration at a 4.9 mm position for an identical steel and at the same carburizing temperature.
This question is incomplete, the complete question is;
For a steel alloy it has been determined that a carburizing heat treatment of 11.3 h duration at Temperature T1 will raise the carbon concentration to 0.44 wt% at a point 1.8 mm from the surface. A separate experiment is performed at T2 that doubles the diffusion coefficient for carbon in steel.
Estimate the time necessary to achieve the same concentration at a 4.9 mm position for an identical steel and at the same carburizing temperature T2.
Answer:
the required time to achieve the same concentration at a 4.9 is 83.733 hrs
Explanation:
Given the data in the question;
treatment time t₁ = 11.3 hours
Carbon concentration = 0.444 wt%
thickness at surface x₁ = 1.8 mm = 0.0018 m
thickness at identical steel x₂ = 4.9 mm = 0.0049 m
Now, Using Fick's second law inform of diffusion
\(x^2\) / Dt = constant
where D is constant
then
\(x^2\) / t = constant
\(x^2_1\) / t₁ = \(x^2_2\) / t₂
\(x^2_1\) t₂ = t₁\(x^2_2\)
t₂ = t₁\(x^2_2\) / \(x^2_1\)
t₂ = (\(x^2_2\) / \(x^2_1\))t₁
t₂ = \((\) \(x_2\) / \(x_1\) \()^2\) × t₁
so we substitute
t₂ = \((\) 0.0049 / 0.0018 \()^2\) × 11.3 hrs
t₂ = 7.41 × 11.3 hrs
t₂ = 83.733 hrs
Therefore, the required time to achieve the same concentration at a 4.9 is 83.733 hrs
in an experimental study, a properly designed hypothesis will test a theory by predicting the?
A hypothesis for an experiment forecasts the changes that will occur in the variable when the predictor variables is altered.
How would you characterize hypothesis?An assumption or notion is given as a hypothesis for the goal of debating it and testing whether it may be true. In the process of science, the hypothesis is developed before any primary active from a basic backdrop review—has been conducted.
What are the many kinds of hypotheses?A thesis is a rough explanation for a collection of facts that may be put to the test by specific follow-up studies. The two major categories are alternative hypothesis and null hypothesis. A issue is how most research projects begin.
To know more about hypothesis visit:
https://brainly.com/question/27818345
#SPJ4
When electric auxiliary heat is used with as pump, the best location of the inside coil is _____ the auxiliary heat unit.
Answer: When electric auxiliary heat is used with a pump, the best location of the inside coil is after the auxiliary heat unit. This is because the electric auxiliary heat is designed to provide additional heating power when the heat pump is unable to keep up with the heating demand. The heat pump works by transferring heat from the outside air to the inside of the house, but when the outside temperature drops too low, the heat pump may struggle to keep the house warm. In such cases, the electric auxiliary heat kicks in to provide supplemental heat.
The inside coil is a critical component of the heat pump system. It is responsible for absorbing heat from the indoor air and transferring it to the outside. When the electric auxiliary heat is turned on, it generates heat that is added to the heat pump's output. Placing the inside coil after the auxiliary heat unit ensures that the electric auxiliary heat does not interfere with the heat transfer process of the heat pump. It also allows the electric auxiliary heat to have maximum impact on the indoor air temperature, as the air passing over the inside coil will be at its coldest.
Overall, the best location of the inside coil when using electric auxiliary heat with a heat pump is after the auxiliary heat unit. This ensures efficient heating performance and maximum comfort in your home.
Explanation: Here's a step-by-step explanation:
1. The heat pump operates by extracting heat from the outside air and transferring it inside your home.
2. In extreme cold temperatures, the heat pump's efficiency may decrease, requiring the use of an electric auxiliary heat system to provide additional warmth.
3. The electric auxiliary heat system typically consists of electric resistance heating elements, which are activated when the heat pump cannot meet the heating demand on its own.
4. To ensure proper functioning and efficiency, the inside coil of the heat pump (also called the evaporator coil) should be located upstream of the auxiliary heat unit.
5. By placing the coil upstream, the auxiliary heat unit can effectively provide additional heat when needed, while the heat pump continues to operate efficiently in less extreme conditions.
6. This arrangement also helps avoid potential damage to the auxiliary heat unit due to any potential frost or ice buildup on the heat pump's coil.
In summary, the best location for the inside coil of a heat pump when using an electric auxiliary heat system is upstream of the auxiliary heat unit. This ensures efficient operation and adequate heating during extreme cold temperatures.
Learn more about heat pump here: brainly.in/question/3590625
#SPJ11
Consider a 1.5 m high and 2.4 m wide glass windows whose thickness is 6 mm and thermal conductivity is k=0.78 W/mK. Determine the steady rate of heat transfer through this glass window and the temperature of its inner surface for a day during which the room is maintained at 24°C while the temperature of the outdoors is -5°C. Take the convection heat transfer coefficients on the inner and outer surfaces of the window to be hi 10 W/m2K and h2 25 W/m2K and disregard any heat transfer by radiation. A 4m high and 6m wide wall consists of a long 15cm x 25cm cross section of horizontal bricks (k 0.72 W/m-K) separated by 3cm thick plaster layers (k 0.22 W/m-K). There are also 2cm thick plaster layers on each side of the wall, and a 2cm thick rigid foam (k0.026 W/m-K) on the inner side of the wall. The indoor and outdoor temperatures are 22°C and -4°C, and the convection heat transfer coefficients on the inner and outer sides are h1-10W/m2-K and h2 20W/m2-K, respectively. Assuming one dimensional heat transfer and disregarding radiation, determine the rate of heat transfer through the wall. Foam Plaster 15 cm 25 cm Brick -15 cm
The steady rate of heat transfer through the glass window is 215.52 W and the temperature of its inner surface is 19.89°C. The rate of heat transfer through the wall is 6517.4 W.
For the glass window:
1. The temperature difference across the window is ΔT = 24 - (-5) = 29°C.
2. The thermal resistance of the window can be calculated as R = L/(kA), where L is the thickness, k is the thermal conductivity, and A is the area. Thus, R = 0.006/(0.781.52.4) = 0.0014 K/W.
3. The total thermal resistance of the system can be calculated as R_tot = 1/(h1A) + R + 1/(h2A), where A is the area of the window. Thus, R_tot = 1/(101.52.4) + 0.0014 + 1/(251.52.4) = 0.1926 K/W.
4. The steady rate of heat transfer through the window can be calculated as Q = ΔT/R_tot = 29/0.1926 = 150.6 W.
5. The temperature of the inner surface of the window can be calculated as T1 = T2 - Q/(h2A), where T2 is the outdoor temperature. Thus, T1 = -5 - 150.6/(251.52.4) = -5.5°C.
For the wall:
1. The temperature difference across the wall is ΔT = 22 - (-4) = 26°C.
2. The thermal resistance of each layer can be calculated as R = L/(kA), where L is the thickness, k is the thermal conductivity, and A is the area. Thus, the thermal resistances of the plaster layers, brick layer, and foam layer are R_p = 0.03/(0.2246), R_b = 0.15/(0.7240.25), and R_f = 0.02/(0.02646), respectively.
3. The total thermal resistance of the system can be calculated as R_tot = R_p/2 + R_b + R_f = 0.00455 K/W.
4. The steady rate of heat transfer through the wall can be calculated as Q = ΔT/R_tot = 26/0.00455 = 5703 W.
Learn more about Thermal radiation here: brainly.com/question/20384667
#SPJ4
Complete question is in the image attached below
the process by which engineers and dessighns quikly make a version of a product to asscess a specific design element is called
The process by which engineers and designers quickly make a version of a product to assess a specific design element is called rapid prototyping.
Rapid prototyping is a technique used in product development that involves creating a scaled-down version or a functional prototype of a product to evaluate and test specific design elements. It allows engineers and designers to quickly iterate and refine their designs based on feedback and performance testing.
Rapid prototyping involves using various technologies and tools such as 3D printing, computer-aided design (CAD), and additive manufacturing to fabricate physical prototypes. These prototypes can range from simple representations of the product to fully functional models that closely resemble the final product.
The purpose of rapid prototyping is to assess the feasibility, functionality, and aesthetics of a design before committing to expensive and time-consuming production processes. It enables engineers and designers to identify design flaws, test different materials or components, evaluate ergonomics, and gather user feedback early in the product development cycle.
By quickly creating and testing prototypes, engineers and designers can make informed design decisions, reduce development time and costs, and ultimately deliver better products to the market. Rapid prototyping is a valuable tool in the iterative design process, allowing for efficient exploration and optimization of design elements.
Learn more about Rapid prototyping here:
https://brainly.com/question/30655140
#SPJ11