fix: correct Kelvin to Fahrenheit conversion formula#567
Open
Vineshnayak wants to merge 1 commit intowasmerio:mainfrom
Open
fix: correct Kelvin to Fahrenheit conversion formula#567Vineshnayak wants to merge 1 commit intowasmerio:mainfrom
Vineshnayak wants to merge 1 commit intowasmerio:mainfrom
Conversation
The formula used (5/9) which is the Celsius-to-Fahrenheit multiplier. The correct multiplier for K to °F is (9/5). Example: 373.15K (boiling point) was giving ~2°F, now correctly gives 212°F.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Title
Fix Kelvin to Fahrenheit conversion formula
Summary
Corrected the Kelvin to Fahrenheit conversion formula by replacing the incorrect multiplier
(5/9)with the correct(9/5)value.Description
The Kelvin to Fahrenheit conversion formula previously used the multiplier
(5/9), which is incorrect for this conversion and belongs to the Celsius conversion formula.The formula has now been corrected to use
(9/5)so temperature values convert accurately.Example:
373.15K(boiling point of water) was previously giving approximately2°F212°FThe changes are as follows:
Checks
in the repository
in the PR
Thank You,
Vinesh nayak