JLU_Design

Members
  • Posts

    116
  • Joined

  • Last visited

Posts posted by JLU_Design

  1. On 8/22/2024 at 2:50 PM, Hammer7 said:

    C drive is holding 115 gig with only 4.4gig available

    You definitely need a larger hard-drive.

    You may need more ram as well.

    If you are short on ram your computer may be trying to use a swap partition on the hard-drive as well which could be exasperating the problem.

     

    I would also recommend this tool box to fix common windows problems which could potentially improve the performance of your PC.

    https://christitus.com/downloads/

     

  2. 1 hour ago, DBCooper said:

    I found this in the help system:

     

    When content is deleted from the Library Browser, data associated with that content may remain in the library database. If you delete library content for the purpose of increasing available disk space, you can right-click on the User Catalog as well as the Trash and select Vacuum from the contextual menu. 

     

    Thanks

     

    I did search the help but couldn't find an explanation the first time around.

    I wish that when you search for something the link would open to the exact spot where the search term is used.

    I missed it when I looked the first time.

  3. On 6/20/2024 at 9:42 AM, Leadcarpo said:

    Is there a simple way to modify this macro to make the number show as rough? 

    This is what I use:

    RO Sill Height:

    %bottom_elevation-rough_opening_clearance_gap_bottom%

     

    Quite simple actually.

  4. I'm trying to access some data I have stored in an Object Information Custom Field.

    I tied searching the help but can't seem to find any Info.

     

    This outputs all the info in all of the custom fields:

    %custom_fields{}%

    I want one specific custom field data output.

     

  5. Default Sets

    This is super powerful once you can get your mind wrapped around it.

    https://www.chiefarchitect.com/videos/watch/240/understanding-default-sets.html

     

    I think the most important thing is to have the following specific layers for each default set.

     

    A specific CAD layer for each Default Set:

    image.thumb.png.17a872919bdd884039f80877747de8c9.png

    A specific Dimension layer for each Default Set:

    image.png.96297c48d773c4c9ec2c73ef792c1675.png

    A specific Revision Cloud layer for each Default Set:

    As you can see I don't have a specific revision cloud layer for all my default sets.

    Some of them share Revision Clouds,  General.

    image.png.c0f79550661f2b22200822ca47a3c74d.png

    A specific Text layer for each Default Set:

    image.thumb.png.a34508b856914218e1c4093d813d5841.png

     

    I've thought that it would be nice to have a wizard to create all of the important parts to a new default set because it's a good bit of stuff to try to remember to check when setting up a new default set.

     

     

     

  6. This thread caught my attention because I've been frustrated with how chief handles room labels.

     

    Some rooms would ask to show the label and others it would not.
    After some investigating I found that some of my rooms "Function" was set to (Unspecified).
    It appears like if the room function is set to Unspecified the show room label checkbox will be unchecked by default.

     

    image.thumb.png.a5401b51f1246f1c723ee1fc1aae7bc3.png

     

    To me it would make more sense if the room defaults dialog would have the option to set whether the room label will show by default or not.

     

    On another note I've gotten to the point where I don't like Chief's room labels anyway because I prefer to use a rich text box to show the rooms definition.

    I want the room name to be formatted differently from the room specifications and you can't do that with the default room label text box that chief uses.

    If Chief would  use a rich text box for the default room label I would switch back to using the default room labels.

     

    So I unchecked this so Chief does not bug me about showing the room labels:

     

    image.thumb.png.ab1c5f3bcf089a8717243095a5d9f3e2.png

     

    What's interesting is if this is unchecked all the show room label check boxes are unchecked when changing rooms.

     

    image.thumb.png.60d80206d0bcb6e0e714686f46a8b6e8.png

     

    I don't know if this has helped anyone else but this has helped me understand a little better what chief is doing in the background.

     

    I still think there could be some improvements to the default room labels.

     

    Hope this helps in some way.

     

  7. 23 hours ago, Tkangas said:

    An issue I've been unable to fix is: to make a flat roof thickness match the fascia height. When viewed from below, the soffit appears recessed into the eaves, but it should be flush (or nearly) with bottom of fascia. 

    The soffit height is controlled by the bottom of the sub-fascia.

    The top of the finished fascia is is controlled by the bottom on layer# 1 in the Roof Surface Definition dialog.

    Another thing I do is add a 0" layer at the bottom of the surface definition to trick Chief into building the roof structure correctly.

     

     

    image.thumb.png.6a32c714daec16c4205d47f53163c62d.png

     

    That's how it makes sense to me anyway.

     

  8. 4 minutes ago, solver said:

    Try the line in bold.

     

    %thickness% Concrete Slab

     

    %volume.to_s('cu yd')%

     

    %(volume/27).round(1).to_f% CU YD

    Thankyou!

     

    That looks better I think.

    Not so many brackets.

     

    This is what I'm using after your input:

     

    %thickness% Concrete Slab

    %(volume/27).ceil(1).to_f% cu yd

     

    Because I decided I want it rounded up.

     

  9. Well, I guess I just needed to ask to figure out a solution my self.

     

    %thickness% Concrete Slab

    %volume.to_s('cu yd')%

    %((volume.to_f)/27).ceil(1)% cu yd

     

    image.thumb.png.1b956f15a7d6a399889b1f983186b92c.png

     

    This is a way to do it...

    If someone has a better way let me know.

    Thanks

  10. 14 minutes ago, solver said:

    Ruby is a programming language, not something exclusive to Chief, so a web search will find syntax to try.

    And a forum search should also find some helpful info as rounding is a common question.

    I understand and have done that.

    .round does not work for some reason

     

    I thought someone familiar with Ruby and Chief might be able to quickly tell me what I need to do.

    I've messed around with this off and on for several months.

  11. I've been stumped on this for a while.

    I want the volume of a concrete slab displayed in cubic yards rounded to one decimal point in the label.

    image.thumb.png.d07a79821e9ae6242c6dad4c90eab14e.png

     

    What I'm using in the label:

     

    %thickness% Concrete Slab

    %volume.to_s('cu yd')%

     

    Can anyone point me in the right direction?

    Thanks in advance.