Ø High AC input (180-264Vac)
Ø Long life and High reliability
Ø High efficiency up to 89%
Ø Output protections: SCP/OPP/OLP
Ø Wide operating ambient temperature (-40℃~65℃)
Ø @-40C, PS can work normally
Ø Altitude up to 5000m
Ø PCB with conformal coating
Ø 100% full load burn-in test
Ø 2 years warranty
MODEL |
VAT-H300S-5-60L |
||
OUTPUT |
DC Output |
5V |
|
Rated Current |
60A |
||
Current Range Note 1 |
0~60A |
||
Peak load |
65A, last 100mS /220Vac |
||
Ripple and Noise Note 2 |
25~65℃ |
≤150mV |
|
0~25℃ |
≤200mV |
||
Voltage ADJ. Range |
4.15~5.08V |
||
Voltage Accuracy |
±2.0% |
||
Line Regulation |
±0.5% |
||
Load Regulation |
±2.0% |
||
Set-up Time |
≤2S (220VAC input, Full load) |
||
Hold up Time |
≥10mS (220VAC input, 80% load) |
||
Temperature Coefficient |
±0.03%/℃ |
||
Overshoot and Undershoot |
<5.0% |
||
INPUT |
Voltage Range |
180Vac~264Vac |
|
Frequency Range |
47Hz~63Hz |
||
Efficiency ( Typical) |
89%(220Vac input, full load) |
||
AC Current (max.) |
<3.5A |
||
Inrush Current (Typical) |
<100A@220Vac Cold start |
||
Leakage Current |
Input—output:<0.25mA Input—PG:<3.5mA |
||
PROTECTION |
Over Power |
315~450W, hiccup mode, auto recovery |
|
Over Current |
63~90A, hiccup mode, auto recovery |
||
Shorted Circuit |
Long-term mode, auto recovery |
||
ENVIRONMENT |
Operating amb. Temp. & Hum. |
-40℃~65℃; 20%~90%RH No condensing |
|
Storage Temp. & Hum. |
-40℃~85℃; 10%~95%RH No condensing |
||
SAFETY &EMC Note 3 |
initClickCarousel(".image-carousel", 5);
// 点击切换主图
$(document).on("click", ".image-carousel .carousel .item", function () {
const src = $(this).find("img").attr("src");
$(".img-main").attr("src", src);
});
// // 页面加载时首次获取价格
$(document).ready(function() {
const currency_code = "USD";
const model = "VAT-H300S-X-60L"
if(model.trim().length > 0){
let detail_price = document.getElementById('detail-price');
let no_price = document.getElementById('no-price');
$.ajax({
url: '/get_prices.php', // 接口路径
method: 'GET',
data: { model: model ,currency_code:currency_code},
dataType: 'json',
success: function(data) {
// 更新当前行的价格
var current_price = '';
if(data.cny_price == undefined){
current_price = 'Subscribe to get prices'
}else if(currency_code == 'CNY'){
current_price = data.cny_price;
}else if(currency_code == 'HKD'){
current_price = data.hkd_price;
}else if(currency_code == 'EUR'){
current_price = data.eur_price;
}else{
current_price = data.usd_price;
}
//detail_price.textContent= current_price
if(data.cny_price == undefined){
no_price.textContent= current_price
no_price.style.display = "block";
detail_price.style.display = "none";
}else{
detail_price.textContent= current_price
detail_price.style.display = "block";
no_price.style.display = "none";
}
},
error: function() {
// 请求失败时的处理
showMessage("Error fetching price for model: " + model);
}
});
}
});
|