Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Multi-access Channels and Random Access Channels
Multi-access channels are network channels that allow several transmitters to communicate with a common receiver via a shared channel. These channels are also called multiple access (MAC) channels. The network channel may be a single cable or optical fiber connecting multiple nodes, or a portion of the wireless spectrum.
In multi-access environments, efficient coordination is essential to prevent data collisions and ensure all users can transmit their information successfully without interference.
Random Access Channels
Random-access channels (RACH) are shared channels used in wireless communication systems to allow mobile devices for call set-up. RACH also handles bursty data transmission where users transmit data at unpredictable intervals without prior coordination.
RACH is popularly used by GSM mobiles for initial network access and transmission over cellular networks. These channels operate on a contention basis, meaning multiple users may attempt to access the channel simultaneously, potentially causing collisions.
Multiple Access Schemes
Both multi-access channels and random access channels require a scheme to allow multiple users to gain access to the shared channel and use it simultaneously. The popular schemes are FDMA, TDMA and CDMA.
-
Frequency Division Multiple Access (FDMA) − In FDMA, the total bandwidth of the channel is divided to a set of frequency bands that do not overlap. Each of these bands is a carrier of a different signal that is generated and modulated by a user. The frequency bands are separated from one another by strips of unused frequencies called the guard bands, to prevent overlapping of signals.
-
Time Division Multiple Access (TDMA) − In TDMA, the channel is divided into time slots. Each user is allotted an input time slot. During transmission, the users are allotted the time slots in a round-robin basis.
-
Code Division Multiple Access (CDMA) − CDMA is a digital technique that uses spread spectrum communication. In spread spectrum communications, a narrowband signal is spread over a larger band of frequency or across multiple channels via division. It does not constrict bandwidth's digital signals or frequencies. It is less susceptible to interference, thus providing better data communication capability and a more secured private line.
Comparison of Multiple Access Schemes
| Feature | FDMA | TDMA | CDMA |
|---|---|---|---|
| Division Method | Frequency bands | Time slots | Unique codes |
| Capacity | Limited by bandwidth | Fixed time slots | Soft capacity limit |
| Interference | Guard bands needed | Synchronization required | Low interference |
Conclusion
Multi-access and random access channels enable multiple users to share communication resources efficiently. The choice between FDMA, TDMA, and CDMA depends on specific network requirements, with each scheme offering distinct advantages for different communication scenarios.
