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
shusha [124]
3 years ago
13

At the instant shown, slider block B is moving with a constant acceleration, and its speed is 150 mm/s. Knowing that after slide

r block A has moved 240 mm to the right its velocity is 60 mm/s, determine (a) the accelerations of A and B, (b) the acceleration of portion D of the cable, (c) the velocity and change in position of slider block B after 4 s.

Engineering
1 answer:
Xelga [282]3 years ago
4 0

Answer:

a) aA = - 13.33 mm/s²

aB = - 20 mm/s²

b) aD = - 13.33 mm/s²

c) vB = 70 mm/s

d) xB = 440 mm

Explanation:

Given

The initial speed of B is: v₀B = 150 mm/s

Distance moved by A is: xA = 240 mm

Velocity of A is: vA = 60 mm/s

Assuming:

Displacement of blocks are denoted by:

A = xA

B = xB

C = xC

D = xD

From the pic shown, the total length of the cable is:

xB + (xB - xA) + 2*(d - xA) = L

⇒ 2*xB - 3*xA = L - 2*d

where L - 2*d is constant. Differentiating the above equation with respect to time:

d(2*xB)/dt - d(3*xA)/dt = 0

⇒ 2*vB - 3*vA = 0    (i)

Substituting in equation (i)

2*(150 mm/s) - 3*vA = 0

⇒ v₀A = 100 mm/s  (initial speed of A)

Then, we use the equation

vA² = v₀A² + 2*aA*xA

Substituting the values in above equation:

(60 mm/s)² = (100 mm/s)² + 2*aA*(240 mm)

⇒ aA = - 13.33 mm/s²

If  2*vB - 3*vA = 0

Differentiating the above equation with respect to time:

d(2*vB)/dt - d(3*vA)/dt = 0

⇒ 2*aB - 3*aA = 0    (ii)

Substituting in equation (ii)

2*aB - 3*(- 13.33 mm/s²) = 0

⇒ aB = - 20 mm/s²

b) From the pic shown,

xD - xA = constant

If we apply

d(xD)/dt - d(xA)/dt = 0

⇒ vD - vA = 0

then

d(vD)/dt - d(vA)/dt = 0

⇒ aD - aA = 0

⇒ aD = aA = - 13.33 mm/s²

c) We use the formula

vB = v₀B + aB*t

Substituting the values in above equation:

vB = 150 mm/s + (- 20 mm/s²)*(4 s)

⇒ vB = 70 mm/s

d) We apply the equation

xB = v₀B*t + 0.5*aB*t²

Substituting the values in above equation:

xB = (150 mm/s)*(4 s) + 0.5*(- 20 mm/s²)*(4 s)²

⇒ xB = 440 mm

You might be interested in
What is an OTG USB? how is it useful ​
antoniya [11.8K]

Answer:

An OTG or On The Go adapter (sometimes called an OTG cable, or OTG connector) allows you to connect a full sized USB flash drive or USB A cable to your phone or tablet through the Micro USB or USB-C charging port

Explanation:

pls mark brainliest

5 0
2 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
2 years ago
According to the model rules section 240.15, rules of professional conduct, licensed professional engineers are obligated to:___
Sedaia [141]

Answer:

Option C (practice by..............technical) would be the appropriate choice.

Explanation:

  • A prerogative seems to be the discipline or nature of the design process to ensure.
  • All certificates must, therefore, throughout compliance with current requirements including professional competence, express one's right and privilege of providing offers perhaps throughout the areas of qualified professionals.

Some other alternatives that are given aren't connected to a particular scenario. But that's the best solution above.

7 0
3 years ago
User Location: Inside Viewport Viewport Location: Fresh Viewport in downtown San Fransisco, California Query: [Burger King] Resu
8_murik_8 [283]

Answer:

Steps should you take to rate this result are

  • Check the pin location.
  • Check the official website for the address .
  • Check if there are closer results that we are not returning.
4 0
3 years ago
A 2 m3 rigid tank initially contains air at 100 kPa and 22 degrees C. The tank is connected to a supply line through a valve. Ai
Vaselesa [24]

Answer:

a. 9.58kgs b. 340.32KJ

Explanation:

Volume of tank= 2m³

Initial Pressure Pi= 100KPa

Initial Temperature Ti= 22 C= 295K

Line Pressure P₁= 600 KPa

Line Temperature T= 22 C= 295K

Final Pressure P2= 600 KPa

Final Temperature T2= 77 C= 350K

Use Ideal Gas Equation

PV= mRT

P₁V₁= m₁RT₁

m₁= (100 x 2)/(0.287 x 295) = 2.3622kg

P₂V₂= m₂RT₂

m₂= (600 x 2)/(0.287 x 350) = 11.946 kg

Since valve is closed and no mass leave

m₁ + mi = m₂ + me

as per above condition me= 0

mi= m₂ - m₁ = 11.946 - 2.3622 = 9.5838kg

Applying energy equation

m₁u₁ + mihi + Q = m₂u₂ + mehe + W

me and W=0

m₁u₁ + mihi + Q = m₂u₂

m₁CvT₁ + miCpTi + Q =  m₂CvT₂

Q =   m₂CvT₂- m₁CvT₁ - miCpTi

Q = (11.946 x 0.717 350) - (2.3622 x 0.717 x 295) - (9.5868 x 1.004 x 295)

Q = -340.321 KJ (Negative sign doesn't matter as energy is not a vector quantity)

4 0
3 years ago
Other questions:
  • (3) In the following power system, the transformer is assumed to be ideal. Determine the: a) currents and voltages across each i
    9·1 answer
  • A process engineer performed jar tests for a water in order to determine the optimal pH and dose using alum. A test was conducte
    13·1 answer
  • A 1 m wide continuous footing is designed to support an axial column load of 250 kN per meter of wall length. The footing is pla
    11·1 answer
  • Why do many sources of water need treatment
    10·1 answer
  • A 50 mol% mixture of propane (1) and n-butane (2) enters an isothermal flash drum at 37°C. If the flash drum is maintained at 0.
    12·1 answer
  • Water flows through a converging pipe at a mass flow rate of 25 kg/s. If the inside diameter of the pipes sections are 7.0 cm an
    13·1 answer
  • You are using a Jupyter Notebook to explore data in a DataFrame named productDF. You want to write some inline SQL by using the
    8·1 answer
  • Can I get an answer to this question please
    11·1 answer
  • What is the name of the first federation vessel in star trek hint 17?
    15·1 answer
  • Design a program that calculates the area and circumstance of rectangle?​
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!