News:

SMF - Just Installed!

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Medeek

#1321
Version 2.3.5 - 04.28.2019
- Fixed the show_modal bug for macOS in the Materials tab of the global settings.
#1322
Okay, let's try this again.  I've uploaded a new version of 1.1.0 with all the show_modal calls replaced with non-modal calls.  My conclusion is that show_modal is a complete disaster when using macOS, realistically one can only use non-modal html menus.  I'm just hoping now that this does not somehow create issues for users in Windows.  I don't think it will based on my limited testing thus far.

If it does then I simply add some logic which switches to non-modal html menus if macOS is detected.   However, I would rather that the plugin behaves in a similar fashion for both operating systems.

Please re-download Version 1.1.0 and let me know what you get.
#1323
Version 1.1.0 - 04.26.2019
- Fixed the show_modal bug for macOS in the Materials and Headers tabs of the global settings.
#1324
With the asymmetric variant the secondary pitch and bearing height cause the location of roof peak to be off center.  In order to draw the roof one must first solve for the location of the roof peak (x direction).  The solution is given by:





I won't really know if the math is correct until I drop it into the ruby code and test it.

I will also need to check for null solutions, where certain combinations of pitches and delta h create impossible geometry.

I kind of miss the rigor of the math often required with the development of the truss plugin.  Asymmetric hip roofs are going to be even more math intensive.

I'm not exactly sure on what to do with the ridge board.  I can either bevel it or drop it to the same height as the lower side rafters.
#1325
This brings me back to some topics I was exploring last year at about this time regarding asymmetric rafter roofs.  I will set aside the hip roof for a minute and look at the simple gable roof in continuation of this discussion.

Each side of the roof may have a different pitch.  Additionally the top plate height may differ as well as the birdcut.  Things tend to get a little complicated when the symmetry is broken.

Basically one can boil it down to a symmetric or asymmetric gable roof.  The asymmetric variant will have the following additional parameters:

Roof Type:  Symmetric Gable, Asymmetric Gable
Pitch2 - Roof pitch of right side roof
Birdcut2 - Birdcut length of right side of roof
Delta Height - Difference in height between left and right bearing walls (left side is reference)

One could even go so far as to define a different rafter depth for the opposite side, as its length may be more or less than its opposite side:

Rafter Depth 2 - Rafter depth on right side of roof.
#1326
To celebrate the inclusion of this new extension into the Extension Warehouse and to further accelerate its uptake I will be running an Easter special. 

This special is a little different than those I have recently done in the past. 

In order to obtain a full license for the Electrical Extension at no cost all you need to do is renew one of your existing licenses for any other Medeek extension (Truss, Wall or Foundation).  Purchase of a new license for any of these three plugins is also a valid option as well.

Once you have purchased either a renewal or new license of the Truss, Wall or Foundation plugin(s) then please send me an email and I will issue you a license for the Medeek Electrical extension.  If you already own the electrical extension I will issue a renewal to your existing license, thereby extending it license expiration date an additional year.

If you renew more than one extension, only one renewal can be applied towards a free license or renewal of the Electrical extension.

This promotion is only valid for purchases and renewals from 04-24-2019 thru 05-01-2019, there will be no exceptions.
#1327
Version 2.3.4 - 04.24.2019
- Enabled the "Edit Roof Assembly" function for gable and hip rafter roofs (imperial and metric units).
- Corrected an issue with H2.5A hurricane ties when utilized with raised heel trusses.



This is a fairly substantial upgrade for the plugin and now gives the user the ability to edit stick framed roofs.  Previously only certain truss roofs could be edited. 

I still need to enable editing for the other rafter roof types (shed roofs, I-Joist, rafter roofs with glulam beams etc...), but at least I've now got the two most common roof types with full parametrics enabled.
#1328
Looks like the listing is finally live in the Extension Warehouse:

https://extensions.sketchup.com/en/content/medeek-wall-plugin-1
#1329
When I originally enable hurricane (uplift) ties for the trusses I failed to check to see how things looked with a raised heel when the H2.5A (simpson) tie was used. 

In this particular case the tie needs to be flipped around so that it is facing towards the interior rather than the exterior.  I've made the correction and added the logic into the code.  I will release the fix with the next version:

#1330
Since adding the symbols legend I've had a number of requests for a tool to draw a schedule (similar to how I am drawing the legend).

Now that I've got a fairly solid routine for pulling the electrical data (I will use much of this same code for the estimating tool) it isn't too big of a leap to draw a schedule.

My question is what information do you need or want in this schedule, how do you want it laid out?  Every device listed with its parameters or do I group like devices?

Please give feedback in this regard.  Also feel free to send me any sample electrical schedules that I can utilize as references.

If I know what I want to output I can probably knock this out in 2-3 hours, most of the underlying code is already in place.
#1331
Version 2.3.3 - 04.17.2019
- Enabled the "Edit Truss Assembly" function for attic trusses (imperial units only).
- Improved formatting of all HTML edit menus: Common, Monopitch, Scissor, Attic.

#1332

Tutorial 3:  Electrical Symbols Legend


#1333
Version 2.3.2 - 04.15.2019
- Enabled the "Edit Truss Assembly" function for all scissor trusses (imperial and metric units).
#1334
Version 1.0.6 - 04.15.2019
- Added additional NEMA 240V receptacles into the Outlet module: NEMA 6-30R, NEMA 6-50R.

These additional receptacles (and symbols) were per customer request.



#1335
For those that are interested I will explain how the new "Draw Legend" tool works under the hood.

First the plugin finds all of the groups in the model (active_entities, if no group or component is open for editing then this will be the same as entities at the root of the model).

It then checks inside each of these groups and identifies the electrical groups that belong to the plugin (based on the group instance name).  Once it has collected up all of the electrical groups in the model it then divides them into their appropriate categories:  Outlets, Switches, Light etc...

It then examines each sub-category and dives into the attributes library for each electrical device (group).  The attributes library tells it what 2D symbol is associated with that particular device.  It then creates a  new list of symbols to draw for the legend for each category at the same time discarding or preventing duplicates.

The symbols shown in the legend are drawn, for the most part, using the same methods as the symbols drawn for the actual devices however some of them have been altered slightly in order to customize them specifically for the legend.

As you can see there is quite a bit going on under the hood.  When a model gets large with hundreds of walls and possibly hundreds of electrical components generating the legend may take up to 30 seconds.