can someone provide me a code on power to heat conversiton. Ex: heat pump
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
if true
% code
end
0 Commenti
Risposte (1)
Naveed Ahmed
il 31 Lug 2018
Try this MATLAB function
function jou = pow2energy(pwr,nhrs)
% make sure pwr is in watts, nhrs is time in hours, use conversion from min/sec to hrs if necessary
jou = (pwr/1000)*nhrs;
return(jou);
0 Commenti
Vedere anche
Categorie
Scopri di più su Sources in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!