1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Bad White [126]
3 years ago
15

What is the difference between destabilizing load and normal load?​

Engineering
1 answer:
bulgar [2K]3 years ago
7 0

Answer:

<h2>destabilizing load:</h2>

The common definition of a destabilising load is if the load is free to move with the flange, it's a destabilising load. The stress due to the lateral bending of the flange is increased, which means the beam is closer to buckling than it would be without the additional moment.

<h2>normal load:</h2>

Something that is normal is usual and ordinary, and is what people expect.The leakage crack is a postulated crack that, under normal operating loads (pressure, weight, thermal expansion), will discharge a detectable amount of fluid.

The leak rates are calculated based on the flaw geometry, the applied loads, and the crack morphology. The crack opening displacement and crack morphology are typically based on two cases: (1) a fatigue-induced transgranular crack and (2) a corrosion-induced intergranular crack. The leak flow through a crack must be analyzed with the correct thermohydraulic model that captures, as the fluid progresses from the inner diameter (ID) to the outer diameter (OD), a subcooled phase (pressurized hot water) at the ID entrance into the crack, a steam formation phase somewhere between the ID and the OD, and then a two-phase flow region toward the OD, and discharge into the containment environment.

You might be interested in
Find the velocity and rate of flow of water through a rectangular channel of 6m wide and 3m deep when it's running full. The cha
Elza [17]

Answer:

V = 1.5062 m/s

Explanation:

look to the photos

5 0
3 years ago
I NEED HELP ASAP WILL AWARD BRAINLIEST
CaHeK987 [17]

Answer:

It was a power supply of a circuit that was horizontal of the ladder where they controlled the circuit.

Explanation:

6 0
3 years ago
Read 2 more answers
a centrifugal pump delivers water at the rate of 50kg/is . the inlet and outlet pressure are 2 bar and 6.2 bar respectively. the
Monica [59]

Answer:

21.6 kw

Explanation:

Given data:

m = 50 kg/s

Inlet pressure (p1) = 2 bar

outlet pressure(p2) = 6.2 bar

suction ( h1 ) = -2.2 m

delivery ( h2 ) = 8.5 m

d1 = 200 mm = 0.2 m

d2 = 100 mm = 0.1 m

Vs of water = 0.001 m^3/kg

next we have to determine the Q value

Q = V*A

Q = 0.001 * 50 = 0.05 m^3/s

next we have to calculate the various V's

V1 = Q/A1 = \frac{0.05*4}{\pi *0.2^2}  = 1.59 m/s

V2 = Q/A2 = \frac{0.05*4}{\pi *0.1^2} = 6.37 m/s

Determine the capacity of the electric motor

attached below is the detailed solution

7 0
3 years ago
Amanda and Tyler opened a business that specializes in shipping liquids, such as milk, juice, and water, in cylindrical containe
USPshnik [31]

Answer:

circleType.h

#ifndef circleType_H

#define circleType_H

class circleType

{

public:

void print();

void setRadius(double r);

//Function to set the radius.

//Postcondition: if (r >= 0) radius = r;

// otherwise radius = 0;

double getRadius();

//Function to return the radius.

//Postcondition: The value of radius is returned.

double area();

//Function to return the area of a circle.

//Postcondition: Area is calculated and returned.

double circumference();

//Function to return the circumference of a circle.

//Postcondition: Circumference is calculated and returned.

circleType(double r = 0);

//Constructor with a default parameter.

//Radius is set according to the parameter.

//The default value of the radius is 0.0;

//Postcondition: radius = r;

private:

double radius;

};

#endif

circleTypeImpl.cpp

#include <iostream>

#include "circleType.h"

using namespace std;

void circleType::print()

{

cout << "Radius = " << radius

<< ", area = " << area()

<< ", circumference = " << circumference();

}

void circleType::setRadius(double r)

{

if (r >= 0)

radius = r;

else

radius = 0;

}

double circleType::getRadius()

{

return radius;

}

double circleType::area()

{

return 3.1416 * radius * radius;

}

double circleType::circumference()

{

return 2 * 3.1416 * radius;

}

circleType::circleType(double r)

{

setRadius(r);

}

cylinderType.h

#ifndef cylinderType_H

#define cylinderType_H

#include "circleType.h"

class cylinderType: public circleType

{

public:

void print();

void setHeight(double);

double getHeight();

double volume();

double area();

//returns surface area

cylinderType(double = 0, double = 0);

private:

double height;

};

#endif

cylinderTypeImpl.cpp

#include <iostream>

#include "circleType.h"

#include "cylinderType.h"

using namespace std;

cylinderType::cylinderType(double r, double h)

: circleType(r)

{

setHeight(h);

}

void cylinderType::print()

{

cout << "Radius = " << getRadius()

<< ", height = " << height

<< ", surface area = " << area()

<< ", volume = " << volume();

}

void cylinderType::setHeight(double h)

{

if (h >= 0)

height = h;

else

height = 0;

}

double cylinderType::getHeight()

{

return height;

}

double cylinderType::area()

{

return 2 * 3.1416 * getRadius() * (getRadius() + height);

}

double cylinderType::volume()

{

return 3.1416 * getRadius() * getRadius() * height;

}

main.cpp

#include <iostream>

#include <iomanip>

using namespace std;

#include "cylinderType.h"

int main()

{

double radius,height;

double shippingCostPerLi,paintCost,shippingCost=0.0;

 

cout << fixed << showpoint;

cout << setprecision(2);

cout<<"Enter the radius :";

cin>>radius;

 

cout<<"Enter the Height of the cylinder :";

cin>>height;

 

 

cout<<"Enter the shipping cost per liter :$";

cin>>shippingCostPerLi;

 

 

//Creating an instance of CylinderType by passing the radius and height as arguments

cylinderType ct(radius,height);

 

double surfaceArea=ct.area();

double vol=ct.volume();

 

 

shippingCost+=vol*28.32*shippingCostPerLi;

 

char ch;

 

cout<<"Do you want the paint the container (y/n)?";

cin>>ch;

if(ch=='y' || ch=='Y')

{

cout<<"Enter the paint cost per sq foot :$";

cin>>paintCost;    

shippingCost+=surfaceArea*paintCost;    

}    

cout<<"Total Shipping Cost :$"<<shippingCost<<endl;

 

return 0;

}

3 0
3 years ago
What is the relationship between green building and self-interest? (Select all that apply.)
Lady bird [3.3K]

The relationship between green building and self-interest include the following:

  • Green building is burdensome but has advantages in terms of public image
  • Green building is attractive because of its long-term growth potential as a market.

<h3>What is Green building?</h3>

This is the process of reducing the environmental impact of buildings. This therefore leads to enhancement of the health of people.

Its relationship with self interest can seen listed above as the most appropriate choice.

Read more about Green building here brainly.com/question/9779427

#SPJ1

4 0
3 years ago
Other questions:
  • A cannon ball is fired with an arching trajectory such that at the highest point of the trajectory the cannon ball is traveling
    5·1 answer
  • When choosing building-construction materials, what kinds of materials would you choose, all other things being equal?
    6·1 answer
  • A series circuit consists of a 0.440-H inductor, a 380.0-Ω resistor, a 5.70-μF capacitor, and an ac voltage source of amplitude
    10·1 answer
  • Calculate the diameter of pneumatic cylinder to drive a mechanism. The force exerted by the mechanism is 80 N. The return force
    7·1 answer
  • Sharon is designing a house in an area that receives a lot of rainfall all year. Which material should she use to stick the wood
    12·1 answer
  • This style is closest to the cuisine enjoyed by French royalty and nobility.
    9·1 answer
  • The value of universal gas constant is same for all gases?<br> a) yes<br> b)No
    15·1 answer
  • A structural element for a new bridge is designed for a constant load of 1000 psi. Its mean resistance is 1200 psi and the proba
    7·1 answer
  • State three means of operating a power tool
    6·1 answer
  • Who has the authority to declare a "global emergency"?​
    10·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!