wit

Episode 397: Pat Helland on Data Management with Microservices.mp3

Pat Helland talks to host Akshay Manchale about Data Management at scale in a Microservices world. Pat talks about trends in managaging data in a distributed microservices world, immutability, idempotence, inside and outside data, descriptive...




wit

Episode 398: Apache Kudu with Adar Leiber Dembo

Adar Leiber-Dembo talks to SE Radio’s Akshay Manchale about Apache Kudu, a system for fast analytics in a column-based storage system. They explore how to leverage Kudu for data analytics, as well as its rich feature set and integration options with other SQL and analytical engines.




wit

Episode 436: Apache Samza with Yi Pan

Yi Pan is the lead maintainer of the Apache Samza project and discusses the use cases for stream processing frameworks, how to use them, and the benefits & drawbacks of a framework like Samza.




wit

Episode 441 Shipping Software - With Bugs

James Smith, CEO and co-founder of Bugsnag discusses “Why it is ok to ship your software with Bugs.”




wit

Episode 505: Daniel Stenberg on 25 years with cURL

Daniel Stenberg, founder and lead developer of cURL and libcurl, and winner of the Polhem Prize, discusses the history of the project, key events in the project timeline, war stories, favorite command line options and various experiences from 25 years of developing an Open Source project.




wit

Episode 505: Daniel Stenberg on 25 years with cURL

Daniel Stenberg, founder and lead developer of cURL and libcurl, and winner of the Polhem Prize, discusses the history of the project, key events in the project timeline, war stories, favorite command line options and various experiences from 25 years of developing an Open Source project.




wit

Episode 516: Brian Okken on Testing in Python with pytest

In this episode, we explore the popular pytest python testing tool with author Brian Okken, author of Python Testing with pytest. We start by discussing why pytest is so popular in the Python community: its focus on simplicity, readability, and developer ease-of-use; what makes pytest unique; the setup and teardown of tests using fixtures, parameterization, and the plugin ecosystem; mocking; why we should design for testing, and how to reduce the need for mocking; how to set up a project for testability; test-driven development, and designing your tests so that they support refactoring. Finally, we consider some complementary tools that can improve the python testing experience.




wit

Episode 551: Vidal Graupera on Manager 1-1 with Direct Reports

Vidal Graupera, an Engineering Manager at LinkedIn, speaks with SE Radio’s Brijesh Ammanath about the importance of managers' one-on-one meetings with direct reports. They start by considering how a 1:1 meeting differs from other meetings...




wit

SE Radio 560: Sugu Sougoumarane on Distributed SQL with Vitess

Sugu Sougoumarane discusses how to face the challenges of horizontally scaling MySQL databases through the Vitess distribution engine and Planetscale, a service built on top of Vitess. The journey began with the growing pains of scale at YouTube around the time of Google’s acquisition of the video service. This episode explores ideas about topology management, sharding, Paxos, connection pooling, and how Vitess handles large transactions while abstracting complexity from the application layer.




wit

SE Radio 582: Leo Porter and Daniel Zingaro on Learning to Program with LLMs

Dr. Daniel Zingaro and Dr. Leo Porter, co-authors of the book Learn AI-Assisted Python Programming, speak with host Jeremy Jung about teaching programming with the aid of large language models (LLMs). They discuss writing a book to use in Leo's introductory CS class and explore how GitHub Copilot de-emphasizes syntax errors, reduces the need to memorize APIs, and why they want students to write manual test cases. They also discuss possible ethical concerns of relying on commercial tools, their impact on coursework, and why they aren't worried about students cheating with LLMs.




wit

SE Radio 594: Sean Moriarity on Deep Learning with Elixir and Axon

Sean Moriarity, creator of the Axon deep learning framework, co-creator of the Nx library, and author of Machine Learning in Elixir and Genetic Algorithms in Elixir, published by the Pragmatic Bookshelf, speaks with SE Radio host Gavin Henry about what deep learning (neural networks) means today. Using a practical example with deep learning for fraud detection, they explore what Axon is and why it was created. Moriarity describes why the Beam is ideal for machine learning, and why he dislikes the term “neural network.” They discuss the need for deep learning, its history, how it offers a good fit for many of today’s complex problems, where it shines and when not to use it. Moriarity goes into depth on a range of topics, including how to get datasets in shape, supervised and unsupervised learning, feed-forward neural networks, Nx.serving, decision trees, gradient descent, linear regression, logistic regression, support vector machines, and random forests. The episode considers what a model looks like, what training is, labeling, classification, regression tasks, hardware resources needed, EXGBoost, Jax, PyIgnite, and Explorer. Finally, they look at what’s involved in the ongoing lifecycle or operational side of Axon once a workflow is put into production, so you can safely back it all up and feed in new data. Brought to you by IEEE Computer Society and IEEE Software magazine. This episode sponsored by Miro.




wit

SE Radio 596: Maxim Fateev on Durable Execution with Temporal

Maxim Fateev, the CEO of Temporal, speaks with SE Radio's Philip Winston about how Temporal implements durable execution. They explore concepts including workflows, activities, timers, event histories, signals, and queries. Maxim also compares deployment using self-hosted clusters or the Temporal Cloud.




wit

SE Radio 625: Jonathan Schneider on Automated Refactoring with OpenRewrite

Jonathan Schneider, the cofounder of Moderne and the creator of OpenRewrite, talks with SE Radio's Gregory Kapfhammer about automated software maintenance. In addition to exploring the design and implementation of OpenRewrite, Schneider explains how the tool can automatically support software maintenance tasks such as framework migration and security fixes for programs implemented in languages like Java. The episode also explores how OpenRewrite uses the lossless semantic tree to support automated refactoring though the use of recipes. Brought to you by IEEE Computer Society and IEEE Software magazine.




wit

SE Radio 633: Itamar Friedman on Automated Testing with Generative AI

Itamar Friedman, the CEO and co-founder of CodiumAI, speaks with host Gregory M. Kapfhammer about how to use generative AI techniques to support automated software testing. Their discussion centers around the design and use of Cover-Agent, an open-source implementation of the automated test augmentation tool described in the Foundations of Software Engineering (FSE) paper entitled “Automated Unit Test Improvement using Large Language Models at Meta“ by Alshahwan et al. The episode explores how large-language models (LLMs) can aid testers by automatically generating test cases that increase the code coverage of an existing testing suite. They also investigate other automated testing topics, including how Cover-Agent compares to different LLM-based tools and the strengths and weaknesses of using LLM-based approaches in software testing.




wit

How to Read an RSS Feed with PHP Using SimplePie

If you need to load an RSS feed with the PHP programming language, the open source library SimplePie greatly simplifies the process of pulling in items from a feed to present on a website, store in a database or do something else coooool with the data. There's a full installation guide for SimplePie but you can skip it with just three steps:

  1. Download SimplePie 1.5.
  2. Copy the file autoloader.php and the folder library to a folder that's accessible from your PHP code.
  3. Make note of this folder; you'll be using require_once() to load autoloader.php from that location.

SimplePie has been designed to work the same regardless a feed's format. It supports RSS 2.0, RSS 1.0, Atom and the earlier versions of RSS. Additionally it can read feed elements from nine namespaces.

Here's PHP code that loads feed items from the news site Techdirt and displays them in HTML:

// load the SimplePie library
require_once('/var/www/libraries/simplepie-1.5/autoloader.php');

// load the feed
$feed = new SimplePie();
$feed->set_feed_url('https://www.techdirt.com/feed/');
$feed->init();
$feed->handle_content_type();

// create the output
$html_output = '';
foreach ($feed->get_items() as $item) {
  $html_output .= '<p><a href="' . $item->get_link() . '">' . $item->get_title() . '</a></p>';
  $html_output .= $item->get_description();
  $html_output .= '<p>By ' . $item->get_author(0)->get_name() . ', ' . $item->get_date();
}

// display the output
ECHO <<<END
$html_output
END;

The API documentation for SimplePie_Item lists the functions that can extract data from each feed item. The versatility of the library is demonstrated by get_authors(), which can retrieve an item's authorship information whether it was in the RSS author element, Dublin Core creator, iTunes author, or Atom author.

SimplePie supports caching so that a feed isn't downloaded every time code is executed. The addition of these lines turns on caching, specifies the location of a cache folder and sets the time to use a cached version to four hours (14,400 seconds):

$feed->set_cache_location('/var/www/cache/');
$feed->set_cache_duration(14400);
$feed->enable_cache();

SimplePie was created by RSS Advisory Board member Ryan Parman, Geoffrey Sneddon and Ryan McCue. The project is currently maintained on GitHub by Malcom Blaney.




wit

How to Read an RSS Feed with Java Using XOM

There are a lot of libraries for processing XML data with Java that can be used to read RSS feeds. One of the best is the open source library XOM created by the computer book author Elliotte Rusty Harold.

As he wrote one of his 20 books about Java and XML, Harold got so frustrated with the available Java libraries for XML that he created his own. XOM, which stands for XML Object Model, was designed to be easy to learn while still being strict about XML, requiring documents that are well-formed and utilize namespaces in complete adherence to the specification. (At the RSS Advisory Board, talk of following a spec is our love language.)

XOM was introduced in 2002 and is currently up to version 1.3.9, though all versions have remained compatible since 1.0. To use XOM, download the class library in one of the packages available on the XOM homepage. You can avoid needing any further configuration by choosing one of the options that includes third-party JAR files in the download. This allows XOM to use an included SAX parser under the hood to process XML.

Here's Java code that loads items from The Guardian's RSS 2.0 feed containing articles by Ben Hammersley, displaying them as HTML output:

// create an XML builder and load the feed using a URL
Builder bob = new Builder();
Document doc = bob.build("https://www.theguardian.com/profile/benhammersley/rss");
// load the root element and channel
Element rss = doc.getRootElement();
Element channel = rss.getFirstChildElement("channel");
// load all items in the channel
Elements items = channel.getChildElements("item");
for (Element item : items) {
  // load elements of the item
  String title = item.getFirstChildElement("title").getValue();
  String author = item.getFirstChildElement("creator",
    "http://purl.org/dc/elements/1.1/").getValue();
  String description = item.getFirstChildElement("description").getValue();
  // display the output
  System.out.println(">h2>" + title + ">/h2>");
  System.out.println(">p>>b>By " + author + ">/b>>/p>");
  System.out.println(">p>" + description + ">/p>");

All of the classes used in this code are in the top-level package nu.xom, which has comprehensive JavaDoc describing their use. Like all Java code this is a little long-winded, but Harold's class names do a good job of explaining what they do. A Builder uses its build() method with a URL as the argument to load a feed into a Document over the web. There are also other build methods to load a feed from a file, reader, input stream, or string.

Elements can be retrieved by their names such as "title", "link" or "description". An element with only one child of a specific type can be retrieved using the getFirstChildElement() method with the name as the argument:

Element linkElement = item.getFirstChildElement("link");

An element containing multiple children of the same type uses getChildElements() instead:

Elements enclosures = item.getChildElements("enclosure");
if (enclosures.size() > 1) {
  System.out.println("I'm pretty sure an item should only include one enclosure");
}

If an element is in a namespace, there must be a second argument providing the namespace URI. Like many RSS feeds, the ones from The Guardian use a dc:creator element from Dublin Core to credit the item's author. That namespace has the URI "http://purl.org/dc/elements/1.1/".

If the element specified in getFirstChildElement() or getChild Elements() is not present, those methods return null. You may need to check for this when adapting the code to load other RSS feeds.

If the name Ben Hammersley sounds familiar, he coined the term "podcasting" in his February 2004 article for The Guardian about the new phenomenon of delivering audio files in RSS feeds.




wit

Breaking Up With Capitalism

A paradigm shift for our economy begins when we name and see the anti-democratic bias that lies at the heart of our capital-centric system.





wit

Test your quiz skills with our mega quizzes!

Feeling a bit bored? Well don't worry we've got you covered, test your knowledge with our huge quizzes to try out during the holidays.




wit

What to do with leftover pumpkins ?

Press Packers Martha and Greta visit a farm to find out what happens to leftover crops.




wit

'I opened Latitude festival with my poem'

Anna, aged eleven, won a competition to open Latitude Festival with her poem, The Mother Tree. She told Newsround about her experience.




wit

Dos, don’ts and precautions in wiring cables and conductors inside low-voltage switchboard

To be clear from the very beginning of this article, there is no standard model for wiring low voltage switchboards and panelboards. However, for the wide variety of installations and ranges of power ratings, there are local work practices, regulations... Read more

The post Dos, don’ts and precautions in wiring cables and conductors inside low-voltage switchboard appeared first on EEP - Electrical Engineering Portal.




wit

Family, data and power generation: A conversation with CPS Energy’s Melanie Green

Melanie Green is currently Sr. Director of Power Generation at CPS Energy in San Antonio, Texas.




wit

Blended Learning and Career and Technology Education - Part IV: Implementing Blended Learning With Resources from the Oklahoma Department of Career and Technology Education



In this four-part series, I’ll define blended learning, discuss the models of blended learning, the implications for career and technical education, and how the Curriculum, Assessment, and Digital Delivery (CADD) areas of the Oklahoma Department of Career and Technology Education can assist in the implementation of blended learning.

Photo courtesy of the Clayton Christensen Institute
Blended learning is a shift to an online instructional delivery for a portion of the day to make students, teachers, and schools more productive, both academically and financially.  We all know there’s no single right approach to building the “perfect” model for blended learning as communities have different resources, classrooms, computers, schedules, and many other unique needs.  A school doesn’t always have the resources or the expertise to select and purchase a learning management system (LMS), design lessons, or write assessments, but there are available resources.

Did you know that the Curriculum, Assessment, and Digital Delivery areas of the Oklahoma Department of Career and Technology Education can assist in the implementation of blended learning?  The National Technology Plan acknowledges the challenges of raising college and career-ready standards without a significant investment of new funding so check out our online catalog and search the following links for additional information and see how we can assist you in blending digital and teacher led instruction to personalize learning for each student.







wit

Use Twitter "Moments" to Share School Events and Activities

Follow us! @CareerTechTest

Nearly a year after releasing its Moments curation feature, Twitter Moments is now available to users.

Twitter Moments are curated stories about what’s happening around the world—powered by Tweets.  Originally, a user could click on Moments on their profile page to find curated stories, i.e News, Entertainment, Sports, and Fun, in a typical news format.

But now, it’s easy to create your own story with Twitter Moments.  I think this is a great way to share school events and activities and it could also assist with classroom discussion, especially when dealing with current events.

Either watch the video by Richard Byrne of Free Technology for Teachers or follow the directions from Twitter below:


How to create a Moment

There are three ways to begin creating your own Moment. You can access Moments through the Moments tab, your profile page, or through a Tweet detail. To get started all you need is a title, description, Tweets, and a selected cover image.

From the Moments tab:
  1. From the Moments tab, click the Create new Moment button.
  2. Click the Title your Moment field to give your Moment a name.Note: Titles can be up to 75 characters in length.
  3. Click the Add a description field to type in a description for your Moment.Note: Descriptions can be up to 250 characters in length. 
  4. Choose Tweets to add to your Moment: 
    1. From the Add Tweets to your Moment section at the bottom of the page, quickly access content to select Tweets from Tweets I’ve liked, Tweets by account, Tweet link, and Tweet search prompts. 
    2. To add a Tweet to your Moment, click on the checkmark icon 
  5. Click Set cover to choose a cover image from one of your selected Tweets, or to upload an image from your computer. Drag your selected image to set a Mobile preview, click the Next button, then click the Save button.Note: To change your selected image, hover over the cover image and click on Change cover media. After you’ve set your cover media, the source will be credited below the image. 
  6. Once you have Tweets in your collection, click on the up  or down arrow buttons  to the right of a Tweet to move it up or down.
  7. Click on the delete button  to remove a Tweet from your Moment.
  8. Click on the crop button  next to any of your selected Tweets to make an image selection for mobile viewing.
  9. Click the Finish later button at the top of the page to save a draft.
  10. When you are ready to make your Moment live, click on the Publish button at the top of the page.
From a Tweet:
  1. Click the more button 
  2. Select New Moment to add the Tweet to a new Moment.Note: Any completed Moments or Moments drafts you have in progress will also be listed in the drop-down to choose from.
  3. Follow the directions above to complete your Moment.
From the Moments tab on your profile page:
  1. Click on the Moments tab, then click the Create new Moment button to get started.
  2. Follow the directions above to complete your Moment.
Note: Access all of your Moments (draft or published) by selecting Moments from your profile icon drop down menu.

More options while creating a Moment:
From the More menu at the top of the page:
  1. Click on ••• More while in draft mode.
    1. Select Choose mobile theme color if you’d like to apply one.
    2. Select Mark that Moment contains sensitive material if appropriate.
    3. Select Share Moment privately to copy and paste your Moment’s URL to share privately with others. Note: The Moment will only be visible to people who have the URL, it will not be visible on your profile page, or published on Twitter.
    4. Select Unpublish Moment to unpublish a Moment you have previously published. 
    5. Select Delete Moment to permanently remove the Moment from your profile and Twitter. Note: You will see a confirmation pop-up message to confirm the deletion.
After you’ve saved your Moment as a draft:
  • You can click on the Edit button under the Moment description to continue editing your Moment.
  • Click the Tweet button under the Moment description to share your Moment with your followers. Note: The Tweet compose box will pop up giving you an opportunity to edit or add to the auto-populated Moment title and link in the compose box.
  • Click on the more button  under the Moment description to send your Moment via Direct Message, and to view the copy and embed links to your Moment. Note: As you scroll through your saved or published Moment you will see a menu pop-up on the left hand side to conveniently Edit, Tweet, or Message your Moment.

Frequently asked questions

Can I make my Moments private?
When creating a Moment, you can select Share Moment privately, which will only make the Moment available to those who have the link. If you would like to make previously published or shared Moments visible to only you, select Unpublish Moment.

Can content in my Moment be reported?
Yes. Content displayed in a Moment, such as photos, videos, or Tweets can be reported. To learn about the various options for reporting components of a Moment, read our How to report violations article.

What happens if a Tweet I included in my Moment is reported?
If the cover or any of the individual Tweets of your Moment is reported to us and found to be in violation of the Twitter Rules, your account may be locked—even if you did not author the Tweet.





wit

Parallel switching phenomenon when MV/HV circuit breakers interrupt a shared fault current

Parallel switching occurs when two or more circuit-breakers are tripped to interrupt a shared fault current. This is typically the case for such bus arrangements as a double breaker, breaker-and-a-half, breaker-and-a-third, and ring buses. Ideally, all of the circuit-breakers should... Read more

The post Parallel switching phenomenon when MV/HV circuit breakers interrupt a shared fault current appeared first on EEP - Electrical Engineering Portal.




wit

MV/HV switchgear (circuit breaker) switching capability and suitability for specific applications

Circuit breakers (CBs) do interrupt fault currents and close onto faults. Besides, they could be used as isolation devices like disconnectors. The CBs manufacturers’ brochures and standards provide extensive data to select and assess the CBs performance, but designers must... Read more

The post MV/HV switchgear (circuit breaker) switching capability and suitability for specific applications appeared first on EEP - Electrical Engineering Portal.




wit

Eleven most important calculations you can perform with power system analysis software

This technical article we will go through a number of existing applications for conducting a wide range of electrical studies. However, the practice says that studies involving load flow and fault analyses are the most commonly utilized programs in power transmission... Read more

The post Eleven most important calculations you can perform with power system analysis software appeared first on EEP - Electrical Engineering Portal.




wit

IEC 62271-200 – HV Switchgear And Controlgear

Part 200: AC metal-enclosed switchgear and controlgear for rated voltages above 1 kV and up to and including 52 kV Switchgears are important nodal points in modern power distribution. Correspondingly important is their reliable functioning, a clearly defined switching behavior... Read more

The post IEC 62271-200 – HV Switchgear And Controlgear appeared first on EEP - Electrical Engineering Portal.




wit

3 Photovoltaic Installation Terms To Be Familiar With

In order to understand a photovoltaic (PV) installation and its components we must be familiar with the following terms: Standard Test Conditions (STC) PV modules PV string and Array The output of a PV module is not stable it depends... Read more

The post 3 Photovoltaic Installation Terms To Be Familiar With appeared first on EEP - Electrical Engineering Portal.




wit

Driving Distributed Energy with Smart Networks

The smart network will set up a virtuous cycle for distributed generators and energy storage devices. It will grow the market by opening up more niches where distributed energy is economically competitive. This growth will lead to economies of scale... Read more

The post Driving Distributed Energy with Smart Networks appeared first on EEP - Electrical Engineering Portal.




wit

Waxahatchee: A Love Song, Without The Love

In few words, "Be Good" profiles two people who love and trust each other deeply, who share their dreams and secret shames, but who would rather shotgun beers together than make out.




wit

Well engineers, it’s about time… Pull the switch and enter the 2023!

Here we are at the conclusion of 2022, a year that was very stressful for all of us. There are many aspects about this year that will be remembered, but, in my opinion, the same as it was for 2021,... Read more

The post Well engineers, it’s about time… Pull the switch and enter the 2023! appeared first on EEP - Electrical Engineering Portal.




wit

Masabi to Launch Mobile Ticketing with New York’s MTA

Riders will be able to use their phones as tickets on both Metro-North Railroad and Long Island Rail Road NEW YORK – April 30th, 2014 – Masabi, the leader in mobile ticketing and payments for transit, today announced that New York’s Metropolitan Transportation Authority (MTA) has selected the company to […]

The post Masabi to Launch Mobile Ticketing with New York’s MTA appeared first on Masabi.




wit

How To Control Reactive Power In Larger Electrical Plants With Multiple Incomers

Most compensation banks are controlled stepwise. For this purpose it is essential to ‘know’ when it is allowed to (de)activate a capacitor step by the power factor relay (controller). The so-called C/k value is calculated by the step size C... Read more

The post How To Control Reactive Power In Larger Electrical Plants With Multiple Incomers appeared first on EEP - Electrical Engineering Portal.




wit

SF6 Gas Monitoring and Alarming Practices in Gas-Insulated Switchgear (GIS) Systems

This article provides guidance on how to conduct gas monitoring and explains the various alerts that can be set. The many sorts of defects that might lead to partial discharges are discussed, and various partial discharge measuring techniques are described,... Read more

The post SF6 Gas Monitoring and Alarming Practices in Gas-Insulated Switchgear (GIS) Systems appeared first on EEP - Electrical Engineering Portal.




wit

What can go wrong with the nuclear power plant in the case of a grid loss: What to do?

Acquiring the skill to operate a nuclear reactor bears resemblance to acquiring the skill to pilot an aircraft. The majority of airplane pilots rapidly acquire proficiency in performing take-offs and landings. The process that requires significant time and exertion, particularly... Read more

The post What can go wrong with the nuclear power plant in the case of a grid loss: What to do? appeared first on EEP - Electrical Engineering Portal.




wit

Mastering Electrical Connectivity: From Circuit Topology to Switching Classifications

This technical article aims to delve into various aspects of electrical connectivity, symbol representation, and isolation methodologies, shedding light on fundamental concepts and practical applications within the field. From the intricacies of electrical connection and circuit topology to the symbolism... Read more

The post Mastering Electrical Connectivity: From Circuit Topology to Switching Classifications appeared first on EEP - Electrical Engineering Portal.




wit

Main and auxiliary circuit diagrams of switching three-phase motors via contactor and directly

This technical article will try to shed some light on the main and auxiliary circuit diagrams of switching three-phase motors via contactor and switching directly. We’ll cover some fundamental schematics with an old-school explanations and logics on how they work.... Read more

The post Main and auxiliary circuit diagrams of switching three-phase motors via contactor and directly appeared first on EEP - Electrical Engineering Portal.




wit

Main and auxiliary circuit diagrams of switching pole-changing three-phase motors

This technical article is dedicated to the main and auxiliary circuit diagrams of switching three-phase motors. We’ll now discuss a little more complicated schematics than the previous article. We’ll cover seven schematics of switching pole-changing three-phase induction motors with one... Read more

The post Main and auxiliary circuit diagrams of switching pole-changing three-phase motors appeared first on EEP - Electrical Engineering Portal.




wit

The analysis of relay control systems: Electrical schematics with latch, step and lockout relays

To be honest, expertise in relay systems is fundamental for comprehension and creativity in circuits design. From bi-stable relays that maintain their states without continuous power to step relays facilitating incremental changes, and lockout relays guarding against unauthorized reenergization, each... Read more

The post The analysis of relay control systems: Electrical schematics with latch, step and lockout relays appeared first on EEP - Electrical Engineering Portal.




wit

8 tips to avoid ground loops when dealing with signal level circuits

General recommendation is to properly design and implement the facility’s grounding system to avoid unwanted involvement of ground loops with the operation of the equipment. This kind of approach can also eliminate the need to consider equipment modifications and to... Read more

The post 8 tips to avoid ground loops when dealing with signal level circuits appeared first on EEP - Electrical Engineering Portal.




wit

Switchgear interlocking system and arc protection that you MUST consider in the design

There are at least two safety requirements that medium-voltage switchgear MUST fulfil: an interlocking system and an arc protection system. Yes, these two systems are crucial in terms of safety because they protect not only the operator and other substation... Read more

The post Switchgear interlocking system and arc protection that you MUST consider in the design appeared first on EEP - Electrical Engineering Portal.




wit

Write to us with any questions you may have

Would you like to ask us questions about the services we have available? Please contact us. We appreciate your feedback as it helps us to continue to serve you to the best of our ability.




wit

Star-delta starting used with large horsepower motors

Star-delta starting is frequently employed with high horsepower motors to mitigate inrush current during the start-up stage and to reduce starting torque. Star-delta starting involves initially connecting the motor stator windings in a star configuration during the motor startup phase,... Read more

The post Star-delta starting used with large horsepower motors appeared first on EEP - Electrical Engineering Portal.




wit

Electrical thumb rules for switching, isolating and earthing

It is essential that the electrical engineers, or operators who will be in charge of switching, isolating, and earthing operations of the switchgear have a good understanding of the rules that must be followed. In addition, it is of the... Read more

The post Electrical thumb rules for switching, isolating and earthing appeared first on EEP - Electrical Engineering Portal.




wit

Failures, Testing and Protections Associated with Field Winding of a Generator

Generator field winding is an integral part of the generator set which is responsible for generating the magnetic field that induces the stator emf when the rotor rotates. Regulation of current in this winding with the help of an AVR... Read more

The post Failures, Testing and Protections Associated with Field Winding of a Generator appeared first on EEP - Electrical Engineering Portal.




wit

Karla and Katrine + Q&A with Director Charlotte Sachs Bostrup

Karla and Katrine + Q&A with Director Charlotte Sachs Bostrup, in association with the Danish Embassy




wit

Witney Eleanor's Secret Cineschool screening

Screening of Eleanor's Secret as part of Cineschool 2013