Hi ,
I am using a dynamo script to populate parameter values from an excel file inside family editor in Revit. All of the parameters are correctly exported except “Temperature” … In Dynamo I can see that:
55 (In Dynamo) = 14805.10 degree celsius (In Revit)
-40 (In Dynamo) = -11239.15 degree celsius ( In Revit)
Can some one help me fix this issue. I need to show 55 and -40 Inside Revit as Well.
Please see the images below:
strong text
What’s the type of the parameter? There is no parameter or unit for temperature in Revit.
Hi ,
The type of the parameter is “ElectricalTemperature”. See image below,
Hi,
I guess you need this node:
@waqarkhan9494 check this:
These formulas may make a little more sense if you’re familiar with Temperature Differences in Revit. Revit uses absolute units internally - meaning that in order to convert temperatures to numbers you have to do a weird conversion to temperature differences in order to get unitless values and therefore ignore the difference in units.
That seems to be how Revit handles all temperature units now. Parameters that read ΔT return correct values (I assume because they’re essentially unitless). While…
and use this formula to convert:
rankine = 273.15;
((celcius-0) + rankine)/((1-0) + rankine)
1 Like
Can you please help with this issue @tradelie
Hi I have several family documents in a directory, I am trying to first filter them based on the category and a paramater, In the second step I am trying to add shared parameters to these families.
Work Flow Chart:
[344]
The script shows no errors but the issues arise, when I check the output. When I open the families it gives me the following error and the parameters are not added.
[Capture]
[2]
After I close it and re-open, I can see that the parameters are added. But If I dont save th…