Skip to content

Conversation

zohaib-c
Copy link

Summary

Added the RC Thermal Model to simulate the temperature of hosts.

Implementation Notes ⚒️

  • Created a new interface and classes for thermal models.
  • Host file now outputs temperature in degrees Celsius.
  • Input JSON file now has the option to input a thermal model, otherwise it defaults to the default Intel Xeon 8160 processor's specifications.

*/
public static SimPsuFactory simple(CpuPowerModel model) {
return (machine, graph) -> new SimplePsu(graph, model);
public static SimPsuFactory simple(CpuPowerModel model, ThermalModel thermalModel) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally, we would make the thermalModel variable nullable.
Currently, you always have to put in a thermalModel.
This is not ideal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants