Wednesday, May 28, 2025

Process diagram made easy with PTCAD Plus - P&ID Lite

         P&ID stands for Piping and Instrumentation Diagram. It is a detailed diagram in the process industry that shows the piping and related components of a physical process flow. These diagrams are essential tools used in engineering design and plant operation.


Key Elements of a P&ID

A P&ID typically includes:

- Pipes and fittings (with sizes, types, and specifications)
- Valves (manual, automatic, pressure relief, etc.)
- Instrumentation (pressure gauges, flow meters, sensors, transmitters)
- Control systems (PLC, DCS, and their logic interfaces)
- Equipment (pumps, compressors, tanks, heat exchangers, reactors)
- Flow directions and connection points


 Purpose of a P&ID

Design Documentation: Helps in visualizing how the system will work.
Engineering & Construction: Guides installation and maintenance teams.
Operations: Used by operators for understanding and troubleshooting systems.
Safety & Compliance: Critical for hazard and operability studies (HAZOP).


        PTCAD plus edition provides module help user draw P&ID Diagram easily called P&ID Lite. Not only lines and industrial symbols, P&ID Lite attachs data to each symbols inserted to drawing. This mean after user draw P&ID diagram, user will get equipment report data can be view in PTCAD and also able to export to MS Excel file.

        Kindly refer to the example video as a guideline for using the software.


        

@ptcaduser

PTCAD-PIDLITE #P&IDdiagrm #ptcad #cad #pid #bom #valve

♬ original sound - ptcaduser

Monday, May 19, 2025

Sheet Metal Drawing easily in PTCAD Plus

         PTCAD Plus version is enriched with additional modules, including AEC Plus, Asset link, Mechanical(MEC) , Plus tools which P&ID and Sheet metal inside.   User can manage selective plug-ins at Manage menu at top menu as image



        To load Sheet Metal module , pls select PTCAD Plus Tool then press OK
        At       Plus Tools  menu   user will see ribbons as image

      
Click at  Sheet Metal

     Program will show dialog to select sheet metal geometry to generate unfold production drawing as listed

  • Cone
  • Cylinder
  • Rectangle Transform or Resize
  • Three Ways Cylinder
  • 90 Degree Cylinder Elbow
  • Duct Transform





    User can select  gemetry and input dimension of gemetry then press OK to generate unfold or part production drawing  by specify insertion point of drawing .



    
                        User can print 1:1 scale to cut steel sheet to fabricate wanted gemetry.














Sunday, April 27, 2025

FREELISP : Align circles in x or y axis

               


            If user want to make group of circles  align with reference one in X-axis or Y-axis.  Pls download LISP source code and run in your PTCAD.  Video below show how to use command (axy).

    Here is Video

            

@ptcaduser

PTCAD-align clrcles #cad #ptcad #aligncircle #autolisp #lsp #acad

♬ original sound - ptcaduser


Here is LISP source code  

(defun c:Axy( / refEnt refData refCenter selSet idx entData mode moveVec srcCenter )
  
  ;; Select reference circle
  (setq refEnt (car (entsel "\nSelect reference circle: ")))
  (if (and refEnt (eq (cdr (assoc 0 (entget refEnt))) "CIRCLE"))
    (progn
      (setq refData (entget refEnt))
      (setq refCenter (cdr (assoc 10 refData)))
      ;; Ask user alignment axis
      (initget "X Y")
      (setq mode (getkword "\nAlign by [X/Y]: "))
      ;; Select circles to align
      (setq selSet (ssget '((0 . "CIRCLE"))))
      (if selSet
        (progn
          (setq idx 0)
          (while (< idx (sslength selSet))
            (setq ent (ssname selSet idx))
            (setq entData (entget ent))
            (setq srcCenter (cdr (assoc 10 entData)))
            
            (cond
              ;; Align X axis only
              ((= mode "X")
               (setq moveVec (list (- (car refCenter) (car srcCenter)) 0.0 0.0))
              )
              ;; Align Y axis only
              ((= mode "Y")
               (setq moveVec (list 0.0 (- (cadr refCenter) (cadr srcCenter)) 0.0))
              )
            )
            ;; Move the circle
            (command "MOVE" ent "" '(0 0 0) moveVec)
            (setq idx (1+ idx))
          )
          (princ "\n✅ Circles aligned successfully.")
        )
        (princ "\nNo circles selected.")
      )
    )
    (princ "\n❌ Please select a valid circle as reference.")
  )
  (princ)
)

Sunday, April 20, 2025

PTCAD 2025

 




        ​PTCAD is a computer-aided design (CAD) software developed by Rabbit Prototype Co., Ltd., a company based in Bangkok, Thailand. It offers a cost-effective and efficient solution for professionals in architecture, engineering, construction, and manufacturing. PTCAD is designed to be natively compatible with the industry-standard DWG file format, ensuring seamless collaboration with other CAD software like AutoCAD. 



Key Features of PTCAD:

  • Comprehensive 2D and 3D Tools: PTCAD provides a full range of drafting tools, enabling users to create accurate and detailed designs, from basic sketches to complex models. 

  • LISP Support: The software supports AutoLISP, allowing users to automate tasks and streamline workflows. It's highly compatible with AutoCAD's AutoLISP format, so existing scripts can be used without modification.

  • Network Licensing: PTCAD offers network licenses, reducing costs for organizations by allowing multiple users to access the software simultaneously without the need for individual licenses. 

  • Familiar Interface: The user interface and command structure are designed to be intuitive for those familiar with other CAD software, minimizing the learning curve.

  • Affordable Pricing: PTCAD is available in different editions to suit various needs and budgets:

    • PTCAD LITE: $99 per year, offering 2D DWG CAD optimized for speed.

    • PTCAD Standard: $199 per year, providing comprehensive 2D/3D DWG CAD tools with full AutoLISP support

    • PTCAD Plus: $299 per year, including advanced features like dedicated toolsets for AEC (Architecture, Engineering, and Construction) and early access to new features.

For more information or to download a free trial, you can visit their official website.

www.pt-cad.com

Update cookies preferences

FREE LISP : Improving Drawing Quality by using Ortho-Check LISP

  Improving Drawing Quality with an Ortho-Check LISP Tool In many CAD workflows, especially in architectural, engineering, and construction...