Skip to content

Commit

Permalink
(memory) changed a lot of stuff of chap 4, remaining some resources b…
Browse files Browse the repository at this point in the history
…ut almost ended
  • Loading branch information
csanrod committed Oct 10, 2023
1 parent b905574 commit 4798e2c
Show file tree
Hide file tree
Showing 12 changed files with 88 additions and 76 deletions.
154 changes: 82 additions & 72 deletions memoria/capitulos/capitulo4.tex

Large diffs are not rendered by default.

Binary file modified memoria/imagenes/cap4/0_diagrama_general.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified memoria/imagenes/cap4/10_algoritmo_optimizado.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified memoria/imagenes/cap4/11_diagrama_training.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified memoria/imagenes/cap4/4_esquema_coms.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified memoria/imagenes/cap4/4_heatmap_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added memoria/imagenes/cap4/5_MPSS_esquema.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified memoria/imagenes/cap4/5_esquema_comp_auto.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified memoria/imagenes/cap4/9_algoritmo_manual.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified memoria/memoria.pdf
Binary file not shown.
2 changes: 2 additions & 0 deletions memoria/portada/acronimos.tex
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ \chapter*{Acrónimos\markboth{Acrónimos}{Acrónimos}}
\acro{SAR}{\emph{Search and Rescue}}
\acro{VFF}{\emph{Virtual Force Field}}
\acro{RL}{\emph{Reinforcement Learning}}
\acro{MPSS}{Módulo de Propagación de Señal Simulado}
\acro{ANAIV}{Algoritmo de Navegación Autónoma basado en la Información de la Vecindad}
\end{acronym}
8 changes: 4 additions & 4 deletions src/friss/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
import friss as fr

# -- CONSTANTS -- #
DEFAULT_WORLD_SIZE = (50, 50) # size range --> 10 <= (a x a) <= 100
DEFAULT_WORLD_SIZE = (10, 10) # size range --> 10 <= (a x a) <= 100
DEFAULT_RESOLUTION = 1.0 # 1 default
DEFAULT_ORIGIN = (20, 20) # Origin of the signal
DEFAULT_ORIGIN = (3, 5) # Origin of the signal
CUSTOM_RANGE = (-40, 40) # Limits for fixed representation


Expand Down Expand Up @@ -161,8 +161,8 @@ def check_origin_range():
ax_world_sz = fig.add_axes([0.15, 0.04, 0.7, 0.01])

power_t = Slider(ax_Pt, 'PowerTransmitter (W)', 0.00001, 100.0, 1.0, valstep=1.0)
gain_t = Slider(ax_Gt, 'GainTransmitter (W)', 0.00001, 100.0, 1.0, valstep=1.0)
gain_r = Slider(ax_Gr, 'GainReceiver (W)', 0.00001, 100.0, 1.0, valstep=1.0)
gain_t = Slider(ax_Gt, 'GainTransmitter (W)', 0.00001, 100.0, 1.0, valstep=0.5)
gain_r = Slider(ax_Gr, 'GainReceiver (W)', 0.00001, 100.0, 1.0, valstep=0.5)
freq = Slider(ax_Fq, 'Frequency (GHz)', 0.00001, 10.0, fr.FREQ_WIFI/(10**9), valstep=0.1)
losses_factor = Slider(ax_l, 'OtherLosses [L]', 1.0, 10.0, 1.0, valstep=0.1)
loss_exp = Slider(ax_n, 'PathLossExponent [n]', 1.6, 6.0, 2.0, valstep=0.1)
Expand Down

0 comments on commit 4798e2c

Please sign in to comment.