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
Roman55 [17]
3 years ago
14

The moisture in hot, humid, stagnant air surrounding a cold-water pipeline continually diffuses to the cold surface where it con

denses. The condensed water forms a liquid film around the pipe, and then continuously drops off the pipe to the ground below. At a distance of 10 cm from the surface of the pipe, the moisture content of the air is constant. Close to the pipe, the moisture content of the air approaches the vapor pressure of water evaluated at the temperature of the pipe
What is the simplest differential form of Fick's flux equation for water vapor, NA?
Engineering
1 answer:
VladimirAG [237]3 years ago
6 0

Answer:

The simplest differential form of Fick's flux equation for water vapor is

\frac{1}{r} \frac{d}{dr} (rN_{rA} )=0

Explanation:

Fick's law has to do with the density of the particles is proportional to their concentration gradient. For this question some assumptions will be taken into account:

-The pipe is considered to be very long and diffusion only occurs in the r direction.

-The reaction is not homogeneous, therefore RA = 0

-The concentration of the component A is constant

-No mixing, only diffusion

Due to the complexity of the terms used in solving the Fick equation, the solution is found in the attached file.

Download docx
You might be interested in
Hằng số phổ biến chất khí
drek231 [11]

Answer:

Business activities may broadly be classified into two categories namely (A) Industry and (B) Commerce. Industry involves production of goods and services whereas commerce is concerned with the distribution of goods and services.

Explanation:

hope helps

7 0
3 years ago
Write a GUI-based program that plays a guess-the-number game in which the roles of the computer and the user are the reverse of
AURORKA [14]

Answer:

import javax.swing.*;

import java.awt.*;

import java.util.Random;

import java.awt.event.*;

public class Guess extends JFrame

{

   private static final long serialVersionUID = 1L;

   private JButton newGame;

   private JButton enter;

   private JButton exit;

   private JTextField guess;

   private JLabel initialTextLabel;

   private JLabel enterLabel;

   private JLabel userMessageLabel;

   private int randNum;

   private int userInput;

   private int maxtries = 0;

   public Guess()

   {

       super("Guessing Game");

       newGame = new JButton("New Game");

       exit = new JButton("Exit Game");

       enter = new JButton("Enter");

       guess = new JTextField(4);

       initialTextLabel = new JLabel("I'm thinking of a number between 1 and 100. Guess it!");

       enterLabel = new JLabel("Enter your guess.");

       userMessageLabel = new JLabel("");

       randNum = new Random().nextInt(100) + 1;

       setLayout(new FlowLayout());

       add(initialTextLabel);

       add(enterLabel);

       add(guess);

       add(newGame);

       add(enter);

       add(exit);

       add(userMessageLabel);

   

       setSize(500, 300);

       addWindowListener(new WindowAdapter()

       {

           public void windowClosing(WindowEvent e)

           {

               System.exit(0);

           }

       });

       newGameButtonHandler nghandler = new newGameButtonHandler();

       newGame.addActionListener(nghandler);

       ExitButtonHandler exithandler = new ExitButtonHandler();

       exit.addActionListener(exithandler);

       enterButtonHandler enterhandler = new enterButtonHandler();

       enter.addActionListener(enterhandler);

   }

   class newGameButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           setBackground(Color.ORANGE);

           guess.setEnabled(true);

           guess.setText("");

           enter.setEnabled(true);

           maxtries = 0;

           userMessageLabel.setText("");

           randNum = new Random().nextInt(100) + 1;

       }

   }

   class ExitButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           System.exit(0);

       }

   }

   class enterButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           userInput = Integer.parseInt(guess.getText());

           checkGuess(randNum);

      if(userInput > 100 )

          {

                               userMessageLabel.setText("invalid entry");

          }

       }

   }

   public void checkGuess(int randomNumber)

   {

       maxtries++;

     if(maxtries==10){

           userMessageLabel.setText("You Lose!!");

           guess.setEnabled(false);

           enter.setEnabled(false);

         

       }else if (userInput == randomNumber)

           {

               userMessageLabel.setText("Correct !");

           }

       else if (userInput > randomNumber)

           {

               userMessageLabel.setText("Too high");

           }

       else if (userInput < randomNumber)

           {

               userMessageLabel.setText("Too Low");

           }

   }

   public static void main(String[] args)

   {

       Guess game = new Guess();

       game.setVisible(true);

   }

}

8 0
3 years ago
Consider insulation on a circular pipe For the same thickness and type of insulation, the thermal resistance of the insulation i
leonid [27]

Answer:

b). The same for all pipes independent of the diameter

Explanation:

We know,

R_{conduction}=\frac{ln(\frac{r_{2}}{r_{1}})}{2\pi LK}

R_{convection}=\frac{1}{h(2\pi r_{2}L)}

From the above formulas we can conclude that the thermal resistance of a substance mainly depends upon heat transfer coefficient,whereas radius has negligible effects on heat transfer coefficient.

We also know,

Factors on which thermal resistance of insulation depends are :

1. Thickness of the insulation

2. Thermal conductivity of the insulating material.

Therefore from above observation we can conclude that the thermal resistance of the insulation is same for all pipes independent of diameter.

5 0
3 years ago
(Gas Mileage) Drivers are concerned with the mileage their automobiles get. One driver has kept track of several trips by record
Effectus [21]

Answer:

import java.util.*;

public class Main {

   

   public static void main(String[] args) {

     

       double milesPerGallon = 0;

       int totalMiles = 0;

       int totalGallons = 0;

       double totalMPG = 0;

       

       Scanner input = new Scanner(System.in);

 

       while(true){

           System.out.print("Enter the miles driven: ");

           int miles = input.nextInt();

           if(miles <= 0)

               break;

           else{

               System.out.print("Enter the gallons used: ");

               int gallons = input.nextInt();

               totalMiles += miles;

               totalGallons += gallons;

               milesPerGallon = (double) miles/gallons;

               totalMPG = (double) totalMiles / totalGallons;

               System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);

               System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);

           }

       }

   }  

}

Explanation:

Initialize the variables

Create a while loop that iterates until the specified condition is met inside the loop

Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.

6 0
3 years ago
A blown shaft seal on a hydraulic motor is usually the result of
torisob [31]
It is High system pressure
8 0
3 years ago
Read 2 more answers
Other questions:
  • Once a design is final engineer needs a plan for product
    14·1 answer
  • Sketch the velocity profile for laminar and turbulent flow.
    15·1 answer
  • Problem 1: A catchment has the following Horton’s infiltration parameters: f0=280 mm/hr, fc=25 mm/hr and k = 2.5 hr-1 . For the
    14·1 answer
  • Write a program that asks the user to input a vector of integers of arbitrary length. Then, using a for-end loop the program exa
    13·1 answer
  • Technician A says that in a worm gear steering system, most excessive steering free play is usually found in the gearbox. Techni
    13·1 answer
  • What is the chord length of an airplane called?
    14·1 answer
  • Air enters the compressor of a simple gas turbine at 100 kPa, 300 K, with a volumetric flow rate of 5 m3/s. The compressor press
    11·1 answer
  • What is 39483048^349374*3948048/3i4u4
    15·1 answer
  • HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    11·1 answer
  • While, Do...while, and For loops can best be characterized as which of the following?
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!