LossMetisShadowing2

pylayers.antprop.loss.LossMetisShadowing2(fGHz, tx, rx, pg, uw, uh, w, h)[source]

Calculate the Loss from

fGHz : np.array(,Nf)

txnp.array (3,Nseg) of floats

transmiter coordinates

rxnp.array (3,Nseg) of floats

receiver coordinates

pgnp.array (3,Nscreen) of floats

center of gravity of the screen

uwnp.array (3,Nscreen) of floats

unitary vector along width dimension

uhnp.array (3,Nscreen) of floats

unitary vector along height dimension

wnp.array (,Nscreen)

width in meters

hnp.array (,Nscreen)

height in meters

Lshnp.array (Nseg,Nscreen,Nf)

Loss in dB to add to the FS path Loss

This function provides an implementation of formula 6.5 of D1.4 deliverable of METIS project

[Metis D1.4](Ahttps://www.metis2020.com/wp-content/uploads/METIS_D1.4_v3.pdf)

# geometry parametric issue : find M in [tx-rx] defined as M = alpha*rx + (1-alpha)tx where alpha in [0-1]. # if alpha = 0 then M = tx ; if alpha = 1 then M = rx. # Besides, M is defined as M = pg + beta*uw + gamma*uh then alpha*rx + (1-alpha)tx = pg + beta*uw + gamma*uh # [rx-tx , -uw, -uh]*[alpha,beta,gamma].T = pg - tx <==> Ax = b solved by la.solve ; x[0]=alpha, x[1]=beta and