File:Fading corraza vatalaro.png

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(1,239 × 612 pixels, file size: 82 KB, MIME type: image/png)

Captions

Captions

Add a one-line explanation of what this file represents

Summary[edit]

Description
English: Developed according to [1]
Date
Source Own work
Author Kirlf
PNG development
InfoField
 
This plot was created with Matplotlib.
Source code
InfoField

Python code

import numpy as np
import matplotlib.pyplot as plt

def K_alfa(alfa):
    K0 = 2.731
    K1 = -1.074e-1
    K2 = 2.2774e-3
    K = K0 + K1*alfa + K2*(alfa**2)
    return K

def mu_alfa(alfa):
    mu0 = -2.331
    mu1 = 1.142e-1
    mu2 = -1.939e-3
    mu3 = 1.094e-5
    mu = mu0 + mu1*alfa + mu2*(alfa**2) + mu3*(alfa**3)
    return mu

def sigma_alfa(alfa):
    sigma0 = 4.5
    sigma1 = -0.05
    sigma = sigma0 + sigma1*alfa
    return sigma

alfa = np.arange(20, 80) # elevation angles
K = K_alfa(alfa) # Rician factor
mu = mu_alfa(alfa) # lognormal mean
sigma = sigma_alfa(alfa) # lognormal variance

fig, axs = plt.subplots(nrows=1, ncols=2,\
                constrained_layout=True, figsize=(10, 5), dpi=150)

axs[0].plot(alfa, K, label='K')
axs[0].plot(alfa, sigma, label='$\sigma$')
axs[0].set_xlabel('elevation angles (degrees)')
axs[0].grid()
axs[0].legend()


axs[1].plot(alfa, mu, label='$\mu$', color='r')
axs[1].set_xlabel('elevation angles (degrees)')
axs[1].grid()
axs[1].legend()

plt.show()

Licensing[edit]

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
  1. Corazza, G. E., & Vatalaro, F. (1994). A statistical model for land mobile satellite channels and its application to nongeostationary orbit systems. IEEE Transactions on vehicular technology, 43(3), 738-742.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current06:40, 9 April 2019Thumbnail for version as of 06:40, 9 April 20191,239 × 612 (82 KB)Kirlf (talk | contribs)User created page with UploadWizard

There are no pages that use this file.

Metadata