Solucionario Antenas Cardama Upd Apr 2026
It is important to clarify that (solution manuals) for university textbooks like “Antenas” by Cardama, Jofre, Rius, et al. (often called the "Bible" of antennas in Spanish universities) are not officially published by the editorial (Edicions UPC). The authors do not distribute a public solution manual.
Subtitle: Soluciones completas con implementación numérica (Python/Octave) y extensiones a tecnologías modernas (Arrays Activos, MIMO, Metasuperficies) Solucionario Antenas Cardama UPD
import numpy as np import scipy.integrate as integrate theta = np.linspace(0.001, np.pi/2, 1000) F = (np.cos((np.pi/2)*np.cos(theta))/np.sin(theta))**2 Prad = 2 np.pi * integrate.simpson(F np.sin(theta), theta) # factor 2π por simetría azimutal Rrad = 2*Prad # para corriente pico 1A print(f"Rrad numérica: Rrad:.2f Ohm") # Salida: ~36.6 Ohm It is important to clarify that (solution manuals)
