1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
andreyandreev [35.5K]
3 years ago
15

Which statement is true about the future of space travel?

Engineering
1 answer:
WINSTONCH [101]3 years ago
6 0
Pls teach me more on this
You might be interested in
A three-phase wye-connected synchronous generator supplies a network through a transmission line. The network can absorb or deli
Amanda [17]

Answer:

the graph and the answer can be found in the explanation section

Explanation:

Given:

Network rated voltage = 24 kV

Impedance of network = 0.07 + j0.5 Ω/mi, 8 mi

Rn = 0.07 * 8 = 0.56 Ω

Xn = 0.5 * 8 = 4 Ω

If the alternator terminal voltage is equal to network rated voltage will have

Vt = 24 kV/√3 = 13.85 kV/phase

The alternative current is

I_{a} =\frac{40x10^{6} }{\sqrt{3}*24x10^{3}  } =926.2A

X_{s} =0.85\frac{13.85}{926.2} =12.7ohm

The impedance Zn is

\sqrt{0.56^{2}+4^{2}  } =4.03ohm

The voltage drop is

I_{a} *Z_{n} =926.2*4.03=3732.58V

r_{dc} =\frac{voltage}{2*current} =\frac{13.85}{2*926.2} =7.476ohm

rac = 1.2rdc = 1.2 * 7.476 = 8.97 Ω

The effective armature resistance is

Z_{s} =\sqrt{R_{a}^{2}+X_{s}^{2}    } =\sqrt{8.97^{2}+12.7^{2}  } =15.55ohm

The induced voltage for leading power factor is

E_{F} ^{2} =OB^{2} +(BC-CD)^{2}

if cosθ = 0.5

E_{F} =\sqrt{(13850*0.5)^{2}+(\frac{3741}{2}-926.2*12.7)^{2}   } =11937.51V

if cosθ= 0.6

EF = 12790.8 V

if cosθ = 0.7

EF = 13731.05 V

if cosθ = 0.8

EF = 14741.6 V

if cosθ = 0.9

EF = 15809.02 V

if cosθ = 1

EF = 13975.6 V

The voltage regulation is

\frac{E_{F}-V_{t}  }{V_{t} } *100

For each value:

if cosθ = 0.5

voltage regulation = -13.8%

if cosθ = 0.6

voltage regulation = -7.6%

if cosθ = 0.7

voltage regulation = -0.85%

if cosθ = 0.8

voltage regulation = 6.4%

if cosθ = 0.9

voltage regulation = 14%

if cosθ = 1

voltage regulation = 0.9%

the graph is shown in the attached image

for 10% of regulation the power factor is 0.81

8 0
3 years ago
I am having trouble understanding how I got these wrong on my test. Is there something I am missing with xor?
GuDViN [60]

Answer:

  your answer is correct

Explanation:

You have the correct mapping from inputs to outputs. The only thing your teacher may disagree with is the ordering of your inputs. They might be written more conventionally as ...

 A B Y

 0 0 1

 0 1 0

 1 0 0

 1 1 1

That is, your teacher may be looking for the pattern 1001 in the last column without paying attention to what you have written in column B.

8 0
3 years ago
The second programming project involves writing a program that accepts an arithmetic expression of unsigned integers in postfix
Tpy6a [65]

Answer:

Explanation:

Note: In case of any queries, just comment in box I would be very happy to assist all your queries

SourceCode:

// MyGUI.java:

// Import packages

import java.awt.FlowLayout;

import java.awt.GridLayout;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

import java.util.EmptyStackException;

import java.util.Stack;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JTextField;

import javax.swing.SwingConstants;

// Declaare and define the class MyGUI

abstract class MyGUI extends JFrame implements ActionListener {

JTextField userInput;

JLabel inputDescLbl, resultLbl;

JPanel inputPanel, resultPanel;

JButton evlBtn;

Stack<Object> stk;

// Define the constructor MyGUI

MyGUI() {

super("Tree Address Generator");

inputPanel = new JPanel(new FlowLayout());

resultPanel = new JPanel(new FlowLayout());

setLayout(new GridLayout(2, 1));

userInput = new JTextField(20);

inputDescLbl = new JLabel("Enter Postfix Expression:");

evlBtn = new JButton("Construct Tree");

evlBtn.addActionListener(this);

resultLbl = new JLabel("Infix Expression:", SwingConstants.LEFT);

add(inputPanel);

add(resultPanel);

inputPanel.add(inputDescLbl);

inputPanel.add(userInput);

inputPanel.add(evlBtn);

resultPanel.add(resultLbl);

stk = new Stack<Object>();

}

}

//Stack.java:

// Declare and define the class Stack

class Stack {

private int[] a;

private int top, m;

public Stack(int max) {

m = max;

a = new int[m];

top = -1; }

public void push(int key) {

a[++top] = key; }

public int pop() {

return (a[top--]); }

}

// Declare and define the class Evaluation()

class Evaluation {

public int calculate(String s) {

int n, r = 0;

n = s.length();

Stack a = new Stack(n);

for (int i = 0; i < n; i++) {

char ch = s.charAt(i);

if (ch >= '0' && ch <= '9')

a.push((int) (ch - '0'));

else if (ch == ' ')

continue;

else {

int x = a.pop();

int y = a.pop();

switch (ch) {

case '+':

r = x + y;

break;

case '-':

r = y - x;

break;

case '*':

r = x * y;

break;

case '/':

r = y / x;

break;

default:

r = 0;

}

a.push(r);

}

}

r = a.pop();

return (r);

}

}

// PostfixToInfix.java:

// Import packages

import java.util.Scanner;

import java.util.Stack;

// Declare and define the class PostfixToInfix

class PostfixToInfix {

// Determine whether the character entered is an operator or not

private boolean isOperator(char c) {

if (c == '+' || c == '-' || c == '*' || c == '/' || c == '^')

return true;

return false;

}

// Declare and define the convert()

public String convert(String postfix) {

Stack<String> s = new Stack<>();

for (int i = 0; i < postfix.length(); i++) {

char c = postfix.charAt(i);

if (isOperator(c)) {

String b = s.pop();

String a = s.pop();

s.push("(" + a + c + b + ")");

} else

s.push("" + c);

}

return s.pop();

}

// Program starts from main()

public static void main(String[] args) {

PostfixToInfix obj = new PostfixToInfix();

Scanner sc = new Scanner(System.in);

// Prompt the user to enter the postfix expression

System.out.print("Postfix : ");

String postfix = sc.next();

// Display the expression in infix expression

System.out.println("Infix : " + obj.convert(postfix));

}

}

Output:

e Console X terminated PostfixTolnfix [Java Application] C:\Program Files\Java\jrel.8.0_121\bin\javaw.exe Postfix : ABD++C-D/ .

3 0
3 years ago
Four common causes of product failure are poor design, poor construction, poorly communicated operating instructions, and ______
Inga [223]

Answer:

B. operator error or misuse

Explanation:

A product is a failure if it is not able to achieve the anticipated life cycle as expected by the organization.

In such a case, there is a withdrawal of the product from the market as a result of its ultimate failure of a product to achieve profitability.

Four common causes of product failure are poor design, poor construction, poorly communicated operating instructions, and <u>operator error or misuse</u>

3 0
3 years ago
Drilling creates vertical holes in a workpiece, while milling can machine complex 3d surfaces along with simple horizontal and v
ra1l [238]

Answer:

True

Explanation:

7 0
3 years ago
Read 2 more answers
Other questions:
  • Water vapor at 6 MPa, 500°C enters a turbine operating at steady state and expands to 20 kPa. The mass flow rate is 3 kg/s, and
    8·1 answer
  • Policy makers in the U.S. government have long tried to write laws that encourage growth in per capita real GDP. These laws typi
    6·1 answer
  • Define the Problem
    11·1 answer
  • IN JAVA,
    6·1 answer
  • W<br>n só<br>i<br>Eo<br>E<br>find the transfer function​
    9·1 answer
  • A metal shear can be used to cut flat stock , round stock , channel iron and which of the following?
    15·1 answer
  • Which work practice should be followed to best prevent the ingestion of chemicals?
    7·1 answer
  • To understand the concept of moment of a force and how to calculate it using a scalar formulation.
    9·1 answer
  • How buy airpods in my phone​
    7·2 answers
  • Write down about the water source selection criteria​
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!