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
777dan777 [17]
3 years ago
13

Describe the role of C-S-H in providing strength for cement. Discuss which compounds produce C-S-H and why balancing the amounts

of those compounds is important.
Engineering
1 answer:
wariber [46]3 years ago
8 0

Answer:

Following are the solution to this question:

Explanation:

Whenever a chemical reaction occurs between water and cement the heat is released, and a CaOSiO_2H_2O (C-S-H gel) gel constructs gel is also recognized as "tobermorite gel."

This one gel acts like a pack of gum and also has a cement quality, that holds its particles intact and therefore contributes to the overall compression mix. An increase in supply explicitly causes the movement in the outcome of power. C3S and C2S are both the compounds of Bouge that produce hydration C-S-H gel.

It mixture must be balanced as Ca(OH)_2 with C-S-H gel also is given as a byproduct. It Ca(OH)_2 , that cause sudden with sulphate and form CaSO_4 , is an unacceptable substance. Sulfate attack or later deterioration of its cement is caused by this CaSO_4 .

All C3S and C2S generate various amounts of C-S-H gel so, the required strength can be maintained without compromising on real term durability.

You might be interested in
A sprinter reaches his maximum speed in 2.5sec from rest with constant acceleration. He then maintains that speed and finishes t
liubo4ka [24]

The maximum Speed of the Sprinter from the velocity time graph of his motion is; 11.98 m/s

<h3>How to find the maximum speed?</h3>

We are given;

Initial Speed; u = 2.5 s

Total distance; d = 100 m

Total time; T = 9.6 s

The total distance is;

d = ¹/₂(9.6 + (9.6 - 2.5) * v

where v is maximum speed.

Thus;

¹/₂(9.6 + (9.6 - 2.5) * v = 100

16.7v = 200

v = 200/16.7

v = 11.98 m/s

Read more about Maximum Speed at; brainly.com/question/4931057

#SPJ1

3 0
2 years ago
Fatigue failure occurs under the condition of (a) High elastic stress (b) High corrosivity (c) High stress fluctuations (d) High
Harlamova29_29 [7]

Answer:

Fatigue occurs under conditions of high elastic stress, high stress fluctuations and high rate of loading

Explanation:

 According to many definition of fatigue failure the fatigue occurs when in an especifyc point of the object there is involved many forces and tensions.

 That tensions needs to be big in magnitud, de variations of the efforts it has to be with a lot of amplitude and the loading in the object it has to be with a lot of number of cycles.

 If in the all of these three conditions are present the fatigue failure it would appear.

8 0
4 years ago
2. One of the many methods used for drying air is to cool the air below the dew point so that condensation or freezing of the mo
REY [17]

Answer:

0.5°c

Explanation:

Humidity ratio by mass can be expressed as

the ratio between the actual mass of water vapor present in moist air - to the mass of the dry air

Humidity ratio is normally expressed in kilograms (or pounds) of water vapor per kilogram (or pound) of dry air.

Humidity ratio expressed by mass:

x = mw / ma                                  (1)

where

x = humidity ratio (kgwater/kgdry_air, lbwater/lbdry_air)

mw = mass of water vapor (kg, lb)

ma = mass of dry air (kg, lb)

It can be as:

x = 0.005 (100) / [(100 - 100)]

x = 0.005 x 100 / (100 - 100)

x = 0.005 x 100 / 0

x = 0.5°c

So the temperature to which atmospheric air must be cooled in order to have humidity ratio of 0.005 lb/lb is 0.5°c

6 0
3 years ago
Pumped-storage hydroelectricity is a type of hydroelectric energy storage used by electric power systems for load balancing. The
NikAS [45]

Answer:

A) energy loss E = pgQtH

Where p = density in kg/m3

g = gravity acceleration in m/s2

Q = flow rate in m3/s

t = time taken for flow in sec

H = height of flow in m

B) power required to run pump;

P = pgQH

Explanation:

Detailed explanation and calculation is shown in the image below

5 0
3 years ago
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
Other questions:
  • A 10-ft-long simply supported laminated wood beam consists of eight 1.5-in. by 6-in. planks glued together to form a section 6 i
    5·1 answer
  • Consider a cubical furnace with a side length of 3 m. The top surface is maintained at 700 K. The base surface has emissivity of
    13·1 answer
  • Rolling and Shearing are the types of a)-Bulk Deformation Process b)- Sheet Metal Process c)- Machining Process d)- Both a &amp;
    7·1 answer
  • Anyone have 11th grade engineering on odyssey ware?
    8·1 answer
  • A simply supported beam spans 25 ft and carries a uniformly distributed dead load of 0.6 kip/ft, including the beam self-weight,
    15·1 answer
  • A three-phase transformer bank consists of 3 single-phase transformers to handle 400 kVA witha 34.5kV/13.8kV voltage ratio. Find
    7·1 answer
  • 2. Ang sangay na nagbibigay-kahulugan sa mga batas ng bansane
    8·1 answer
  • What was the most important thing you learned this school year in your engineering class and why did you choose this thing
    15·1 answer
  • Explain the problems and their possible solution for electricity problems ?​
    8·1 answer
  • In order to live and grow, bacteria need moisture, food, the right temperature, and ______? Fill in the blank
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!