Answer:
Tmax= 46.0 lb-in
Explanation:
Given:
- The diameter of the steel rod BC d1 = 0.25 in
- The diameter of the copper rod AB and CD d2 = 1 in
- Allowable shear stress of steel τ_s = 15ksi
- Allowable shear stress of copper τ_c = 12ksi
Find:
Find the torque T_max
Solution:
- The relation of allowable shear stress is given by:
τ = 16*T / pi*d^3
T = τ*pi*d^3 / 16
- Design Torque T for Copper rod:
T_c = τ_c*pi*d_c^3 / 16
T_c = 12*1000*pi*1^3 / 16
T_c = 2356.2 lb.in
- Design Torque T for Steel rod:
T_s = τ_s*pi*d_s^3 / 16
T_s = 15*1000*pi*0.25^3 / 16
T_s = 46.02 lb.in
- The design torque must conform to the allowable shear stress for both copper and steel. The maximum allowable would be:
T = min ( 2356.2 , 46.02 )
T = 46.02 lb-in
Answer:
Explanation:
In this problem you need to define the force that acts upon a beam in a 3 point bending problem. I put a picture of the problem taken from Wikipedia:
In this problem the flexural strength is defined with the following formula:
where F is the force applied, L the length between the two rods, b the width of the ceramic block and d it's height.
The force is then defined as:
Answer:
True ❤️
-Solid by solid can make Cylindrical wire doubles Strengths in tension
Answer:
- using System;
- public class Program
- {
- public static void Main()
- {
- Console.WriteLine("Enter number of students: ");
- int num = Convert.ToInt32(Console.ReadLine());
- string [] firstName = new string[num];
- string [] lastName = new string[num];
-
- for(int i=0 ; i < num; i++){
- Console.WriteLine("Enter first name: ");
- firstName[i] = Console.ReadLine();
-
- Console.WriteLine("Enter last name: ");
- lastName[i] = Console.ReadLine();
- }
-
- for(int j=0; j < num; j++){
- Console.WriteLine(lastName[j] + "," + firstName[j]);
- }
- }
- }
Explanation:
Firstly, prompt user to enter number of student to be stored (Line 6- 7). Next, create two array, firstName and lastName with num size (Line 8-9).
Create a for-loop to repeat for num times and prompt user to enter first name and last name and then store them in the firstName and lastName array, respectively (Line 11 - 17).
Create another for loop to traverse through the lastName and firstName array and display the last name and first name by following the format given in the question (Line 19 - 21).
A type of shoot in which continuous lighting used is: 1) studio.
<h3>What is a photoshoot?</h3>
A photoshoot simply refers to a photography session which typically involves the use of digital media equipment such as a camera, to take series of pictures (photographs) of models, group, things or places, etc., especially by a professional photographer.
<h3>The types of shoot.</h3>
Basically, there are four main type of shoot and these include the following:
In photography, a type of shoot in which continuous lighting used is studio because it enhances the photographs.
Read more on photography here: brainly.com/question/24582274
#SPJ1