Software, services, and expertise for the business of shipbuilding.

        • Achieve a Quick ROI
        • Sliced implementations and our expertise means a benefit from day one, without a lengthy setup.

        • Integrate, Collaborate, Re-use
        • SSI’s Open Shipbuilding Platform gives you a future-proof source of truth for your shipbuilding projects.

        • Change Management
        • Get visibility into changes, understand the impacts, and have the right information at the right time to execute the change.

        • Adapt and Innovate
        • Create a local or virtualized shipbuilding environment for your global distributed workforce.

        • Changing from Another Solution
        • SSI makes it easy to switch from other platforms and keep your existing data.

        • Design
        • The most significant opportunities to impact the cost of building and operating a ship are found in the design and engineering phase.

          Initial Design  |  Basic Design  |  Detailed Design

        • Build
        • Even a smaller shipbuilding project is immense in scope and scale. Manage the challenges that are unique to ship construction.

          Prepare  |  Fabricate  |  Assemble

        • Maintain
        • With the majority of a ship’s life taking place after it’s been built, it’s crucial to ensure that the organization has a clear picture of the vessel at all times.

          Digital Twin  |  Repair / Refit  |  Operations

        • Nexus
        • SSI Nexus is a community for users, creators, & implementers of SSI software.

        • SSI Certified Training
        • SSI Certified Training allows SSI users to access detailed training exercises, materials, courses, and certifications.

        • SSI Blogs
        • The SSI blogs are your place to get insights from our CEO into the intersection of shipbuilding and technology, see how shipbuilding is moving forward, and keep up with SSI news.

          Lighthouse Waveform  |  Shipbuilding Solutions

        • ShipConstructor
        • A complete line of solutions for the design, engineering, and construction of ships and offshore projects.

        • EnterprisePlatform
        • Tools to connect and share data across every system in the shipyard and make information available.

        • ShipbuildingPLM
        • The only truly shipbuilding-specific product lifecycle management (PLM) platform.

        • Company
        • Learn more about SSI and our leadership.

        • Locations & Contact
        • You need a partner with a global presence.

        • News
        • The latest on SSI and shipbuilding.

        • Events
        • Join us at our next event, conference, or trade show.

        • Partners
        • Learn more about our Platform and Development Partners.

        • Clients
        • See the industry leaders who trust SSI.

        • Careers
        • Help us make the business of shipbuilding possible.

March 30, 2015
Best PracticesShipConstructorTips & Tricks
Tips_n_Tricks_CreateAnSCPartFromAnACSolid

I am often asked “What is the best way to convert native AutoCAD solids into ShipConstructor parts.” There are numerous reasons for people to ask this question. Some received an AutoCAD file or a STEP file from their partner or subcontractor or they are converting a project from their old CAD tool which has an AutoCAD export. Whatever the reason the workflow to convert these projects into ShipConstructor is relatively quick considering you’re going from a model with no attributes and intelligence to one which does. In this post I will discuss a pretty good workflow to get structural geometry from native AutoCAD or STEP into ShipConstructor.


Overview

There is no direct import from AutoCAD into ShipConstructor since an AutoCAD object does not have the information needed to create a basic part. However, the geometry of the AutoCAD solids can provide a significant piece needed for the creation of the part. Using the geometry of the AutoCAD solids and a streamline set of options the user needs to select during part creation we can semi-automate this process.

The workflow I chose was to use CUI scripting. I have demonstrated this in my past post SSI Tips & Tricks: Creating a detail view. I created several commands that I was able to quickly (5 sec – 15 sec) convert an AutoCAD solid to a ShipConstructor plate part. The scripting of the workflow creates a bit of a recipe which I am usually not a fan of but I had to make the most of what I had available to me. It does require the user to know what each step is asking for and if the user ever deviates from the recipe they may need to call the dreaded:) UNDO command and try again.


Setup Requirements

ShipConstructor Project

To get the best results you will require an already created ShipConstructor project which contains all the stocks used in the conversion. The workflow will not create any new stocks and will only allow the user to select the stocks which are already created.

An ideal way to set your stock catalog is for each stock to have a similar color as what is imported. This might not always be an option depending on how the source information was generated. However, if there is some logic to the color scheme of the solids I would suggest to use the same color scheme if possible. This can significantly reduce errors and improve the time to convert the parts.

ShipConstructor Drawing

You will have to import the AutoCAD or STEP file into a pre-existing ShipConstructor drawing. This drawing is used as a temporary location to create and host the parts during the conversion. After the parts are converted you can use ShipConstructor’s feature to move the parts into the correct drawing if this is your desire.

To improve management of the conversion of parts I would suggest you to create some additional layers:

  1. ImportedParts (Can be any name): This layer will be where the original parts are imported. This will allow you to know what is left to be converted into ShipConstructor parts.
  2. PartCreated: This layer will host all the geometry which has been used to create parts. This allows you to view and know what has already been converted. This can also be used to compare the ShipConstructor part with the original geometry.

 Commands Created

I created 3 unique commands to aid in converting the AutoCAD solids into ShipConstructor parts:

  1. SCCreatePlatePartFromSolid: This is the main command which will streamline the most common workflow in converting AutoCAD solids into ShipConstructor parts.
  2. SCCreatePlatePartFromSolidCont: In some cases the SCCreatePlatePartFromSolid command is not able to convert parts. This is due to the fact that not all the geometry lies on the same plane. If you get the dialog box
    ToolpathError
     then you should cancel the command by pressing the ESC key and then run this command. This command will continue where SCCreatePlatePartFromSolid left off. It adds an extra step of selecting a UCS by selecting any three points on the outer boundary.
  3. SCCreatePlatePartFromSolidWithHoles: In some cases this command can provide better results than SCCreatePlatePartFromSolid when the part has holes. This command is very similar to SCCreatePlatePartFromSolid except it has an extra step of manually selecting the UCS.

Workflow

Instead of calling the command via the command line I chose to add CUI buttons to make it a more intuitive. You can find instructions how to create CUI command in post SSI Tips & Tricks: Creating a detail view.

Each command is really a recipe which requires you to follow it perfectly. This is not ideal but can be very efficient if you do.

SCCreatePlatePartFromSolid

  1. Select or preselect the part you want to convert
    1. The command will Isolate the part (hide all other parts), zoom to the part and move it to the PartCreated Layer
  2. Select the part again
    1. It will explode the part.
    2. Note: In some cases I was able to remove this step but it did not work consistently so we are forced to have this step
  3. Select the plane of the explode part which you want to be the mold/construction plane
    1. The command will Isolate the plane you selected
  4. Select the plane again
    1. The command will convert the plane into its geometry which we will use it to generate the part
    2. Note: In some cases I was able to remove this step but it did not work consistently so we are forced to have this step
  5. Select all the geometry by using the selection box window. It is important to select all the geometry on the first try. This is a nuance of CUI scripting.
  6. Click through the two dialog boxes which are part of the SCToolpath command
    1. Important: If you get an error box
      ToolpathError
      select “Do Not Create Circles” and cancel the command by pressing ESC. Continue the part creation by running the command SCCreatePlatePartFromSolidCont
  7. Select the pick point (inner point) of your plate part
  8. Select the part properties (stock, throw/mark direction, etc.)
  9. Repeat

SCCreatePlatePartFromSolidCont

  1. Select 3 points on the outer toolpath
  2. Select all the geometry using AutoCAD selection box
  3. Select the pick point (inner point) of your plate part
  4. Select the part properties (stock, throw/mark direction, etc.)

SCCreatePlatePartFromSolidWithHoles

Very similar to SCCreatePlatePartFromSolid. I bolded the unique step.

  1. Select or preselect the part you want to convert
    1. The command will Isolate the part (hide all other parts), zoom to the part and move it to the PartCreated Layer
  2. Select the part again
    1. It will explode the part.
    2. Note: In some cases I was able to remove this step but it did not work consistently so we are forced to have this step
  3. Select the plane of the explode part which you want to be the mold/construction plane
    1. The command will Isolate the plane you selected
  4. Select the plane again
    1. The command will convert the plane into its geometry which we will use it to generate the part
    2. Note: In some cases I was able to remove this step but it did not work consistently so we are forced to have this step
  5. Select 3 points on the outer toolpath
  6. Select all the geometry by using the selection box window. It is important to select all the geometry on the first try. This is a nuance of CUI scripting.
  7. Select the pick point (inner point) of your plate part
  8. Select the part properties (stock, throw/mark direction, etc.)
  9. Repeat

 Video

If you do not have access to YouTube you can view the video here.


Command Scripts

SCCreatePlatePartFromSolid

^C^C_-layer;on;PartCreated;;Isolateobjects;\;zoom;o;p;;CHProp;p;;Layer;PartCreated;;Explode;\Isolateobjects;\;chprop;p;;Layer;_Draft_Cut;;Explode;\SCToolpath;\\\_UCS;OB;l;SCCreatePlate;\UnIsolateObjects;-layer;off;PartCreated;^C^C

SCCreatePlatePartFromSolidCont

_UCS;3;\\\scconv;\\;SCCreatePlate;\UnIsolateObjects;-layer;off;PartCreated;^C^C

SCCreatePlatePartFromSolidWithHoles

^C^C_-layer;on;PartCreated;;Isolateobjects;\;zoom;o;p;;CHProp;p;;Layer;PartCreated;;Explode;\Isolateobjects;\;chprop;p;;Layer;_Draft_Cut;;Explode;\_UCS;3;\\\scconv;\\;SCCreatePlate;\UnIsolateObjects;-layer;off;PartCreated;^C^C

Leave a Reply

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.