Simulink Model for ohmic heating in a resistor
37 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mukti Chaturvedi
le 16 Juil 2022
Commenté : Mukti Chaturvedi
le 27 Juil 2022
I need to model temperature rise of a resistor due to joule heating with a variable supply or a variable resistor. Is there a simulink component that can be used for this or it has to be implemented with the physical equations fed into block diagrams?
Can someone help give an idea of how this can be modeled?
0 commentaires
Réponse acceptée
David John
le 18 Juil 2022
Have a look at the Variable Resistor and Thermal Resistor blocks. The source code should be available for both of these blocks.
If you start from the Thermal Resistor source code, you can simply change R from being a parameter to being an input:
inputs
R = { 0.0, 'Ohm' }; % R:left
end
12 commentaires
David John
le 26 Juil 2022
Modifié(e) : David John
le 26 Juil 2022
If you are making a custom block, change the line "intermediates (Access=private, ExternalAccess=none)" to "intermediates (Access=private, ExternalAccess=observe)", and then R will appear in the simlog.
Or simply extract i, p.v and n.v from the simlog and plot (p.v-n.v)./i against T.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Electromagnetic Models dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!