Jump to content

Samuel Derenboim

Member
  • Posts

    472
  • Joined

  • Last visited

Posts posted by Samuel Derenboim

  1. regarding LOC='' in worksheets - the function only allows me to select one zone by name in the criteria selection, not all of them. Is there a criteria that can include all objects that have a record, and then print out all objects within them?

     

    i've tried multiple variable condition (if) statements without success. i've included a sample file with lighting zones with object names as Zone 1, 2, & 3, but the count reports the incorrect number of fixtures in each after moving them around.

    count by zone test1.vwx

  2. The areas there the most of my concern were the areas of the walls, the fact that they were on the energos worksheet, the R values seen, and the correct orientation is shown.

    The particular energos record for this is the 'energos wall' record, or 'energos window' record / energos 'door' record. The records for calling out wall areas to match that shown is wallareagross / wallareanet. However, i think it has a few bugs :

     

    1. wall orientation record referenced in the worksheet does not match the record of the object. It returns numbers instead of orientations. I'm guessing 6, 9, etc... are clock orientations, but i'm not sure. I don't know how 4 - became a 'south' orientation.

    2. Regarding wall area gross / wall area net - it still calculates to the center of the wall rather than to the finishes. in the attached image you will notice that this is true. 8'10 5/8"  x 10' = 88.845 s.f.

     

    I haven't done any experiments for windows or for doors just yet. But this is among my biggest gripes when calculating for wall areas for energy purposes (not wall take-offs).

    P.S. - If you add the width plus the length of the wall multiplied by the height, then you will get the true area value for the outside of the wall. If you subtract the width from  the length and multiplied by the height - you will get the interior side. But there are two problems. :

    1. These numbers can not be used in tags as they are calculated areas rather than being global operations. several global records may needed to be added with the formulas above (maybe this can be avoided if i calculated component areas that are abutting the outside , but i still do not know how to do that yet)

    2. That calculation will not work if two walls are directly abutting each other (capped or uncapped mode) would require 2 conditional statements for i.e. -

    If wall joined in capped mode on both sides : =(LENGTH+WALLTHICKNESS)*WALLOVERALLHEIGHT

    If wall joined in capped mode on one side : =(LENGTH+(WALLTHICKNESS/2))*WALLOVERALLHEIGHT

    If wall not joined in cap mode : =WallAreaGross

     

    Note - both problems can be fixed if using the worksheets - but picking up an error in the callouts might cause major headaches with the buildout or with the building department later.

     

    image.thumb.png.50885a3aa4b8ca1eb334b7a823e17ff4.png

     

     

    image.thumb.png.e3812290cf71acdb5646dfd44ad5b541.png

     

     

    EDIT NOTE:

     

    Is there a conditional format I can use to include or exclude walls that join in capped or uncapped mode?

     

  3. I'm not sure if this is possible in Vectorworks yet, but there are times when I need to count a number of objects/symbols inside the geometrical boundary of another object such as a rectangle or square. My question is - Is something like this possible to do ? Count the number of fixtures inside a geometrical figure and post it into a 'tag' and / or worksheet?

     

     

     

    image.png

  4. Hi Everyone, 

     

    quick question, have a VS script here, taken from a script that calculated occupancy load calculations from a space object using custom fields in the space plugin object. After VW has now transferred alot of the space objects capabilities into regular, geoemetry, I was curious if anyone can help me port a similar functioning script for polygons / rectangle objects. Script (and original author name is below)

     

    I attached a VW that shows some of the information I use in my documents. What I wanted to do is integrate occupancy in these areas, and some building code information. 

     

    Note - The script operates without any errors, but, for some reason it doesn't actually change the record. Maybe someone can be pointed in the right direction from some of the VSwizards out there? (This is a duplicate post from the architectural forum, but I deleted that post, and reposted in here, since I thought it could be more relevant) Thanks in advance!!!

     

    Modified Script (Original Script at the bottom)

     

     

    Procedure MaxOccupancy;
    {Badly scripted by Michael Klaers modified to General Object Areas}

    {November, 2015}
    {© 2015, Small Group, Inc - Michael Klaers michaelk@verysmallgroup.com}
    {Licensed under the GNU Lesser General Public License}

    VAR
        
        recordhand, WSResource, WSImgHand                :    HANDLE;                 
        StringOccRating                                                :    STRING;
        xArea, OccRating                                            :    REAL;
        TruncOccSpace, SqrFeetPerPerson                                :    LONGINT;
        
    PROCEDURE HowManyPeople(recordhand:HANDLE);

    BEGIN  {How Many People}
        
        SqrFeetPerPerson :=Str2Num(GetRField(recordhand,'!Zoning_Area','BC_persons/sf'));
        
        xArea := AreaN((INSYMBOL & INOBJECT & INVIEWPORT & (R IN ['!Zoning_Area'])));
        
        OccRating := xArea/SqrFeetPerPerson;
        
        TruncOccSpace := Trunc(OccRating);
        
        StringOccRating := Num2Str(0,TruncOccSpace);
        
        SetRField(recordhand,'!Zoning_Area','BC_#ofpersons',StringOccRating);

        ResetObject(recordhand);
        
        END;

    BEGIN
        ForEachObject(HowManyPeople, ((INSYMBOL & INOBJECT & INVIEWPORT & (R IN ['!Zoning_Area']))));

        WSResource := GetObject('Zoning Area Summations_Poly');
        WSImgHand :=GetWSImage(WSResource);
        RecalculateWS(WSResource);
        ResetObject(WSImgHand);
        
        END;

    RUN(MaxOccupancy);

     

    Original Script Below 

     

    Procedure MaxOccupancy;
    {Badly scripted by Michael Klaers}

    {November, 2015}
    {© 2015, Small Group, Inc - Michael Klaers michaelk@verysmallgroup.com}
    {Licensed under the GNU Lesser General Public License}

    VAR
        
        SpaceHand, WSResource, WSImgHand        :    HANDLE;                 
        StringOccRating                            :    STRING;
        xArea, OccRating                        :    REAL;
        TruncOccSpace, SqrFeetPerPerson            :    LONGINT;
        
    PROCEDURE HowManyPeople(SpaceHand:HANDLE);

    BEGIN  {How Many People}
        
        SqrFeetPerPerson :=Str2Num(GetRField(SpaceHand,'Space','11_User-Def Info 2'));
        
        xArea := Str2Num(GetRField(SpaceHand,'Space','Area'));
        
        OccRating := xArea/SqrFeetPerPerson;
        
        TruncOccSpace := Trunc(OccRating);
        
        StringOccRating := Num2Str(0,TruncOccSpace);
        
        SetRField( SpaceHand ,'Space','11_User-Def Info 1',StringOccRating);

        ResetObject(SpaceHand);

        END;

    BEGIN
        ForEachObject(HowManyPeople, ((PON='Space')));

        WSResource := GetObject('Space Occupancy Schedule');
        WSImgHand :=GetWSImage(WSResource);
        RecalculateWS(WSResource);
        ResetObject(WSImgHand);
        
        END;


    RUN(MaxOccupancy);

     

     

    Area Test_Poly v2020.vwx

  5. Rob and Wes, thank you very much for the tip. You're right, Unified view is something i didn't know about, unfortunately. It was probably switched off because of what you mentioned Wes, which was the saved views. I remember switching the save different view for each design layer, and that could've been the cause.

     

    Thank you again.

  6. More weird behavior 

     

    image.thumb.png.c5659ec62f4cc402ae019892deab6f76.png

     

    The same file - cannot display a layer based reflected ceiling plan and a BIM plan model at the same time. It is like the BIM plan freezes in place, while the reflected ceiling plan is rotated, panned, zoomed. This isn't a plane based issue because all objects on the reflected ceiling plan are layer based. 

    This also isn't a scale issue either, given that both layers are at 1:48....

     

    Not sure how to react to this. Can anybody offer some assistance?

  7. Not sure if it was an update, or something else, but graphics seem very glitchy / not smooth when panning and rotating a bim model. 

     

    Specs :

    Win10 Pro

    Intel Core i7 5820k @ 3.3 ghz

    32 GB ram - DDR4 2400, 16-16-16-39 CAS

    Graphics - Nvidia GeForce GTX 1070 Ti

     

    Is there a possibility VW might be using CPU for opengl? Although, I thought that this chip didn't have an on-board graphics module. Either way, maybe something I'm doing wrong?

     

    I attached DXdiag Output. 

     

    UPDATE: 

     

    As a test, I referenced the same file in a freshly made document, and the 3d animation is almost flawless. I now understand it's probably the file itself. Are there preferences that might be causing glitchy behavior?

     

     

     

    Thanks in advance!

    DxDiag.txt

  8. Is it me, or are textured hatches not appearing on curtain wall objects? They seem to appear on other wall objects / geometry, but not on curtain walls. Could anyone please confirm?

     

    image.thumb.png.d5b545161cb582d8d459acad909f1b26.png

     

    *Edit, Yea, thought maybe it was a file, but copied an element from the file for a test and it seems to me that it's a bug. 

     

     

    image.thumb.png.7d18711c28b9a295650db7945499d62a.png

    Cwall Hatch Test.vwx

  9. Hi everyone, just curious, is there a reason why 3d locus's cannot be seen in opengl?

     

    and second question is - can a series of locus points be used to create a 3d surface ? does such a tool exist? or would something like that be possible through Marrionette?

  10. Not sure why, but when I publish a fairly large amount of pdf files using the publish command, vectorworks 2020 crashes. This was never an issue before.

     

    Also, texture / hatches are not properly appearing on screen. Perhaps a scaling issue? Can anyone confirm these findings? or is it just me?

     

     

  11. Can someone please confirm - when editing the railing tool - the position feature, when you enter a number into the offset position dialog, it enters the numbers backwards (i.e. when you enter 24, it puts the 4 in front of the 2 making it 42 instead of 24)

     

    image.thumb.png.843e9262907933edbd0906ecc4e239c0.png

     

     

    Also, if you enter the offset position and then modify the length of the railing, it resets the entire tool. 

     

    Could anyone confirm this please?

     

     

  12. Hi everyone, 

     

    So I'm creating a new database for our firm, specifically a model database with proprietary and IFC record formats. I'm using a combination of methods in order to import revit, however, so far the operation seems very successful. There are a few snags however, which is why i'm posting on here.

     

    With different manufacturers, the record formats are also proprietary, and are often different formats. merging them into one can be a hassle. I know that there is a merge record function. However, it is on a one by one basis, which makes it a bit difficult.

     

    The problem is this, when i import revit, it makes duplicate record formats for every model that I import into a file. So let's say for the sake of arguement, I import 15-20 GE light fixtures. Out of those light fixtures I will probably get 8-12 separate record formats that are duplicates for every model. 

     

    Is there a way to mass merge record formats? The reason being - if i delete them, it will ask me to either replace them or delete them outright. Some fields in some fixtures are added, and can be slightly different from record to record - so my question is -

    Is there a function to mass merge record formats? rather than mass delete?

     

    Thank you in advance everyone!

  13. the annotation tool can't pull out custom record information as far as i'm aware of. The idea is to infuse record information into a symbol libary, and pull out the information at will when constructing new details, or perhaps calling out component names in detail cross sections. There is a function I believe that can take notes out from a central database, but that's not the same thing unfortunately. one is centrally located in a database, thats not exactly associated with a symbol, and the other is simply a symbol having record information. But I think youll understand my meaning. 

     

    adding this function to the annotation tool would be great, the only problem is that you can mass appropriate it to all the symbols like you can with the tag tool. When i discovered that feature, i was like....😍

     

    Also, regarding tag tool parameters : 

     

    1. is there a way to call out wall length? Only wall thickness and wall height can be called out, but not length. I was preparing on using the two parameters so that i can run a script to compute the surface area (wall length x wall height) into a separate record - perhaps that can be called out by the tag tool. 

    2. The second, not as straight forward idea is that you can have conditional statements in a tag. Lets say you need the area of a window, door, window wall or wall in one tag. Normally under these circumstances you can't pull the information out in one tag, but rather three separate tags, which would kinda make it a little less convenient in using it under varied circumstances.

     

    What if in one tag you can specifically call out areas in all three, having different parameters. i.e.

     

    if object is wall -> use #Wall outer surface area# (if it exists) or custom record that calculates wall length x wall height

    if object is a window -> use #Window#.#OverallArea#

    if object is a door -> use #Door#.#ClearArea#

     

    you wouldn't believe how conditional statements have saved my life on severe deadlines regarding energy calculations needed for the department of buildings, or tabulations for zoning, building area, gross area, etc... I can send you some samples on how i used conditional statements in worksheets that ultimately saves me a week of work in a matter of minutes.

     

    Again, the second one isn't as important as the first. some basic functions are needed to at least tabulate dimensions, areas, etc... of walls, windows, doors, geometry etc...

    So far, I've been using the annotation layer in viewports to draw out 2 dimensional geometry specifically for that purpose. For rectangles or polylines, its much easier to pull out length, width, area and height parameters. The only problem is that it defeats the purposes of building information modeling, or at least adds another layer to get the information i need not readily available.

     

    i actually want to use the new data visualization manager this way, the lack of some of these functions are making it a little difficult. This would be a game changer for take-offs too.

     

    Again, thank you for considering these things in your next iterations. I would never expect something like this from Autodesk. This is one of the main reasons why I remain, and will remain with Vectorworks. Thank you very much for your help in the matter!

    • Like 1
  14. Thank you for responding TDimov.

     

    That's right. It would work like an annotation tool, but with record information. This would be very useful in details, and specification consolidation when coordinating with clients, contractors, reps, and shop drawing techs.

  15. Guys, you hit it out of the park 🙂

    Just a few questions :

     

    1. Will we see any way tags can call out levels (not just stories)?

    2. Is there any way to call out the surface area of a wall without calculating all 4 sides? (the longest surface side only is what interests me the most), or surfaces based on the component?

    For me, I would use this for the purposes of calculating fenestration vs. solid walls for energy code requirements in NYC, and calculating wall area take-offs / costs.

    3. Will we be able to modify text positioning in a tag without editing it - in terms of text. Let's say you need to resize the text field in just one tag, rather than resizing all tags, would we be able to look forward to something like this in the future? or is this something the asymmetric scaling can take care of?

     

    Combining data looks very promising! Finally i can combine custom records with VW records and IFC based records without having to modify each one! Still playing around.

     

    Thank you for your hard work!

  16. Ah, alas, can't have everything. 

    Im trying to create a consolidated library of information, i do have alot of 3ds and obj files to import. Hoping i would be able to conserve time by mass importing 3ds, but seems i might have to convert to obj or skp before i can do that. Keep you updated 😉

     

    Thank you Marissa!

×
×
  • Create New...