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
Komok [63]
3 years ago
14

Various factors to be considered in deciding the factor of safety?

Engineering
1 answer:
Eduardwww [97]3 years ago
4 0

Answer with Explanation:

There are various factors that needed to be taken into account while deciding the factor of safety some of which are summarized below as:

1) Importance of the structure: When we design any structure different structures have different importance in our society. Take an example of hospital, in case a natural disaster struck's a place the hospital should be the designed to withstand the disaster as it's role in the crisis management following a disaster is well understood. Thus while designing it we need it to have a higher factor of safety against failure when compared to a local building.

2) Errors involved in estimation of strength of materials: when we design any component of any machine or a structure we need to have an exact idea of the behavior of the material and know the value of the strength of the material. But many materials that we use in structure such as concrete in buildings have a very complex behavior and we cannot estimate the strength of the concrete absolutely, thus we tend to decrease the strength of the concrete more if errors involved in the estimation of strength are more to give much safety to the structure.

3) Variability of the loads that may act on the structure: If the loads that act on the structure are highly variable such as earthquake loads amd dynamic loads then we tend to increase the factor of safety while estimating the loads on the structure while designing it.

4) Economic consideration: If our project has abundant funds then we can choose a higher factor of safety while designing the project.

You might be interested in
Consider the velocity boundary layer profile for flow over u flat plate to be of the form u = C_1 + C_2 y. Applying appropriate
ra1l [238]

Answer:

The  result in terms of the local Reynolds number ⇒ Re = [μ_∞ · x] / v

Explanation:

See below my full workings so you can compare the results with those obtained from the exact solution.

4 0
3 years ago
Determine the percent increase in the nominal moment capacity of the section in Problem 2 when including compression steel at to
sergejj [24]

Explanation:

Please kindly share your problem two with us as to know the actual problem we are dealing with, the question looks incomplete

5 0
3 years ago
Problem 34.3 The elevation of the end of the steel beam supported by a concrete floor is adjusted by means of the steel wedges E
Natasha2012 [34]

The image is missing, so i have attached it.

Answer:

A) P = 65.11 KN

B) Q = 30 KN

Explanation:

We are given;

The end reaction of the beam; F = 100KN

Coefficient of static friction between two steel surfaces;μ_ss = 0.3

Coefficient of static friction between steel and concrete;μ_sc = 0.6

So, F1 = μ_ss•F =0.3 x 100 = 30 KN

F2 = μ_ss•N_EF = 0.3N_EF

From the screen shot, we see that the angle is 12°

Sum of forces in the Y-direction gives;

F2•sin12 - N_EF•cos12 + 100 = 0

Rearranging gives;

N_EF•cos12 - F2•sin12 = 100

Let's put 0.3N_EF for F2 to give;

N_EF•cos12 - 0.3N_EF•sin12 = 100

Thus;

N_EF(0.9158) - 0.1247 = 100

N_EF(0.9781) = 100 + 0.1247

N_EF = 100.1247/0.9158

N_EF = 109.33 KN

Thus, F2 = 0.3N_EF = 0.3 x 109.33 = 32.8 KN

Wedge will move if;

P = (F1 + F2cos12 + N_EFsin12)

Thus;

P = 10 + (32.8 x 0.9781) + (109.33 x 0.2079)

P ≥ 65.11 KN

B) For static equilibrium, Q = F1

Thus, Q = 30 KN

3 0
3 years ago
The second programming project involves writing a program that accepts an arithmetic expression of unsigned integers in postfix
Tpy6a [65]

Answer:

Explanation:

Note: In case of any queries, just comment in box I would be very happy to assist all your queries

SourceCode:

// MyGUI.java:

// Import packages

import java.awt.FlowLayout;

import java.awt.GridLayout;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

import java.util.EmptyStackException;

import java.util.Stack;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JTextField;

import javax.swing.SwingConstants;

// Declaare and define the class MyGUI

abstract class MyGUI extends JFrame implements ActionListener {

JTextField userInput;

JLabel inputDescLbl, resultLbl;

JPanel inputPanel, resultPanel;

JButton evlBtn;

Stack<Object> stk;

// Define the constructor MyGUI

MyGUI() {

super("Tree Address Generator");

inputPanel = new JPanel(new FlowLayout());

resultPanel = new JPanel(new FlowLayout());

setLayout(new GridLayout(2, 1));

userInput = new JTextField(20);

inputDescLbl = new JLabel("Enter Postfix Expression:");

evlBtn = new JButton("Construct Tree");

evlBtn.addActionListener(this);

resultLbl = new JLabel("Infix Expression:", SwingConstants.LEFT);

add(inputPanel);

add(resultPanel);

inputPanel.add(inputDescLbl);

inputPanel.add(userInput);

inputPanel.add(evlBtn);

resultPanel.add(resultLbl);

stk = new Stack<Object>();

}

}

//Stack.java:

// Declare and define the class Stack

class Stack {

private int[] a;

private int top, m;

public Stack(int max) {

m = max;

a = new int[m];

top = -1; }

public void push(int key) {

a[++top] = key; }

public int pop() {

return (a[top--]); }

}

// Declare and define the class Evaluation()

class Evaluation {

public int calculate(String s) {

int n, r = 0;

n = s.length();

Stack a = new Stack(n);

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

char ch = s.charAt(i);

if (ch >= '0' && ch <= '9')

a.push((int) (ch - '0'));

else if (ch == ' ')

continue;

else {

int x = a.pop();

int y = a.pop();

switch (ch) {

case '+':

r = x + y;

break;

case '-':

r = y - x;

break;

case '*':

r = x * y;

break;

case '/':

r = y / x;

break;

default:

r = 0;

}

a.push(r);

}

}

r = a.pop();

return (r);

}

}

// PostfixToInfix.java:

// Import packages

import java.util.Scanner;

import java.util.Stack;

// Declare and define the class PostfixToInfix

class PostfixToInfix {

// Determine whether the character entered is an operator or not

private boolean isOperator(char c) {

if (c == '+' || c == '-' || c == '*' || c == '/' || c == '^')

return true;

return false;

}

// Declare and define the convert()

public String convert(String postfix) {

Stack<String> s = new Stack<>();

for (int i = 0; i < postfix.length(); i++) {

char c = postfix.charAt(i);

if (isOperator(c)) {

String b = s.pop();

String a = s.pop();

s.push("(" + a + c + b + ")");

} else

s.push("" + c);

}

return s.pop();

}

// Program starts from main()

public static void main(String[] args) {

PostfixToInfix obj = new PostfixToInfix();

Scanner sc = new Scanner(System.in);

// Prompt the user to enter the postfix expression

System.out.print("Postfix : ");

String postfix = sc.next();

// Display the expression in infix expression

System.out.println("Infix : " + obj.convert(postfix));

}

}

Output:

e Console X terminated PostfixTolnfix [Java Application] C:\Program Files\Java\jrel.8.0_121\bin\javaw.exe Postfix : ABD++C-D/ .

3 0
3 years ago
An error was reported in a software program by a user. Before that error can be diagnosed and fixed
Bas_tet [7]

Answer:

can anyone help

Explanation:

6 0
3 years ago
Read 2 more answers
Other questions:
  • You find a publication from a research laboratory that identifies a new catalyst for ammonia synthesis. The article contains the
    6·1 answer
  • How much work does the electric field do in moving a proton from a point with a potential of +V1 = +185 V to a point where it is
    15·1 answer
  • Working with which of these systems requires a technician that has been certified in an EPA-approved course?
    11·1 answer
  • You must signal [blank] before any turn or lane change.
    11·1 answer
  • Adore.aaliyah_ add me loves !
    7·1 answer
  • How would your priorities change if the fine on the library book was $10 a day?
    14·1 answer
  • Air at 27°C, 1 atm flows parallel to a flat plate, which is electronically heated. The plate is 0.5 m long in the direction of f
    8·1 answer
  • Ohm's law states that the current (I) in amps equals the voltage (E) in volts decided by the resistance (R) in ohm's. If you con
    15·1 answer
  • You have a motor such that if you give it 12 Volt, it will eventually reach a steady state speed of 200 rad/s. If it starts from
    10·1 answer
  • How can I draw this image in 2D form
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!