-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mitigate thermal issues with oryp7 #179
base: master
Are you sure you want to change the base?
Conversation
You don't need to merge this PR as-is. This is largely a call to please implement sane defaults for the fan curves, ideally for all System76 computers. The fans are mentioned as a negative in every single Oryx Pro 6/7 review I've seen. |
@MilesBHuff I'd suggest making this a draft PR if it's not ready for review. You can find a "converting to draft" text link in the right sidebar. |
I've set the floor speed to 25% to avoid the rattling that happened after #163 was fixed the first time. Unfortunately, the fan still rattles momentarily when turning off. I've also halved the cooldown time, to avoid the fan blowing at 100% for over 10 seconds when the CPU is at 45'C (This happens every boot.). The new cooldown setting works nicely, but I'm thinking 12 or 13 might be better. |
I've just given a full breakdown of the thought-processes behind this PR in #180. |
Rebased onto latest code (now that #180 has been merged). |
Fan control has been rewritten, so fan behavior is now completely different. If you would still like to modify the fan points, I would say it should be limited to 10 points. |
The oryp7 (and oryp6, which has the same everything (apart from the GPU)) has abysmal CPU thermals, reaching over 90'C at just 15% CPU use. Yet, in spite of this, and in spite of the fact that the heat pipe is shared with the GPU, only one fan turns on to cool the CPU. This PR adds the new config option from #177 to the oryp7, thus helping resolve the above issue.
The biggest problem with the fans, though, is undoubtedly the fact that they are not set to turn on until long after CPU throttling has already begun. Fans should reach full speed before the CPU starts throttling; and throttling is supposed to be a last resort, not a first one. In this vein,
I have added the vastly improved fan curve from #135. This will prevent throttling, increase performance, and give lower temps.However, it will also worsen the sudden and harsh spinup so-often complained-about in reviews of the oryp7. In order to resolve this, interpolation will need to be fixed and re-enabled (as in #139). However, the scope of that such a change is beyond the intention of this PR.EDIT: I have gone ahead and just hard-coded the interpolations into the config. Good-enough, for now.
EDIT: The worsened spinup above was actually mostly due to the HEATUP/COOLDOWN settings from #135 being far too rapid.