Skip to content

Instantly share code, notes, and snippets.

View S-M-Salaquzzaman's full-sized avatar

S-M-Salaquzzaman

View GitHub Profile
Firmware of the Project:
/*
Name of Project : IoT Based Weather Monitoring System
Target Device : ESP8266
Firmware : NodeMCU 1.0 Firmware
Clock Frequency : 80MHz
UART Baud Rate : 115200
Flash Size : 4 M (3M SPIFFS)
@S-M-Salaquzzaman
S-M-Salaquzzaman / Newton Raphson Load Flow solving 3 Bus using MATLAB
Created July 20, 2018 07:47
This code calculates the load flow based on newton raphson methd for three bus power system. The Jacobian is written in a very easy form to understabd.
%Find Ybus Admittance Matrix(any number of Bus)
%I am used 3 Bus and , 2 bus ans 3 bus are not connected
clc
clear
% |FromBus|ToBus|Impedance|LineCharging|
d = [ 1 2 .4j -20j ;
1 3 .25j -50j;
2 3 0j 0j ; ];
fb = d(:,1); tb = d(:,2);
y = 1./d(:,3);
@S-M-Salaquzzaman
S-M-Salaquzzaman / IOT based load controller
Created July 20, 2018 07:42
Internet of Things (IoT) is the network of physical objects, devices, vehicles, buildings and other items embedded with electronics, software, sensors and network connectivity. The internet of things allows objects to be sensed and controlled remotely across existing network infrastructure. Implementation of IoT has paved way for smart cities, s…
Name of Project : To Design an Internet of Things Based Electrical Load Control System to Minimize the Wastage of Electrical Power of Public Places
Target Device : ESP-12E Module
Firmware : NodeMCU 1.0 Firmware
Clock Frequency : 80MHz
UART Baud Rate : 115200
Flash Size : 4M (3M SPIFFS)
Last Update : 4:08PM, 12 May, 2017 (Tested)
*/