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
SSSSS [86.1K]
4 years ago
11

Following in each of the following three mechanisms, the crank is the input link, 1) draw vectors with labeled angles 2) write t

he lop closure equation/vector equation in exponential form. 3) solve the unknown variables

Engineering
1 answer:
elena-14-01-66 [18.8K]4 years ago
8 0

<u>Explanation:</u>

1.\theta_{4}=90^{\circ}, \theta_{1}=\theta^{\circ} (diagram)

2.

vector loop equation is

\overline{R_{1}}+\overline{R_{2}}+\overline{R_{3}}=\overline{R_{4}}\\

the exponential form,

r_{1} e^{j \exp (0)}+r_{2} e^{j \theta_{2}}+r_{3} e^{j \theta_{3}}=r_{4} e^{j(90)}

e=\cos \theta+j \sin \theta

3.

Real part,r_{1}+\ r_{2} \cos \theta_{2}+\ r_{3} \cos \theta_{3}=0   (i)

Imaginary part,0+r_{2} \sin \theta_{2}+r_{3} \sin \theta_{3}=r_{4}     (ii)

From above equation,we get unknown variables,

Now,\theta_{2}, \theta_{3} \& r_{4}

If \theta_{2} is given,

From (i), \theta_{3}=\cos ^{-1}\left(\frac{-r_{1}-r_{2} \cos \theta_{2}}{r_{3}}\right)

and from (ii), we get

x_{4}=r_{2} \sin \theta_{2}+r_{3} \sin \left[\cos ^{-1}\left(\frac{-\gamma_{1}-r_{2} \cos \theta_{2}}{r_{3}}\right)\right]

You might be interested in
What is your fav movie? mine is truth or dare.
Svetach [21]
My favorite movie is rundown for sure
3 0
3 years ago
Read 2 more answers
1 point
11Alexandr11 [23.1K]

I think the orange thing on the gun but i dont know what principle it is but i think its c

Explanation:

Whem you press the orange thing it starts to work

5 0
3 years ago
2=333=3= im single text in comment
sasho [114]
Heyyyyyyyyyyyyyyyyyyyyyyy
6 0
3 years ago
Read 2 more answers
Please Help It's a lot I'm sorry. =(
kow [346]

it the first one hope this helps

8 0
3 years ago
Read 2 more answers
More discussion about seriesConnect(Ohm) function In your main(), first, construct the first circuit object, called ckt1, using
STALIN [3.7K]

Answer:

resistor.h

//circuit class template

#ifndef TEST_H

#define TEST_H

#include<iostream>

#include<string>

#include<vector>

#include<cstdlib>

#include<ctime>

#include<cmath>

using namespace std;

//Node for a resistor

struct node {

  string name;

  double resistance;

  double voltage_across;

  double power_across;

};

//Create a class Ohms

class Ohms {

//Attributes of class

private:

  vector<node> resistors;

  double voltage;

  double current;

//Member functions

public:

  //Default constructor

  Ohms();

  //Parameterized constructor

  Ohms(double);

  //Mutator for volatage

  void setVoltage(double);

  //Set a resistance

  bool setOneResistance(string, double);

  //Accessor for voltage

  double getVoltage();

  //Accessor for current

  double getCurrent();

  //Accessor for a resistor

  vector<node> getNode();

  //Sum of resistance

  double sumResist();

  //Calculate current

  bool calcCurrent();

  //Calculate voltage across

  bool calcVoltageAcross();

  //Calculate power across

  bool calcPowerAcross();

  //Calculate total power

  double calcTotalPower();

  //Display total

  void displayTotal();

  //Series connect check

  bool seriesConnect(Ohms);

  //Series connect check

  bool seriesConnect(vector<Ohms>&);

  //Overload operator

  bool operator<(Ohms);

};

#endif // !TEST_H

resistor.cpp

//Implementation of resistor.h

#include "resistor.h"

//Default constructor,set voltage 0

Ohms::Ohms() {

  voltage = 0;

}

//Parameterized constructor, set voltage as passed voltage

Ohms::Ohms(double volt) {

  voltage = volt;

}

//Mutator for volatage,set voltage as passed voltage

void Ohms::setVoltage(double volt) {

  voltage = volt;

}

//Set a resistance

bool Ohms::setOneResistance(string name, double resistance) {

  if (resistance <= 0){

      return false;

  }

  node n;

  n.name = name;

  n.resistance = resistance;

  resistors.push_back(n);

  return true;

}

//Accessor for voltage

double Ohms::getVoltage() {

  return voltage;

}

//Accessor for current

double Ohms::getCurrent() {

  return current;

}

//Accessor for a resistor

vector<node> Ohms::getNode() {

  return resistors;

}

//Sum of resistance

double Ohms::sumResist() {

  double total = 0;

  for (int i = 0; i < resistors.size(); i++) {

      total += resistors[i].resistance;

  }

  return total;

}

//Calculate current

bool Ohms::calcCurrent() {

  if (voltage <= 0 || resistors.size() == 0) {

      return false;

  }

  current = voltage / sumResist();

  return true;

}

//Calculate voltage across

bool Ohms::calcVoltageAcross() {

  if (voltage <= 0 || resistors.size() == 0) {

      return false;

  }

  double voltAcross = 0;

  for (int i = 0; i < resistors.size(); i++) {

      voltAcross += resistors[i].voltage_across;

  }

  return true;

}

//Calculate power across

bool Ohms::calcPowerAcross() {

  if (voltage <= 0 || resistors.size() == 0) {

      return false;

  }

  double powerAcross = 0;

  for (int i = 0; i < resistors.size(); i++) {

      powerAcross += resistors[i].power_across;

  }

  return true;

}

//Calculate total power

double Ohms::calcTotalPower() {

  calcCurrent();

  return voltage * current;

}

//Display total

void Ohms::displayTotal() {

  for (int i = 0; i < resistors.size(); i++) {

      cout << "ResistorName: " << resistors[i].name << ", Resistance: " << resistors[i].resistance

          << ", Voltage_Across: " << resistors[i].voltage_across << ", Power_Across: " << resistors[i].power_across << endl;

  }

}

//Series connect check

bool Ohms::seriesConnect(Ohms ohms) {

  if (ohms.getNode().size() == 0) {

      return false;

  }

  vector<node> temp = ohms.getNode();

  for (int i = 0; i < temp.size(); i++) {

      this->resistors.push_back(temp[i]);

  }

  return true;

}

//Series connect check

bool Ohms::seriesConnect(vector<Ohms>&ohms) {

  if (ohms.size() == 0) {

      return false;

  }

  for (int i = 0; i < ohms.size(); i++) {

      this->seriesConnect(ohms[i]);

  }

  return true;

}

//Overload operator

bool Ohms::operator<(Ohms ohms) {

  if (ohms.getNode().size() == 0) {

      return false;

  }

  if (this->sumResist() < ohms.sumResist()) {

      return true;

  }

  return false;

}

main.cpp

#include "resistor.h"

int main()

{

   //Set circuit voltage

  Ohms ckt1(100);

  //Loop to set resistors in circuit

  int i = 0;

  string name;

  double resistance;

  while (i < 3) {

      cout << "Enter resistor name: ";

      cin >> name;

      cout << "Enter resistance of circuit: ";

      cin >> resistance;

      //Set one resistance

      ckt1.setOneResistance(name, resistance);

      cin.ignore();

      i++;

  }

  //calculate totalpower and power consumption

  cout << "Total power consumption = " << ckt1.calcTotalPower() << endl;

  return 0;

}

Output

Enter resistor name: R1

Enter resistance of circuit: 2.5

Enter resistor name: R2

Enter resistance of circuit: 1.6

Enter resistor name: R3

Enter resistance of circuit: 1.2

Total power consumption = 1886.79

Explanation:

Note

Please add all member function details.Its difficult to figure out what each function meant to be.

8 0
3 years ago
Other questions:
  • Using the data given below, calculate the drop in the temperature of molten aluminum as it flows in a 15 cm long round channel o
    9·1 answer
  • In what way do you think the motorcycles perform<br> work?
    10·1 answer
  • A sky diver with a mass of 70 kg jumps from an aircraft. The aerodynamic drag force acting on the sky diver is known to be FD =k
    9·1 answer
  • The use of alcohol can cause
    6·2 answers
  • A cylindrical metal specimen having an original diameter of 12.8 mm (0.505 in.) and gauge length of 50.80 mm (2.000 in.) is pull
    9·1 answer
  • A cubic transmission casing whose side length is 25cm receives an input from the engine at a rate of 350 hp. If the vehicle's ve
    5·1 answer
  • Which of the following procedures best applies to assessing the embodied energy of a building?
    12·1 answer
  • Find I with superposition technique.
    5·1 answer
  • Which of the following is a correct version of a user story?
    8·1 answer
  • PLS HELP!!!
    5·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!