Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

3d fdtd dipole in free space

Status
Not open for further replies.

emresert

Newbie level 6
Joined
Mar 12, 2008
Messages
14
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,357
fdtd dipole

sorry,
i cant run the program fd3d_4.1.c in the book "electromagnetic simulation using the fdtd "by dennis sullivan,
anybody can help me?
emrsrt@gmail.com
i would be greatful
 

dipole in space

Hi

I may be able to help you. I am not sure whether I have the code fd3d_4.1.c or not. Better you upload it or send it to me (jithesh.lrde@gmail.com).

Best Regards
Jithesh
 

    emresert

    Points: 2
    Helpful Answer Positive Rating
3d fdtd

Hi,

I made some corrections in the code. Now it is working. mail me in case any further problems are there.

Best Regards
Jithesh
 

    emresert

    Points: 2
    Helpful Answer Positive Rating
fd3d_4.1

can you upload this program for the begginners like me and thanks
 

k space fdtd

I have problem with FD3D_4.1.c too
 

3d fdtd

hamidrezakarami said:
Hi
I have written a 3D FDTD sample code by matlab based on Sulivan book.
ABC used for these codes is PML with 7 cells.
great work!

why don't use the following string:
dx(1:Imax,2:Jmax,2:Kmax) = dx(1:Imax,2:Jmax,2:Kmax) + 0.5*(hz(1:Imax,2:Jmax,2:Kmax) - hz(1:Imax,1:Jmax-1,2:Kmax) - hy(1:Imax,2:Jmax,2:Kmax) + hy(1:Imax,2:Jmax,1:Kmax-1));

instead of:
for k = 2:Kmax
for j = 2:Jmax
for i = 1:Imax
dx(i,j,k) = dx(i,j,k) + 0.5*(hz(i,j,k) - hz(i,j-1,k) - hy(i,j,k) + hy(i,j,k-1));
end
end
end

it is faster!
 

Re: 3d fdtd

does anybody still have this code i am stuggling to write it in c i have performed the memory allocation etc and the program runs but i am not getting any values for the fields. Thanks
 

Re: 3d fdtd

does anybody still have this code i am stuggling to write it in c i have performed the memory allocation etc and the program runs but i am not getting any values for the fields. Thanks

If you post what you believe are the essential parts of your program which do not work properly somebody may be able to help you.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top