3DVision Technologies – February Webinar Series

January 26th, 2012

Join us for one or more of this month’s featured webinars.
Each webinar is free and will feature a specialized 3DVision Technical Expert. For the full list of upcoming 3DVision events, Click Here.

Dynamic Balancing of Machinery
When: February 7, 2-3pm EST
What: Webinar
Rotating imbalance is a common source of vibration. In this webinar you will learn how to simulate this imbalance on rotating components using SolidWorks Motion. This imbalance can be graphed out over time or cycles. Design changes can be implemented using SolidWorks configurations, and the effect of these changes can be studied by duplicating studies.
To register for this free event, Click Here.

An Introduction to the Simulation Suite in SolidWorksWhen: February 17, 10 – 11am EST
What: Webinar
Do you constantly face engineering challenges and product quality issues? Are you fighting a lot of ECOs and warrenty battles? If so, come join us on a one hour introductory presentation on how to leverage functionality within SolidWorks that have helped a lot of companies score in these areas. Learn how much traditional analysis has progressed, and how it is no longer a specialist’s forte, but a tool that every engineer should have and use.
To register for this free event, Click Here.

Surfacing – Advanced Modeling TechniquesWhen: February 21, 9 – 10am
What: Webinar
Have you already mastered the basic SolidWorks modeling tools? Are you looking to take your modeling skills to the next level? Sign up for this webinar to break down the mysterious wall of surfacing modeling and learn practical tricks that you’ll be able to utilize on a daily basis.
To register for this free event, Click Here.

Solving Valve Problems using CFDWhen: February 28, 10 – 11am EST
What: Webinar
Join us for a webinar where we explore how to build a virtual flow bench to monitor the above parameters right inside SolidWorks. Leveraging the power of configurations and easy flow setups, the audience will learn how to determine these critical values in hours without building a single prototype.
To register for this free event, Click Here.

3DVision Technologies is committed to providing engineers, designers and their design teams with the products and solutions needed to design some of the world’s greatest products. For more information on 3DVision Technologies full suite of products and solutions visit us at www.3dvision.com or call us at 1-800-745-3136.

Carrie Cavanaugh

Carrie Patrick
Marketing Manager
3DVision Technologies

Free DriveWorks Solo Online Training

January 20th, 2012

Not often is free training offered but DriveWorks Solo is offering a live online class being presented by a DriveWorks Solo Applications Engineer next week.

What is DriveWorks Solo?
DriveWorks Solo allows you to create custom products quickly and easily AND generate all the detailed manufacturing information automatically in SolidWorks.

What are the benefits of DriveWorks Solo?
- You can create customizable forms to aid selections
- Preview Results – 3D Models, Drawings and Document
- Re-use Existing Company Data
- Template Documents for Responding to Sales Inquiries
- New Files Created Automatically

Session Schedule:
Session 1 Covers: Model Capture, Creating Forms, Building Rules, Running your Project, New File Names and Locations
January 24 11am – Noon EST

Session 2 Covers: Replacing Files, Tables, Form Navigation, Improving your Forms, Driving Replacement Files, Controlling Custom Properties
January 25 11am – Noon EST

Session 3 Covers: Documents, Controlling Drawings
January 26 11am – Noon EST

Sign up for all three sessions to get the full training course. Register today!

Carrie Cavanaugh

Carrie Patrick
Marketing Manager
3DVision Technologies

SQL – Convert to Hex

January 19th, 2012

Often times when getting really down and dirty with SolidWorks Enterprise PDM, I need to know a document’s ID value in hex format. Back in the old days [yesterday] I would do a SQL query on the document’s table and then manually calculate the hexadecimal value.

However I found a SQL function that will do the conversion for me:
CONVERT(varbinary,<value>)

Cool eh? Thus a SQL statement like this:

SELECT DocumentID, CONVERT(varbinary,DocumentID) as IDHex, Filename FROM Documents where Filename like 'Big Tuna%'

Returns:

hex

Yeah, SQL rocks.

Jeff Sweeney

Jeff Sweeney, CSWE
Engineering Data Specialist
3DVision Technologies

Assembly Visualization – the search for the missing file properties

January 17th, 2012

Releasing your drawings to the machine shop with missing information makes a machinist angrier than a baby boomer looking at a teenager that doesn’t have his pants pulled up all the way.

As we all know, looking through a large assembly, checking file properties can be a tedious task. (At least that is the excuse I always use.) I’ve found Assembly Visualization can be a great tool to quickly skim through your assembly’s components looking for missing information.

Here’s how I could use it to find any parts in my assembly without material specified:

1. Start the Visualization tool (it is either on your assembly or evaluate toolbar by default)

2. Right mouse button click on any of the headers (except “File Name”) and choose “Add Column”, or find any column with a little black arrow pointing to the right.AddColumn

3. Click on that arrow and choose “More…”

more

4. Choose the property you want to examine. (Check it out, you could work with formula too!)

Property

5. Now you can sort by this property by clicking on its heading and your parts with missing information will come to the top. You can quickly see I haven’t assigned a material to my “crank-knob”missing

Thank you for attending “Jeff Sweeney’s SolidWorks tip of the randomly selected interval” please tune in next time, at a time to be determined when I feel like it, to learn more cool SolidWorks tips and tricks.

Jeff Sweeney

Jeff Sweeney, CSWE
Engineering Data Specialist
3DVision Technologies

DSOFile beaten by SolidWorks Document Manager

January 9th, 2012

Hey macro lovers! Have to change a lot of SolidWorks file properties, but don’t want to your code to have to open each file one at a time?

Most web searches are going to point you to use Microsoft’s DSOFile. It’s a good solution, but using it means you need to install it on your client machines (and watch out there is a 32 and 64 bit version out there!) or create a release package. Neither option is very fun if you are just writing a quick SolidWorks macro.

Luckily, the SolidWorks Document Manager is a great option. It gives you write access to many properties inside of a SolidWorks file.

Add “SwDocumentMgr 20XX Type Library” to the list of your macro’s references and your wish is the Document Manager’s command.

refs

IMHO, the documentation is a very “tedious” so here is a little VBA snippet showing how easy this COM object is. This snippet will add the custom property “Material” to the file and assign it the value “Adamantium”:

Dim swDoc As SwDMDocument12
Dim swDM As SwDMApplication
Dim mOpenErrors As SwDmDocumentOpenError
Dim objClassfac As SwDMClassFactory
Set objClassfac = CreateObject("SwDocumentMgr.SwDMClassFactory")
Set swDM = objClassfac.GetApplication(<This is a string/key that you need to request from SolidWorks>)
Set swDoc = swDM.GetDocument(strDocFileName, SwDmDocumentType.swDmDocumentPart, False, mOpenErrors)
swDoc.AddCustomProperty "Material", SwDmCustomInfoType.swDmCustomInfoText, "Adamantium"
swDoc.Save
swDoc.CloseDoc

Just as easy as DSOFile, and more powerful -if you are wanting to update configuration specific properties, DSOFile is going to let you down.

DSOFile is still the best tool for working with file properties of other OLE type (read: Office) documents but when it comes to SolidWorks documents, all the cool kids are using the SolidWorks Document Manager.

By the way, if you are looking for a way to impress your date, read more about the Document Manager. It gives you more control over your SolidWorks files than just messing with file properties. With it you can write applications that emulate file management tools to perform such tasks as renaming, replacing, and copying SolidWorks documents -you don’t even have to have SolidWorks installed!

Jeff Sweeney

Jeff Sweeney
Engineering Data Specialist
3DVision Technologies

3DVision Technologies is pleased to annouce the new uPrint SE 3D Print Pack

January 6th, 2012

uPrintSE_Bundle_with_PartsThe new uPrint SE 3D Printers are powered by Stratasys’ patented FDM (Fused Deposition Modeling) technology. It’s the 3D printer on which thousands of design engineers test their designs.

uPrint SE 3D Printers build accurate, stable 3D models in ABSplus plastic. They’re ideal for determining form, fit and function in everything from ergonomics to manufacturing processes. These aren’t fragile lab beauties either. ABSplus is stronger than materials typically used by competitive 3D printers.

By producing models in house instead of outsourcing to a service bureau, you can keep your most ground-breaking product designs confidential.

With the uPrint SE 3D Print Pack you get everything you need to start printing immediately. No hidden costs. Nothing more to consider. Just un-box and print.

The uPrint SE 3D Print Pack includes everything you need to start making durable, accurate 3D models in ABSplus plastic.

The uPrint SE 3D Print Pack includes:
- uPrint SE 3D Printer
- WaveWash Support Cleaning System
- Start-up Kit

With prices starting at $15,900 companies are now able to take advantage of low monthly lease payments for less than $300. For many organizations, this monthly lease payment requires no capital expenditure approvals and is less than purchasing a single part build from a service bureau.

To learn more about the new uPrint SE Print Pack, click here for more information.

Carrie Cavanaugh

Carrie Patrick
Marketing Manager
3DVision Technologies

Tips for your “Configure my product” web site

December 30th, 2011

I’ll never admit this publicly, but when I’m specifying a component for my design, it’s a pretty big deal if a supplier has a nice 3D model for me to drop into my design. If other variable are pretty close, the company with the easiest to use CAD models often gets my specification.

I’ve noticed since the release of the newer versions of DriveWorks Live, more and more companies are allowing us to download their models directly from their web sites. (Bonus: No programs to install on my end!)

The less time I have to spend modeling your product, the happier I am.

If you have just purchased DriveWorks and are looking for some usability tips…

  • I want a single part. An assembly only if I need to see the motion of your product. Even then, the fewer the parts the better. I don’t want to have to spend a lot of time managing your files.
  • Don’t make me learn your part numbering schema to specify your product. Let me pick on pictures of options or worst case drop downs and radio buttons. I do want to know what the final part number is, after my specification is complete. (I like sites that allow me to watch the price change as I modify options.)
  • I like meta data being put in the file’s properties, however let me choose the file properties names. I don’t want additional file properties that have no meaning to me that I have to manually delete. Your name, part number and description is pretty much all I need.
  • A quote included with the part’s download is nice, so is a nice cut sheet; I don’t want the entire catalog.
  • I want a simple configuration of your part. Most of the time I want your models for space claiming. I don’t need the helical threads, air fins or other crazy detail -it slows down my assemblies. You can put your company’s logo on the part if it is a decal. If you want the details in the part because it makes the models look cool, give them to me in a separate configuration.

Pretty tough list? Nah, not really. Most of this is out of the box stuff for DriveWorks. Don’t forget, I am your customer, you help me, I’ll help you by buying your product.

Jeff Sweeney

Jeff Sweeney
Engineering Data Specialist
3DVision Technologies

Beam Elements in Simulation

December 21st, 2011

One of the things that we emphasize in our Simulation Training classes is simplifying the model. It’s an easy concept to understand – the simpler the model, the faster you’ll get results! For designs that use SolidWorks’ weldment functionality, Simulation will automatically make one of the most significant idealizations of a model. 3-D geometry is idealized into a 1-D finite element for the mesh, a Beam element.

Here is a simple example where two standard c-channel structural members come together at what could become a welded joint (left side). Notice how Simulation has automatically meshed the structural member with beam elements (right side)! In Simulation 2012, you now have the option to render the beam mesh on the structural member geometry – a welcomed enhancement!
2011-1216b SW Beam Mesh-w630-h630

In Simulation, the purple spheres represent the ‘joint’ where the two or more beams are connected. There are also options for each beam’s end condition –rigid connection, hinged connection, etc.
2011-1216d Beam End Conditions-w630-h630

How should you handle the automated power of Simulation with weldments? I say ‘handle with care’! Let’s assume that you have one of these c-channels as a simply supported beam – fixed at one end with a load applied at the other. The standard, cantilever beam that we all know and love from our Engineering studies! Recall that the deflection of the end of the beam is calculated by the following equation:
Deflection = (F * L^3) / (3 * E * I)
Where F is the force acting at the end of the beam, L is the length of the beam, E is Young’s Modulus for the beam material and I is the Moment of Inertia for the cross section of the beam.

This is valid, assuming the beam has a uniform cross section throughout its length. What if there are holes cut through the beam? In this scenario, the cross section of the beam is not uniform throughout the length – which is a critical assumption for the deflection of a simply supported beam. In this scenario, Simulation does not recognize the holes and still meshes the structural member with a Beam element.
2011-1216c Edit Joints-w630-h630

In my opinion, you have two options for proceeding with the analysis. The first option is to recognize that using a Bea for the structural member is not an accurate representation of the model, but proceed with the analysis to obtain a baseline result. If this particular structural member does not significantly contribute to the overall strength of the model, you may choose to proceed based on these results. The second option would be to treat the structural member as a solid body. With this method you will obtain more accurate results with your analysis, especially if the structural member contributes to the overall strength of the model.

So the next time you’re reviewing your analysis results, be sure to review the assumptions made by both you and by Simulation. Once you’ve verified that all of the assumptions are valid, or at least that you can accept them, you will be well on your way to making sound decisions based upon your Simulation results. Now go make your products better with SolidWorks Simulation!

Bill Reuss

Bill Reuss, CSWE, CSWST, CSPST
Application Support Engineer
3DVision Technologies

How the Grinches stole the Christmas

December 21st, 2011

Every year the employees of 3DVision have a competition to see who can design the best Christmas card in SolidWorks. The winner’s image gets to be on the card the company sends out to our friends.

I’ve never thought it was fair that the image had to be rendered in SolidWorks, so this year, here was my entry:

TreeStructureChristmas

I kinda thought it came out pretty cool, but I’ve learned my entry didn’t get any votes from the anonymous panel of judges. One judge complained that I capitalized ”Merry” but not “Happy”. Another judge, felt Jordan’s entry had more artistic appeal. For the record, I happen to know neither of these “judges” have a degree in Art nor English!

Props to Jordan for a fantastic design. I see something new in it every time I look at it….but seriously?!

Wait till next year.

Jeff Sweeney

Jeff Sweeney
Engineering Data Specialist
3DVision Technologies

Section 179 Deduction

December 7th, 2011

3DVision Technologies wants to alert you to important 4th quarter tax planning implications – to take advantage of by the end of this month.

What is Section 179?Essentially, Section 179 of the IRS tax code allows businesses to deduct the full purchase of qualifying equipment and/or software purchased of financed during the 2011 tax year. That means if you buy (or lease) a piece of qualifying equipment, you can deduct the full purchase price from your gross income.

What Software Qualifies?
For basic eligibility, software must meet all the following general specifications:
- The software must be financed or purchased outright.
- The software must be used in your business or income-producing activity.
- The software must have a determinable useful life.
- The software must be expected to last more than one year.

Section 179 does come with limits – there are caps to the total amount written off. For more specific details visit www.section179.org

The bottom line is, if you are thinking of purchasing software, now is a great time to take advantage of the tax benefits.

Carrie Cavanaugh

Carrie Patrick
Marketing Manager
3DVision Technologies

WordPress SEO fine-tune by Meta SEO Pack from Poradnik Webmastera