sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin]SOLID QUANTIFY v2.5.1 (20131215)

    Scheduled Pinned Locked Moved Plugins
    64 Posts 19 Posters 57.1k Views 19 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • T Offline
      tak2hata
      last edited by tak2hata

      Solid Quantify v2.5.1 by TAK2HATA : Copyright 2012.

      It shows Quantify of all solid in sketchup model.
      In the case of The Solid created by Building strcuture tool,
      Total Sum of Every material of Solid is caluculated.
      Thanks.
      ####General disclaimer
      I MAKES NO GUARANTEE OF VALIDITY about reports by using this script.
      Please use this script at your own risk.

      DONWLOAD:
      Get the latest version from the PluginStore:
      http://sketchucation.com/resources/pluginstore?pln=solid_quatify
      or AutoInstall from within SketchUp using the SketchUcation Tools

      @unknownuser said:

      Update
      Nov 09, 2011:add "cu" in list.
      Nov 29, 2011:I update this with the proposal by stevendaniels.Thank you.
      Mar 18, 2012:Improve and add function exporting XML spreadSheet.
      Mar 20, 2012:Add function exporting CSV.and add new items in list.Area of surface and Width,Height,Depth.
      Width is the length about X Axis in component.So Width means the length of the element made with Building structure tool.
      Mar 21, 2012:Bugfix about aborting because getting size of Component.
      Apl 05,2012:version2.0a:Add Estimate cost reporter.and Improve functions.
      Apl 08,2012:version2.0b:Improve and bugfix.
      Sep 05,2012:Version2.0d:Bugfix:Surface area calculated double,when that face do not have back-material.And mistaked about units when report rendered in webdialog.

      @unknownuser said:

      "Cost" in Subtotal was incorrect.it fixed.
      Overrided material by component/group is effective to quantify now.
      Improve displaying for watcher.

      Sep 27,2012:Version2.2:Add Changing Units in report.
      Oct 28,2012:Version2.3:Add option switch of quantifying each component definition.and improve.
      v2.3:Small improve.
      V2.41:Apr 28,2013.:Version2.4:Add Short/Full report for Webdialog.
      Bug fix about surface area in scaled component.
      Including area of back_face material.
      deal with instance name as priority to definition name when the name applied to instance.
      Small Improve:Report with the model includes no solid.
      v2.4.2:May 16,2013:Modify for Sketchup Extension Class.
      And Add showing charts with Javascript InfoVis tool kit.(http://philogb.github.io/jit/)
      V2.4.2 New function "SHOW CHART" video.
      v2.4.3 Small BugFix.
      v2.5.0 Bugfix:Calculate correctly volume of the solid in scaled group.
      V2.5.1 bug fix .

      Please erase older version when new version is copied to plugin folder.

      How to use Solid_Quatify(youtube)
      [flash=480,360:2qbyryqt]http://www.youtube.com/v/mJ7fYVFXwlw[/flash:2qbyryqt]
      Export solid reports with xml and csv.(youtube)
      [flash=480,360:2qbyryqt]http://www.youtube.com/v/ls2znpOasQ0[/flash:2qbyryqt]
      solid quantify2_Apr04_2012_how to estimate cost.(youtube)
      [flash=480,360:2qbyryqt]http://www.youtube.com/v/UNLV4zbBDu8[/flash:2qbyryqt]
      update v2.4
      [flash480,360:2qbyryqt]http://www.youtube.com/v/IdH7hDWFk9c[/flash:2qbyryqt]

      Where download My Building Smart Modeling tool for sketchup
      Hole on Solid Tool
      http://forums.sketchucation.com/viewtopic.php?f=323%26amp;t=41582
      Building structure tool
      http://forums.sketchucation.com/viewtopic.php?f=323%26amp;t=35798
      Solid quantify
      http://forums.sketchucation.com/viewtopic.php?f=323%26amp;t=41120
      WHD Parametric Component
      Coming soon.


      by TAK2HATA

      1 Reply Last reply Reply Quote 0
      • pilouP Offline
        pilou
        last edited by

        Seems very useful! 😎

        Frenchy Pilou
        Is beautiful that please without concept!
        My Little site :)

        1 Reply Last reply Reply Quote 0
        • kenK Offline
          ken
          last edited by

          Nice plugin. It would be nice if the "cu" was in the same units at the model. I tried to look at the code and change the output to cu/in. However, I just couldn't figure it out.

          Anyway, thanks for the plugin.

          Ken

          Fight like your the third monkey on Noah's Ark gangway.

          1 Reply Last reply Reply Quote 0
          • T Offline
            tak2hata
            last edited by

            Hi,Pilou and Ken.
            I am glad that good evaluation from you.
            I add "cu" in quantify list.
            Thanks 😍

            @unknownuser said:

            Nice plugin. It would be nice if the "cu" was in the same units at the model. I tried to look at the code and change the output to cu/in. However, I just couldn't figure it out.

            Anyway, thanks for the plugin.

            Ken


            by TAK2HATA

            1 Reply Last reply Reply Quote 0
            • kenK Offline
              ken
              last edited by

              tak2hata

              Thank you for the update. The column of cu/in helps a great deal.

              Ken

              Fight like your the third monkey on Noah's Ark gangway.

              1 Reply Last reply Reply Quote 0
              • S Offline
                stevendaniels
                last edited by

                Excellent plugin. I am amazed at what you accomplished in under 200 lines of Ruby. πŸ‘

                One thing I would love to see is support for layers. For example in my model all of the wood framing, concrete beams and insulation are on separate layers. It would be great if I could have the option to see the list broken down by layers. As a temporary fix I modified your script on line 16 like so:

                pents.each{|ent|
                  if ent.layer.visible?
                

                This way I can toggle the layer I want and get estimates JUST for that material. Still trying to figure out how to break down by layer as I familiarize myself with SU API, any help there would be appreciated

                Another small detail is the size of the window. Right now its way too small (100x100) and I have to keep opening it each time I run the plugin. I fixed this on my own copy by changing line 158 to:

                UI;;WebDialog.new("SOLID QUANTIFY", true, "SOLID_QUANTIFY", 800, 800, 150, 150, true)
                

                That's about it. Thanks for sharing this plugin with us!

                1 Reply Last reply Reply Quote 0
                • S Offline
                  stevendaniels
                  last edited by

                  Ok so after further digging I see what you were trying to accomplish with grouping by materials. Unfortunately you chose to use your own custom attributes which will make this grouping meaningless to most people. I am currently rewriting some of this to suit my own needs - I will post here when complete but its definitely not a one-size-fits-all solution since I dont have the time to customize it for every use case.

                  1 Reply Last reply Reply Quote 0
                  • T Offline
                    tak2hata
                    last edited by

                    @stevendaniels said:

                    Ok so after further digging I see what you were trying to accomplish with grouping by materials. Unfortunately you chose to use your own custom attributes which will make this grouping meaningless to most people. I am currently rewriting some of this to suit my own needs - I will post here when complete but its definitely not a one-size-fits-all solution since I dont have the time to customize it for every use case.

                    Hi stevendaniels.
                    I update this with your proposal.
                    The Nice proposal for this plugin ,It welcome to me and everyone.

                    Thanks. πŸ˜„


                    by TAK2HATA

                    1 Reply Last reply Reply Quote 0
                    • kenK Offline
                      ken
                      last edited by

                      Great plugin. Would it be possible to get the output to a CSV file. This type of file could be imported into a xcel spreadsheet.

                      If not, still a great plugin.

                      Thank you

                      Ken

                      Fight like your the third monkey on Noah's Ark gangway.

                      1 Reply Last reply Reply Quote 0
                      • T Offline
                        tak2hata
                        last edited by

                        @unknownuser said:

                        Great plugin. Would it be possible to get the output to a CSV file. This type of file could be imported into a xcel spreadsheet.

                        If not, still a great plugin.

                        Thank you

                        Ken

                        Hi,Ken.
                        I think so ,too. πŸ˜‰
                        by the way,if you have intalled excel,perhaps the Table in the browser can be exported with pulldown menu.

                        In future I will change script to export CSV.
                        But exporting schema is not enough consideration.

                        Thanks.


                        by TAK2HATA

                        1 Reply Last reply Reply Quote 0
                        • R Offline
                          rachmatrf
                          last edited by

                          Arigato Gozaimatsu...
                          You Rock!!!

                          1 Reply Last reply Reply Quote 0
                          • T Offline
                            tak2hata
                            last edited by

                            Hi
                            I updated "Solid Quantify".
                            Add new function for export XML SpreadSheet.
                            It could be read with application like excel.

                            Thanks.


                            by TAK2HATA

                            1 Reply Last reply Reply Quote 0
                            • Z Offline
                              ZFRPS
                              last edited by

                              Dear Tak2hata:

                              exporting XML πŸ‘
                              Now ,only volume exporting XML,when "area","length","piece" all exporting XML,very nice!
                              length of section bar (group)....or length of lines-group...
                              area of faces that TBN To Be Nominated inside group...
                              piece of components ....

                              However,YOU are great man for BIM,I love you!

                              sketchup is bim

                              1 Reply Last reply Reply Quote 0
                              • T Offline
                                tak2hata
                                last edited by

                                Hi,
                                I update in mar 20,2012.

                                zfrps...
                                Yout suggestion is good.
                                I think piece of components could be found in model info window.

                                Thanks.


                                by TAK2HATA

                                1 Reply Last reply Reply Quote 0
                                • Z Offline
                                  ZFRPS
                                  last edited by

                                  Tak2hata:
                                  I think only piece of components could be found in model info window not enough,need exporting XML for budgetary price of project,your plugin is good,hope it change to better powerful.01.jpg02.jpg

                                  look here:
                                  amount:200001,this very good,Generate report amount 5000 around inide of sketchup and very very slow,so I enjoy your plugin and love you !

                                  sketchup is bim

                                  1 Reply Last reply Reply Quote 0
                                  • T Offline
                                    tak2hata
                                    last edited by

                                    @unknownuser said:

                                    Tak2hata:
                                    I think only piece of components could be found in model info window not enough,need exporting XML for budgetary price of project,your plugin is good,hope it change to better powerful.[attachment=2:q0rl3znq]<!-- ia2 -->01.jpg<!-- ia2 -->[/attachment:q0rl3znq][attachment=1:q0rl3znq]<!-- ia1 -->02.jpg<!-- ia1 -->[/attachment:q0rl3znq]

                                    look here:
                                    amount:200001,this very good,Generate report amount 5000 around inide of sketchup and very very slow,so I enjoy your plugin and love you !

                                    Hi,zfrps.
                                    Model info window is this.
                                    [attachment=0:q0rl3znq]<!-- ia0 -->sketchup_model_info_window_statics.JPG<!-- ia0 -->[/attachment:q0rl3znq]
                                    It shows piece of component.
                                    The budgetary price of project is important.
                                    I will add fucntion to manage cost of materials.
                                    I am still inquiring.

                                    Thanks.


                                    Model info window


                                    by TAK2HATA

                                    1 Reply Last reply Reply Quote 0
                                    • Z Offline
                                      ZFRPS
                                      last edited by

                                      Dear Tak2hata:
                                      About It shows piece of component in Model info window ,this is not enough,because budgetary number need XML or EXCEL,Can you copy components number out to XML or EXCEL From MODEL INFO?
                                      In XML,not that every last Group or Component all need volume, area, length, piece,
                                      All Components only piece
                                      Partial Groups only length...For example:Angle iron,steel tube,pipe, and other section bar.
                                      Partial Groups only volume...For example:concrete...
                                      Partial Groups only area...For example:coating of wall;flooring tileon ground...notice:area of faces only that is to be Nominated inside groups,not all faces inside groups.

                                      Budgetary number is important a Part for BIM of project,in project,various material number is multifarious and disorderly,so all need exporting to XML or EXCEL.

                                      This things for BIM of sketchup,Expect Tak2hata and everybody substantial support.

                                      Thanks again!

                                      sketchup is bim

                                      1 Reply Last reply Reply Quote 0
                                      • T Offline
                                        tak2hata
                                        last edited by

                                        @unknownuser said:

                                        Dear Tak2hata:
                                        About It shows piece of component in Model info window ,this is not enough,because budgetary number need XML or EXCEL,Can you copy components number out to XML or EXCEL From MODEL INFO?
                                        In XML,not that every last Group or Component all need volume, area, length, piece,
                                        All Components only piece
                                        Partial Groups only length...For example:Angle iron,steel tube,pipe, and other section bar.
                                        Partial Groups only volume...For example:concrete...
                                        Partial Groups only area...For example:coating of wall;flooring tileon ground...notice:area of faces only that is to be Nominated inside groups,not all faces inside groups.

                                        Budgetary number is important a Part for BIM of project,in project,various material number is multifarious and disorderly,so all need exporting to XML or EXCEL.

                                        This things for BIM of sketchup,Expect Tak2hata and everybody substantial support.

                                        Thanks again!

                                        Hi,zfrps.
                                        Component counts will be solved with "component reporter+.rb"
                                        http://forums.sketchucation.com/viewtopic.php?t=1524#p6682.

                                        Budgetary pricing is important for quantify.
                                        It will be goal of this plugin.
                                        The setting of schema about Budgetary pricing list is needed.
                                        I will try it nearly future.
                                        Thanks.


                                        by TAK2HATA

                                        1 Reply Last reply Reply Quote 0
                                        • T Offline
                                          tak2hata
                                          last edited by

                                          Hi ,
                                          I update this tool in apr 05,2012.
                                          Add new functios.

                                          Enjoy! 😍


                                          by TAK2HATA

                                          1 Reply Last reply Reply Quote 0
                                          • pilouP Offline
                                            pilou
                                            last edited by

                                            Always astonishing! πŸ‘

                                            Frenchy Pilou
                                            Is beautiful that please without concept!
                                            My Little site :)

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 4 / 4
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement