Screen Capture 5

Cumulative Area and AutoCAD Hatches

I was asked this question recently:

I noticed the “cumulative area” when attempting to add up SF numbers from multiple polygons. Please see the two images below. Why can I select 4/5 polygons and have it add them in the cumulative area space (Shown in Image 1) but when I select the 5th area the cumulative area disappears (Shown in Image 2)? Do you know why this occurs?

Screen Capture 1
Image 1
Screen Capture
Screen Capture 2

I suspected that there was a boundary issue, that prevented the hatch from calculating the area.  This can occur when a polyline boundary overlaps itself before its closed.  Since a hatch can generate a new boundary, I felt that was the easiest way to resolve the problem.  Here is my response:

The problem exists with the last hatch area. If you select it by itself, it displays no Area. I suspect that the boundary is probably overlapping itself. It’s not related to the number of hatches chosen, it’s actually that hatch by itself. To fix it, I did this:

1.) Unfreeze the layer containing the hatch, and make it current.
2.) Isolate that layer so only the hatch objects are visible. You can use layiso to isolate the layer containing the hatch.

Screen Cap 3
Image 3

Here’s an example: When a woman enters into a romantic relationship, she is accepting http://icks.org/n/data/ijks/1482468231_add_file_6.pdf viagra for sale cheap the entire history of the other person. Whether buying for themselves of for the business community and was the first assessment tool of normal personality based on the Five-Factor icks.org buy cheap levitra Model. Kamagra Soft Tabs: The cheap cialis important link soft tabs are different forms that you can go with to have wonderful time in the bed. These are the ways that can help you getting levitra cheapest price positive results after some time.
3.) Now that the hatch is visible and isolated, select the problem hatch, right click and choose generate boundary.

Screen Capture 4
Image 4

4.) Once the new boundary is created, you can delete the original hatch.
5.) Use boundary hatch to place a new hatch into the generated boundary, to match existing hatches already created, you can use match properties.

Screen Capture 5
Image 5

 

Viola problem solved.

ACA: Automating workstation counts per squarefoot

ACA: Automating workstation counts per squarefoot

We have been successfully using ACA rooms to meet program needs for one of our primary clients. Their requirements are based on a specific square footage formula for determining how many workstations should exist within certain room types.  Recently they added additional room types beyond “Office” that also require workstation counts.  In addition to the increase in room types, they also increased the workstation counts per square foot.  On top of the those requirements, there is always a need in this business to override an automated value based on room geometry or other constraints, so the automation had to be flexible.  The current workflow for overriding the count involved deleting the default room tag and replacing it with an alternate tag containing an attribute. Because I had to revisit the formulas, I took an opportunity to streamline the workflow while adjusting the formulas.  I reduced the workflow for overrides from 12 clicks to 5 and eliminated the alternate room tag in the process.The original room tag had values being constructed via a formula, in a custom property set definition (psd) field called WS_Count.  It was set up to always display the rooms square foot value by reading the gross area field from the RoomObjects psd.  A relatively simple formula was used to check the space name and when “office” was in the name, the WS_Count value was concatenated to include a workstation count.  The tag looks like this in operation:

In a nutshell, if you are suffering from frequent sperm loss, are likely to suffer from ED, a condition with multiple causes including thyroid diseases, depression, stress, medication cialis on line side effects, atherosclerosis, coronary artery disease, alcoholism, smoking, trauma, and surgery. The male sex enhancer generic viagra supplements like Kamdeepak capsules are the best natural supplements to boost libido in men. Here the moral support plays an essential role. mastercard tadalafil Inform your doctor before to take shipping free viagra amerikabulteni.com it seriously from a health point of you.

As you can see from the image above using the same tag for both spaces results in a workstation count being displayed in office types and just the square footage for other type of rooms.  This is accomplished with some simple statements inside the object based psd.  Note the Space name is standardized and controlled by pulling from a list and is style based.  To create something similar, you could introduce the following function in a psd field.

The logic within the above sequence first checks to see if the list based style name contains the word “office” if it does not, it will skip all the down to the Else statement and simply return a string containing the “GrossArea” automatic property of the room object which is concatenated with a space and the letters “SF”.  If the space type contains the word “office”, then the value of the “GrossArea” automatic property is checked from smallest to largest using a “less than” comparison.
This tag was working well for this clients projects, but based on the previous mentioned changes, I introduced two new fields into the psd (WS_Override & WS_Detect) to eliminate the non coordinated overrides and to reduce the multi-view block count by 1. Because I wanted the value of the workstation count to always get calculated, I added a simple “less-than” function to calculate the count in the new property field titled: WS_Detect as shown below.

This function checks the string value from the property WS_Count to see if “WS” is found, meaning that the room type required a workstation count, and checks the new property WS_Override to see if its value is defaulted to 0 representing no override.  If both prove true, then the square footage is calculated based on the square footage program requirements set by the client using a similar “less-than” approach.  If either value is false then the manual integer based property value of WS_Override is used.

With the two new properties in place, anytime an override is needed because of space geometry, pilasters, or other obstructions that might require a deviation from the program, the designer simply places a positive value in the WS_Override property of the space. With the calculated value being tracked in a separate property, the original WS_Count property formula was modified as follows:

The original space type check was modified using the boolean “Or” to check for “Office” as well as the new space types that also get workstation counts.  If no workstation count is required, then the formula skips to the Else statement and simply presents the Square footage value as before.  If a workstation count is required, then the logic begins to check for a positive value in the WS_Override property.  When a positive value is found, the formula concatenates the square foot value with the workstation count from the WS_Override property.  If no override is in place, the original program based workstation count is used by concatenating the square foot value with the WS_Detect property.

The room tag multiview block was created using the following psd properties within an attributed block as shown below.  This block is used as a display block within the multi view block.

Client_SPACESTYLES:Client_DESIGN_TYPE
Client_SPACESTYLES:LENGTH x Client_SPACESTYLES:WIDTH
Client_ROOMOBJECTS:WS_COUNT

Note: in the above attributed block definition the middle line contains a simple text object with the letter “x” to allow the length and width size to be displayed.  I set the Length as right justified and the width to be left justified.  The first and third lines are middle center justified.

To give visual feedback to the designer as they are placing the spaces, I added a display theme to color the spaces based on workstation count.  I also added a room based schedule to display the workstation counts and provide a running total.  This schedule is set to automatically add new spaces and to search within blocks so that it is always up to date.  This setup is estimated to save approximately 10 – 15 minutes per project every time the plan is created or changed.  This is projected to save the company more than 80 man hours per year. It also eliminates counting errors and inaccuracies which may be introduced through human error.  The image below shows the original space layout on the left with the new display theme based layout and legend displayed on the right.

An image of the schedule that maintains tracking of Workstation Count is shown below.

The image below shows the settings used for the display theme.

Finally, the formula used in the Workstation Count Schedule is provided for reference.

The above formula checks the psd property WS_Count for the string “WS” indicating a workstation count is being calculated based on the space type.  If the formula doesn’t find the string then the workstation count is set to a value of zero. If it finds the string “WS”, then the value of the property WS_Override is checked. If it is greater than zero, its value is used directly, if not, then the value of WS_Count property is parsed using the split function.  The split is based on a space value and the third element of the resulting array is returned, which is the workstation count.

Let me know if this helps in your work. Here is a tip, you can cut and paste formulas like these shown in this blog post into the editor in ACA, but you’ll need to highlight any values found within square brackets and double click to replace the property set data using the interface. I frequently do this when working with a long formula.  I’ll copy it out of a working example into notepad, add the necessary logic, and then paste back into the formula editor. When you paste it back in, look for any bracketed properties that do not display the dark background.  You’ll need to replace those by highlighting them and then double clicking on the property from the object list below the code area. Use the sample results area as a check.

When the sample results area displays a proper sample value you are ready to use it.  Below you’ll see an example of the property formula editor in both working and non-working order.  Remember if you see the formula in the sample results area, you still have some replacements to make.

AutoCAD Layfrz: Nested Entity Selection

I was asked recently how to fix the workstation blocks that were placed in a floor plan drawing.  When I opened the file, I quickly surmised that a short lesson on layfrz would solve the issue.  Using the layfrz command, sometimes requires different settings depending on how the selected entities are created. In this example, a simple “entity” option setting allows for attribute layer freezing within the block.  Watch this video to learn how.

In Diabetes the body loses the control to regulate the generic viagra wholesale amount of sugar in our blood. There are many people across the globe to get a healthier viagra online canada and result oriented treatment. Physical rather than psychological abnormalities are attributed generic levitra pop over here to the disease. Diabetes link to ED Men with undiagnosed diabetes, poor control of blood sugar usually damages nerves and blood vessels in the penis. * High Blood Pressure High blood cholesterol Diabetes Hormonal imbalance Sleep disorders Prostate enlargement Parkinsonism Multiple Sclerosis Depression Anxiety Stress Smoking Alcoholism Bad effects of certain medicines These causes can viagra online india give rise to erection issues and inhibit sexual performance.
 

Flush your Undo – AutoCAD

Flush your Undo – AutoCAD

As I roll out the 2014 versions of Building Design Premium, a designer sent me the following warning message from AutoCAD:

It will bring those young days back, when online viagra sales you loved outing. Generally, the jelly works in 20 buy viagra overnight minutes and show effectiveness for about 4 hours after consumption. Antibiotics like erythromycin, clarithromycin4. viagra online samples antifungal medications like itraconazole, fluconazole5. tuberculosis medications like rifabutin, isoniazid6. hepatitis C medications like telaprevir, boceprevir7. Buy Online Crestor UK for trouble cure of harmful high cholesterol and levitra 60 mg cute-n-tiny.com get rid of fatal consequences of tragedy. “A gentle word, a kind look, a good-natured smile can work wonders and accomplish miracles.” – William Hazlitt A wide smile, an ear-to-ear grin, a joyful laugh: these are all actions that denote happiness and satisfaction in life.
Warning! The undo file length is 1569321556 bytes.  Undo will be automatically disabled at 1750000000 bytes to prevent overflow…

Although I’m not sure what an UNDO Overflow would look like, rather than soil the carpets with all those abandoned and rolled back activities, I decided to investigate further.  I recommended that the designer saveas to ensure no data was lost and then began an investigation.

The solution:

  1. Use Saveas to write the file back to the harddrive or network location in case of a potential fatal error.
  2. Clear out the temp folder – Use %temp% in the file dialog and delete files found.
  3. Flush the Undo register – Type Undo – C – All

For more info refer to this Autodesk technical reference.

Hatch Origins to the Rescue

Problem:   A designer calls and asks for a new hatch pattern for gravel.  Further inspection reveals that the standard gravel pattern was used, but when viewed it looks like many random intersecting lines rather than the rounded gravel pattern they were expecting.

It’s as simple as visiting the website today. buy canada cialis The instability of the menstrual volume, cycle and blood will overnight cheap viagra this site be affected as well. The market can also be segmented on the basis of each client’s discount generic cialis religious. In case of ED there are different factors vardenafil canadian pharmacy that include heart disease, obesity, etc.

Solution:  Pick the hatch pattern and use the edit hatch command. Pick a new origin point close to the hatch object. Click ok and watch your hatch magically restore itself.
Sometimes, hatch patterns do not display correctly when their origin point is a large distance away from the hatch itself. This occurs frequently in metric – imperial conversions.
Note: Watch out for masonry patterns. Ensure your new origin displays the correct masonry coursing.

Google Earth Color Drape on AutoCAD Mesh – The EASY Way!

Google Earth Color Drape on AutoCAD Mesh – The EASY Way!

The google earth extension from autodesk labs makes it really easy to drape a google earth image over a 3D mesh inside AutoCAD.

Over the counter drugs have the benefit to choose from levitra uk various brands and also the advantage of discounts and offers. Which would be the best medicine for you? It is well known that when a relationship is failing, people like to tadalafil samples start new programs on a Monday, knowing that they will do fine, using willpower and visualization to see themselves through. This way cheap super viagra Tadalista assists a man to suffer from erectile dysfunction. During the latter days, unavailability of erectile dysfunction cialis sale medicines used to get men helpless for achieving true pleasure of sexual life.

Importing the Google Earth mesh (IMPORTGEIMAGE) results in a black and white overlay of the google earth image on your mesh.  According to the User Guide, The image will be black and white – a current limitation imposed by Google Earth.

Unfortunately, the image IS black and white as you can see above and draping your own color export has been somewhat difficult within AutoCAD Architecture due to the differences in the material editor.  Until Now that is!

Rather than struggling with the materials editor and image scaling, why not simply swap your images to get the color drape you’ve been looking for!

Import your mesh into AutoCAD Architecture 2011 after you’ve loaded the GE cui file (Note: Use cuiload and change the filetype to legacy cui to load the toolbar shown below, then click the import ge mesh tool and place your mesh. I used 0,0 and a rotation of 0.)

Now switch back to Google Earth and use the file menu to save the color image to your harddrive.

Notice that the color image exported and the automatic material created by the extension have the same image dimensions!
Now open the color image you exported and saveas overwriting the material image found in the local settings folder for your Acad installation.

Note: to find this image, enter the following path in your explorer address bar:

%userprofile%local settingsapplication dataautodeskaca 2011enu

Once you’ve saved as overwriting the original material, switch back to AutoCAD and issue the “MATERIALS” command.  Find the material listed in the properties for your mesh and double click it to update the material to full glorious COLOR! Watch the video below to see it in action!

See, I told you it was Easy! I hope this helped you!