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
german
3 years ago
14

A cross beam in a highway bridge experiences a stress of 14 ksi due to the dead weight of the bridge structure. When a fully loa

ded tractor-trailer crosses over the bridge, however, the stress in the beam increases to 45 ksi. The beam is fabricated from steel with an ultimate tensile strength of 76 ksi, a yield strength of 50 ksi, and an endurance limit of 38 ksi. Find the safety factor for an infinite fatigue life:
a. if the effect of mean stress on fatigue strength is ignored
b. when the effect of mean stress on fatigue strength is considered.
Engineering
1 answer:
zlopas [31]3 years ago
8 0

Answer:

a) 2.452

b) 1.256

Explanation:

Stress due to dead weight. = 14 Ksi

Stress due to fully loaded tractor-trailer = 45Ksi

ultimate tensile strength of beam = 76 Ksi

yield strength = 50 Ksi

endurance limit = 38 Ksi

Determine the safety factor for an infinite fatigue life

a) If mean stress on fatigue strength is ignored

β = ( 45 - 14 ) / 2

  = 15.5 Ksi

hence FOS ( factor of safety ) = endurance limit / β

                                                 = 38 / 15.5 = 2.452

b) When mean stress on fatigue strength is considered

β2 = 45 + 14 / 2

    = 29.5 Ksi

Ratio  = β / β2 = 15.5 / 29.5 = 0.5254

Next step: applying Goodman method

Sa =  [ ( 0.5254 * 38 *76 ) / ( 0.5254*76 + 38 ) ]

     = 19.47 Ksi

hence the FOS ( factor of safety ) = Sa / β

                                                      = 19.47 / 15.5 = 1.256

You might be interested in
1. The construction process begins with which of the following stages?
Firdavs [7]

Answer:

c) site preparation

Explanation:

A construction process can be defined as a series of important physical events (processes) that must be accomplished during the execution of a construction project.

Generally, in the construction of any physical asset such as offices, hospitals, schools, stadiums etc, the first step of the construction process is site preparation. Site preparation refers to processes such as clearing, blasting, levelling, landfilling, surveying, cutting, excavating and demolition of all unwanted objects on a piece of land, so as to make it ready for use.

This ultimately implies that, site preparation should be the first task to be accomplished in the construction process.

Hence, the construction process typically begins with site preparation before other activities such as the laying of foundation can be done.

Additionally, construction costs can be defined as the overall costs associated with the development of a built asset, project or property. The construction costs is classified into two (2) main categories and these are; capital and operational costs.

7 0
3 years ago
Is my paper's main idea, or thesis, clearly stated early on (within the first paragraph, ideally)?
Burka [1]
I dont know is your papers main idea stated clearly?
5 0
3 years ago
This assignment is designed to test your understanding of graphical user interface components and Event Driven programming in Ja
lys-0071 [83]

Answer:

Java program is given below

Explanation:

JavaPadGUI.java

package javapad.gui;

import java.awt.BorderLayout;

import java.awt.Container;

import java.awt.Dimension;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.WindowAdapter;

import java.awt.event.WindowEvent;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.PrintWriter;

import java.util.Scanner;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JScrollPane;

import javax.swing.JTextArea;

public class JavaPadGUI extends JFrame implements ActionListener{

  //constants

  private static final String TITLE = "Macrosoft JavaPad XP";

  private static final String SLOGAN = "Macrosoft: Resistance is futile";

 

  //button names

  private static final String NEW = "New";

  private static final String LOAD = "Load";

  private static final String SAVE = "Save";

  private static final String QUIT = "Quit";

 

  private static final String FILENAME = "hardcode.txt";

  //messages

 

  private static final String QUIT_MSG = "Quitting, Save?";

  private static final String LOAD_ERR = "Could not access file " + FILENAME;

 

 

  //fields

  private JTextArea txtContent;

  private JButton butNew, butLoad, butSave, butQuit;

 

  public JavaPadGUI()

  {

      super(TITLE);

      createUI();

      setSize(new Dimension(400, 300));

      setDefaultCloseOperation(EXIT_ON_CLOSE);

         

  }

 

  private void createUI()

  {

      Container c = getContentPane();

      c.setLayout(new BorderLayout(30,30));

     

      //create the buttons panel

      JPanel butPanel = new JPanel();

      butPanel.add(butNew = new JButton(NEW));

      butPanel.add(butLoad = new JButton(LOAD));

      butPanel.add(butSave = new JButton(SAVE));

      butPanel.add(butQuit = new JButton(QUIT));

     

      //set command names for the buttons, these will be when button is clicked

      butNew.setActionCommand(NEW);

      butLoad.setActionCommand(LOAD);

      butSave.setActionCommand(SAVE);

      butQuit.setActionCommand(QUIT);

     

      JPanel sloganPanel = new JPanel();

      sloganPanel.add(new JLabel(SLOGAN));

     

      //create textarea with scrollbar

      txtContent = new JTextArea(15, 25);

      txtContent.setLineWrap(true);

         

      JScrollPane scroll = new JScrollPane(txtContent);

     

      //now add all components

      c.add(butPanel, BorderLayout.NORTH);

      c.add(scroll, BorderLayout.CENTER);

      c.add(sloganPanel, BorderLayout.SOUTH);

     

     

      //set the actionlistner to buttons to handle button click event

      butNew.addActionListener(this);

      butLoad.addActionListener(this);

      butSave.addActionListener(this);

      butQuit.addActionListener(this);

     

  }

  public void actionPerformed(ActionEvent e)

  {

      String cmd = e.getActionCommand();

      if(cmd.equals(NEW))

          txtContent.setText("");

      else if (cmd.equals(LOAD))

          load();

      else if(cmd.equals(SAVE))

          save();

      else if (cmd.equals(QUIT))

          quit();

  }

  private void quit()

  {

      int option = JOptionPane.showConfirmDialog(this, QUIT_MSG);

      if(option == JOptionPane.YES_OPTION)

      {

          save();

      }

     

      System.exit(0);

  }

 

  private void save()

  {

      try {

          PrintWriter w = new PrintWriter(new File(FILENAME));

          w.write(txtContent.getText());

          w.close();

      } catch (FileNotFoundException e) {

          JOptionPane.showMessageDialog(this,"I/O Error", LOAD_ERR, JOptionPane.ERROR_MESSAGE);

      }

             

  }

  private void load()

  {

      try {

          Scanner s = new Scanner(new File(FILENAME));

          String str = "";

          while(s.hasNextLine())

              str += s.nextLine();

          txtContent.setText(str);

          s.close();

      } catch (FileNotFoundException e) {

          JOptionPane.showMessageDialog(this, LOAD_ERR, "I/O Error",JOptionPane.ERROR_MESSAGE);

      }

     

  }

}

RunJavaPad.java

package javapad;

import javapad.gui.JavaPadGUI;

public class RunJavaPad {

  public static void main(String[] args) {

      JavaPadGUI gui = new JavaPadGUI();

      gui.setVisible(true);

  }

}

7 0
3 years ago
O que é necessário se conhecer para a determinação de uma força concentrada em um ponto?
skelet666 [1.2K]

Answer: its c

Explanation:

7 0
3 years ago
Ann’s Retail, a women’s clothing store, hires female attendants to assist clients in the store’s dressing rooms. Larry, a male,
mojhsa [17]

Answer:

A bona fide occupational qualification defense

Explanation:

Since the store is for women clothing, the retail may prefer to employ only female to assist the customers.  Under a bona fide occupational qualification defense, an employer is allowed to discriminate if a characteristic is a necessity for the performance of the job and for the business. Therefore, the store has a bona fide occupational qualification defense.

3 0
3 years ago
Other questions:
  • Ammonia gas is diffusing at a constant rate through a layer of stagnant air 1 mm thick. Conditions are such that the gas contain
    14·1 answer
  • Sed is a multipurpose tool that combines the work of several filters. sed performs noninteractive operations on a data stream. s
    12·1 answer
  • How to get on your screen on 2k20 in every mode
    15·2 answers
  • 3.24 Program: Drawing a half arrow (Java) This program outputs a downwards facing arrow composed of a rectangle and a right tria
    12·1 answer
  • Consider a single crystal of nickel oriented such that a tensile stress is applied along a [001] direction. If slip occurs on a
    6·1 answer
  • What are the relevance of report writing
    9·1 answer
  • Okay bro let’s go man yes yes
    9·2 answers
  • ¿Cómo llevan a cabo el lavado ropa?​
    8·1 answer
  • How buy airpods in my phone​
    7·2 answers
  • For some metal alloy, the following engineering stresses produce the corresponding engineering plastic strains prior to necking.
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!