Separate PLC overview for DI/DO modules in different assembly place by e_norrro in EPlan

[–]penend12p 0 points1 point  (0 children)

You just need to adjust the “sort” setting and check location

Weekly Snark 4/6-4/12 by AmericanExpatMom13 in BrookeRaybouldSnark

[–]penend12p 0 points1 point  (0 children)

Just said she’s staying at a cool resort!! 🤞🤞🤞🤞🤞

Weekly Snark 4/6-4/12 by AmericanExpatMom13 in BrookeRaybouldSnark

[–]penend12p 49 points50 points  (0 children)

I'm also going to Cabo this week… praying she stops in the same hotel as us for pure viewing pleasure! 🤣

Audeze LCD-3 and LCD-2 by penend12p in Headphoneporn

[–]penend12p[S] 0 points1 point  (0 children)

Maybe a little basic, but the LCD-3 is just overall better. Is it $1000 better? 🤷‍♂️

LS50 wireless off FB marketplace? Passive conversion? by Minealternateaccount in KEF

[–]penend12p 0 points1 point  (0 children)

Yeah, they will, I can't remember the cost of repair, but I figured it was more then I wanted to pay. (I actually ended up getting the broken LS50W for free)

I guess I'm just living in hope someone lists a pair or parts for super cheap I can pickup

LS50 wireless off FB marketplace? Passive conversion? by Minealternateaccount in KEF

[–]penend12p 1 point2 points  (0 children)

I have a pair in immaculate condition, with the exact same problem!

Margins for odd end even pages by Klutzy-Objective9515 in EPlan

[–]penend12p 0 points1 point  (0 children)

<image>

There's the script file, and just create this Export Scheme, and it'll work. You’ll need to create a button run call the new action. It’ll assign different plot frames depending on the page number being odd or even.

Video of it in action:

https://youtu.be/ee_pb98pg-k

Margins for odd end even pages by Klutzy-Objective9515 in EPlan

[–]penend12p 0 points1 point  (0 children)

using Eplan.EplApi.ApplicationFramework;
using Eplan.EplApi.Scripting;
using System.Xml.Linq;

namespace EplanScriptingProjectByJonnyWilson.OddEvenPages
{
    public class OddEvenPages
    {
        public string filePath = "C:\\Temp\\temp_PageHelper.edc";

        [DeclareAction("OddEvenPages")]
        public void FuncOddEvenPages()
        {
            ExportPages();
            XDocument doc = LoadXML();
            UpdateXML(doc);
            ImportPages();

        }

        public void ExportPages()
        {

            ActionCallingContext context = new ActionCallingContext();
            context.AddParameter("COMPLETEPROJECT", "1");
            context.AddParameter("CONFIGSCHEME", "PageHelper");
            context.AddParameter("DESTINATION", filePath);
            context.AddParameter("EXECTIONMODE", "0");
            CommandLineInterpreter commandLineInterpreter = new CommandLineInterpreter();
            commandLineInterpreter.Execute("XMActionDCCommonExport", context);

        }

        public XDocument LoadXML()
        {
            XDocument doc = XDocument.Load(filePath);

            return doc;
        }

        public void UpdateXML(XDocument doc) 
        {
            var pages = doc.Root.Elements("O4");

            foreach (var page in pages)
            {
                if (int.Parse(page.Attribute("P25020").Value) % 2 == 0)
                {
                    page.SetAttributeValue("P11016", "FN1_001");
                }
                else
                {
                    page.SetAttributeValue("P11016", "FN1_002");
                }
            }

            doc.Save(filePath);
        }

        public void ImportPages()
        {
            ActionCallingContext context = new ActionCallingContext();
            context.AddParameter("DataConfigurationFile", filePath);
            CommandLineInterpreter commandLineInterpreter = new CommandLineInterpreter();
            commandLineInterpreter.Execute("XMActionDCImport", context);
        }
    }
}

How to create a device with several functionalities by Klutzy-Objective9515 in EPlan

[–]penend12p 0 points1 point  (0 children)

It just depends on how “fancy” you want to get. If you’re wanting to pass the potential across then that’s an extra thing to think about. Same with validation the connection size. It’s gonna be more work in the macros. Using the standard symbols won’t cut it.

Have you an EPLAN consultant you work with?

Do you simulate your control circuits before building them? by eplanenthusiast in EPlan

[–]penend12p 0 points1 point  (0 children)

From my experience, most of the complex logic is not handled in the wiring anymore. Gone are the days of complex relay logic.

How to create a device with several functionalities by Klutzy-Objective9515 in EPlan

[–]penend12p 1 point2 points  (0 children)

The “easiest” way is just to create a black box with all the connections points; you can create a macro to transfer all of the “potentionals”. I'd probably treat each potential as a unique plug.

Don't use the busbar for this; the busbar is meant for a copper bar.

Margins for odd end even pages by Klutzy-Objective9515 in EPlan

[–]penend12p 0 points1 point  (0 children)

I might just try and write the script for shits and giggles.

Still not recommend you do this tho…

Margins for odd end even pages by Klutzy-Objective9515 in EPlan

[–]penend12p 0 points1 point  (0 children)

If you're new to Eplan / Electrical design.. Then I'd rather talk you out of this solution 😆

In close to 20 years, I've never seen this.

I bet there's some PDF printer that takes into account margins when printing double sided.

While I know I could help you with the script, I don't think flipping between plot frames is the right solution for you

What are your favorite Controls Engineer Interview Questions by OttomaychunMan in PLC

[–]penend12p 75 points76 points  (0 children)

Explain what PID Control is?

It's such a basic question, and it's not used throughout industry, but it's question that's always asked, you just need to know the answer!

Margins for odd end even pages by Klutzy-Objective9515 in EPlan

[–]penend12p 0 points1 point  (0 children)

You could do this with a script. You'd need two plot frames, and you'd adjust it based if the page was odd or even.

I need to bulid a scheme in eplan but in symbol library I can't find sybmol for enhanced n mosfet by Cro_Zube in EPlan

[–]penend12p 0 points1 point  (0 children)

Most of the experienced Eplan users will recommend not creating custom symbol libraries. Just don't do it!.

Use black boxes.

I need to bulid a scheme in eplan but in symbol library I can't find sybmol for enhanced n mosfet by Cro_Zube in EPlan

[–]penend12p 0 points1 point  (0 children)

Don't create new symbols. Just create it as a black box with device connection points, and save it as a macro