| Specifications
Product Glance | |
Model | S21 Hyd. |
Algorithm | Cryptocurrency | SHA256 | BTC/BCH/BSV |
Hashrate, TH/s(1-1) | 335 |
Power on wall @35°C(1-2), Watt(1-1) | 5360 |
Power efficiency on wall @35°C(1-2), J/TH(1-1) | 16.0 |
Detailed Characteristics | ||
Power Supply | ||
Power supply AC Input voltage, Volt(2-1) | 380~415V AC | |
Power supply AC Input Frequency Range, Hz | 50~60 | |
Power supply AC Input current, Amp(2-2) | 12 | |
Hardware Configuration | ||
Networking connection mode | RJ45 Ethernet 10/100M | |
Miner Size (Length*Width*Height, w/o package),mm | 339*163*207 | |
Miner Size (Length*Width*Height, with package),mm | 570*316*430 | |
Net weight, kg | 12.3 | |
Gross weight, kg | 13.6 | |
Environment Requirements | ||
Inlet water temperature, °C | NEM(2-3) HEM1(2-3) HEM2(2-3) | 35 45 50 |
Water flow, L/min | 8.0~10.0 | |
Water pressure bar | ≤3.5 | |
Working fluid(2-4) | Deionized water/Pure water | |
Liquid PH | 8.5~9.5 | |
Diameter of water pipe connector, mm | DN10 | |
Storage temperature, °C | -20~70 | |
Operation humidity(non-condensing), RH | 10~90% |
NOTE:
(1-1) The Hashrate value, Power on wall, and Power efficiency on wall are all typical values, The actual Hashrate value fluctuates by 3%, and the actual Power on wall and Power efficiency on wall fluctuate by 5%.
(1-2) Inlet water temperature.
(2-1) Caution: Wrong input voltage may cause server damaged.
(2-2) Three-phase AC input, 10 A per wire.
(2-3) NEM: Normal Energy Mode; HEM: High Energy Mode.
(2-4) If the water conductivity is ≥100 μs/cm, the fluid must be replaced. The water conductivity is less than 20 μs/cm when the system is running at the first time.
| Purchasing Guidelines
1. The shipping costs, customs charges, and taxes(if any) are not included in the retail price shown above.
2. After an order has been submitted, a request to cancel the order, refund any part of the ordered amount or change the ordered item(s) to different item(s) or different batch(es) will not be entertained by Bitmern Mining.
3. The pictures shown are for reference only; the final shipment version shall prevail.
4. Payment Schedule:
Initial Payment: 20%, to be paid in full on the day of signing.
Mid-term Payment: 30%, to be settled one month before shipment.
Final Payment: 50%, due seven days prior to shipment.
| Shipping Details
1. Shipments will be scheduled on a first-paid-first-ship basis for orders on which Bitmern Mining has received full payment.
2. You are responsible for any customs delays or returned shipments due to a lack of proper documentation. It’s highly recommended to be aware of local customs clearance policies and to prepare all customs documentation ahead of time to avoid any customs clearance delays or unexpected costs.
Add your dynamic field and your info
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.
Add your dynamic field and your info
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.
/* -- The root styles must go in the element of the structure with the name "Single product"(Section). --*/
/* -- Border radius to the main photo of the gallery -- */
.single-product-4__gallery{
.flex-viewport, .woocommerce-product-gallery__image{
border-radius: var(--radius-m);
}
}
.single-product-4__add-cart{
/* Styles for when the product is sold individually */
&:has(.input-text[type="hidden"]){
.woocommerce-variation-add-to-cart, .cart{
flex-direction: column;
}
}
/*-- Styles applied to the container containing the quantity form and the button may vary depending on whether it has variations or not. --*/
.variations_button, .cart:not(:has(.variations_button)){
display:flex;
gap: var(--space-xs);
/*-- Button styles "Add to cart" --*/
.button{
margin-top:0;
flex: 1;
}
/*-- Mobile Styles --*/
@media(max-width: 766px){
flex-direction:column;
}
}
/*- Border radius styles in quantity input -*/
.quantity{
.action.minus{
border-radius: var(--radius-s) 0 0 var(--radius-s);
}
.action.plus{
border-radius: 0 var(--radius-s) var(--radius-s) 0;
}
}
}
/* The purpose of the script is to have the aria-expanded and aria-controls attributes for web accessibility.
You can remove this script and the accordion will still work. */
const btnFaq = document.querySelectorAll('.single-product-4__accordion-heading');
const contentFaq = document.querySelectorAll('.single-product-4__accordion-description');
btnFaq.forEach((button) => {
button.addEventListener('click', () => {
// Gets the current state of the button
const isExpanded = button.getAttribute('aria-expanded') === 'true';
// Reset all buttons to "false".
btnFaq.forEach((currentBtn) => {
currentBtn.setAttribute('aria-expanded', 'false');
});
// Changes the status of the current button
button.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
});
});
// Load function after HTML content is loaded
document.addEventListener('DOMContentLoaded', function () {
// Make a tour on each button there is
btnFaq.forEach((button, i) => {
const contentId = contentFaq[i].getAttribute('id');
button.setAttribute('aria-controls', contentId);
});
});