Home
last modified time | relevance | path

Searched refs:E_phi (Results 1 – 11 of 11) sorted by relevance

/dports/science/openems/openEMS-0.0.35-71-g4c24b6e/matlab/private/
H A DReadNF2FF.m41 …nf2ff.E_phi{n} = double(hdf.nf2ff.E_phi.FD.(['f' int2str(n-1) '_real']) +1i*hdf.nf2ff.E_phi.FD.(['…
42 nf2ff.E_norm{n} = double(sqrt(abs(nf2ff.E_theta{n}).^2+abs(nf2ff.E_phi{n}).^2));
51 …nf2ff.E_phi{n} = double(hdf5read(file,['/nf2ff/E_phi/FD/f' int2str(n-1) '_real']) + 1i*hdf5read(fi…
52 nf2ff.E_norm{n} = double(sqrt(abs(nf2ff.E_theta{n}).^2+abs(nf2ff.E_phi{n}).^2));
59 …nf2ff.E_phi{n} = double(h5read(file,['/nf2ff/E_phi/FD/f' int2str(n-1) '_real']) + 1i*h5read(file,[…
60 nf2ff.E_norm{n} = double(sqrt(abs(nf2ff.E_theta{n}).^2+abs(nf2ff.E_phi{n}).^2));
80 nf2ff.E_cprh{f} = (cosphi+1i*sinphi) .* (nf2ff.E_theta{f}+1i*nf2ff.E_phi{f})/sqrt(2);
81 nf2ff.E_cplh{f} = (cosphi-1i*sinphi) .* (nf2ff.E_theta{f}-1i*nf2ff.E_phi{f})/sqrt(2);
/dports/science/openems/openEMS-0.0.35-71-g4c24b6e/python/openEMS/
H A Dnf2ff.py200 self.E_phi = []
208E_phi = np.array(h5_file['/nf2ff/E_phi/FD/f{}_real'.format(n)]) + 1j*np.array(h5_file['/nf2ff/…
209 E_phi = np.swapaxes(E_phi, 0, 1)
213 self.E_phi .append(E_phi)
214 self.E_norm .append(np.sqrt(np.abs(E_theta)**2 + np.abs(E_phi)**2))
215 self.E_cprh .append((cos_phi+1j*sin_phi) * (E_theta+1j*E_phi)/np.sqrt(2.0))
216 self.E_cplh .append((cos_phi-1j*sin_phi) * (E_theta-1j*E_phi)/np.sqrt(2.0))
/dports/astro/oskar/OSKAR-2.8.0/oskar/telescope/station/element/
H A Ddefine_evaluate_geometric_dipole_pattern.h19 GLOBAL FP2* E_phi)\
29 OSKAR_GEOMETRIC_DIPOLE(FP, phi_, E_theta[theta_out], E_phi[phi_out])\
H A Ddefine_evaluate_dipole_pattern.h29 GLOBAL FP2* E_phi)\
39 OSKAR_DIPOLE(FP, phi_, E_theta[theta_out], E_phi[phi_out])\
/dports/science/openems/openEMS-0.0.35-71-g4c24b6e/matlab/
H A DAnalyzeNF2FF.m1 function [E_theta,E_phi,Prad,Dmax] = AnalyzeNF2FF( Sim_Path, nf2ff, f, theta, phi, r )
2 % [E_theta,E_phi,Prad,Dmax] = AnalyzeNF2FF( Sim_Path, filenames_E, filenames_H, f, theta, phi, r )
16 % E_phi: E_phi(theta,phi); phi component of the electric field strength at radius r
109 E_phi(theta_idx,phi_idx) = erg_E_phi;
H A DDelayFidelity.m15 % weight_phi: weight of the E_phi component
71 radfield = weight_theta * cell2mat(nf2ff.E_theta) + weight_phi * cell2mat(nf2ff.E_phi); % rows: the…
/dports/cad/gmsh/gmsh-4.9.2-source/Plugin/
H A DNearToFarField.cpp176 double E_phi[2]; in getFarFieldJin() local
187 E_phi[0] = k0_over_4pir * ((Ls[0][1] - Z0 * Ns[0][2]) * sin_k0r - in getFarFieldJin()
189 E_phi[1] = k0_over_4pir * ((Ls[0][1] - Z0 * Ns[0][2]) * cos_k0r + in getFarFieldJin()
194 (E_phi[0] * E_phi[0] + E_phi[1] * E_phi[1])); in getFarFieldJin()
/dports/science/openems/openEMS-0.0.35-71-g4c24b6e/matlab/Tutorials/
H A DPatch_Antenna_Phased_Array.m149 E_ff_phi = 0*nf2ff{1}.E_phi{1};
150 E_ff_theta = 0*nf2ff{1}.E_phi{1};
152 E_ff_phi = E_ff_phi + coeff(n)*nf2ff{n}.E_phi{1};
/dports/science/jdftx/jdftx-1.6.0/jdftx/fluid/
H A DPCM_internal.cpp75 …ScalarField& E_n, ScalarFieldTilde& E_phi, double& E_pCavity, double nc, double sigma, double pCav… in propagateGradient() argument
90 E_phi -= divergence(J(E_Dphi)); in propagateGradient()
H A DPCM_internal.h56 …ScalarField& E_n, ScalarFieldTilde& E_phi, double& E_pCavity, double nc, double sigma, double pCav…
/dports/science/cantera/cantera-2.5.1-611-gc4d6ecc15/src/equil/
H A Dvcs_solve.cpp1170 vector_fp E_phi(nsp, 0.0); in vcs_phaseStabilityTest() local
1299 E_phi[k] = std::exp(-deltaGRxn) / m_actCoeffSpecies_new[kspec]; in vcs_phaseStabilityTest()
1300 sum += E_phi[k]; in vcs_phaseStabilityTest()
1301 funcPhaseStability += E_phi[k]; in vcs_phaseStabilityTest()
1303 E_phi[k] = 0.0; in vcs_phaseStabilityTest()
1310 double b = E_phi[k] / sum * (1.0 - sum_Xcomp); in vcs_phaseStabilityTest()