Vector Calculus and Electromagnetic Field Principles

Gauss Divergence Theorem

The total outward flux of a vector field through a closed surface is equal to the volume integral of the divergence of the vector field over the region enclosed by the surface.

Where: A = vector field, S = closed surface, V = volume enclosed by surface, dS = differential surface element, ∇ ⋅ A = divergence of vector field.

Limitations

  • Applicable only for closed surfaces.
  • Vector field must be continuous and differentiable.

Applications

  • Gauss Law in Electrostatics
  • Fluid flow and
Read More

Understanding Law and the Rise of the Modern State

What Is Law?

Law in the current conception, according to the fundaments of the present legal-political regime, is “that norm of a coercive nature, that is, backed by the apparatus of state power”. This formal property (coercive norm) distinguishes it from other norms: moral, social, religious, protocol, etc. However, we can imagine several cases where there is a legal obligation without coercion:

  • Public International Law: There is no world state that can impose international legislation, but there
Read More

Python JSON Persistence and Attribute Validation

Enterprise Manager and Data Management

The following implementation defines a robust system for managing enterprise data, custom attribute validation, and JSON-based persistence.

Class EnterpriseManager

The EnterpriseManager class handles the creation of data objects and executes their primary actions.

class EnterpriseManager:
    def nuevo_metodo(self, param1, param2):
        obj = ClaseNuevaDeDatos(param1, param2)
        return obj.accion()

Class AtributoNuevo

This class extends Attribute to provide

Read More

Public Policy Frameworks and International Organizations

Definition of Public Policy

Key definition: A public policy is what the government decides “to do, or not to do” on a certain issue. It is a system of laws, regulatory measures, courses of action, and funding priorities regarding a specific area of the government’s functions.

Common Areas of Public Policy

  • Education
  • Health
  • Housing
  • Economic
  • Environment
  • Foreign affairs
  • Social welfare
  • Immigration

Who Makes Public Policies?

Division of Powers

  • Executive: Sets goals and policies, proposes and drafts the legislation
Read More

Ethereum Blockchain: Architecture, PoS, and MetaMask

Ethereum Blockchain Fundamentals

Ethereum is a decentralized, open-source blockchain platform used for executing smart contracts and developing decentralized applications (DApps). It was proposed by Vitalik Buterin in 2013. Ethereum extends blockchain functionality beyond cryptocurrency by providing a programmable platform.

Core Architecture of the Ethereum Network

  1. Blockchain Layer: Ethereum maintains a distributed ledger where all transactions and smart contract data are stored in blocks connected
Read More

Essential Business English Vocabulary for Professionals

Economic Terms (Market Leader Unit 7)

  • Interest rate: The cost of borrowing money.
  • Exchange rate: The price at which one currency can buy another.
  • Inflation rate: The percentage increase in prices.
  • Labor force: The number of people working.
  • Tax incentives: Low taxes to encourage business activity.
  • Government bureaucracy: Official rules, regulations, and paperwork.
  • GDP: The total value of goods and services produced in a country.
  • Unemployment rate: The percentage of people without jobs.
  • Foreign investment:
Read More

Psychological Science and Biological Bases of Behavior

Chapter 1: Introduction to Psychology

Psychology is the scientific study of behavior and mental processes.

  • Behavior: Observable actions.
  • Mental processes: Thoughts, feelings, memories, and perceptions.

Types of Research

  • Basic Research: Research conducted to gain knowledge or to support/refute theories.
  • Applied Research: Research used to solve real-world problems.

Four Goals of Psychology

  1. Describe: What is happening?
  2. Explain: Why is it happening?
  3. Predict: What will happen?
  4. Change: How can behavior be improved?
Read More

Dataflow Architectures and AI Hardware Optimization

Dataflow Architectures in Machine Learning

Why use dataflow architecture for ML?

Dataflow architectures eliminate the need for a program counter, executing instructions based solely on input data availability. This minimizes the massive energy and latency costs associated with fetching data from main memory (DRAM) in traditional von Neumann architectures, making it highly efficient for Machine Learning workloads.

Mapping Deep Learning to Dataflow

Multiply-and-Accumulate (MAC) operations and deep loop

Read More

ਪੰਜਾਬੀ ਵਿਆਕਰਨ: ਵਾਕ ਰਚਨਾ, ਮੁਹਾਵਰੇ ਅਤੇ ਵਿਸ਼ਰਾਮ ਚਿੰਨ੍ਹ

1. ਵਾਕ ਰਚਨਾ (Sentence Structure)

ਵਾਕ ਭਾਸ਼ਾ ਦੀ ਸਭ ਤੋਂ ਵੱਡੀ ਸੁਤੰਤਰ ਇਕਾਈ ਹੈ। ਵਾਕ ਰਚਨਾ ਦੇ ਮੁੱਖ ਦੋ ਭਾਗ ਹੁੰਦੇ ਹਨ:

  • ਉਦੇਸ਼ (Subject): ਵਾਕ ਵਿੱਚ ਜਿਸ ਬਾਰੇ ਗੱਲ ਕੀਤੀ ਜਾਵੇ।
  • ਵਿਧੇ (Predicate): ਉਦੇਸ਼ ਬਾਰੇ ਜੋ ਕੁਝ ਕਿਹਾ ਜਾਵੇ।

ਬਣਤਰ ਦੇ ਆਧਾਰ ‘ਤੇ ਵਾਕਾਂ

Read More

Cisco IOS Configuration for VLANs, AAA, and EtherChannel

Router R1: DHCP and RADIUS Configuration

This section details the configuration for Router R1, including interface addressing, DHCP pools for laboratories, and RADIUS authentication.

enable
configure terminal
hostname R1

! Interface towards S1 (Laboratories LAN)
interface GigabitEthernet0/1
 ip address 192.168.10.1 255.255.255.0
 no shutdown

! Interface towards R2 (WAN link)
interface GigabitEthernet0/2
 ip address 10.10.10.1 255.255.255.0
 no shutdown

ip dhcp excluded-address 192.168.10.1 192.
Read More