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
Crank
3 years ago
9

4.7 If the maximum tensile force in any of the truss members must be limited to 22 kN, and the maximum compressive force must be

limited to 20 kN, determine the largest permissible mass m which may be supported by the truss.
Engineering
1 answer:
ki77a [65]3 years ago
4 0

Answer:

588.55 kg

attached below is a sketch of the members of the truss

Explanation:

Given data:

Maximum tensile force = 22 KN

maximum compressive force = 20 KN

To determine the largest permissible mass m which may be supported by the truss

First we have have to find the summation of forces in the Y and X direction along Joint C

<u>Summation of forces in the Y direction</u>

∑Fy = 0

= BC sin30° - W = 0.   hence BC = 2WT

<u>summation of forces in the X direction </u>

∑Fx = 0

= -CD - BC cos30°

therefore CD = -2W cos30°

hence ; CD = - 1.732W

ignoring the compression on CD. therefore CD = 1.732W C

Next we have to analyze Joint B

summation of forces in the X direction

∑Fx = 0

= - AB + BC cos30° = 0

therefore AB = BC cos30°

                AB = 1.732W T

∑Fy = 0

- BD - BC sin30° = 0

therefore BD = -W = W C

Analyzing Joint D

∑Fy = 0

AD sin30° + BD = 0

hence ;AD = 2W T

∑Fx = 0

-DE - ADcos30° + CD = 0

hence DE = -3.464W  =  3.464W C

At Joint E

∑Fy = 0

i.e. AE = 0

from the above analysis The tensile force is greatest on members AD and BC

AD = BC = 2W

from the question the maximum tensile force in any of the truss members = 22KN

Hence ;

2W = 22KN

2mg = 22000N

m = 22000 / ( 2 * 9.81 )

   = 1121.30 kg

from the above analysis the greatest compressive force is found in DE which is the critical part of the Truss hence the maximum mass it can carry is the largest permissible mass which may be supported by the Truss

DE = 3.464 W

from the question the maximum compressive force = 20 KN

hence ;

3.464 W = 20KN

3.464 mg = 20000N

m = 20000 / ( 3.464 * 9.81 )

m = 588.55 kg

You might be interested in
Помогите написать детектив​
Juliette [100K]

Answer:

Ладно

Explanation:

7 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
Which feature should a system administrator use to facilitate them? When working on opportunities, sales representatives at Univ
il63 [147K]

The correct answers are B & C; Chatter Groups and Similar opportunities.

Further Explanation:

Sales representatives can use chatter groups and other similar opportunities to their advantage. This can help them to understand and manage their products that are in direct competition with competitors.

A chatter group can be used to share ideas both privately and publicly. These groups can have more than 30,000 people or just 3 people, it depends on how many are interested in the topic or product. The groups can be made unlisted and by invite only and then you can see with whom you are talking to. Nonmembers can view anything written in the public and archived groups. This is a great way to see how your peers are doing with their product.

Learn more about chatter groups at brainly.com/question/4489111

#LearnwithBrainly

5 0
3 years ago
A site is underlain by a soil that has a unit weight of 118 lb/ft3. From laboratory shear strength tests that closely simulated
Rzqust [24]

Answer: the shear strength at a depth of 12 ft is 1034.9015 lb/ft²

Explanation:

Given that;

Weight of soil r = 118 lb/ft³

stress parameter C = 250 lb/ft²

φ total = 29°

depth Z = 12 ft

The shear strength on a horizontal plane at a depth of 12ft

ζ = C + δtanφ

where δ = normal stress

normal stress δ = r × z = 118 × 12 = 1416

so

ζ = C + δtanφ

ζ = 250 + 1416(tan29°)

ζ = 250 + 1416(tan29°)

ζ = 250 + 784.9016

ζ = 1034.9015 lb/ft²

Therefore the shear strength at a depth of 12 ft is 1034.9015 lb/ft²

7 0
3 years ago
A common process for increasing the moisture content of air is to bubble it through a column of water. The air bubbles are assum
Tamiku [17]

Answer:

See the attached file for the answers.

Explanation:

Find attached of the explanation

4 0
3 years ago
Other questions:
  • What is productivity as it relates to labor?
    11·1 answer
  • When a group of firms chooses to work together to turn a non-monopoly market into a monopoly market by securing formal agreement
    8·1 answer
  • For a steel alloy it has been determined that a carburizing heat treatment of 11-h duration will raise the carbon concentration
    12·1 answer
  • A very specific part of the population is called a
    6·1 answer
  • A completely reversible heat pump produces heat ata rate of 300 kW to warm a house maintained at 24°C. Theexterior air, which is
    6·1 answer
  • What is the output of the following program fragment. Choose appropriate data-types of variables to match output.
    10·1 answer
  • The Eads Bridge, which crosses the Mississippi River near St Louis, Missouri, was one of the first all steel bridges built in th
    8·1 answer
  • write down your own definition of Engineering, preferably in 4-5 sentences. Maximum of 150 words for your definition???.​
    12·1 answer
  • The driver should be able to see the ground within _____ to the front?
    14·1 answer
  • A machine has an efficiency of 15%. If the energy input is 300 joules, how much useful energy is generated?(1 point).
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!