Answer:
P = 80.922 KW
Explanation:
Given data;
Length of load arm is 900 mm = 0.9 m
Spring balanced read 16 N
Applied weight is 500 N
Rotational speed is 1774 rpm
we know that power is given as

T Torque = (w -s) L = (500 - 16)0.9 = 435.6 Nm
angular speed
Therefore Power is

P = 80.922 KW
Answer:
7.94 ft^3/ s.
Explanation:
So, we are given that the '''model will be 1/6 scale (the modeled valve will be 1/6 the size of the prototype valve)'' and the prototype flow rate is to be 700 ft3 /s. Then, we are asked to look for or calculate or determine the value for the model flow rate.
Note that we are to use Reynolds scaling for the velocity as par the instruction from the question above.
Therefore; kp/ks = 1/6.
Hs= 700 ft3 /s and the formula for the Reynolds scaling => Hp/Hs = (kp/ks)^2.5.
Reynolds scaling==> Hp/ 700 = (1/6)^2.5.
= 7.94 ft^3/ s
Answer:
Explanation:
The additional power consumption of the car when v :
35 mi/h = 0.464hp
70 mi/h = 3.71hp.
For the step by step explanation of how we arrived at these answers, please go through the attached files.
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).