html,body{ height:100%; } body{ margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell, Arial; background:radial-gradient(1200px 800px at 110% -10%, rgba(14,165,233,.10), transparent 60%), radial-gradient(900px 700px at -10% 110%, rgba(239,68,68,.08), transparent 50%), var(--bg); color:var(--text); } .muted{ color:var(--muted); } .app{ position:relative; height:100vh; padding:16px; } .content{ position:absolute; inset:16px; border-radius:24px; background:#fff; border:1px solid var(--border); box-shadow:var(--shadow); overflow:hidden; } .content-header{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding:16px 20px; border-bottom:1px solid var(--border); } .title{ font-weight:900; letter-spacing:.02em; display:flex; align-items:center; gap:12px; flex-wrap:wrap; } .tools{ display:flex; gap:8px; align-items:center; flex-wrap:wrap; justify-content:flex-end; } .badge{ display:inline-flex; align-items:center; gap:6px; padding:7px 10px; border-radius:999px; font-weight:900; font-size:12px; border:1px solid var(--border); background:#fff; } .badge.ok{ color:var(--ok); } .badge.warn{ color:var(--warn); } .btn{ all:unset; padding:10px 14px; border-radius:12px; cursor:pointer; user-select:none; background:#fff; border:1px solid var(--border); font-weight:800; font-size:13px; color:var(--text); } .btn:hover{ transform:translateY(-1px); background:#fdfdfd; } .btn.primary{ background:linear-gradient(180deg,#38bdf8,#0ea5e9); color:#fff; border:none; } .btn.danger{ background:linear-gradient(180deg,#f87171,#ef4444); color:#fff; border:none; } .btn.small{ padding:8px 10px; font-size:12px; border-radius:10px; } .input,.select{ padding:10px 12px; border-radius:12px; background:#fff; color:var(--text); border:1px solid var(--border); font:inherit; font-size:13px; } .content-body{ position:absolute; inset:78px 0 0 0; overflow:auto; padding:16px; } section[data-module]{ display:none; } section[data-module].visible{ display:block; } .drawer-toggle{ all:unset; display:flex; gap:8px; align-items:center; padding:10px 12px; border-radius:12px; border:1px solid var(--border); background:#fff; cursor:pointer; font-weight:900; } .hamburger{ width:20px; display:grid; gap:3px; } .hamburger span{ display:block; height:2px; background:var(--text); border-radius:2px; } .drawer{ position:absolute; right:0; top:0; height:100%; width:96px; background:linear-gradient(180deg,var(--panel),var(--panel-acc)); border-left:1px solid var(--border); box-shadow:var(--shadow); transform:translateX(100%); transition:transform .25s ease; display:flex; flex-direction:column; align-items:center; padding:10px 8px; z-index:10; } .drawer.open{ transform:translateX(0); } .brand{ width:100%; text-align:center; font-weight:900; letter-spacing:.06em; margin-bottom:8px; } .menu{ display:flex; flex-direction:column; gap:8px; width:100%; } .menu button{ all:unset; display:flex; align-items:center; justify-content:center; width:100%; height:56px; border-radius:16px; cursor:pointer; color:var(--text); background:#fff; border:1px solid var(--border); font-size:18px; } .menu button.active{ outline:2px solid var(--accent); border-color:transparent; } /* NOTES */ .notes-header{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-bottom:12px; } .hour-col{ display:flex; flex-direction:column; gap:12px; } .hour-card{ background:#fff; border:1px solid var(--border); border-radius:18px; padding:12px; position:relative; box-shadow:var(--shadow); display:flex; flex-direction:column; } .hour-card.tall .hour-content{ min-height:66vh; } .hour-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:8px; } .hour{ font-weight:900; letter-spacing:.04em; color:var(--accent); } .hour-actions{ display:flex; gap:8px; align-items:center; flex-wrap:wrap; } .expand-toggle{ position:absolute; right:10px; top:10px; } .hour-content{ margin-top:8px; display:none; } .hour-topic-row{ display:flex; gap:8px; flex-wrap:wrap; align-items:center; margin-bottom:8px; } .topic-input{ min-width:220px; flex:1; font-weight:800; } .hour-text{ white-space:pre-wrap; color:#111827; font-size:14px; min-height:70px; padding:6px; border-radius:10px; background:#fafafa; border:1px dashed var(--border); } .hour-textarea{ width:100%; min-height:130px; resize:vertical; border-radius:12px; background:#fff; color:#111827; border:1px solid var(--border); padding:10px; font:inherit; } .reminder-box{ display:flex; gap:6px; flex-wrap:wrap; align-items:center; } .hour-reminder-bottom{ display:none; margin-top:auto; padding-top:10px; border-top:1px dashed var(--border); } body.lock-scroll{ overflow:hidden; } .hour-card.full{ position:fixed; left:12px; right:12px; top:86px; bottom:12px; z-index:999; border-radius:22px; overflow:auto; } /* CALC */ .calc-wrap{ display:grid; grid-template-rows:auto auto 1fr auto; gap:12px; } .calc-screen{ background:#fff; border:1px solid var(--border); border-radius:16px; padding:14px; box-shadow:var(--shadow); } .mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } /* Equal size & bold, +30% bigger */ .calc-expr, .calc-result{ font-weight:900; color:#111827; word-break:break-word; font-size:42px; line-height:1.15; } .calc-expr{ color:#0f172a; opacity:.88; margin-bottom:6px; } .calc-result{ color:#111827; } .calc-keys{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; } .key{ all:unset; text-align:center; padding:14px; background:#fff; border:1px solid var(--border); border-radius:12px; font-weight:900; cursor:pointer; box-shadow:var(--shadow); font-size:18px; } .key.op{ color:var(--accent); font-size:24px; } /* bigger operators */ .key.eq{ background:linear-gradient(180deg,#38bdf8,#0ea5e9); color:#fff; border:none; font-size:22px; } .history{ border-top:1px dashed var(--border); padding-top:10px; max-height:280px; overflow:auto; } .history-item{ display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border-radius:14px; background:#f9fafb; margin-bottom:10px; border:1px solid var(--border); cursor:pointer; } .history-item:hover{ background:#fff; } .history-left{ display:flex; flex-direction:column; gap:4px; } .history-right{ display:flex; flex-direction:column; align-items:flex-end; gap:2px; min-width:140px; } .hist-val{ font-weight:900; font-size:18px; } .hist-time{ font-size:12px; color:var(--muted); } .card{ background:#fff; border:1px solid var(--border); border-radius:16px; padding:12px; box-shadow:var(--shadow); } .report-ta{ width:100%; min-height:180px; resize:vertical; border-radius:14px; border:1px solid var(--border); padding:10px; font:inherit; } .report-actions{ display:flex; gap:8px; flex-wrap:wrap; align-items:center; margin-top:8px; } /* RECORDER */ .audio-row{ display:flex; gap:8px; flex-wrap:wrap; align-items:center; } audio{ width:100%; } /* TABLES */ table{ width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border-radius:14px; } thead th{ text-align:left; font-size:12px; color:var(--muted); background:#f1f5f9; padding:10px; } tbody td{ padding:10px; border-bottom:1px solid var(--border); } /* INVOICE */ .invoice-grid{ display:grid; gap:12px; } .right{text-align:right;} .collapser{ display:flex; justify-content:space-between; align-items:center; gap:10px; cursor:pointer; padding:10px 12px; border-radius:14px; background:#fff; border:1px solid var(--border); font-weight:900; } .collapse-body{ display:none; margin-top:10px; } .collapse-body.open{ display:block; } .inv-rows input{ font-weight:700; } .vat-row{ display:flex; gap:8px; flex-wrap:wrap; align-items:center; margin-top:10px; }
top of page

OUR PRODUCTS

Granulated blast furnace slag (GGBFS)

is obtained by rapidly cooling liquid slag with water or steam. After grinding, it becomes an active binder, which is used as an additive to cement (CEM III), increasing the strength and frost resistance of concrete. Granulated slag is also used to produce building and insulation materials.

Metallurgical slag is a by-product of iron and steel production, containing oxides of calcium, silicon, aluminum and other elements. Its processing provides a number of advantages:
It is used as granulated or crushed stone material in the construction of roads and foundations.
It is applicable in the cement and concrete industries as an additive or filler.
It is environmentally beneficial: it reduces the consumption of natural resources and the carbon footprint.

 

 

For foundries

UAB Siras cooperates with various foundries around the world to provide them with the necessary raw materials. We select the best quality cast iron products and cast iron shards for foundries. Raw materials are selected according to company requirements, including the high content of carbon (up to 4%) and silicon (up to 3%), necessary for the gray casting process. Our cast iron products and shards contain 90% more iron, with low slag, phosphorus and sulphur. This contributes to the production of high-quality end products for foundries.

In addition, UAB Siras supplies high-phosphorus cast iron to order, providing foundries with savings of up to 60% on raw material costs. In this context, the raw material we supply for foundries is different from ordinary scrap and ensures equally high quality. Thanks to its innovative approach, UAB Siras provides a stable range and has become a reliable supplier for foundries around the world.

0-02-05-3f4cd1298c1b2cde06cc8bdff6cf9410a97a8950c30a0d2e7921896ba9ac5842_8f30c1f71abec963.jpg
0-02-05-b58fded7c2836b59ee2b825a654c8e009e8135a6df5f09f6785a73d44d9c27d1_2d8a72e8bb3e96e0.jpg
For foundries
For fondries
For fondries

 Cast Iron Skulls

UAB Siras supplies cast iron shards to foundries worldwide, meeting the needs of the most demanding customers. In today's market environment, it is very difficult to find gray iron scrap of equally high quality. Many industries face a shortage of raw materials and are forced to use expensive cast iron billets to meet production needs. However, UAB Siras works around the clock with foundries around the world to find the most suitable material. Our pig iron slag is the ideal solution for foundries using gray iron due to its high carbon (up to 4%) and silicon (up to 3%) content, as well as very low phosphorus and sulfur content. Our material has a minimum amount of slag, which means that it has high regenerative properties during the casting process.

Cast iron
Cast iron
Cast iron

 Pig Iron Skulls

We supply pig iron shards to industries that specialize in the production of high quality cast iron. They usually require very low silicon content to meet their own requirements. UAB Siras provides high-quality iron shards with a carbon content of approximately 4% and a low silicon content (up to 0.30), as well as low phosphorus and sulfur content. Our cast iron shards can replace traditional pig iron billets, which can provide up to 40% cost savings, helping to increase profits for foundries.

Pig iron
Pig iron
Pig iron

Ferroalloys

We offer a wide range of alternative products for ferroalloys, including silicon, used in steel and foundry applications. Our high-carbon silicon is cost-effective because it already contains carbon and silicon, eliminating the need for additional carbon costs. Moreover, it is 30% cheaper than traditional ferrosilicon, which represents a significant saving in production. Our ferroalloys contain less than 50% iron and a high percentage of additional elements such as manganese, aluminum, chromium, or silicon. They are widely used in steel production and alloy manufacturing. We provide a variety of shapes, sizes, and packaging options, allowing you to select the alloy that best suits your needs. At UAB Siras, our company offers a broad range of ferroalloys, ranging from ferroaluminum to ferromanganese. We collaborate with experienced experts to curate the best product portfolio. We consistently update our offerings and will keep you informed about new products and services.

Ferroalloys
Ferroalloys
Ferroalloys

Carbon Anode Buts

UAB Siras supplies scrap carbon anodes to foundries as a cost-effective alternative to foundry coke. With the increasing prices of coke, foundries can benefit from purchasing cheaper raw materials for carbon anodes, resulting in savings of over 25% in costs. Additionally, due to its high caloric content, the amount of carbon anode used can be reduced. The carbon anodes consist of 95-97% carbon, whereas traditional foundry coke contains 77-85% carbon. This means that 1 ton of anode scrap has the same calorific value as 1.4 tons of traditional coke, leading to cost savings for buyers while maintaining effective usage.

At UAB Siras, we not only export anode scrap directly from Ukraine but also provide supply from Malaysia and select Middle Eastern countries. Furthermore, we collaborate with Chinese exporters of carbon anodes to establish partnerships with more aluminum mills and secure a greater direct supply of anode scrap.Although the sulfur content in the anode scrap depends on the calcined petroleum coke used in its production, the ash content typically experiences a slight increase. However, the ash content in anode scrap is significantly lower than that of foundry coke, while its calorific value remains 1.3-1.5 times higher. Therefore, when sulfur content can be controlled, anode scrap becomes an ideal fuel for smelting scrap materials.

Carbon Anode
Carbon Anode
Carbon Anode
bottom of page