The substance called olivine may have any composition between Mg2SiO4 and Fe2SiO4, i.e. the Mg atoms can be replaced by Fe atoms in any proportion without altering the crystal structure except by expanding it slightly: this is an example of a binary solid solution series. For different compositions, the lines in the powder diffraction patterns are in slightly different positions, because of the cell expansion, but the overall pattern remains basically the same. The spacing of the lattice planes varies linearly with composition, and this can be used in a rapid and non- destructive method of analysis. a. The (062) reflection from olivine is strong and well resolved from other lines. Calculate d062 for an olivine that displays its (062) reflection at a Bragg angle of 37.21° (i.e., a diffraction angle of 74.42°) when x-rays with a wavelength of 0.1790 nm are used. b. The d062 spacing as measured accurately for synthetic materials is 0.14774 nm for Mg2SiO4 and 0.15153 nm for Fe2SiO4. What would be the approximate composition, expressed in mol.% Mg2SiO4, of an olivine material for which do62 has the value obtained in part 2.1 above?

Answers

Answer 1

Answer:

The answer is "0.147 nm and  99.63 mol %"

Explanation:

In point (a):

\(\to nk1 = 062\)

\(\to \text{Bragg angle}\) \(\theta =37.21^{\circ}\)

\(\to \text{diffraction angle}\) \(2 \theta = 74.42^{\circ}\)

\(\to \lambda = 0.1790 nm\)

find:

d(062)=?

formula:

\(\to nx = 2d \sin \theta\)

\(\to d(062) = \frac{1 \times 0.1790^{\circ}}{2 \times \sin 37.21^{\circ}}\\\)

               \(= \frac{0.1790^{\circ}}{2 \times 0.604738126}\\\\= \frac{0.29599589}{2}\\\\= 0.147 \\\)

In point (b):

\(\to Mg_2SiO_4\longleftrightarrow Fe_2SiO_4\)

\(d= 0.14774 \ \ \ \ \ olivine = 0.147 \ \ \ \ \ 0.15153\)

formula:

\(\to d=\frac{a}{\sqrt{n^2+k^2+i^2}}\\\)

that's why the composition value equal to 99.63 %


Related Questions

How would the exterior appearance of an aeroplane change, when trimming for speedincrease?A) The elevator is deflected further downward by means of a movable horizontal stabiliser.B) Elevator deflection is increased further downward by an upward deflected trim tab.C) The exterior appearance of the aeroplane will not change.D) The elevator is deflected further up by a downward deflected trim tab.

Answers

When trimming an airplane for an increase in speed, the exterior appearance of the airplane can change depending on the method used for the trim.

Option A suggests that the elevator is deflected further downward by means of a movable horizontal stabilizer. This means that the horizontal stabilizer, located at the tail of the airplane, can move up or down, changing the angle of the elevator. This would result in the elevator being angled further downward, which would cause the airplane's nose to pitch down slightly. The overall appearance of the airplane would not change significantly, but the angle of the elevator would be noticeable.Option B suggests that the elevator deflection is increased further downward by an upward deflected trim tab. A trim tab is a small, adjustable flap on the surface of the elevator. By deflecting the trim tab upward, it can push the elevator further downward without requiring as much effort from the pilot. This would cause the airplane's nose to pitch down further than in Option A, resulting in a more noticeable change in appearance.Option C suggests that the exterior appearance of the airplane will not change. While this is possible, it is unlikely as trimming an airplane for speed typically involves adjusting the elevator or other control surfaces, which would result in a change in appearance.Option D suggests that the elevator is deflected further up by a downward deflected trim tab. This would cause the airplane's nose to pitch up, which would not be desirable when trimming for speed. Therefore, this option is unlikely.In summary, when trimming an airplane for speed, the exterior appearance of the airplane can change depending on the method used for the trim. The most noticeable changes would be seen if a trim tab is used to increase elevator deflection.

For such more question on horizontal stabilizer

https://brainly.com/question/15897649

#SPJ11

a 45.9 mm-thick plate made of low carbon steel is to be reduced to 30.3 mm in one pass in a rolling operation. as the thickness is reduced, the plate widens by 3.6%. the yield strength of the steel plate is 174 mpa and the tensile strength is 298 mpa. the entrance speed of the plate is 13 m/min. the roll radius is 303 mm and the rotational speed is 43 rev/min. determine the forward slip (up to 4 decimal points).

Answers

In a rolling operation, the forward slip is defined as the difference between the peripheral speed of the rolls and the speed of the plate at the point of contact. To determine the forward slip, we need to calculate the peripheral speed of the rolls and the speed of the plate at the point of contact.


The peripheral speed of the rolls can be calculated using the formula: peripheral speed = 2 x pi x roll radius x rotational speed. Substituting the given values, we get:
peripheral speed = 2 x 3.14 x 303 mm x 43 rev/min = 92.08 m/min
To calculate the speed of the plate at the point of contact, we need to use the formula: speed of the plate = entrance speed / (1+ percent increase in width/100). Substituting the given values, we get:
speed of the plate = 13 m/min / (1 + 3.6/100) = 12.51 m/min
Now, we can calculate the forward slip using the formula: forward slip = (peripheral speed - speed of the plate) / peripheral speed x 100. Substituting the calculated values, we get:
forward slip = (92.08 m/min - 12.51 m/min) / 92.08 m/min x 100 = 86.40%
Therefore, the forward slip is 86.40%.

Learn more about peripheral here

https://brainly.com/question/18994224

#SPJ11

Select all the correct answers. What are two reasons why the terrestrial planets formed closer to the sun after a supernova event that initiated the formation of the solar system?

Answers

It is because of their gravitational pull .. Due to high gravitational force the planets are tend to move closer and they infact form closer to the sun. as the mass of the sun is very large

Write a java program to do the following :
1- Reflecting the shape with the points :
( 160, 130 ), ( 220, 130), ( 220, 160 ), ( 190, 180 ) , ( 160, 160 )
about the line Y = - X + 500
2- Drawing the following shapes using loop and the methods
moveTo(), forward(), left(), right()

Answers

Here is a Java program that accomplishes the given tasks:

import java.awt.*;

import java.awt.geom.AffineTransform;

public class ShapeReflection {

   public static void main(String[] args) {

       // Reflecting the shape with the points

       int[] xPoints = {160, 220, 220, 190, 160};

       int[] yPoints = {130, 130, 160, 180, 160};

       int numPoints = xPoints.length;

       // Reflecting the shape about the line Y = -X + 500

       for (int i = 0; i < numPoints; i++) {

           int x = xPoints[i];

           int y = yPoints[i];

           // Calculate the reflected points

           int newX = 500 - y;

           int newY = 500 - x;

           // Update the original points with the reflected points

           xPoints[i] = newX;

           yPoints[i] = newY;

       }

       // Drawing the shape using loop and methods

       DrawingPanel panel = new DrawingPanel(600, 600);

       Graphics2D g2 = panel.getGraphics();

       g2.setColor(Color.BLACK);

       g2.drawPolygon(xPoints, yPoints, numPoints);

   }

}

This program uses the `java.awt` package to create a `DrawingPanel` and `Graphics2D` object for drawing the shape. It first reflects the given shape's points about the line Y = -X + 500 by calculating the new coordinates based on the reflection formula. Then, it draws the shape using the `drawPolygon` method of `Graphics2D`, passing the reflected points as arguments.

Please note that this code assumes you have the `DrawingPanel` class available in your Java environment. You may need to import or implement it separately, depending on your setup.

For more questions on java, click on:

https://brainly.com/question/30931614

#SPJ8

A balanced star-connected three-phase load is shown in Figure 4. Determine the value of the line currents IR,IY and IB using mesh-current analysis.

A balanced star-connected three-phase load is shown in Figure 4. Determine the value of the line currents

Answers

Answer:

Therefore the value of the line currents IR, IY, and IB are

\(I_{R}=I_{1}=83\angle 6.87^{o}A\\I_{B}=-I_{2}=-71.88\angle-23.13^{o}A\\I_{Y}=I_{2}-I_{1}\\I_{Y}=-I_{2}=41.50\angle113.3^{o}A\)

Explanation:

Apply KVL for loop 1  

\(415\angle 120^{o}=\left ( 3+j4+3+j4 \right )I_{1}-\left ( 3+j4 \right )I_{2}\\415\angle 120^{o}=\left ( 6+j8 \right )I_{1}-\left ( 3+j4 \right )I_{2}\\415\angle 120^{o}=\left ( 10\angle 53.13^{o} \right )I_{1}-\left ( 5\angle 53.13^{o}\right )I_{2} \rightarrow \left ( 1 \right )\)

Apply KVL for loop 2

\(415\angle 0^{o}=\left ( 3+j4+3+j4 \right )I_{2}-\left ( 3+j4 \right )I_{1}\\415\angle 0^{o}=\left ( 6+j8 \right )I_{2}-\left ( 3+j4 \right )I_{1}\\415\angle 0^{o}=\left ( 10\angle 53.13^{o} \right )I_{2}-\left ( 5\angle 53.13^{o}\right )I_{1} \rightarrow \left ( 2 \right )\)

Solving the above equations,

\(415\angle 120^{o}+830\angle 0^{o}=\left ( 10\angle 53.13^{o} \right )I_{1}-\left ( 5\angle 53.13^{o}\right )I_{2} +\left ( 20\angle 53.13^{o}\right )I_{2}- \left ( 10\angle 53.13^{o} \right )I_{1}\\415\angle 120^{o}+830\angle 0^{o}=\left ( 20\angle 53.13^{o}\right )I_{2}- \left ( 10\angle 53.13^{o} \right )I_{2}\\415\angle 120^{o}+830\angle 0^{o}=\left ( 10\angle 53.13^{o} \right )I_{2}\\I_{2}= 71.88\angle -23.13^{o}A\)&

\(415\angle 0^{o}=\left ( 10\angle 53.13^{o} \right ) \times 71.88\angle -23.13^{o}-\left ( 5\angle 53.13^{o} \right )I_{1}\\415\angle 0^{o}=718.8\angle 30^{o}-\left ( 5\angle 53.13^{o} \right )I_{1}\\\left ( 5\angle 53.13^{o} \right )I_{1}=415\angle 60^{o}\\I_{1}= 83\angle 6.87^{o}A\)

Hence,

\(I_{R}=I_{1}=83\angle 6.87^{o}A\\I_{B}=-I_{2}=-71.88\angle-23.13^{o}A\\I_{Y}=I_{2}-I_{1}\\I_{Y}=-I_{2}=41.50\angle113.3^{o}A\)

why do most materials exhibit fracture strengths much lower than their theoretical capacities to support load?

Answers

The reason why most materials exhibit fracture strengths much lower than their theoretical capacities to support load is due to the presence of defects or imperfections in the material's structure.

These defects, such as micro-cracks, voids, or dislocations, act as stress concentrators, which can significantly reduce the material's ability to carry load before it fractures.
1. Materials have a theoretical maximum strength based on their atomic or molecular bonds.
2. In reality, materials contain defects or imperfections in their structure, such as micro-cracks, voids, or dislocations.
3. These defects act as stress concentrators, meaning that the stress in the material is higher at the defect locations compared to the surrounding material.
4. As a result, the material's effective fracture strength becomes lower than its theoretical capacity due to the concentration of stress at the defects.
5. When the applied load reaches the material's reduced fracture strength, the material fails, exhibiting a fracture strength much lower than its theoretical capacity.

In conclusion, materials often exhibit lower fracture strengths than their theoretical capacities due to the presence of defects in their structure, which act as stress concentrators and reduce the material's ability to support load before fracturing.

Learn more about exhibit fracture strengths: https://brainly.com/question/29517162

#SPJ11

What is the eye an example of?



sense organ
stimulus
a relay neuron

What is the eye an example of? sense organstimulus a relay neuron

Answers

sens organ is the eye example

A new car design must carry a family of four, include safety features, get more than 25 miles per gallon on the highway, and weigh less than 1.5 tons. which is one of the criteria that should be part of the design to meet the proposal request?

Answers

Answer: weigh less than 1.5 tons

Explanation:

Answer:The answer is A, seats for five people.

Explanation: I took the test and it is the only option that fits the criteria listed above.

Why do pre-construction and design specialists typically take an interdisciplinary approach to their work? O to maximize employability options to draw on a varied creative tool set O to integrate well with other team members to understand the methods of the construction team Sign​

Answers

Answer:

There are a few key benefits to a pre-construction and design specialist taking an interdisciplinary approach:

To maximize employability options. Having exposure to different fields and skills makes a specialist a more versatile and attractive job candidate. They can work across multiple areas of design, planning, architecture and construction.

To draw on a varied creative tool set. Exposure to fields like architecture, engineering, economics, sustainability and more provides many perspectives and solutions to tapping into. This leads to more innovative and well-rounded design thinking.

To integrate well with other team members. Understanding the methods, priorities, constraints and languages of fields like architecture, engineering, planning, and construction allows a specialist to collaborate more effectively. They can translate across disciplines and facilitate joined-up thinking.

To understand constraints and optimally balance priorities. No design or pre-construction problem has limitless options. An interdisciplinary approach helps gain insights into the constraints each field operates under and how to optimize solutions across ecological, economic, functional and other priorities.

To consider impacts holistically. Many impacts, like environmental sustainability, cost efficiency and user experience, span multiple disciplines. An interdisciplinary mindset is needed to evaluate options based on overall impact, not just impacts within one area of focus.

Of these options, I believe "To integrate well with other team members" is the strongest summary of why an interdisciplinary approach is so valuable for this type of specialist role. Understanding other fields in depth helps in collaborating, communicating clearly, addressing concerns proactively and finding optimal compromise - all of which are key to successfully interweaving different areas of expertise on a team.

Explanation:

Using the degree day method calculate the annual kwh use in springfiled il with a heat loss of 12kwh an inddor twmperature of 7

Answers

Answer:

The correct solution is "21024 KWh/degree day".

Explanation:

The given query is incomplete. Below is the attachment of complete query is provided.

The given values are:

Indoor design temperature:

= 70°F

Now,

According to the question,

The heat loss annually will be:

= \(12\times 24\times 365\)

= \(105120 \ KW\)

Degree days will be:

= \(75-65\)

= \(5\)

Hence,

Annual KWh use will be:

= \(\frac{Heat \ loss \ annually}{degree \ days}\)

On substituting the values, we get

= \(\frac{105120}{5}\)

= \(21024 \ KWh/degree \ day\)

Using the degree day method calculate the annual kwh use in springfiled il with a heat loss of 12kwh

this is a mobility synthesis problem. the goal of the mobiltity synthesis is to design the type/topology of a linkage for specified mobility (dof). show the equations used to determine the answers and submit your complete work in the written part.

Answers

Mobility synthesis involves finding the appropriate linkage type and topology for a given degree of freedom (DOF). The specific equations used depend on the desired DOF.

How to explain the mobility

Some common methods include:

Four-bar linkage: This is used for creating planar motion with 1 DOF, such as a crank-slider mechanism. The input and output velocities can be determined using the law of cosines.

Six-bar linkage: This is used for creating planar motion with 2 DOFs, such as a double crank mechanism. The input and output velocities can be determined using the law of cosines and the law of sines.

Eight-bar linkage: This is used for creating planar motion with 3 DOFs. The input and output velocities can be determined using the law of cosines, the law of sines, and vector loop equations.

Stewart-Gough platform: This is used for creating spatial motion with 6 DOFs. The input and output velocities can be determined using the screw theory.

It is important to note that for each linkage type, the specific equations and calculations required will depend on the design specifications and constraints.

In order to complete this mobility synthesis problem, you should determine the desired DOF, choose an appropriate linkage type, and perform the necessary calculations and analysis to determine the linkage topology that satisfies the requirements.

An overview was given based on the incomplete information.

Learn more about mobility on:

https://brainly.com/question/10185143

#SPJ1

A ________ defines the boundaries of a system in a work breakdown structure (WBS).
A) trade-off
B) code
C) scope
D) scale

Answers

 scope. In project management, a work breakdown structure (WBS) is a hierarchical decomposition of a project into smaller and more manageable components. So correct answer is C

It helps to organize and structure the project's tasks and deliverables, and to define the project's scope. The scope of a project refers to the boundaries and limitations of the project, including the specific goals, objectives, requirements, and deliverables that are within the project's purview.In the context of a WBS, the scope defines the boundaries of the system that is being broken down into smaller components. It outlines the overall objectives and goals of the project and identifies the specific tasks and deliverables that are required to achieve those objectives. The scope helps to ensure that the project team is focused on the right tasks and that they understand the overall purpose and goals of the project.In addition to defining the boundaries of the system, the scope also helps to identify any constraints or limitations that may impact the project. This may include factors such as budget, schedule, resources, or external factors such as regulations or legal requirements. By clearly defining the scope of the project, the project team can better manage these constraints and ensure that the project stays on track.In summary, the scope is a critical component of a work breakdown structure (WBS) as it defines the boundaries of the system being broken down into smaller components. It outlines the objectives and goals of the project and identifies the specific tasks and deliverables required to achieve those objectives. By clearly defining the scope, the project team can better manage constraints and ensure the project stays on track.

To know more about decomposition visit:

brainly.com/question/28386212

#SPJ11

shear panels or shear walls are sometimes used in steel-framed buildings. which component of wood light-frame construction serves the same function as a shear panel/wall?

Answers

Since shear panels or shear walls are sometimes used in steel-framed buildings. the component of wood light-frame construction serves the same function as a shear panel/wall is Wall Sheathing.

What does the covering do?

The supporting framework that serves as a covering for a building's surfaces is known as sheathing. Sheathing's primary purpose is to give a surface for additional materials to be applied to, whether on a building's walls, roof, or floors. Additionally, it gives buildings more structural integrity.

Therefore, Sheathing for walls is largely a structural component. It stops walls from swaying or bending and is fastened to the outer wall framing. Building walls are constructed using sheathing as a base for siding nails.

Learn more about Wall Sheathing from

https://brainly.com/question/5029827
#SPJ1

application's of kirchoff's law​

Answers

Kirchhoff's laws are used to help us understand how current and voltage work within a circuit. They can also be used to analyze complex circuits that can't be reduced to one equivalent resistance using what you already know about series and parallel resistors. By using these laws, we can find the unknown resistances, voltages and currents (direction as well as value). In the branch method, finding the currents through each branch carried by applying KCL at every junction and KVL in every loop of a circuit.

For modeling and calculation purposes, architects treat air as an incompressible fluid. As an architect's intern, you are doing the specs on a dorm air conditioning system that is designed to replace the air in each room every twenty-nine minutes. If the rooms each have a volume of 175 m3 and they are supplied by ducts with a square cross section, determine the following. (a) the length of each side of a duct if the air speed in the duct is to be 3. 2 m/s m (b) the length of each side of a duct if the air speed at the duct is to be a value twice this speed. M

Answers

(a) To determine the length of each side of a duct if the air speed in the duct is to be 3.2 m/s, we can use the equation:

Volume flow rate = Area x Air speed

The volume flow rate is the volume of air that needs to be supplied to each room every 29 minutes, which is:

Volume flow rate = 175 m^3 / 29 min = 6.03 m^3/s

The area of the duct can be found by rearranging the equation:

Area = Volume flow rate / Air speed

Substituting the given values, we get:

Area = 6.03 m^3/s / 3.2 m/s = 1.885 m^2

Since the duct is square, each side of the duct will have the same length, which is:

Side length = sqrt(Area) = sqrt(1.885 m^2) = 1.373 m

Therefore, the length of each side of a duct if the air speed in the duct is to be 3.2 m/s is 1.373 m.

(b) To determine the length of each side of a duct if the air speed at the duct is to be twice the previous speed, we can use the same equation:

Volume flow rate = Area x Air speed

The volume flow rate is still the same, but the air speed is now 2 x 3.2 m/s = 6.4 m/s. Substituting the values, we get:

Area = 6.03 m^3/s / 6.4 m/s = 0.941 m^2

The length of each side of the duct is:

Side length = sqrt(Area) = sqrt(0.941 m^2) = 0.970 m

Therefore, the length of each side of a duct if the air speed at the duct is to be twice the previous speed is 0.970 m.

Can some help me with this !!! Is 26 points!!

Can some help me with this !!! Is 26 points!!

Answers

Third one
15,000,000 ohms because M=10^6

What might the effect of using salt on snowy and icy roads be on Montgomery County's Water Supply?" What might the effect of using salt on snowy and icy roads be on Montgomery County's Water Supply?"

Answers

The use of salt on snowy and icy roads could have a negative effect on Montgomery County's Water Supply. The salt used on the roads for melting ice can cause a number of issues for water supplies and ecosystems, and Montgomery County is no exception.

When salt is used to melt snow and ice on the road, it can dissolve into the water and run off into streams, rivers, and lakes. The salt lowers the freezing point of water and melts ice, but it also alters the chemical makeup of the water, making it more saline. It can also damage aquatic plants, animals, and fish that rely on freshwater systems.

Therefore, it is important to take steps to minimize the use of salt or to use alternatives, such as sand or beet juice, which are less harmful to the environment and water supplies.

You can learn more about Montgomery County at: brainly.com/question/29130712

#SPJ11

Describe some typical pairs of entities that you think might be common in business, and describe their relationships, whether many-to-many, one-to-many, many-to-one, or one-to-one. Explain why you think that a particular relationship applies to that pair of entities.

Answers

Answer:

Sole Proprietorship, General Partnership , Limited Partnership, corporation

Explanation:

Business in something that an individual or a group of people do for a living and produce products and services that benefits the society and the people. There are several entities that can be common in business. Some common form of entities are :

Sole Proprietorship : One to one

-- here there is only one owner in the business and he maintains and manages the entire business functions under his control.

Limited Partnership : many to one

-- here two or more than two partners establish business and runs it but only one or more is liable to the amount of the investments.

General Partnership : many to many

-- It is a business partnership where all the partners shares the profits, the assets, legal liabilities and financial liabilities, etc.

Corporation : many to one

It is a business entity where a group of individual or a group of companies run a single business which is generally authorized by the state.

Some of the typical types of the entities that one may think to be common in term of the business entities are about the relationships that are held within many to many and one to many.

The one to one relation is Sole Proprietorship, General Partnership, Limited Partnership, corporation.

Learn more about the typical pairs of entities.

brainly.com/question/24935985.

A pump with a power of 5 kW (pump power, and not useful pump power) and an efficiency of 72 percent is used to pump water from a lake to a pool through a constant diameter. The free surface of the pool is 25 m above the free surface of the lake. If the irreversible head loss in the piping system is 4 m, determine (a) the mass flowrate of water and (b) the pressure difference across the pump.

Answers

Answer:

a) The mass flow rate of water is 14.683 kilograms per second.

b) The pressure difference across the pump is 245.175 kilopascals.

Explanation:

a) Let suppose that pump works at steady state. The mass flow rate of the water (\(\dot m\)), in kilograms per second, is determined by following formula:

\(\dot m = \frac{\eta \cdot \dot W}{g\cdot H}\) (1)

Where:

\(\dot W\) - Pump power, in watts.

\(\eta\) - Efficiency, no unit.

\(g\) - Gravitational acceleration, in meters per square second.

\(H\) - Hydrostatic column, in meters.

If we know that \(\eta = 0.72\), \(\dot W = 5000\,W\), \(g = 9.807\,\frac{m}{s^{2}}\) and \(H = 25\,m\), then the mass flow rate of water is:

\(\dot m = 14.683\,\frac{kg}{s}\)

The mass flow rate of water is 14.683 kilograms per second.

b) The pressure difference across the pump (\(\Delta P\)), in pascals, is determined by this equation:

\(\Delta P = \rho\cdot g\cdot H\) (2)

Where \(\rho\) is the density of water, in kilograms per cubic meter.

If we know that \(\rho = 1000\,\frac{kg}{m^{3}}\), \(g = 9.807\,\frac{m}{s^{2}}\) and \(H = 25\,m\), then the pressure difference is:

\(\Delta P = 245175\,Pa\)

The pressure difference across the pump is 245.175 kilopascals.

Which workplaces are common to both the Engineering and Technology pathway and the Science and Math pathway?


a) laboratories and ships
b) parks and radio stations
c) construction sites and zoos
d) offices and weather stations

Answers

Laboratories and ships are workplaces common to both the Engineering and Technology pathway and the Science and Math pathway.

The common workplace for both science and math pathways, with engineering and technology in laboratories and ships. Thus, option A is correct.

What is a workplace?

A workplace is given as the location or the place at which the employee are performing their jobs and tasks.

The science or technology-mediated employees are related to research where they perform the tests in laboratories, as well as the ships are the location for the engineering and the math candidates for the analysis of the studies and to perform the job.

Hence, the location in the workplace common for both engineering and technology candidates has been the laboratories and the ships. Thus, option A is correct.

Learn more about workplaces, here:

https://brainly.com/question/1406228

#SPJ2

what voltage primarily used in industrial plants to feed 480-volt substations for motors and lighting

Answers

Answer:

4800v three phase

Explanation:

240 Volts Versus 480 Volts

A majority of smaller industries and larger plants with small or medium size motor loads can utilize either 240 or 480 systems.

Answer: 4,800 v, 3 (horseshoe symbol), 3w

Explanation:

What is wrong with the following code?
6
print (what is your name?)

Answers

Answer:

pakipic na lang po question nyo para masagot po

Explanation:

please po di ko masyado gets po e

it is simple the title name after all it is just asking your name

real life problems solved in statistics using software engineering

Answers

Answer:

Explanation:

Using a machine learning algorithm, Aerosolve’s predictive model takes the optimal price for a rental based on its location

What happens to the speed of light if the IOR increases?

Answers

Because index of reflection is defined as the radio between the spray speed of light in a vacuum and the speed of light in a medium as a light traveling to roll the medium increases in speed at index of refraction decreases

If a digital multimeter displays 000 when reading amperage, what should the technician do to get a more accurate reading

Answers

Answer:

Use a non digital multimeter.

Explanation:

If a digital multimeter displays "000" when reading amperage, the technician should adjust the multimeter to a higher amperage range.

Why should the technician do this?

This is because "000" typically indicates that the current being measured is too low for the current range selected on the multimeter.

By switching to a higher amperage range, the technician can get a more accurate reading and ensure that the multimeter is properly measuring the current in the circuit under test.

Learn more about digital multimeter at:

https://brainly.com/question/29512413

#SPJ3

which other factors do you need to consider when preparing to move gondolas?

Answers

The factors that  you need to consider when preparing to move gondolas are:

Heightwidthlength color.

How do you move a gondola?

In choosing gondola one need to look at some  factor in decisions such as height.

Know that it is good to  consider the construction material and also the center wall configuration for its building also.

The factors that  you need to consider when preparing to move gondolas are:

Heightwidthlength color.

Learn more about gondola from

https://brainly.com/question/10652274

#SPJ1

What traffic sign is this

What traffic sign is this

Answers

Answer:

Stop Sign

Explanation:

It's red and shaped like an octogon

Subject: Mechanical Engineering

Please find the attached file for your reference.

Answers

I would be happy to help you with your question regarding Mechanical Engineering. I am unable to provide a detailed answer that incorporates the terms "Mechanical Engineering" and "reference."

Mechanical engineering is a branch of engineering that deals with the design, development, and maintenance of mechanical systems, machines, and equipment. It is a broad field that encompasses many different specialties, including automotive engineering, aerospace engineering, manufacturing engineering, and robotics engineering. Mechanical engineers use their knowledge of physics, mathematics, and materials science to design and analyze mechanical systems and devices. They work on a wide range of projects, from developing new engines and power generators to designing prosthetic limbs and medical devices.

Mechanical engineering plays a critical role in many industries, such as automotive, aerospace, defense, energy, and manufacturing. It is a constantly evolving field, with new technologies and innovations emerging all the time, and mechanical engineers must stay up-to-date with the latest developments to ensure that their designs are safe, efficient, and effective.

Learn more about Mechanical engineering here:

https://brainly.com/question/20434227

#SPJ11

List the five lines that include short dashes.

Answers

Answer:

OBJECTLINE

HIDDEN LINE

SECTION LINE

CENTER LINE

Explanation:

What major financial flop led to the end of the Sega Dreamcast and ultimately caused Sega to stop making game consoles altogether?

1: The founder and CEO of Sega was found to be secretly skimming money off of the top of profits, leading to widespread distrust by the public and a sharp decline in sales until they ultimately had to shut down due to making no profit.

2: A small group of employees found a way to drain all of the Sega Corporation funding accounts and flee the country with all of the money, never to be heard from again.

3: A game called Shenmue, that cost more than $70 million to make, meant that everyone who owned a Dreamcast needed to buy two copies of the game just for Sega to make back the money they had spent to develop it-which didn't happen.

4: A game called Katamari Damacy that carried a virus that would infect any console that it was played on forced Sega to spend millions of dollars in refunds and bankrupted the company.​

Answers

Answer:

The major financial flop that led to the end of the Sega Dreamcast and ultimately caused Sega to stop making game consoles altogether is:

3: A game called Shenmue, that cost more than $70 million to make, meant that everyone who owned a Dreamcast needed to buy two copies of the game just for Sega to make back the money they had spent to develop it-which didn't happen.

Explanation:

Shenmue, released on December 29, 1999, was created for Dreamcast by Suzuki.  It was widely described as the most expensive video game ever produced.  It had an estimated production and marketing cost of between US$47 and $70 million, according to the latest available data.

Other Questions
PLEASE HELP!! Choose one choice Can someone please help me with the question!!! If your answer is correct Ill mark you as the best answer!!! There were 90 runners to start a race. In the first half of the race, 6 of them dropped out. In the second half of the race,of the remaining runners dropped5out. How many runners finished the race? Two tanks (tank A and tank B) of pure water are connected by a small hose. Water can flow freelybetween the tanks. A container of sugar is poured into the water in tank A. Based on the process ofosmosis, what will happen to the sugar concentrations over time?O The sugar concentrations in both tanks will be equal.The sugar concentration in tank A will be higher than in tank B.o The sugar concentration in tank B will be higher than in tank A. define the terms, state the governing equation(s)/constituents(s) and state limitations (if any). 1. total and average strain: 2. theory of minimum potential energy: 3. cauchy stress: labeling theory focuses on: question 1 options: rehabilitation of deviants through appropriate intervention. the social process through which law enforcement learns to recognize the signs of deviance. the ways in which society labels different kinds of activities as deviant. the social process through which people become deviants. Place one ball on top of the other so that theballs are touching and hold at arms length.Drop the balls at the same time. Whathappens? Calculate the radius of the largest interstitial void in the Fcc y iron lattice. The atomic radius of the atom is 0.129 nm in the FCC lattice, and the largest interstitial voids occur at the (1/20,0). (0,1,2,0). (0,0,1/2)o.. etc., -type positions. 1 To use a larger sample of bacteria, the experimenters construct a solenoid that has the same length, same type of wire, and same spacing of loops, but quadruple the diameter of the original solenoid. How does the maximum possible magnetic torque on a bacterium in this new solenoid compare with the torque the bacterium would have experienced in the original solenoid The transport mode selected may influence the choice ofpackaging and inventory requirements. With example, explain indetail, the FIVE (5) modes of transportation The South Texas Plains region is the largest producer of citrus fruits in the United States.Please select the best answer from the choices providedTF ____ is a tiny charts that fit within a cell and give a visual trend summary suppose the market for trucks is unregulated. in other words, the price of trucks can adjust freely based on supply and demand forces. if a shortage exists in the truck market, then the current price must be than the equilibrium price. for equilibrium to be reached in the market, you would expect . What kind of sentence error is demonstrated below?To children, animals are an important part of learning about life. Perhaps more important than any teaching.-fragment-comma-splice-no error found Before the case goes to the jury, each attorney presents ____ in which he or she summarizes the evidence for the jury in a manner most favorable to their case.a)a summary discussionb)hearsay evidencec)voir dire evidenced)a closing statemente)a closing argument Which city-state first introduced democracy, built the Parthenon, and became home to philosophers like Socrates and Plato? Sparta Rome Babylon Athens In business, an entrepreneur notices an upward trend in the sales of one item and decides to raise the price of said item. How does your discipline/major/work utilize the scientific method? Provide an example and explain the steps. 7/3 + 35 / 18 + 54 / 20 x, then x =a. 8/9b. 81/4c. 4/9d. None of above What color is the sun? A. WhiteB. RedC. YellowD. Orange. 5. Find all complex number solutions of the equation. 3 x + 125 i = 0 Choose the correct solution set below. A) . {125(cos 270 + i sin 270), B) 125(cos 390 + i sin 390), C) 125(cos 510 + i sin 510