orange gold
12-29-2010, 10:00 PM
This BBcode is so simple to use...
You enter a temperature in celsius, fahrenheit, kelvin, or rankine. And it will convert it to all 4 of thoose measurements.
Exmaple
If you entered 100.1234 for celsius this would be the final result:
100.1234 displays:
100.1234?C (212.22212?F / 373.2734K / 671.89212?Ra)
### ~ Celsius
### ~ Fahrenheit
### ~ Kelvin
### ~ Rankine
Here is the code:
Admin CP > BBCode > New:
Title:
Temperature Conversion
BBCode Tag Name:
temp
Replacement:
<script language="Javascript">
<!--
var option1 = "{option}";
if (option1 == "c" || option1 == "C") {
text1a = "{param}?C (";
var num2a = ((Math.round((({param}*1.8+32.00)*100)))/100);
text2a = num2a.toString();
text3a = "?F / ";
var num4a = ((Math.round((({param}+273.15)*100)))/100);
text4a = num4a.toString();
text5a = "K / ";
var num6a = ((Math.round((({param}*1.8+491.67)*100)))/100);
text6a = num6a.toString();
text7a = "?Ra)";
document.write(text1a);
document.write(text2a);
document.write(text3a);
document.write(text4a);
document.write(text5a);
document.write(text6a);
document.write(text7a);
} else if (option1 == "f" || option1 == "F") {
text1b = "{param}?F (";
var num2b = ((Math.round(((({param}-32.00)*(5/9))*100)))/100);
text2b = num2b.toString();
text3b = "?C / ";
var num4b = ((Math.round((((({param}-32.00)*(5/9))+273.15)*100)))/100);
text4b = num4b.toString();
text5b = "K / ";
var num6b = ((Math.round((((({param}-32.00)*(5/9))*1.8+491.67)*100)))/100);
text6b = num6b.toString();
text7b = "?Ra)";
document.write(text1b);
document.write(text2b);
document.write(text3b);
document.write(text4b);
document.write(text5b);
document.write(text6b);
document.write(text7b);
} else if (option1 == "k" || option1 == "K") {
text1c = "{param}K (";
var num2c = ((Math.round(((({param}-273.15)*1.8+491.67)*100)))/100);
text2c = num2c.toString();
text3c = "?Ra / ";
var num4c = ((Math.round((({param}-273.15)*100)))/100);
text4c = num4c.toString();
text5c = "?C / ";
var num6c = ((Math.round(((({param}-273.15)*1.8+32.00)*100)))/100);
text6c = num6c.toString();
text7c = "?F)";
document.write(text1c);
document.write(text2c);
document.write(text3c);
document.write(text4c);
document.write(text5c);
document.write(text6c);
document.write(text7c);
} else if (option1 == "r" || option1 == "R" || option1 == "Ra" || option1 == "ra" || option1 == "RA" || option1 == "rA") {
text1d = "{param}?Ra (";
var num2d = ((Math.round((((({param}-491.67)*(5/9))+273.15)*100)))/100);
text2d = num2d.toString();
text3d = "K / ";
var num4d = ((Math.round(((({param}-491.67)*(5/9))*100)))/100);
text4d = num4d.toString();
text5d = "?C / ";
var num6d = ((Math.round((((({param}-491.67)*(5/9))*1.8+32.00)*100)))/100);
text6d = num6d.toString();
text7d = "?F)";
document.write(text1d);
document.write(text2d);
document.write(text3d);
document.write(text4d);
document.write(text5d);
document.write(text6d);
document.write(text7d);
}
//-->
</script>
Example:
100
Description:
Converts a given temperature in Celsius, Fahrenheit, Kelvin, and/or Rankine to the other units of measurement.
Example (Celsius):
The final outcome is formatted as:
a?C (b?F / cK / d?Ra)
so, 100.1234 displays:
100.1234?C (212.22212?F / 373.2734K / 671.89212?Ra)
Use {Option}:
Yes.
Leave everything else the same... Enjoy! :)
You enter a temperature in celsius, fahrenheit, kelvin, or rankine. And it will convert it to all 4 of thoose measurements.
Exmaple
If you entered 100.1234 for celsius this would be the final result:
100.1234 displays:
100.1234?C (212.22212?F / 373.2734K / 671.89212?Ra)
### ~ Celsius
### ~ Fahrenheit
### ~ Kelvin
### ~ Rankine
Here is the code:
Admin CP > BBCode > New:
Title:
Temperature Conversion
BBCode Tag Name:
temp
Replacement:
<script language="Javascript">
<!--
var option1 = "{option}";
if (option1 == "c" || option1 == "C") {
text1a = "{param}?C (";
var num2a = ((Math.round((({param}*1.8+32.00)*100)))/100);
text2a = num2a.toString();
text3a = "?F / ";
var num4a = ((Math.round((({param}+273.15)*100)))/100);
text4a = num4a.toString();
text5a = "K / ";
var num6a = ((Math.round((({param}*1.8+491.67)*100)))/100);
text6a = num6a.toString();
text7a = "?Ra)";
document.write(text1a);
document.write(text2a);
document.write(text3a);
document.write(text4a);
document.write(text5a);
document.write(text6a);
document.write(text7a);
} else if (option1 == "f" || option1 == "F") {
text1b = "{param}?F (";
var num2b = ((Math.round(((({param}-32.00)*(5/9))*100)))/100);
text2b = num2b.toString();
text3b = "?C / ";
var num4b = ((Math.round((((({param}-32.00)*(5/9))+273.15)*100)))/100);
text4b = num4b.toString();
text5b = "K / ";
var num6b = ((Math.round((((({param}-32.00)*(5/9))*1.8+491.67)*100)))/100);
text6b = num6b.toString();
text7b = "?Ra)";
document.write(text1b);
document.write(text2b);
document.write(text3b);
document.write(text4b);
document.write(text5b);
document.write(text6b);
document.write(text7b);
} else if (option1 == "k" || option1 == "K") {
text1c = "{param}K (";
var num2c = ((Math.round(((({param}-273.15)*1.8+491.67)*100)))/100);
text2c = num2c.toString();
text3c = "?Ra / ";
var num4c = ((Math.round((({param}-273.15)*100)))/100);
text4c = num4c.toString();
text5c = "?C / ";
var num6c = ((Math.round(((({param}-273.15)*1.8+32.00)*100)))/100);
text6c = num6c.toString();
text7c = "?F)";
document.write(text1c);
document.write(text2c);
document.write(text3c);
document.write(text4c);
document.write(text5c);
document.write(text6c);
document.write(text7c);
} else if (option1 == "r" || option1 == "R" || option1 == "Ra" || option1 == "ra" || option1 == "RA" || option1 == "rA") {
text1d = "{param}?Ra (";
var num2d = ((Math.round((((({param}-491.67)*(5/9))+273.15)*100)))/100);
text2d = num2d.toString();
text3d = "K / ";
var num4d = ((Math.round(((({param}-491.67)*(5/9))*100)))/100);
text4d = num4d.toString();
text5d = "?C / ";
var num6d = ((Math.round((((({param}-491.67)*(5/9))*1.8+32.00)*100)))/100);
text6d = num6d.toString();
text7d = "?F)";
document.write(text1d);
document.write(text2d);
document.write(text3d);
document.write(text4d);
document.write(text5d);
document.write(text6d);
document.write(text7d);
}
//-->
</script>
Example:
100
Description:
Converts a given temperature in Celsius, Fahrenheit, Kelvin, and/or Rankine to the other units of measurement.
Example (Celsius):
The final outcome is formatted as:
a?C (b?F / cK / d?Ra)
so, 100.1234 displays:
100.1234?C (212.22212?F / 373.2734K / 671.89212?Ra)
Use {Option}:
Yes.
Leave everything else the same... Enjoy! :)