question

SHASHIKUMAR. V avatar image
1 Like"
SHASHIKUMAR. V asked Ben Wilson commented

Export from Flexsim ?

How can i Export Flexsim model into other 3D models ? like 3DS file, STEP, Sketchup, Solidworks etc.

Thanks for your help.

FlexSim 16.1.2
exporting
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Ben Wilson avatar image
3 Likes"
Ben Wilson answered Ben Wilson commented

This may not answer exactly what you are asking, but it is related.

UPDATE: @Sam Stubbs does a good job outlining the method below in a post already mentioned by @Jörg Vogel. Original answer continues below.

If there is a 3D shape or other digital asset saved into a FlexSim model, you can save it out again with the following command:

  1. applicationcommand("byteblocktofile",node,"filename");

The node parameter is a reference to a node containing packed media.

The filename parameter is a path and filename designating where in your file system the digital asset should be saved.

For example, the attached FlexSim 2017 model has custom Pallet Jack shape packed in it:

palletjack.fsm

You can see where the binary data is stored within the model file, under the model's packedmedia object data node.

To export this .dae 3D shape out of FlexSim and save it as its own file, try the following in a script window from within the model:

  1. applicationcommand(
  2. "byteblocktofile",
  3. node(">packedmedia/1/Pallet Jack.dae", model),
  4. concat(modeldir(), "PalletJack.dae")
  5. );

This will save a new PalletJack.dae file in the same directory where your model is saved.


· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

Joerg Vogel avatar image
3 Likes"
Joerg Vogel answered Joerg Vogel commented

Please look here. Or here.

In short you cannot do that.

· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.