element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Altium CircuitStudio
  • Products
  • Manufacturers
  • Altium CircuitStudio
  • More
  • Cancel
Altium CircuitStudio
Altium CircuitStudio Forum Polygons - automatic repour on error
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Altium CircuitStudio to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Locked Locked
  • Replies 13 replies
  • Subscribers 93 subscribers
  • Views 2715 views
  • Users 0 members are here
Related
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Polygons - automatic repour on error

GilchristT
GilchristT over 8 years ago

Folks

 

Am I missing something or is the "Automatic repour on polygon error" setting missing from the PCB Editor -> General settings screen?

 

If you make a change that requires a polygon repour the dialog gives you the option to change the setting but it's not there in version 1.4 unless I'm being particularly slow today?

  • Cancel

Top Replies

  • GilchristT
    GilchristT over 8 years ago in reply to e14softwareteam +1
    Sorry but I think you've missed my point. I've no problems repouring polygons, I just use the standard repour now and that resolves the issue. To give an example, say I've created a board design, placed…
Parents
  • vadim007
    vadim007 over 6 years ago

    This annoying window has been driving me crazy for years already. image Please, add an option to disable it in future releases.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • voltsandjolts
    voltsandjolts over 6 years ago in reply to vadim007

    Polygon re-pours are so slow on all but the most trivial of boards, trying to work with auto re-pours would drive me insane(r).

    Pouring polys is the very last thing I do on a board.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • mars01
    mars01 over 6 years ago in reply to voltsandjolts

    Hi @voltsandjolts,

     

    If CS performance is bothering you, then you could run the DXP.exe (CS executable) with high priority. From I what I saw, CS is run mainly on a single thread/processor and running the executable as high priority will help.

     

    From another forum I learned that you could automate this by using a small open-source utility named 'Bat to Exe Converter' which can be downloaded from here: Bat To Exe Converter | F2KO Software

    From the same forum (it's another user work, I only copy/paste here) the BAT file should look like this:

     

    @echo off
    IF [%1] == [] (
    Start "Altium Circuit Studio" /high "C:\Program Files (x86)\Altium\CS\DXP.orig.EXE"
    REM echo "There is no input file"
    ) ELSE (
    Start "Altium Circuit Studio" /high "C:\Program Files (x86)\Altium\CS\DXP.orig.EXE" %1
    REM echo "Input file is %1"
    )
    REM pause

     

    assuming that your CS installation folder is the default one.

     

    Using this BAT as a source you will create a new DXP.exe file which is more or less an "shortcut" to the real DXP.exe file which now needs to be renamed to DXP.orig.exe

     

    You also need to rename the following files from:

    dxp.exe.config

    DXP.exe.manifest

     

    to:

    dxp.orig.exe.config

    DXP.orig.exe.manifest

     

    You can still run the CS as you used to but this time you do it from the renamed file: DXP.orig.exe

    If you want to run CS as a high priority process you do it from the new "shortcut" DXP.exe

     

    If you trust running an executable from an outside source I post here a link with the small executable that I just created through the same process just described (and also tested it). I also found and used  in this executable the CS icon.

    If you use the file in the following link, unzip it and remember also to rename the original files as mentioned above.

    https://cp.sync.com/dl/79aeb2b00/chvma4pg-3bqfmduj-tqdf98p9-h8v38qri

     

    image

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • e14softwareuk
    e14softwareuk over 6 years ago in reply to mars01

    Interesting idea - have you seen any difference in performance by using a higher process priority. I would have thought that it would not make much difference unless you are seriously multitasking on your computer. It would be great to get a comparison if it boost performance.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • e14softwareuk
    e14softwareuk over 6 years ago in reply to mars01

    Interesting idea - have you seen any difference in performance by using a higher process priority. I would have thought that it would not make much difference unless you are seriously multitasking on your computer. It would be great to get a comparison if it boost performance.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
  • mars01
    mars01 over 6 years ago in reply to e14softwareuk

    Hi Peter,

     

    Perhaps the improvement is not that big and it depends on the setup. The current system is a notebook set with balanced powerplan and I had only a tiny bit of improvement (Acer Helios 300, i7-8850H, 16GB).

    I can open CS with a medium-sized project loaded, in about 9". Using the original shortcut, it loads in about 10".

    CS is installed on the C drive (Intel 600p NVMe SSD) the project is on a 5400RPM WD HDD.

    Dedicated antivirus running in background.

     

    But on a previous system (i7 first generation, 12GB RAM, normal SSD) the performance improvement was greater.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube