SlideShare une entreprise Scribd logo
1  sur  3
Télécharger pour lire hors ligne
RADAR CROSS SECTION(SAMPLE ASSIGNMENT)
Our online Tutors are available 24*7 to provide Help with Help with Radar Cross Section
Homework/Assignment or a long term Graduate/Undergraduate Help with Radar Cross
SectionProject. Our Tutors being experienced and proficient in Help with Radar Cross
Sectionensure to provide high quality Help with Radar Cross SectionHomework Help.
Upload your Help with Radar Cross SectionAssignment at ‘Submit Your Assignment’
button or email it to . You can use our ‘Live
Chat’ option to schedule an Online Tutoring session with our Help with Radar Cross
Section Tutors.
scattering of a object
This sample assignment calculates radar cross section (RCS) of the scattering of a object
using mie theory.
mieHKURCS(a,f,erb,urb,erp,urp,N)
%% funtion [an,bn,RCSTheta,RCSPhi,output] = mieHKURCS(a,f,erb,urb,erp,urp,N)
%% Based on [*]L.Tsang,J.A.Kong,and K.H.Ding's "Scattering of Electromagnetic waves
(volume I,Theories and Applications)"
% Author: Shao Ying HUANG, 29 Sept 2010
%% Input
% a: radius;
% f: frequency;
% erb: relative epsilon (background);
% urb: relative mu (background);
% erp: relative epsilon (the sphere) e.g. -5.3336+1.9698*i;
% urp: relative mu (the sphere);
% N: number of iteration, e.g. 20 (Criteria for N: aN ~ 0; bN ~ 0; cN ~ 0; dN ~ 0)
%% Output
% an,bn (note: need to double check whether an and bn converge)
% RCSTheta,RCSPhi,
% output[theta, RCSTheta(phi=0, ei=x),RCSPhi(phi=90,ei=x)]
% output(:,2) is the MOM case
% MoM comparison:: plot(output(:,1),output(:,2))
%%
function [an,bn,RCSTheta,RCSPhi,output] = mieHKURCS(a,f,erb,urb,erp,urp,N)
format long;
e0=1/(4*pi*9*10.^9); %farads/m
u0=4*pi*1e-7; %henries/m
ub = urb*u0;
eb = erb*e0;
info@assignmentpedia.com
up = urp*u0;
ep = erp*e0;
omega = 2*pi*f;
kb = omega * sqrt(ub*eb);
kp = omega * sqrt(up*ep);
for n=1:N
%% [*] p34
an(1,n)=(kp*kp*JSph(n,kp*a)*JDerPack(n,kb*a)-kb*kb*JSph(n,kb*a)*JDerPack(n,kp*a))...
/(kp*kp*JSph(n,kp*a)*HDerPack(n,kb*a)-kb*kb*HSph(n,kb*a)*JDerPack(n,kp*a));
bn(1,n) = (JSph(n,kp*a)*JDerPack(n,kb*a)-JSph(n,kb*a)*JDerPack(n,kp*a))...
/(JSph(n,kp*a)*HDerPack(n,kb*a)-HSph(n,kb*a)*JDerPack(n,kp*a));
end
%% phi = 0, ei=x, e-field in the plane of observation
numTheta=361;
theta = 1e-7:pi/(numTheta-1):pi+1e-7;
for j = 1:numTheta
EsThetaTemp = 0;
for n=1:N
EsThetaTemp = EsThetaTemp +
((2*n+1)/n/(n+1))*(an(1,n)*TAU(n,theta(j))+bn(1,n)*PI(n,theta(j)));
end
RCSTheta(1,j)=(abs(EsThetaTemp)^2)*4*pi/kb/kb;
end
RCSTheta = 10.*log10(RCSTheta);
xaxis = 180:-0.5:0;
output(:,1) = xaxis';
output(:,2) = RCSTheta';
%% phi = 90 degree, ei=x,e-field normal to the plane of observation
for j = 1:numTheta
EsPhiTemp = 0;
for n=1:N
EsPhiTemp = EsPhiTemp +
((2*n+1)/n/(n+1))*(an(1,n)*PI(n,theta(j))+bn(1,n)*TAU(n,theta(j)));
end
RCSPhi(1,j)=(abs(EsPhiTemp)^2)*4*pi/kb/kb;
end
RCSPhi = 10.*log10(RCSPhi);
output(:,3) = RCSPhi';
function output=Pn0Cos(n,theta)
output = legendre(n,cos(theta));
output=output(1);
function output=Pn1Cos(n,theta)
output = legendre(n,cos(theta));
output=output(2);
function output=PI(n,theta)
output=-1*Pn1Cos(n,theta)/sin(theta);
function output = TAU(n,theta)
output = (sin(theta)/(1-cos(theta)^2))...
*((n+1)*cos(theta)*Pn1Cos(n,theta)-n*Pn1Cos(n+1,theta));
% Spherical Bessel
function output = JSph(n,z)
output = sqrt(0.5*pi/z)*besselj(n+0.5,z);
function output = JSphDer(n,z)
output = JSph(n-1,z)-((n+1)/z)*JSph(n,z);
function output = JDerPack(n,z)
output = JSph(n,z)+z*JSphDer(n,z);
% Spherical Hankel of the 1st kind
function output = HSph(n,z)
output = sqrt(0.5*pi/z)*besselh(n+0.5,z);
function output = HSphDer(n,z)
output = HSph(n-1,z)-((n+1)/z)*HSph(n,z);
function output = HDerPack(n,z)
output = HSph(n,z)+z*HSphDer(n,z);
visit us at www.assignmentpedia.com or email us at info@assignmentpedia.com or call us at +1 520 8371215

Contenu connexe

Tendances

Lesson 5 Nov 3
Lesson 5 Nov 3Lesson 5 Nov 3
Lesson 5 Nov 3
ingroy
 

Tendances (10)

Pid tuninig with exact gain and phase margin
Pid tuninig with  exact gain and  phase marginPid tuninig with  exact gain and  phase margin
Pid tuninig with exact gain and phase margin
 
Lesson 5 Nov 3
Lesson 5 Nov 3Lesson 5 Nov 3
Lesson 5 Nov 3
 
The Uncertain Enterprise
The Uncertain EnterpriseThe Uncertain Enterprise
The Uncertain Enterprise
 
Amortized complexity
Amortized complexityAmortized complexity
Amortized complexity
 
Curve fitting and Optimization
Curve fitting and OptimizationCurve fitting and Optimization
Curve fitting and Optimization
 
Homomorphic Lower Digit Removal and Improved FHE Bootstrapping by Kyoohyung Han
Homomorphic Lower Digit Removal and Improved FHE Bootstrapping by Kyoohyung HanHomomorphic Lower Digit Removal and Improved FHE Bootstrapping by Kyoohyung Han
Homomorphic Lower Digit Removal and Improved FHE Bootstrapping by Kyoohyung Han
 
An automatic test data generation for data flow
An automatic test data generation for data flowAn automatic test data generation for data flow
An automatic test data generation for data flow
 
Performance of cognitive radio networks with maximal ratio combining over cor...
Performance of cognitive radio networks with maximal ratio combining over cor...Performance of cognitive radio networks with maximal ratio combining over cor...
Performance of cognitive radio networks with maximal ratio combining over cor...
 
Synchronization Issues in OFDM Systems
Synchronization Issues in OFDM SystemsSynchronization Issues in OFDM Systems
Synchronization Issues in OFDM Systems
 
Lo3
Lo3Lo3
Lo3
 

Similaire à Radar cross section project

Algorithm To Build A Routing Project
Algorithm To Build A  Routing ProjectAlgorithm To Build A  Routing Project
Algorithm To Build A Routing Project
Assignmentpedia
 
Sequential radar tracking
Sequential radar trackingSequential radar tracking
Sequential radar tracking
Assignmentpedia
 
Tb16 nguyễn minhđan_20183876
Tb16 nguyễn minhđan_20183876Tb16 nguyễn minhđan_20183876
Tb16 nguyễn minhđan_20183876
NgGiaHi
 
Tb16 nguyễn minhđan_20183876
Tb16 nguyễn minhđan_20183876Tb16 nguyễn minhđan_20183876
Tb16 nguyễn minhđan_20183876
NgGiaHi
 
Matlab kod taslağı
Matlab kod taslağıMatlab kod taslağı
Matlab kod taslağı
Merve Cvdr
 
Problem Solving by Computer Finite Element Method
Problem Solving by Computer Finite Element MethodProblem Solving by Computer Finite Element Method
Problem Solving by Computer Finite Element Method
Peter Herbert
 
EE660_Report_YaxinLiu_8448347171
EE660_Report_YaxinLiu_8448347171EE660_Report_YaxinLiu_8448347171
EE660_Report_YaxinLiu_8448347171
Yaxin Liu
 
Please use the same variables and only write the TODO part #!-usr-bi.pdf
Please use the same variables and only write the TODO part   #!-usr-bi.pdfPlease use the same variables and only write the TODO part   #!-usr-bi.pdf
Please use the same variables and only write the TODO part #!-usr-bi.pdf
asenterprisestyagi
 
Final Design Project - Memo (with GUI)
Final Design Project - Memo (with GUI)Final Design Project - Memo (with GUI)
Final Design Project - Memo (with GUI)
Alex Larcheveque
 
Physique et Chimie de la Terre Physics and Chemistry of the .docx
Physique et Chimie de la Terre  Physics and Chemistry of the .docxPhysique et Chimie de la Terre  Physics and Chemistry of the .docx
Physique et Chimie de la Terre Physics and Chemistry of the .docx
LacieKlineeb
 
Doppler Processing Project
Doppler Processing ProjectDoppler Processing Project
Doppler Processing Project
Assignmentpedia
 
MuVM: Higher Order Mutation Analysis Virtual Machine for C
MuVM: Higher Order Mutation Analysis Virtual Machine for CMuVM: Higher Order Mutation Analysis Virtual Machine for C
MuVM: Higher Order Mutation Analysis Virtual Machine for C
Susumu Tokumoto
 
Variation of peak shape and peak tailing in chromatography
Variation of peak shape and peak tailing in chromatographyVariation of peak shape and peak tailing in chromatography
Variation of peak shape and peak tailing in chromatography
manjikra
 

Similaire à Radar cross section project (20)

PSOGlobalSearching
PSOGlobalSearchingPSOGlobalSearching
PSOGlobalSearching
 
Algorithm To Build A Routing Project
Algorithm To Build A  Routing ProjectAlgorithm To Build A  Routing Project
Algorithm To Build A Routing Project
 
Sequential radar tracking
Sequential radar trackingSequential radar tracking
Sequential radar tracking
 
Computational Intelligence Assisted Engineering Design Optimization (using MA...
Computational Intelligence Assisted Engineering Design Optimization (using MA...Computational Intelligence Assisted Engineering Design Optimization (using MA...
Computational Intelligence Assisted Engineering Design Optimization (using MA...
 
Data Analysis
Data AnalysisData Analysis
Data Analysis
 
Radar Spectral Analysis
Radar Spectral AnalysisRadar Spectral Analysis
Radar Spectral Analysis
 
Tb16 nguyễn minhđan_20183876
Tb16 nguyễn minhđan_20183876Tb16 nguyễn minhđan_20183876
Tb16 nguyễn minhđan_20183876
 
Tb16 nguyễn minhđan_20183876
Tb16 nguyễn minhđan_20183876Tb16 nguyễn minhđan_20183876
Tb16 nguyễn minhđan_20183876
 
15
1515
15
 
Matlab kod taslağı
Matlab kod taslağıMatlab kod taslağı
Matlab kod taslağı
 
Glowworm Swarm Optimisation
Glowworm Swarm OptimisationGlowworm Swarm Optimisation
Glowworm Swarm Optimisation
 
Problem Solving by Computer Finite Element Method
Problem Solving by Computer Finite Element MethodProblem Solving by Computer Finite Element Method
Problem Solving by Computer Finite Element Method
 
EE660_Report_YaxinLiu_8448347171
EE660_Report_YaxinLiu_8448347171EE660_Report_YaxinLiu_8448347171
EE660_Report_YaxinLiu_8448347171
 
Please use the same variables and only write the TODO part #!-usr-bi.pdf
Please use the same variables and only write the TODO part   #!-usr-bi.pdfPlease use the same variables and only write the TODO part   #!-usr-bi.pdf
Please use the same variables and only write the TODO part #!-usr-bi.pdf
 
Final Design Project - Memo (with GUI)
Final Design Project - Memo (with GUI)Final Design Project - Memo (with GUI)
Final Design Project - Memo (with GUI)
 
Physique et Chimie de la Terre Physics and Chemistry of the .docx
Physique et Chimie de la Terre  Physics and Chemistry of the .docxPhysique et Chimie de la Terre  Physics and Chemistry of the .docx
Physique et Chimie de la Terre Physics and Chemistry of the .docx
 
Doppler Processing Project
Doppler Processing ProjectDoppler Processing Project
Doppler Processing Project
 
Leveraging R in Big Data of Mobile Ads (R在行動廣告大數據的應用)
Leveraging R in Big Data of Mobile Ads (R在行動廣告大數據的應用)Leveraging R in Big Data of Mobile Ads (R在行動廣告大數據的應用)
Leveraging R in Big Data of Mobile Ads (R在行動廣告大數據的應用)
 
MuVM: Higher Order Mutation Analysis Virtual Machine for C
MuVM: Higher Order Mutation Analysis Virtual Machine for CMuVM: Higher Order Mutation Analysis Virtual Machine for C
MuVM: Higher Order Mutation Analysis Virtual Machine for C
 
Variation of peak shape and peak tailing in chromatography
Variation of peak shape and peak tailing in chromatographyVariation of peak shape and peak tailing in chromatography
Variation of peak shape and peak tailing in chromatography
 

Plus de Assignmentpedia

Transmitter side components
Transmitter side componentsTransmitter side components
Transmitter side components
Assignmentpedia
 
Single object range detection
Single object range detectionSingle object range detection
Single object range detection
Assignmentpedia
 
Radar application project help
Radar application project helpRadar application project help
Radar application project help
Assignmentpedia
 
Parallel computing homework help
Parallel computing homework helpParallel computing homework help
Parallel computing homework help
Assignmentpedia
 
Network costing analysis
Network costing analysisNetwork costing analysis
Network costing analysis
Assignmentpedia
 
Matlab simulation project
Matlab simulation projectMatlab simulation project
Matlab simulation project
Assignmentpedia
 
Matlab programming project
Matlab programming projectMatlab programming project
Matlab programming project
Assignmentpedia
 
Image processing project using matlab
Image processing project using matlabImage processing project using matlab
Image processing project using matlab
Assignmentpedia
 
Help with root locus homework1
Help with root locus homework1Help with root locus homework1
Help with root locus homework1
Assignmentpedia
 
Theory of computation homework help
Theory of computation homework helpTheory of computation homework help
Theory of computation homework help
Assignmentpedia
 
Help With Digital Communication Project
Help With  Digital Communication ProjectHelp With  Digital Communication Project
Help With Digital Communication Project
Assignmentpedia
 
Filter Implementation And Evaluation Project
Filter Implementation And Evaluation ProjectFilter Implementation And Evaluation Project
Filter Implementation And Evaluation Project
Assignmentpedia
 

Plus de Assignmentpedia (20)

Transmitter side components
Transmitter side componentsTransmitter side components
Transmitter side components
 
Single object range detection
Single object range detectionSingle object range detection
Single object range detection
 
Resolution project
Resolution projectResolution project
Resolution project
 
Radar application project help
Radar application project helpRadar application project help
Radar application project help
 
Parallel computing homework help
Parallel computing homework helpParallel computing homework help
Parallel computing homework help
 
Network costing analysis
Network costing analysisNetwork costing analysis
Network costing analysis
 
Matlab simulation project
Matlab simulation projectMatlab simulation project
Matlab simulation project
 
Matlab programming project
Matlab programming projectMatlab programming project
Matlab programming project
 
Links design
Links designLinks design
Links design
 
Image processing project using matlab
Image processing project using matlabImage processing project using matlab
Image processing project using matlab
 
Help with root locus homework1
Help with root locus homework1Help with root locus homework1
Help with root locus homework1
 
Transmitter subsystem
Transmitter subsystemTransmitter subsystem
Transmitter subsystem
 
Computer Networks Homework Help
Computer Networks Homework HelpComputer Networks Homework Help
Computer Networks Homework Help
 
Theory of computation homework help
Theory of computation homework helpTheory of computation homework help
Theory of computation homework help
 
Econometrics Homework Help
Econometrics Homework HelpEconometrics Homework Help
Econometrics Homework Help
 
Video Codec
Video CodecVideo Codec
Video Codec
 
Pi Controller
Pi ControllerPi Controller
Pi Controller
 
Help With Digital Communication Project
Help With  Digital Communication ProjectHelp With  Digital Communication Project
Help With Digital Communication Project
 
Fpga Design Project
Fpga Design ProjectFpga Design Project
Fpga Design Project
 
Filter Implementation And Evaluation Project
Filter Implementation And Evaluation ProjectFilter Implementation And Evaluation Project
Filter Implementation And Evaluation Project
 

Dernier

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Dernier (20)

ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 

Radar cross section project

  • 1. RADAR CROSS SECTION(SAMPLE ASSIGNMENT) Our online Tutors are available 24*7 to provide Help with Help with Radar Cross Section Homework/Assignment or a long term Graduate/Undergraduate Help with Radar Cross SectionProject. Our Tutors being experienced and proficient in Help with Radar Cross Sectionensure to provide high quality Help with Radar Cross SectionHomework Help. Upload your Help with Radar Cross SectionAssignment at ‘Submit Your Assignment’ button or email it to . You can use our ‘Live Chat’ option to schedule an Online Tutoring session with our Help with Radar Cross Section Tutors. scattering of a object This sample assignment calculates radar cross section (RCS) of the scattering of a object using mie theory. mieHKURCS(a,f,erb,urb,erp,urp,N) %% funtion [an,bn,RCSTheta,RCSPhi,output] = mieHKURCS(a,f,erb,urb,erp,urp,N) %% Based on [*]L.Tsang,J.A.Kong,and K.H.Ding's "Scattering of Electromagnetic waves (volume I,Theories and Applications)" % Author: Shao Ying HUANG, 29 Sept 2010 %% Input % a: radius; % f: frequency; % erb: relative epsilon (background); % urb: relative mu (background); % erp: relative epsilon (the sphere) e.g. -5.3336+1.9698*i; % urp: relative mu (the sphere); % N: number of iteration, e.g. 20 (Criteria for N: aN ~ 0; bN ~ 0; cN ~ 0; dN ~ 0) %% Output % an,bn (note: need to double check whether an and bn converge) % RCSTheta,RCSPhi, % output[theta, RCSTheta(phi=0, ei=x),RCSPhi(phi=90,ei=x)] % output(:,2) is the MOM case % MoM comparison:: plot(output(:,1),output(:,2)) %% function [an,bn,RCSTheta,RCSPhi,output] = mieHKURCS(a,f,erb,urb,erp,urp,N) format long; e0=1/(4*pi*9*10.^9); %farads/m u0=4*pi*1e-7; %henries/m ub = urb*u0; eb = erb*e0; info@assignmentpedia.com
  • 2. up = urp*u0; ep = erp*e0; omega = 2*pi*f; kb = omega * sqrt(ub*eb); kp = omega * sqrt(up*ep); for n=1:N %% [*] p34 an(1,n)=(kp*kp*JSph(n,kp*a)*JDerPack(n,kb*a)-kb*kb*JSph(n,kb*a)*JDerPack(n,kp*a))... /(kp*kp*JSph(n,kp*a)*HDerPack(n,kb*a)-kb*kb*HSph(n,kb*a)*JDerPack(n,kp*a)); bn(1,n) = (JSph(n,kp*a)*JDerPack(n,kb*a)-JSph(n,kb*a)*JDerPack(n,kp*a))... /(JSph(n,kp*a)*HDerPack(n,kb*a)-HSph(n,kb*a)*JDerPack(n,kp*a)); end %% phi = 0, ei=x, e-field in the plane of observation numTheta=361; theta = 1e-7:pi/(numTheta-1):pi+1e-7; for j = 1:numTheta EsThetaTemp = 0; for n=1:N EsThetaTemp = EsThetaTemp + ((2*n+1)/n/(n+1))*(an(1,n)*TAU(n,theta(j))+bn(1,n)*PI(n,theta(j))); end RCSTheta(1,j)=(abs(EsThetaTemp)^2)*4*pi/kb/kb; end RCSTheta = 10.*log10(RCSTheta); xaxis = 180:-0.5:0; output(:,1) = xaxis'; output(:,2) = RCSTheta'; %% phi = 90 degree, ei=x,e-field normal to the plane of observation for j = 1:numTheta EsPhiTemp = 0; for n=1:N EsPhiTemp = EsPhiTemp + ((2*n+1)/n/(n+1))*(an(1,n)*PI(n,theta(j))+bn(1,n)*TAU(n,theta(j))); end RCSPhi(1,j)=(abs(EsPhiTemp)^2)*4*pi/kb/kb; end RCSPhi = 10.*log10(RCSPhi); output(:,3) = RCSPhi'; function output=Pn0Cos(n,theta) output = legendre(n,cos(theta)); output=output(1); function output=Pn1Cos(n,theta)
  • 3. output = legendre(n,cos(theta)); output=output(2); function output=PI(n,theta) output=-1*Pn1Cos(n,theta)/sin(theta); function output = TAU(n,theta) output = (sin(theta)/(1-cos(theta)^2))... *((n+1)*cos(theta)*Pn1Cos(n,theta)-n*Pn1Cos(n+1,theta)); % Spherical Bessel function output = JSph(n,z) output = sqrt(0.5*pi/z)*besselj(n+0.5,z); function output = JSphDer(n,z) output = JSph(n-1,z)-((n+1)/z)*JSph(n,z); function output = JDerPack(n,z) output = JSph(n,z)+z*JSphDer(n,z); % Spherical Hankel of the 1st kind function output = HSph(n,z) output = sqrt(0.5*pi/z)*besselh(n+0.5,z); function output = HSphDer(n,z) output = HSph(n-1,z)-((n+1)/z)*HSph(n,z); function output = HDerPack(n,z) output = HSph(n,z)+z*HSphDer(n,z); visit us at www.assignmentpedia.com or email us at info@assignmentpedia.com or call us at +1 520 8371215