Answer:
a) 
b) attached below
c) type zero system
d) k > 
e) The gain K increases above % error as the steady state speed increases
Explanation:
Given data:
Motor voltage = 12 v
steady state speed = 200 rad/s
time taken to reach 63.2% = 1.2 seconds
<u>a) The transfer function of the motor from voltage to speed</u>
let ;
be the transfer function of a motor
when i/p = 12v then steady state speed ( k1 ) = 200 rad/s , St ( time constant ) = 1.2 sec
hence the transfer function of the motor from voltage to speed
= 
<u>b) draw the block diagram of the system with plant controller and the feedback path </u>
attached below is the remaining part of the detailed solution
c) The system is a type-zero system because the pole at the origin is zero
d) ) k > 
In order to create a robotic dog, you are needing the necessary parts to create Goddard from Jimmy nutreon boy genius
Answer:
80.7lbft/hr
Explanation:
Flow rate of water in the system = 3.6x10^-6
The height h = 100
1s = 1/3600h
This implies that
Q = 3.6x10^-6/[1/3600]
Q = 0.0000036/0.000278
Q = 0.01295
Then the power is given as
P = rQh
The specific weight of water = 62.3 lb/ft³
P = 62.3 x 0.01295 x 100
P = 80.675lbft/h
When approximated
P = 80.7 lbft/h
This is the average power that could be generated in a year.
This answers the question and also corresponds with the answer in the question.
Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number