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
maks197457 [2]
3 years ago
11

Your family has asked you to estimate the operating costs of your clothes dryer for the year. The clothes dryer in your home has

a power rating of 2250 W. To dry one typical load of clothes the dryer will run for approximately 45 minutes. In Ontario, the cost of electricity is $0.11/kWh. Calculate the costs to run the dryer for your family for one year.
Engineering
1 answer:
trasher [3.6K]3 years ago
8 0

Answer:

The costs to run the dryer for one year are $ 9.03.

Explanation:

Given that the clothes dryer in my home has a power rating of 2250 Watts, and to dry one typical load of clothes the dryer will run for approximately 45 minutes, and in Ontario, the cost of electricity is $ 0.11 / kWh, to calculate the costs to run the dryer for one year the following calculation must be performed:

1 watt = 0.001 kilowatt

2250/45 = 50 watts per minute

45 x 365 = 16,425 / 60 = 273.75 hours of consumption

50 x 60 = 300 watt = 0.3 kw / h

0.3 x 273.75 = 82.125

82.125 x 0.11 = 9.03

Therefore, the costs to run the dryer for one year are $ 9.03.

You might be interested in
Which of the following would NOT be
nikdorinn [45]

Answer:

Option A

hands-on assembly of the company's product

Explanation:

The managerial roles mainly include supervision of actual work on a higher level and implementation of organization's policy. The hands-on assembly of company's product is majorly done by junior staff who work under a supervisor who reports to the manager. Therefore, this is not a duty of a manager in a manufacturing field.

7 0
3 years ago
A 2-mm-diameter electrical wire is insulated by a 2-mm-thick rubberized sheath (k = 0.13 W/m K), and the wire/sheath interface i
Semmy [17]

Answer:

maximum allowable electrical power=4.51W/m

critical radius of the insulation=13mm

Explanation:

Hello!

To solve this heat transfer problem we must initially draw the wire and interpret the whole problem (see attached image)

Subsequently, consider the heat transfer equation from the internal part of the tube to the external air, taking into account the resistance by convection, and  conduction as shown in the attached image

to find the critical insulation radius we must divide the conductivity of the material by the external convective coefficient

r=\frac{k}{h} =\frac{0.13}{10}=0.013m=13mm

3 0
3 years ago
How to programe a disk
Colt1911 [192]

Answer:

insert the disk in the laptop, wait of a minute or 2 and then a folder will open in my PC.

6 0
3 years ago
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
True or False - Blueprints can be drawn both by hand and on a computer
Orlov [11]

Answer:

The answer is true.

Explanation:

Most of it is done in computer, but it can also be drawn out by hand.

6 0
3 years ago
Read 2 more answers
Other questions:
  • How would you describe the stability of the atmosphere if you noted a dry adiabatic rate of 10ºC/1000 meters, a wet adiabatic ra
    10·2 answers
  • How does a vacuum carpet cleaner work?
    10·2 answers
  • Match the words in the left column to the appropriate blanks in the sentences on the right. Note that some words may be used mor
    14·1 answer
  • A refrigerator removes heat from a refrigerated space at 0°C at a rate of 2.2 kJ/s and rejects it to an environment at 20°C. wha
    15·1 answer
  • Cuál de las siguientes es la mejor manera de practicar sus habilidades de tecnología de secundaria?
    9·1 answer
  • The four applicants for a $40,000 loan are Robin Smith, Amari Jones,
    7·1 answer
  • A(n) ____ combines two planetary gearsets to provide more gear ratio possibilities. A)compound planetary gearset B)orifice C)det
    6·1 answer
  • What is the name for a program based on the way your brain works?
    13·2 answers
  • Responding to the campaign of 4 classes, 7A, 7B, 7C, 7D contributed the amount of support proportional to the numbers 8,6;7;5 kn
    5·1 answer
  • Which option distinguishes the requirement standard most associated with the following statement?
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!