Answer:
diameter is 14 mm
Explanation:
given data
power = 15 kW
rotation N = 1750 rpm
factor of safety = 3
to find out
minimum diameter
solution
we will apply here power formula to find T that is
power = 2π×N×T / 60 .................1
put here value
15 ×
= 2π×1750×T / 60
so
T = 81.84 Nm
and
torsion = T / Z ..........2
here Z is section modulus i.e = πd³/ 16
so from equation 2
torsion = 81.84 / πd³/ 16
so torsion = 416.75 / / d³ .................3
so from shear stress theory
torsion = σy / factor of safety
so here σy = 530 for 1020 steel
so
torsion = σy / factor of safety
416.75 / d³ = 530 ×
/ 3
so d = 0.0133 m
so diameter is 14 mm
Explanation:
Instantaneous center:
It is the center about a body moves in planer motion.The velocity of Instantaneous center is zero and Instantaneous center can be lie out side or inside the body.About this center every particle of a body rotates.
From the diagram
Where these two lines will cut then it will the I-Center.Point A and B is moving perpendicular to the point I.
If we take three link link1,link2 and link3 then I center of these three link will be in one straight line It means that they will be co-linear.

Answer:
EH buddy use a sparkplug use a drill through a hose im from da bronx
Explanation:
Seriously? Ok
first, get some good quality metal, preferably aluminum, if you want to avoid rust.
build in the the shape of a robot, you can use a doll to help you if you are a beginner, but feel free to shape it the a Star Wars Character!
create an AI (now you said robot not AI) and fix everything up.
Answer:
import java.util.*;
public class Main {
public static void main(String[] args) {
double milesPerGallon = 0;
int totalMiles = 0;
int totalGallons = 0;
double totalMPG = 0;
Scanner input = new Scanner(System.in);
while(true){
System.out.print("Enter the miles driven: ");
int miles = input.nextInt();
if(miles <= 0)
break;
else{
System.out.print("Enter the gallons used: ");
int gallons = input.nextInt();
totalMiles += miles;
totalGallons += gallons;
milesPerGallon = (double) miles/gallons;
totalMPG = (double) totalMiles / totalGallons;
System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);
System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);
}
}
}
}
Explanation:
Initialize the variables
Create a while loop that iterates until the specified condition is met inside the loop
Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.