Answer:
Exit velocity
m/s.
Explanation:
Given:
At inlet:

Properties of steam at 100 bar and 600°C

At exit:Lets take exit velocity 
We know that if we know only one property inside the dome then we will find the other property by using steam property table.
Given that dryness or quality of steam at the exit of nozzle is 0.85 and pressure P=80 bar.So from steam table we can find the other properties.
Properties of saturated steam at 80 bar

So the enthalpy of steam at the exit of turbine



Now from first law for open system

In the case of adiabatic nozzle Q=0,W=0

m/s
So Exit velocity
m/s.
Answer:
The result in terms of the local Reynolds number ⇒ Re = [μ_∞ · x] / v
Explanation:
See below my full workings so you can compare the results with those obtained from the exact solution.
Answer:
ur answer friend
Explanation:
answer
<em>S</em><em>o</em><em>l</em><em>i</em><em>d</em><em>-</em><em>F</em><em>u</em><em>e</em><em>l</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>a solid-propellant rocket or solid rocket is a rocket with a rocket engine that uses solid propellants. The earliest rockets were solid-fuel rockets powered by gunpowder; they were used in warfare by the Chinese, Indians, Mongols and Persians, as early as 13th century.
<em>L</em><em>i</em><em>q</em><em>u</em><em>i</em><em>d</em><em>-</em><em>F</em><em>u</em><em>e</em><em>l</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>a liquid-propellant rocket or liquid rocket utilizes a rocket engine that use liqiud propellants. An inert gas stored in a tank at a high pressure is sometimes used instead of pumps in simpler small engines to force the propellants into the combustion chamber.
<em>I</em><em>o</em><em>n</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>an ion thruster or ion drive is a form of electric propulsion used for spacecraft propulsion. It creates thrust by accelerating ions using electricity. The Deep Space 1 spacecraft, powered by an ion thruster, changed velocity by 4.3 km/s ( 9600 mph ) while consuming less than 74 kg ( 163 lb ) of xenon.
<em>P</em><em>l</em><em>a</em><em>s</em><em>m</em><em>a</em><em> </em><em>R</em><em>o</em><em>c</em><em>k</em><em>e</em><em>t</em><em> </em><em>-</em><em> </em>in this type of rocket, a combination of electric and magnetic fields are used to break down the atoms and molecules of a propellant gas into a collection of particles that have either a positive charge (ions) or a negative charge (electrons). In other words, the propellant gas becomes a plasma.
I think its helpful to you
Please mark as brainliest answer
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