According to Sylvania, their 400w lamps reach a maximum surface temperature of around 750F. This seems to be universal of all HID lamp types.
120 degrees
Code Example:/********************************************************************************* MODULE: main.c******************************************************************************** DESCRIPTION:* Program that takes a temperature from the user on the command line, then* displays that temperature as celsius converted to Fahrenheit, and* as Fahrenheit converted to celsius.********************************************************************************/#include #define iARGS_REQUIRED 2#define iARG_EXE 0#define iARG_INPUT 1static floatfCelsiusToFahrenheit( float fCelsius );static floatfFahrenheitToCelsius( float fFahrenheit );/********************************************************************************* MAIN********************************************************************************/intmain( int iArgc, char *acpArgv[] ){ float fFahrenheit = 0.0; float fCelsius = 0.0; float fInput = 0.0; /* user didn't provide a temperature on the command line */ if(iArgc != iARGS_REQUIRED) { fprintf(stderr, "Usage: %s [temperature]\n", acpArgv[iARG_EXE]); return 0; } /* read the given temperature into the fInput variable */ sscanf(acpArgv[iARG_INPUT], "%f", &fInput); /* fInput treated as celsius and converted to Fahrenheit */ fFahrenheit = fCelsiusToFahrenheit(fInput); /* fInput treated as Fahrenheit and converted to celsius */ fCelsius = fFahrenheitToCelsius(fInput); printf( "%.2f degrees Fahrenheit is %.2f degrees celsius.\n", fInput, fCelsius ); printf( "%.2f degrees celsius is %.2f degrees Fahrenheit.\n", fInput, fFahrenheit ); return 0;}/********************************************************************************* STATIC FUNCTION: fCelsiusToFahrenheit******************************************************************************** DESCRIPTION:* Converts a celsius temperature to Fahrenheit.** PARAMETERS:* fCelsius: The temperature in celsius to convert.** RETURNS:* fCelsius converted to Fahrenheit.********************************************************************************/static floatfCelsiusToFahrenheit( float fCelsius ){ return (fCelsius * 1.8) + 32;}/********************************************************************************* STATIC FUNCTION: fFahrenheitToCelsius******************************************************************************** DESCRIPTION:* Converts a Fahrenheit temperature to celsius.** PARAMETERS:* fFahrenheit: The temperature in Fahrenheit to convert.** RETURNS:* fFahrenheit converted to celsius.********************************************************************************/static floatfFahrenheitToCelsius( float fFahrenheit ){ return (fFahrenheit - 32) / 1.8;}
A pressure rating refers to the qualified operating pressure which is recommended for a component or a system by the manufacturer. The maximum working pressure of a 12" steel having a schedule of 40 at 100 degrees Fahrenheit is 855 psig.
10 Volts. ANSWER: ASSUMING a start when the voltage is at 0 and 0 degrees at 90 degrees is at maximum at 180 degrees is again at 0 v at 270 degrees is at the maximum negative potential and at 360 degrees is again at 0 v. the voltage is irrelevant in any case but it will follow these rules
The forecasted maximum temperature for tomorrow is 85 degrees Fahrenheit.
A hand warmer typically reaches temperatures between 120 to 180 degrees Fahrenheit, with a maximum temperature of around 200 degrees Fahrenheit.
The maximum temperature on Saturn is around 134 degrees Celsius (273 degrees Fahrenheit) at the top of its clouds, while the minimum temperature is approximately -185 degrees Celsius (-300 degrees Fahrenheit) in its upper atmosphere.
The maximum temperature that wood flames can reach is around 1,100 degrees Celsius (2,012 degrees Fahrenheit).
Not to exceed 125 degrees fahrenheit!!
The maximum temperature on Mars can reach around 70 degrees Fahrenheit (20 degrees Celsius) near the equator during the day, while the minimum temperature can plummet to about -195 degrees Fahrenheit (-125 degrees Celsius) at the poles during the night.
The maximum temperature recorded in the desert is 134 degrees Fahrenheit (56.7 degrees Celsius) in Death Valley, California, USA.
The average temperature for Portugal is 52 degrees Fahrenheit [11 degrees Celsius] in January. The average maximum temperature for January is 57 degrees Fahrenheit [14 degrees Celsius]. The average minimum temperature for January is 46 degrees Fahrenheit [7 degrees Celsius].
Pyrex can safely withstand a maximum oven temperature of 450 degrees Fahrenheit.
The maximum temperature setting on the Dyson hair dryer is 212 degrees Fahrenheit.
The maximum temperature that boiling water can reach is 212 degrees Fahrenheit (100 degrees Celsius) at standard atmospheric pressure.
The maximum temperature that the hottest burning wood can reach is around 1,100 degrees Celsius (2,012 degrees Fahrenheit).