Skip to main content

Fog Computing

 

Fog computing was established by Cisco to expand cloud computing to edge nodes/devices. It has memory constraints and low computing capacity, especially for IoT devices. Let's start with a definition of cloud. When we connect an IoT device to the internet, we must first connect to the cloud. The IoT devices are then controlled by our mobile phone, app, or website. When we wish to connect to our IoT devices, we first link to a cloud server using our mobile phone, app, or website, then the cloud communicates with the IoT devices and sends data to the cloud, and finally the cloud connects to our devices, cellphones, apps, or websites.


We all know that IoT devices are primarily used to collect data from the environment. It can be utilised as sensors, cameras on the road, or parking places, for example. When IoTs are utilised as sensor devices, they produce specified outputs in response to changes in input phenomena such as heat, smoke, air pollution, and so on.


As you can see, the signal must travel a great distance from the mobile phone to the cloud server, then cloud server to IoT, then IoT to server again and then from the cloud server to your device. It uses a significant amount of delay. Assume that if there are a large number of IoT devices to connect, there will be bandwidth congestion. As a result, the connection becomes slower.


On the other hand, we don't necessarily require a cloud server to analyse all types of data or do calculations. We can achieve the same thing with connected intermediate nodes or gateways that are capable of performing some processing or calculations on their own or using previously stored datasets from cloud processing or computing. Fog nodes are a type of intermediate node or gateway. For example, you may be aware that getting a parking space in urban locations is becoming increasingly difficult. In this situation, we can use Internet of Things (IoT) cameras in the parking slots. The camera's functions will include taking photographs of cars in the parking space at predetermined intervals. The raw data is then sent to fog nodes, which analyse it and identify any empty parking spaces before sending it to the cloud to show updates about number of empty slots. We expect artificial intelligence to process the raw data in a nearby fog node in this scenario.


Consider the case where there is no fog node: we must first send all raw data to the cloud for processing or computing. To transmit all raw data to the cloud, a lot of bandwidth is required. Can you imagine the situation if there are billions of IoTs connected to the cloud at same time?


On the other hand, we've already discussed the expectation that all fog nodes will have a specific computing capacity. It can also process data according to a previously saved dataset that is scheduled to be updated in a short period of time. Fog nodes, in this way, reduce network overload, bandwidth congestion, and, most importantly, latency. For instance, we'd like to connect our sensors (IoTs) to the internet. If the sensor receives any input, it sends raw data to a neighbouring data centre (cloud server). If there are no fog nodes, it might be 1000 kilometres away from the sensor devices. If a fog node is present, it processes raw data locally. This improves service quality by lowering bandwidth congestion and latency, allowing IoT devices to operate in real time.



People are good at skipping over material they already know!

View Related Topics to







Contact Us

Name

Email *

Message *

Popular Posts

BER vs SNR for M-ary QAM, M-ary PSK, QPSK, BPSK, ...

📘 Overview of BER and SNR 🧮 Online Simulator for BER calculation of m-ary QAM and m-ary PSK 🧮 MATLAB Code for BER calculation of M-ary QAM, M-ary PSK, QPSK, BPSK, ... 📚 Further Reading 📂 View Other Topics on M-ary QAM, M-ary PSK, QPSK ... 🧮 Online Simulator for Constellation Diagram of m-ary QAM 🧮 Online Simulator for Constellation Diagram of m-ary PSK 🧮 MATLAB Code for BER calculation of ASK, FSK, and PSK 🧮 MATLAB Code for BER calculation of Alamouti Scheme 🧮 Different approaches to calculate BER vs SNR What is Bit Error Rate (BER)? The abbreviation BER stands for Bit Error Rate, which indicates how many corrupted bits are received (after the demodulation process) compared to the total number of bits sent in a communication process. BER = (number of bits received in error) / (total number of tran...

MATLAB Code for ASK, FSK, and PSK

📘 Overview & Theory 🧮 MATLAB Code for ASK 🧮 MATLAB Code for FSK 🧮 MATLAB Code for PSK 🧮 Simulator for binary ASK, FSK, and PSK Modulations 📚 Further Reading ASK, FSK & PSK HomePage MATLAB Code MATLAB Code for ASK Modulation and Demodulation % The code is written by SalimWireless.Com % Clear previous data and plots clc; clear all; close all; % Parameters Tb = 1; % Bit duration (s) fc = 10; % Carrier frequency (Hz) N_bits = 10; % Number of bits Fs = 100 * fc; % Sampling frequency (ensure at least 2*fc, more for better representation) Ts = 1/Fs; % Sampling interval samples_per_bit = Fs * Tb; % Number of samples per bit duration % Generate random binary data rng(10); % Set random seed for reproducibility binary_data = randi([0, 1], 1, N_bits); % Generate random binary data (0 or 1) % Initialize arrays for continuous signals t_overall = 0:Ts:(N_bits...

Constellation Diagrams of ASK, PSK, and FSK

📘 Overview of Energy per Bit (Eb / N0) 🧮 Online Simulator for constellation diagrams of ASK, FSK, and PSK 🧮 Theory behind Constellation Diagrams of ASK, FSK, and PSK 🧮 MATLAB Codes for Constellation Diagrams of ASK, FSK, and PSK 📚 Further Reading 📂 Other Topics on Constellation Diagrams of ASK, PSK, and FSK ... 🧮 Simulator for constellation diagrams of m-ary PSK 🧮 Simulator for constellation diagrams of m-ary QAM BASK (Binary ASK) Modulation: Transmits one of two signals: 0 or -√Eb, where Eb​ is the energy per bit. These signals represent binary 0 and 1.    BFSK (Binary FSK) Modulation: Transmits one of two signals: +√Eb​ ( On the y-axis, the phase shift of 90 degrees with respect to the x-axis, which is also termed phase offset ) or √Eb (on x-axis), where Eb​ is the energy per bit. These signals represent binary 0 and 1.  BPSK (Binary PSK) Modulation: Transmits one of two signals...

MIMO Channel Matrix | Rank and Condition Number

MIMO / Massive MIMO MIMO Channel Matrix | Rank and Condition...   The channel matrix in wireless communication is a matrix that describes the impact of the channel on the transmitted signal. The channel matrix can be used to model the effects of the atmospheric or underwater environment on the signal, such as the absorption, reflection or scattering of the signal by surrounding objects. When addressing multi-antenna communication, the term "channel matrix" is used. Let's assume that only one TX and one RX are in communication and there's no surrounding object. Here, in our case, we can apply the proper threshold condition to a received signal and get the original transmitted signal at the RX side. However, in real-world situations, we see signal path blockage, reflections, etc.,  (NLOS paths [↗]) more frequently. The obstruction is typically caused by building walls, etc. Multi-antenna communication was introduced to address this issue. It makes diversity app...

Comparisons among ASK, PSK, and FSK | And the definitions of each

📘 Comparisons among ASK, FSK, and PSK 🧮 Online Simulator for calculating Bandwidth of ASK, FSK, and PSK 🧮 MATLAB Code for BER vs. SNR Analysis of ASK, FSK, and PSK 📚 Further Reading 📂 View Other Topics on Comparisons among ASK, PSK, and FSK ... 🧮 Comparisons of Noise Sensitivity, Bandwidth, Complexity, etc. 🧮 MATLAB Code for Constellation Diagrams of ASK, FSK, and PSK 🧮 Online Simulator for ASK, FSK, and PSK Generation 🧮 Online Simulator for ASK, FSK, and PSK Constellation 🧮 Some Questions and Answers Modulation ASK, FSK & PSK Constellation MATLAB Simulink MATLAB Code Comparisons among ASK, PSK, and FSK    Comparisons among ASK, PSK, and FSK Comparison among ASK, FSK, and PSK Parameters ASK FSK PSK Variable Characteristics Amplitude Frequency ...

UGC-NET Electronic Science Previous Year Question Papers with Answer Keys and Full Explanations

    UGC-NET Electronic Science Question Paper With Answer Key Download Pdf [2023] Download Question Paper               See Answers   2025 | 2024 | 2023 | 2022 | 2021 | 2020 UGC-NET Electronic Science  2023 Answers with Explanations Q.115 (A) It is an AC bridge to measure frequency True. The Wien bridge is an AC bridge used for accurate frequency measurement . (B) It is a DC bridge to measure amplitude False. Wien Bridge works with AC signals , not DC. (C) It is used as frequency determining element True. In Wien bridge oscillators, the RC network sets the oscillation frequency . (D) It is used as band-pass filter Partially misleading. The Wien bridge network acts like a band-pass filter in the oscillator, but the bridge itself is not typically described this way. Exam questions usually mark this as False . (E) It is used as notch filter False. That is the Wien NOTCH bridge ,...

Theoretical vs. simulated BER vs. SNR for ASK, FSK, and PSK

📘 Overview 🧮 Simulator for calculating BER 🧮 MATLAB Codes for calculating theoretical BER 🧮 MATLAB Codes for calculating simulated BER 📚 Further Reading BER vs. SNR denotes how many bits in error are received for a given signal-to-noise ratio, typically measured in dB. Common noise types in wireless systems: 1. Additive White Gaussian Noise (AWGN) 2. Rayleigh Fading AWGN adds random noise; Rayleigh fading attenuates the signal variably. A good SNR helps reduce these effects. Simulator for calculating BER vs SNR for binary ASK, FSK, and PSK Calculate BER for Binary ASK Modulation Enter SNR (dB): Calculate BER Calculate BER for Binary FSK Modulation Enter SNR (dB): Calculate BER Calculate BER for Binary PSK Modulation Enter SNR (dB): Calculate BER BER vs. SNR Curves MATLAB Code for Theoretical BER % The code is written by SalimWireless.Com clc; clear; close all; % SNR va...

Constellation Diagram of ASK in Detail

A binary bit '1' is assigned a power level of E b \sqrt{E_b}  (or energy E b E_b ), while a binary bit '0' is assigned zero power (or no energy).   Simulator for Binary ASK Constellation Diagram SNR (dB): 15 Run Simulation Noisy Modulated Signal (ASK) Original Modulated Signal (ASK) Energy per bit (Eb) (Tb = bit duration): We know that all periodic signals are power signals. Now we’ll find the energy of ASK for the transmission of binary ‘1’. E b = ∫ 0 Tb (A c .cos(2П.f c .t)) 2 dt = ∫ 0 Tb (A c ) 2 .cos 2 (2П.f c .t) dt Using the identity cos 2 x = (1 + cos(2x))/2: = ∫ 0 Tb ((A c ) 2 /2)(1 + cos(4П.f c .t)) dt ...