Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
374 changes: 374 additions & 0 deletions projects/byg302g/kafli15.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,374 @@
Kafli - Sement
==============

Sement er fínmalað bindiefni sem hvarfast þegar það blandast vatni og harðnar.
Lýsa má sementi sem líminu í steinsteypu þar sem það límir saman fylliefnakornin.
En áður að við förum að fjalla meira um sement eru nokkur hugtök sem eru gott að þekkja.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Proofread the changed prose before merge.

Correct the clear wording issues in these lines:

  • Line 6: áður aðáður en.
  • Line 71: stearkisterkari.
  • Line 73: styrkaukinginstyrkaukningin.
  • Line 141: add a space before :math:\C_2S``.
  • Line 290: correct eins oglLignosulfonatefni.
  • Line 362: review the agreement in þessi sement hvarfast.

These corrections will improve clarity for students.

As per path instructions: “The content is free of spelling and grammatical errors.”

Also applies to: 71-73, 141-141, 290-292, 362-362

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@projects/byg302g/kafli15.rst` at line 6, Proofread and correct the prose in
kafli15.rst by updating the specific wording issues called out in the affected
paragraphs: fix the phrase in the opening sentence from “áður að” to “áður en”,
correct the misspellings “stearki” and “styrkaukingin” in the later
cement-strength discussion, add the missing space before the :math:`C_2S`
reference, repair the malformed “eins oglLignosulfonatefni” text, and adjust the
agreement in “þessi sement hvarfast” to the grammatically correct form. Keep the
surrounding content and structure unchanged while applying these edits in the
relevant sections.

Source: Path instructions


.. figure:: ./myndir/kafli15/hugtök.png
:align: center
:width: 100%
Comment on lines +8 to +10

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟠 Major | 🏗️ Heavy lift

Add meaningful alternative text to every image.

All figure and nested image directives lack :alt: text. Add a concise description for each diagram and photo. This is required for screen-reader users to access the educational content. (docutils.sourceforge.io)

As per path instructions: “The content is accessible and follows web accessibility guidelines (e.g., proper heading structure, alt text for images).”

Also applies to: 40-43, 75-77, 85-87, 128-130, 146-148, 170-173, 254-259, 281-284, 310-313, 333-335

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@projects/byg302g/kafli15.rst` around lines 8 - 10, Add a concise, meaningful
:alt: option to the figure directive at the shown location and to every other
figure or nested image directive identified in this document, accurately
describing each diagram or photo for screen-reader users. Preserve the existing
alignment, width, and image references.

Source: Path instructions


🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/usr/bin/env bash
set -euo pipefail

rst="projects/byg302g/kafli15.rst"

python - "$rst" <<'PY'
from pathlib import Path
import re
import sys

rst = Path(sys.argv[1])
refs = []

for line in rst.read_text(encoding="utf-8").splitlines():
    match = re.search(r"\.\.\s+(?:figure|image)::\s+(\S+)", line)
    if match:
        refs.append(match.group(1))

missing = []
for ref in refs:
    path = (rst.parent / ref).resolve()
    if not path.is_file():
        missing.append((ref, path))

for ref, path in missing:
    print(f"Missing: {ref} -> {path}")

if missing:
    raise SystemExit(1)

print(f"Checked {len(refs)} image references.")
PY

Repository: edbook/haskoli-islands

Length of output: 270


🏁 Script executed:

#!/usr/bin/env bash
set -euo pipefail

rst="projects/byg302g/kafli15.rst"

printf 'Referenced figure/image paths:\n'
python - "$rst" <<'PY'
from pathlib import Path
import re
import sys

rst = Path(sys.argv[1])
for i, line in enumerate(rst.read_text(encoding="utf-8").splitlines(), 1):
    match = re.search(r"\.\.\s+(?:figure|image)::\s+(\S+)", line)
    if match:
        ref = match.group(1)
        path = (rst.parent / ref).resolve()
        print(f"{i}: {ref} -> {path} exists={path.is_file()} ")
PY

printf '\nExisting myndir/kafli15 entries:\n'
find projects/byg302g/myndir/kafli15 -maxdepth 1 -type f 2>/dev/null | sort | sed 's#^##' | head -80

Repository: edbook/haskoli-islands

Length of output: 3112


Fix the missing hitamyndum.png image reference.

projects/byg302g/kafli15.rst references ./myndir/kafli15/hitamyndum.png, but the file in projects/byg302g/myndir/kafli15/ is named Hitamyndum.png. Either rename the image to match this reference or update the reference to Hitamyndum.png so the build can resolve the asset.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@projects/byg302g/kafli15.rst` around lines 8 - 10, Update the image reference
in the kafli15 documentation to match the existing case-sensitive asset name
Hitamyndum.png, preserving the current relative path and figure settings so the
build resolves the image.

Source: Path instructions


----

Portland sement og framleiðsla
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

**Portland sement er langalgengasta tegundin af sementi í byggingariðnaðinum.**

Portland sement fellur undir visst skilgreint framleiðsluferli með ákveðnum hráefnum.
Portland sement er framleitt úr:

* Kalkstein (CaO) og leir (SiO2, Al2O3, Fe2O3) venjulega
* Skeljasandi (CaO) og líparíti (SiO2, Al2O3, Fe2O3) hér áður fyrr
Comment on lines +20 to +23

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟠 Major | ⚡ Quick win

Correct the raw-material formulas.

CaO is the oxide produced during calcination. Limestone and shell-derived feed are carbonate sources, so use CaCO_3 for the raw materials, or state explicitly that the listed values are target oxide contributions after calcination. The current text can teach students that limestone and shell sand are already calcium oxide. (pubs.usgs.gov)

As per path instructions: “Mathematical equations are correctly formatted using LaTeX syntax within the appropriate Sphinx directives.”

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@projects/byg302g/kafli15.rst` around lines 20 - 23, Update the Portland
cement raw-material list in the section around “Portland sement er framleitt úr”
to identify limestone and shell sand as CaCO_3 carbonate sources rather than
CaO. Format the chemical formulas using LaTeX in the appropriate Sphinx math
directive, while retaining the existing silica, alumina, and iron oxide
components.

Source: Path instructions


Svo er það brennt í ofni, allt að 1500°C (rotarofni), og malað:

* Klinker 3-25 mm :math:`\rightarrow` malaður + gifs :math:`\rightarrow` sement
* Kornastærð 1-100 μm, meðalstærð 10 :math:`\mu m`

Tvær aðferðir eru til við vinnslu sements. Þessar aðferðir nefnast **Þurr- og votaðferð**.
En það hvernig efnið er meðhöndlað áður en það er sett inn í ofninn stýrir því hvaða aðferð er notuð, þ.e.

* Þurraðferð þá er efnið sett **þurrt í ofninn**
* Votaðferð þá er efnið í **leðjuformi** þegar það er sett í ofninn

.. list-table::
:widths: 100 100
:header-rows: 0

* - .. image:: ./myndir/kafli15/þurraðferð.png
:width: 100%
- .. image:: ./myndir/kafli15/votaðferð.png
:width: 100%

**ATH fyrri myndin sýnir Þurraðferð en seinni Votaðferð.**

Áður fyrr var sementsframleiðsla á Íslandi í sementsverksmiðjunni á Akranesi, en þar var notast við votaðferðina (Líparítið sem
var notað í framleiðsluna mátti finna í súru gosbergi). Í dag er þó allt sement innflutt.

Hvörfun sements
~~~~~~~~~~~~~~~

Sement samanstendur af fjórum meginþáttum sem nefndir eru klinkerfasar en þeir eru hluti af sementsgjallinu sem
verður til við brennslu í sementsofninum.

Klinkerfasarnir eru:

* :math:`C_3S` Tríkalsíumsilikat (Alit)
* :math:`C_2S` Díkalsíumsilikata (Belit)
* :math:`C_3A` Tríkalsíumálat
* :math:`C_4AF` Tetrakalsíumálferrít

Hvörfun sements á sér stað í þessar röð:

1. Sementsefjan er fljótandi svo lengi sem sementskornin snertast ekki.

2. Hvörfunarafurðirnar taka meira pláss en upprunalegu sementskornin og þess vegna fyllist upp í holrýmin.

3. Á fyrstu stigum hvörfunarinnar, þegar næg snerting er á milli hvörfunarafurðanna missir efjan floteiginleikana og storknun hefst (e. setting).

4. Eftir því sem á hvörfunina líður eftir fyrstu storknun hefst styrkaukningin sem kemur til af því að hvörfunarafurðirnar tengjast stekari böndum og holrýmd minnkar. Við lokastorknun (e. final set) er efjan orðin stíft, fast efni með lítinn styrk.

5. Eftir lokastorkun hefst hörðnunartímabilið (e. hardening) þar sem hin raunverulega styrkauking á sér stað.

.. figure:: ./myndir/kafli15/hvörfun.png
:align: center
:width: 100%

Hvörfunarafurðir
~~~~~~~~~~~~~~~~

Hvörfun sements og vatns er útvermið efnahvarf þar sem mesta hitamyndunin verður vegna hvörfunar :math:`C_3S` og :math:`C_3A`. Stærð sementskorna
hefur áhrif á hitamyndunina þar sem fínara sement (minni korn) hefur meiri hitamyndun heldur en grófara vegna heildar yfirborðsflatarmál kornanna.

.. figure:: ./myndir/kafli15/hitamyndum.png
:align: center
:width: 70%

Þegar sement og vatn hvarfast verða til hvörfunarafurðirnar (e. hydration products):

**C-S-H hlaup**

* Er sá þáttur sementsefjunnar sem er hvað þéttastur og stöðugastur
* Gefur mestan styrk
* Er u.þ.b. 65% af rúmmáli í harðnaðri sementsefju

**CH (Kalsíum hýdroxíð, portlandit)**

* Mun veikara og óþéttara en C-S-H
* Stórir kristallar
* Gengur í samband við :math:`CO_2` í andrúmsloftinu og þá lækkar pH gildi steypunnar
* Hætta á að steypustyrktarjárn ryðgi ef kolsýringin nær inn að járnum
* Er u.þ.b. 20% af rúmmáli í harðnaðri sementsefju

Kalkkísilefnasambönd (:math:`C_3S` og :math:`C_2S`) + vatn (:math:`H_2O`) → C-S-H hlaup + kalsíumhýdroxíð (CH)

**Monosulfoaluminat**, :math:`C_4A \bar{S} H_{12}`

* Svipað og CH hvað varðar styrk
* Er u.þ.b. 10% af rúmmáli í harðnaðri sementsefju

Tríkalsíumálat (:math:`C_3A`) + gifs (:math:`C \bar{S} H_2`) + vatn (:math:`H_2O`) → ettringít (:math:`C_6 A \bar{S} H`)

Ettringít (:math:`C_6 A \bar{S} H`) + tríkalsíumálat (:math:`C_3A`) + vatn (:math:`H_2O`) → monosulfoaluminat (:math:`C_4 A \bar{S} H_{12}`)

**Tetracalcium aluminat hydrate**, :math:`C_4(A,F)H_{13}`

* Skylt monosulfoaluminati að uppbyggingu
* Veitir ekki styrk

Ferrít (:math:`C_4AF`) + kalísum hydroxíð (:math:`CH`) + vatn (:math:`H_2O`) → tetracalcium aluminat hydrate (:math:`C_4(A,F)H_{13}`) + ferric-aluminum hydroxíð :math:`(A,F)H_3`

**Ettringít**, :math:`C_6A \bar{S} _3H`
Comment on lines +107 to +123

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟠 Major | ⚡ Quick win

Correct the hydration chemistry and notation.

The ettringite formula is incomplete in Lines 112, 114, 123, 157, and 159. Use the complete phase formula, such as :math:\C_6A\bar{S}3H{32}`, and keep monosulfoaluminate notation consistent. Also, Line 153 assigns gypsum’s setting-control role to C_3S; gypsum primarily controls the rapid hydration of C_3Aand prevents flash setting. Put each reaction in a:math:` role and use one notation throughout. (fhwa.dot.gov)

As per path instructions: “Mathematical equations are correctly formatted using LaTeX syntax within the appropriate Sphinx directives.”

Also applies to: 152-159

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@projects/byg302g/kafli15.rst` around lines 107 - 123, Correct the cement
hydration equations and phase formulas in the Monosulfoaluminat, Tetracalcium
aluminat hydrate, and Ettringít sections by using the complete ettringite
formula consistently and preserving matching monosulfoaluminate notation. Wrap
every reaction in a Sphinx math role with consistent LaTeX notation. Update the
gypsum setting-control explanation and reaction near the C3S/C3A discussion to
identify rapid C3A hydration and prevention of flash setting, not C3S.

Source: Path instructions


**Það er þó nær alltaf til staðar óhvarfað sement í sementsefjunni**


.. figure:: ./myndir/kafli15/hvörfunogtími.png
:align: center
:width: 100%

------

Kalsíumsamböndin :math:`C_3S` og :math:`C_2S` standa aðallega fyrir þróun styrks steypunnar. Þó er þróun styrks frá þessum klinkerfösum mjög mismunandi.

**Hátt hlutfall** :math:`C_3S`:

* Lægri endanlegur styrkur
* Hærri skammtíma styrkur og hitamyndun

**Hátt hlutfall**:math:`C_2S`:

* Langtímastyrkur
* Lengur að hvarfast

.. figure:: ./myndir/kafli15/C3SogC2S.png
:align: center
:width: 100%

------

Hvörfun C3S er mikilvægt við myndun klinkerfasa á brennslustigi klinkersins. Þó skal ekki gleyma að það er
nauðsynlegt að hafa gifs í blöndunni. Því ef ekkert gifs væri til staðar þá mundi C3S byrja að hvarfast strax (ekki æskilegt að steypan harðni í steypubílunum).

Munum:

* Tríkalsíum aluminat (C3A) + gifs (CS ̅H2) + vatn (H2O) → ettringít (C6AS ̅H)

* Ettringít (C6AS ̅H) + tríkalsíum aluminat (C3A) + vatn (H2O) → monosulfoaluminat (C4AS ̅H12)


C4AF Hefur líkt og C3A þýðingu við myndun klinkersins. C4AF hvarfast þó mun hægar en C3A en C4AF gefur sementinu gráa litinn.

Á myndunum hér að neðan má sjá á myndinni til vinstri sement eftir 7 daga og til hægri sement eftir 28 daga.

.. list-table::
:widths: 100 100
:header-rows: 0

* - .. image:: ./myndir/kafli15/7dagat.png
:width: 100%
- .. image:: ./myndir/kafli15/28dagar.png
:width: 100%

Sementsgerðir
~~~~~~~~~~~~~~

Til eru mismunandi sementsgerðir og ráðast þær m.a. af:

* Mismunandi samsetningu klinkerfasa

* Mismunandi fínleika

* Mismunandi íaukum

* Með possolönum (e. Pozzolans)

* Kísilryk (e. Silica fume)

* Flugösku (e. Fly Ash)

* Malað líparít

* Með slaggi (e. Blast-furnace slag)

* Með möluðu kalki

**Hraðharðnandi Portland sement**

Er ætlað til nota þar sem hár byrjunarstyrkur er æskilegur. Svona sement getur verið sniðugt að nota í sprautusteypu í jarðgöngum.
Ekki æskilegt að hafa hraðharðnandi sement þegar um massasteypur (mikið af rúmmetrum dælt í einu) er að ræða.
Oft með meira C3S (alit) og kornin eru fínmalaðri sem þýðir að meiri hitamyndun á sér stað.

**Lághita Portland sement**

Er ætlað til nota þar sem hitamyndun er mikil það er í massasteypum. Oft með lítið C3S og C3A, en meira af C2S (belit).
Sementskornin eru oft grófari (há kornastærð).

Hér á landi voru tvær tegundir lághitasements:

* Blöndusement

* Sigöldusement

**Sulfatþolið sement**

Ætlað til nota þar sem sulfat (brennisteinn) er til staðar í umhverfinu. Sulfatþolið sement hefur lágt hlutfall C3A (3,5% eða minna).
Sulfatþolið sement var framleitt hér á landi.

**Hvítt og litað Portland sement**

Hvítt sement er gert úr sérstökum hráefnum með litlu járn- og magnesíum oxíðum.
Í lituðu sementi er bætt í litarefni, fínmöluðu dufti, getur haft áhrif á gæði steypunnar, styrk o.fl.

Mikilvægi v/s tölunnar
~~~~~~~~~~~~~~~~~~~~~~

Þessi tala skiptir gríðarlegu máli þegar það kemur að steypu.
v/s talan er skilgreint sem hlutfall milli vatns og sements í blöndu.
v/s talan hefur áhrif á:

* Vinnanleiki ferskrar steypu

* Styrkur

* Þrýsti-, tog og beygjutogþol

* Rýrnun

* Skrið

* Fjaðurstuðull

* Frostþol

* Þol gagnvart ýmsum efnum s.s. klór, brennisteinssamböndum, alkalí/kísil- efnahvörfum, oxun (carbonatisering)

Einnig hefur v/s talan áhrif á holrýmd steypunnar, en það má sjá á myndunum hér að neðan.

.. list-table::
:widths: 100 100 100
:header-rows: 0

* - .. image:: ./myndir/kafli15/porur.png
:width: 100%
- .. image:: ./myndir/kafli15/holrymi.png
:width: 100%
- .. image:: ./myndir/kafli15/holrymd2.png
:width: 100%


Íblendiefni og íaukar efni
~~~~~~~~~~~~~~~~~~~~~~~~~~

**Íblendiefni** eru efni sem sett eru í steypuna í *litlum skömmtum*, algengast 1-3% af þunga sements, til að hafa áhrif á hegðun hennar.
Yfirleitt í fljótandi formi en þó er það ekki einhlítt. Íblendiefni geta haft áhrif á steypu bæði í fersku ástandi og á storknunar- og hörðnunarskeiðinu.
Oft er hægt að velja milli þess að nota misjafnar sementstegundir eða íblendiefni sem gera sama gagn.
Dæmi um íblendiefni eru:

* Loftblendi. Notað til að gera steypuna frostþolna. Loft í steypu bætir einnig þjálni ferskrar steypu. Loftblendin efni eru yfirborðsvirk efni sem valda því að það myndast örsmáar loftbólur í steypunni (stærð frá 0,01-0,05 mm). Dæmi:

* Vinsol resin (grunnefni: trjákvoða, harpix)
* Tallolía (unnin úr fitusýrum sem eru aukaafurðir úr pappírsframleiðslu)
* Tensider (unnið úr olíu)
* Þess ber að geta að fyrir hvert 1% af loftblendi í steypu tapast 5% brotstyrkur steypunnar*

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "File line count:"
wc -l projects/byg302g/kafli15.rst || true

echo
echo "Relevant lines around kafli15.rst:250-285:"
sed -n '250,285p' projects/byg302g/kafli15.rst | nl -ba -v250

echo
echo "Search for unmatched/double/single asterisks and footnote refs in kafli15.rst:"
python3 - <<'PY'
import re
from pathlib import Path
p=Path('projects/byg302g/kafli15.rst')
text=p.read_text(encoding='utf-8')
for i,line in enumerate(text.splitlines(),1):
    if '*' in line:
        print(f"{i}: {line!r}")
print("\nFootnote refs/targets:")
print(sorted(set(re.findall(r'\[\d+\]_|^\.\ \[\d+\]', text, re.M))))
PY

echo
echo "Neighboring footnote-related lines in kafli15.rst:"
rg -n "^\.\ \[|^\[\d+\]|\\*\\*|\\*\\*\\*|\\*" projects/byg302g/kafli15.rst -C 2

Repository: edbook/haskoli-islands

Length of output: 294


🏁 Script executed:

#!/bin/bash
set -euo pipefail

python3 - <<'PY'
from pathlib import Path
p=Path('projects/byg302g/kafli15.rst')
lines=p.read_text(encoding='utf-8').splitlines()
print(f"total lines: {len(lines)}")
print()
print("Relevant lines 250-285:")
for i in range(249, min(len(lines), 285)):
    print(f"{i+1}: {lines[i]}")

print("\nFootnote refs/targets/all asterisk lines:")
import re
targets=set()
refs=set()
lines_asterisk=[]
for i,line in enumerate(lines,1):
    if '*' in line:
        lines_asterisk.append((i,line))
    if re.search(r'^\.\ \[\d+\]', line):
        targets.add(line.strip())
    for m in re.finditer(r'\[\d+\]_', line):
        refs.add(m.group(0))
print("targets =", sorted(targets))
print("refs =", sorted(refs))
print("asterisk lines:")
for i,line in lines_asterisk:
    print(f"{i}: {line!r}")

print("\nNearby RST footnote context:")
for idx,line in lines_asterisk:
    print(f"\n--- line {idx} context ---")
    start=max(1, idx-3); end=min(len(lines), idx+3)
    for j in range(start,end+1):
        print(f"{j}: {lines[j-1]}")
PY

Repository: edbook/haskoli-islands

Length of output: 38976


Remove or replace the stray asterisk on line 275.

* Þess ber að geta að fyrir hvert 1% af loftblendi í steypu tapast 5% brotstyrkur steypunnar* has an unmatched *; RST will leave it in the rendered text or warn. Remove it, or use an actual reference and define it for the strength-loss claim.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@projects/byg302g/kafli15.rst` at line 275, Fix the unmatched asterisk in the
strength-loss statement by removing the stray markup or replacing it with a
valid defined reference, ensuring the rendered RST does not contain an
unintended asterisk.

Source: Path instructions


.. list-table::
:widths: 100 100
:header-rows: 0

* - .. image:: ./myndir/kafli15/loftblendni1.png
:width: 100%
- .. image:: ./myndir/kafli15/loftblendni2.png
:width: 100%



* Vatnssparar/Flotefni, Vatnssparar eru notaðir í þrennum tilgangi, þ.e. auka styrk með því að minnka v/s-töluna en halda sama vinnanleika steypunnar, notuð til að minnka hitamyndun í massasteypum og til þess að auka vinnanleika til að auðvelda niðurlögn steypunnar.

Fyrsta kynslóð þessara efna voru vatnssparar, en hún kom upp úr 1930 og voru það efnasamsetningar eins oglLignosulfonatefni og hydroxycarboxylic sýrur.
Önnur kynslóðin voru flotefni, en þau komu fyrst upp úr 1960 og var þá notað Melamin og naftalen efni.
Í dag er notast við svokallað hágæðaflotefni sem er þriðja kynslóð. Hágæðaflotefni kom eftir 1980 og hefur mikil þróun átt sér stað síðustu 10 árin. Þetta eru efni sem eru mun virkari en flotefni.


* Vatnssparar eru yfirborðsvirk efni. Virkni þeirra er á eftirfarandi hátt:

* Sementskornin hafa bæði plús og mínushlaðna hluta
* Vatnsspararnir hafa mínushleðslu
* Þeir dragast að plúshlöðnu yfirborði sementskornanna og gera það mínushlaðið
* Þannig að sementskornin hrinda hvort öðru frá sér í stað þess að dragast að hvort öðru
* Á þennan hátt losnar um innilokað vatn og það nýtist betur við myndun sementsefju

* Flotefni eru nýrri efni en vatnsspararnir. Þau eru einnig mun virkari en vatnssparar og því stundum kölluð „High Range Water Reducers“ (HRWR).
Vegna virkni sinnar er hægt að ná mun betra flæði í steypuna með flotefnum (flotsteypa, sjálfútleggjandi). Flotefni eru notuð í gólf og bita og þar sem erfitt er að koma venjulegri steypu. Hægt að gera steypu með mjög háan styrk, hástyrkleikasteypur með því að minnka v/s-töluna allt niður í 0,28 og nota flotefni til að gera steypuna vinnanlega.

.. list-table::
:widths: 100 100
:header-rows: 0

* - .. image:: ./myndir/kafli15/vatnspararar.png
:width: 100%
- .. image:: ./myndir/kafli15/flot.png
:width: 100%


-------

* Storknunar-seinkarar.
Storknunarseinkarar eru mikið notaðir þar sem hiti er mikill. Þeir eru notaðir til að lengja þann tíma sem steypan er vinnanleg. Storknunarseinkarar eru t.d.: Sykur, afleiður kolvetnis, bórsýru salt og zink salt.

Storknunarseinkarar:

* Minnka skammtímastyrk
* Hafa ekki áhrif á langtímastyrk
* Auka plastíska rýrnun vegna lengingar plastíska tímabils steypunnar
* Hafa ekki áhrif á þurrkrýrnun

------

* Hvörfunar-hraðarar.
Hraðarar flýta fyrir þróun skammtímastyrks. Þeir þurfa ekki að hafa áhrif á storknunartímann, en þó gera þeir það stundum. Einnig eru til hraðarar sem aðallega flýta fyrir storknun steypunnar. Notað einkum í viðgerðarefni í steypu. Þetta er gert með því að flýta efnahvörfum fyrstu tímana eftir íblöndun vatns

.. figure:: ./myndir/kafli15/hraðarar.png
:align: center
:width: 80%

------

* Aðrir flokkar íblendiefna:

* Rýrnunarvarar
* Þykkingarefni
* Klóríðsperra
* Frostvari

Til eru ótal efni sem ætluð eru til að bæta múr og steinsteypu. Hafa ber í huga að ef nota á efni sem eru ekki vel þekkt, þarf alltaf að prófa þau í prufusteypu áður en þau eru notuð í mannvirki.
Dæmi:

* Corrosion inhibitors
* ASR inhibitors
* Hydrophobic admixtures
* Viscosity modifying agent
* Shrinkage reducing admixtures

-------

**Íaukar**

Íaukar eru efni sem sett eru í steypu í *stærri skömmtum*, oft á bilinu 5% og allt upp í 95% af þunga sements. Yfirleitt í duftformi en þó er það ekki einhlítt, kornastærðir svipaðar og sements.

Íaukar hafa áhrif á gæði og eiginleika sements. Hægt er að notast við íauka í sparnaðarskyni þar sem þetta efni er oft ódýrara en sement og einnig má nota þetta til að minnka kolefnisspor steypunnar.
Oft eru þetta efni (aukaafurðir) sem verða til við vinnslu kísiljárns, stáls, brennslu kola, o.fl. Það vill svo til að þessi sement hvarfast oft hægar og hentar því vel til notkunar í massasteypum þar sem hitamyndun er lág.

Algengustu íaukanir eru:

* Kísilryk (e. Silica fume)
* Flugaska (e. Pulverized fuel/fly ash, PFA) (aukaafurð við kolabrennslu)
* Líparít, malað
* Slagg (e. Blast-furnace slag) (aukaafurð við stálframleiðslu)
* Kalk, malað

Íaukar eru notaðir í mismiklu mæli í sementi.


Binary file added projects/byg302g/myndir/kafli15/28dagar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/7dagat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/C3SogC2S.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/flot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/holrymd2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/holrymi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/hraðarar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/hugtök.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/hvörfun.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/iaukar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/porur.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/votaðferð.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projects/byg302g/myndir/kafli15/þurraðferð.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading