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
dimaraw [331]
2 years ago
10

Cryogenic liquid storage. Liquid oxygen is stored in a thin-walled spherical container, 96 cm in diameter, which is further encl

osed in a concentric container 100 cm in diameter. The surfaces facing each other at coated with an emittance of only 0.05. The inner surface is at 95 K, and the outer surface is at 280 K.
a. Draw an equivalent electrical circuit.
b. What is the heat exchange [W] between the two surfaces?

Engineering
1 answer:
Anvisha [2.4K]2 years ago
4 0

Answer:

The answer is "26.55 V"

Explanation:

Given values:

d_i= 0.96m\\d_o= 1m\\\epsilon = 0.05\\T_0= 280k\\T_i= 95k\\

For Answer  (a) please find the attachment.

Answer (b):

q_{i-0}= \frac{\sigma (T_{0}^4)-(T_{i}^4)}{\frac{1-\epsilon i }{\epsilon_{i} A_{i}}+ \frac{1 }{\ f_{i o} A_{i}} +\frac{1-\epsilon_{0}}{\epsilon_{0} A_{0}}}

f_{i0}= 1 \ it \ is \ fully \ inside \ the \ large \ sphero \\

q_{i-0}= \frac{\sigma A_i (T_{0}^4)-(T_{i}^4)}{\frac{1 }{\epsilon_{i}} - 1+ 1 +\frac{1-\epsilon_{0}}{\epsilon_{0}} \times \frac{A_i}{A_0}}\\\\q_{i-0}= \frac{\sigma A_i (T_{0}^4)-(T_{i}^4)}{\frac{1 }{\epsilon_{i}}  +\frac{1-\epsilon_{0}}{\epsilon_{0}} \times (\frac{d_i}{d_0})^2}\\\\q_{i-0}= \frac{\sigma (\pi d^2_i) (T_{0}^4)-(T_{i}^4)}{\frac{1 }{\epsilon_{i}}  +\frac{1-\epsilon_{0}}{\epsilon_{0}} \times (\frac{r_i}{r_0})^2}\\\\

q_{i-0}= \frac{5.67 \times 10^{-8} \times 3.14 \times 9.62 \times 9.62 \times (280^4-94^4)}{\frac{1 }{0.05}  +\frac{1-0.05}{0.05} \times (\frac{0.96}{1})^2}\\\\\ After \ solve the \ equation \ the \ answer \ is:\\\\q_{i-0} = 26.55 \ V

You might be interested in
This assignment is designed to test your understanding of graphical user interface components and Event Driven programming in Ja
lys-0071 [83]

Answer:

Java program is given below

Explanation:

JavaPadGUI.java

package javapad.gui;

import java.awt.BorderLayout;

import java.awt.Container;

import java.awt.Dimension;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.WindowAdapter;

import java.awt.event.WindowEvent;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.PrintWriter;

import java.util.Scanner;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JScrollPane;

import javax.swing.JTextArea;

public class JavaPadGUI extends JFrame implements ActionListener{

  //constants

  private static final String TITLE = "Macrosoft JavaPad XP";

  private static final String SLOGAN = "Macrosoft: Resistance is futile";

 

  //button names

  private static final String NEW = "New";

  private static final String LOAD = "Load";

  private static final String SAVE = "Save";

  private static final String QUIT = "Quit";

 

  private static final String FILENAME = "hardcode.txt";

  //messages

 

  private static final String QUIT_MSG = "Quitting, Save?";

  private static final String LOAD_ERR = "Could not access file " + FILENAME;

 

 

  //fields

  private JTextArea txtContent;

  private JButton butNew, butLoad, butSave, butQuit;

 

  public JavaPadGUI()

  {

      super(TITLE);

      createUI();

      setSize(new Dimension(400, 300));

      setDefaultCloseOperation(EXIT_ON_CLOSE);

         

  }

 

  private void createUI()

  {

      Container c = getContentPane();

      c.setLayout(new BorderLayout(30,30));

     

      //create the buttons panel

      JPanel butPanel = new JPanel();

      butPanel.add(butNew = new JButton(NEW));

      butPanel.add(butLoad = new JButton(LOAD));

      butPanel.add(butSave = new JButton(SAVE));

      butPanel.add(butQuit = new JButton(QUIT));

     

      //set command names for the buttons, these will be when button is clicked

      butNew.setActionCommand(NEW);

      butLoad.setActionCommand(LOAD);

      butSave.setActionCommand(SAVE);

      butQuit.setActionCommand(QUIT);

     

      JPanel sloganPanel = new JPanel();

      sloganPanel.add(new JLabel(SLOGAN));

     

      //create textarea with scrollbar

      txtContent = new JTextArea(15, 25);

      txtContent.setLineWrap(true);

         

      JScrollPane scroll = new JScrollPane(txtContent);

     

      //now add all components

      c.add(butPanel, BorderLayout.NORTH);

      c.add(scroll, BorderLayout.CENTER);

      c.add(sloganPanel, BorderLayout.SOUTH);

     

     

      //set the actionlistner to buttons to handle button click event

      butNew.addActionListener(this);

      butLoad.addActionListener(this);

      butSave.addActionListener(this);

      butQuit.addActionListener(this);

     

  }

  public void actionPerformed(ActionEvent e)

  {

      String cmd = e.getActionCommand();

      if(cmd.equals(NEW))

          txtContent.setText("");

      else if (cmd.equals(LOAD))

          load();

      else if(cmd.equals(SAVE))

          save();

      else if (cmd.equals(QUIT))

          quit();

  }

  private void quit()

  {

      int option = JOptionPane.showConfirmDialog(this, QUIT_MSG);

      if(option == JOptionPane.YES_OPTION)

      {

          save();

      }

     

      System.exit(0);

  }

 

  private void save()

  {

      try {

          PrintWriter w = new PrintWriter(new File(FILENAME));

          w.write(txtContent.getText());

          w.close();

      } catch (FileNotFoundException e) {

          JOptionPane.showMessageDialog(this,"I/O Error", LOAD_ERR, JOptionPane.ERROR_MESSAGE);

      }

             

  }

  private void load()

  {

      try {

          Scanner s = new Scanner(new File(FILENAME));

          String str = "";

          while(s.hasNextLine())

              str += s.nextLine();

          txtContent.setText(str);

          s.close();

      } catch (FileNotFoundException e) {

          JOptionPane.showMessageDialog(this, LOAD_ERR, "I/O Error",JOptionPane.ERROR_MESSAGE);

      }

     

  }

}

RunJavaPad.java

package javapad;

import javapad.gui.JavaPadGUI;

public class RunJavaPad {

  public static void main(String[] args) {

      JavaPadGUI gui = new JavaPadGUI();

      gui.setVisible(true);

  }

}

7 0
3 years ago
Steam enters an adiabatic turbine at 10MPa and 500 C and leaves at 10 kPa with a quality of 90%. Neglecting the changes in kinet
Amanda [17]

Answer:

flow ( m ) = 4.852 kg/s

Explanation:

Given:

- Inlet of Turbine

        P_1 = 10 MPa

        T_1 = 500 C

- Outlet of Turbine

        P_2 = 10 KPa

        x = 0.9

- Power output of Turbine W_out = 5 MW

Find:

Determine the mass ow rate required

Solution:

- Use steam Table A.4 to determine specific enthalpy for inlet conditions:

          P_1 = 10 MPa

          T_1 = 500 C            ---------- > h_1 = 3375.1 KJ/kg

- Use steam Table A.6 to determine specific enthalpy for outlet conditions:

          P_2 = 10 KPa       -------------> h_f = 191.81 KJ/kg

          x = 0.9                  -------------> h_fg = 2392.1 KJ/kg

          h_2 = h_f + x*h_fg

          h_2 = 191.81 + 0.9*2392.1 = 2344.7 KJ/kg

- The work produced by the turbine W_out is given by first Law of thermodynamics:

          W_out = flow(m) * ( h_1 - h_2 )

          flow ( m ) = W_out / ( h_1 - h_2 )

- Plug in values:

          flow ( m ) = 5*10^3 / ( 3375.1 - 2344.7 )

          flow ( m ) = 4.852 kg/s

3 0
3 years ago
Software, such as a word processor, search engine, or mobile interface, typically includes plug-in support specific to a languag
bearhunter [10]

Answer:

Check the explanation

Explanation:

class LanguageHelper:

language=set()

#Constructor

def __init__(self, words):

for w in words:

self.language.add(w)

def __contains__(self,query):

return query in self.language

def getSuggestionns(self,query):

matches = []

for string in self.language:

if string.lower().startswith(query) or query.lower().startswith(string) or query.lower() in string.lower():

matches.append(string)

return matches

lh = LanguageHelper(["how","Hi","What","Hisa"])

print('how' in lh)

print(lh.getSuggestionns('hi'))

===========================================

OUTPUT:-

==================

True

['Hisa', 'Hi']

====

7 0
3 years ago
3 facts about the Tokyo Skytree tower
vivado [14]

Answer:

Skytree is the tallest tower in the world

Skytree is not the tallest structure in the world

Nearly 8,000 people were expected at the opening

Pairing form with function, Skytree will serve as a TV and radio broadcast tower

8 0
3 years ago
Which stages occur during incomplete metamorphosis?
leva [86]

Answer:

The answer is B

Explanation: Hope this helps:)

4 0
2 years ago
Other questions:
  • CNG is a readily available alternative to
    5·1 answer
  • R 134a enters a air to fluid heat exchanger at 700 kPa and 50 oC. Air is circulated into the heat exchanger to cool the R134a to
    6·1 answer
  • 1. True/False The Pressure Relief valve maintains the minimum pressure in the hydraulic circuit​
    13·1 answer
  • Help thank you <3 :DDD
    13·1 answer
  • A segment of a roadway has a free flow speed of 45 mph and a jam density of 25 ft per vehicle. Determine the maximum flow and at
    12·1 answer
  • Ben İngiliz oldum düzelte bilirmiyim
    7·1 answer
  • OSHA requires safe work practices when working around brake shoes and clutches that contain asbestos.
    5·1 answer
  • Now that we have a second enemy, you will need to make some changes to the script that is attached to your backdrop. Look at tha
    6·1 answer
  • When cutting a FBD through an axial member, assume that the internal force is tension and draw the force arrow _______ the cut s
    11·1 answer
  • assuming complementary inputs are available, the minimum number of transistors needed to realize a two input xor gate is:
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!