Revit Architecture Forum
Welcome to Autodesk’s Revit Architecture Forums. Share your knowledge, ask questions, and explore popular Revit Architecture topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Parameter Length restricted to 6 inch intervals

4 REPLIES 4
SOLVED
Reply
Message 1 of 5
hans409
6143 Views, 4 Replies

Parameter Length restricted to 6 inch intervals

Hello

does anyone know how to restrict a length parameter to 6 inch increments using a formula?  Or another method?  I have a simple frame I want to stretch dynamically in 6 inch intervals

thanks

4 REPLIES 4
Message 2 of 5
David_W_Koch
in reply to: hans409

Create a length parameter that the end user can modify; make it instance-based (I assume you want variable lengths without having multiple types).  Then create a separate parameter that takes the value of that length parameter and rounds the value to 6" increments and use that parameter as the one that drives the length of the family.  (The second parameter will also have to be instance based, as you cannot mix type and instance parameters in a formula.)

 

There are three rounding functions:  round, roundup and rounddown.  Round goes to the nearest whole number (the Help does not explain how a fraction of exactly 1/2 is rounded, although the example shown in the Help and my experience indicates it rounds up), roundup rounds up to the next higher whole number and rounddown rounds down to the next lower whole number.  Use the one that works for your purposes.

 

The rounding functions also only work on pure numbers, not numbers with units, so the user entered length will need to have the units stripped, and then added back after the rounding is done.

 

To get the rounding to be in 6" increments, you will have to divide the source number by 6, do the rounding and then multiply that result by 6.  Stripping the units and adding the units back can be combined with the division and multiplication by 6.  So your formula would look something like this:

 

roundup(LengthUser / 0'  6") * 0'  6"

 

where LengthUser is the instance-based property into which the user enters the length.

 

Since you are using the calculated value to drive a length constraint, you will also want to take precautions to avoid having it return a negative or zero value.  One way this can be done is to use a third, instance-based parameter that actually drives the geometry.  This parameter checks the value of the rounding parameter and, if it is greater than zero, passes through the value of the rounding parameter.  If it is not greater than zero, it is set to some fixed value, such as 6", since that would be the minimum value, in 6" increments.  The formula or this would look like this:

 

if(LengthRounded > 0', LengthRounded, 0'  6")

 

where LengthRounded is an instance-based property using the rounding formula shown above.

 

One downside of using formula driven parameters is that the grips that are available in the project for a family when an instance-based length parameter drives reference planes whose IsReference property is not set to Not a Reference are not present.  The attached ZIP file contains a sample Revit project in 2014 format that contains an instance of a Generic family called RoundTo6InchesTest.  This family has two model lines in it.  The "Width" is driven by an instance parameter directly.  The "Length" is driven by parameters similar to the ones described above, using the roundup option for rounding, and will only appear in 6" increments.  The Width can be adjusted in the project via grips; the length cannot.  (If anyone knows how to preserve the use of grips while driving the geometry with intermediate, formula-based parameters, please reply and explain how to do so.)

 


David Koch
AutoCAD Architecture and Revit User
Blog | LinkedIn
EESignature

Message 3 of 5
David_W_Koch
in reply to: David_W_Koch

Just after posting the previous reply, a means to make the "Length" grip stretchable in a project while maintaining the rounding on the family geometry occurred to me.  I added another reference plane to the family, and added a labeled dimension to it for the LengthUser property.  No actual geometry is tied to this reference plane, but by adding this the family has grips for the user to set the LengthUser parameter value graphically on screen, rather than by entering a value on the Properties palette.

 

If you want the user to enter a value rather than stretch a grip, then you would not need to add this additional reference plane and labeled dimension.

 

I also noticed that the dimensions that had been keeping the length line centered on the width line somehow got changed from being set to "EQ".  I am attaching a ZIP file with the updated project file with the grip-stretchable length family in it as well as the family file.


David Koch
AutoCAD Architecture and Revit User
Blog | LinkedIn
EESignature

Message 4 of 5
hans409
in reply to: David_W_Koch

Thanks so much.  Your explaination was very educational.  I got my picture frame working with your suggestions.  I couldn't really follow the part about the if then statement, but I'm not sure I need it.

Thanks Again

Message 5 of 5
David_W_Koch
in reply to: hans409

As long as the length value you enter does not get rounded to 0 or less, you would not need it. Just guarding against a user entering -2'-0" for the length value.


David Koch
AutoCAD Architecture and Revit User
Blog | LinkedIn
EESignature

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Rail Community


Autodesk Design & Make Report