Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #51   Report Post  
Old May 13th 10, 07:36 PM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Mar 2007
Posts: 801
Default Computer model experiment

Richard Clark wrote:
On 5/12/2010 2:26 PM, Art Unwin wrote:
the element resonance. I wouldn't be surprised if the next generation
moved away from the present
algerithms and rely purely on number crunching to obtain systems in
equilibrium. I personaly believe

WTF? Number crunching. Algorithms. Treated as separable.

What an astonishing idea.


Hi Tom,

They solved a lot of the state-of-the-art electromagnetics problems
back then within two to three tosses. Few disputed their claims (mud
is a form of ground) or challenged their accuracies of -50% to +100%


its pre-eminence again) in a bath tub. This improved accuracies to
-50% to +100% once again (the ancient work had been lost in a flood of
the Indus and only recently un-earthed).


in
accuracies now verging on ±6dB where the pre-eminence of water has
been overthrown in favor of photon-stream control. The binary search



Well, sometime after Archimedes but before today, someone came up with
the idea of logarithms, allow us to talk in dB instead of percentage ratios.

So there have been advances grin
  #52   Report Post  
Old May 14th 10, 12:19 PM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Apr 2010
Posts: 484
Default Computer model experiment

On May 13, 8:56*am, Roy Lewallen wrote:
K1TTT wrote:
On May 11, 8:30 pm, Art Unwin wrote:
When an array is
in equilibrium then Maxwell's equations are exact.


maxwell's equations are ALWAYS exact, it is digital models that are
inexact and have limitations due to the approximations made and the
numeric representations used.


Inexactness of the solution isn't because the method is digital. The
field equations solved by the digital methods simply can't be solved by
other methods, except for a relatively few very simple cases. Many
non-digital methods were developed over the years before high speed
computers to arrive at various approximate solutions, but all have
shortcomings. For example, I have a thick file of papers devoted to the
apparently simple problem of finding the input impedance of a dipole of
arbitrary length and diameter. Even that can't be solved in closed form.
Solution by digital methods is vastly superior, and is capable of giving
much more accurate results, than solution by any known method.

Roy Lewallen, W7EL


quantization of every number in a numeric simulation is but one of the
contributions to inaccuracy. the limitations of the physical model is
another, every modeling program i know of breaks the physical thing
being modeled into small pieces, some with fixed sizes, some use
adaptive methods, but then they all calculate using those small pieces
as if they were a single homogonous piece with step changes at the
edges... that also adds to inaccuracies. the robustness of the
algorithm and the residual errors created are a bit part of getting
more accurate results. There is no doubt that numerical methods have
allowed 'solutions' of many problems that would be extremely difficult
to find closed form solutions for, but they must always be examined
for the acceptibility of the unavoidable errors in the method used.

other non-digital methods also have their limitations. unless you are
using the original differential or integral equations and satisfying
all the boundary conditions, your method will introduce errors.
weather that means you represent an odd shaped solid object by a
sphere, or make other geometic replacements that give you simpler
field configurations, you have introduced errors at some level. you
must of course judge these methods by the same way to determine of the
errors introduced by the simplyfied geometry or other methods used are
acceptible for the problem at hand.
  #53   Report Post  
Old May 14th 10, 04:50 PM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Mar 2007
Posts: 801
Default Computer model experiment

K1TTT wrote:
On May 13, 8:56 am, Roy Lewallen wrote:
K1TTT wrote:
On May 11, 8:30 pm, Art Unwin wrote:
When an array is
in equilibrium then Maxwell's equations are exact.
maxwell's equations are ALWAYS exact, it is digital models that are
inexact and have limitations due to the approximations made and the
numeric representations used.

Inexactness of the solution isn't because the method is digital. The
field equations solved by the digital methods simply can't be solved by
other methods, except for a relatively few very simple cases. Many
non-digital methods were developed over the years before high speed
computers to arrive at various approximate solutions, but all have
shortcomings. For example, I have a thick file of papers devoted to the
apparently simple problem of finding the input impedance of a dipole of
arbitrary length and diameter. Even that can't be solved in closed form.
Solution by digital methods is vastly superior, and is capable of giving
much more accurate results, than solution by any known method.

Roy Lewallen, W7EL


quantization of every number in a numeric simulation is but one of the
contributions to inaccuracy. the limitations of the physical model is
another, every modeling program i know of breaks the physical thing
being modeled into small pieces, some with fixed sizes, some use
adaptive methods, but then they all calculate using those small pieces
as if they were a single homogonous piece with step changes at the
edges...


Not all modeling uses step changes. Some modeling approaches use a model
description that is continuous at element boundaries (at least for some
number of derivatives). For example, a cubic spline has smoothly
varying values, first and second derivatives.

The tradeoff in the code is whether you use fewer, better (higher order
modeling) chunks or more simpler chunks. For instance, NEC uses a basis
function that represents the current in a segment (the chunk) as the
combination of a value and two sinusoid sections. Other codes assume
the current is uniform over the segment, yet others assume a sinusoidal
distribution or a triangle.

This leads to a tradeoff in computational resources required: numerical
precision, computational complexity, etc. (lots of simple elements tends
to require bigger precision)

I think that for codes hams are likely to encounter, these are pretty
subtle differences and irrelevant. A lot of the "computational
efficiency" issues are getting smaller, as cheap processor horsepower is
easy to come by.


that also adds to inaccuracies. the robustness of the
algorithm and the residual errors created are a bit part of getting
more accurate results. There is no doubt that numerical methods have
allowed 'solutions' of many problems that would be extremely difficult
to find closed form solutions for, but they must always be examined
for the acceptibility of the unavoidable errors in the method used.


That's why there's all those "validation of modeling code X" papers out
there.



  #54   Report Post  
Old May 15th 10, 03:07 AM posted to rec.radio.amateur.antenna
tom tom is offline
external usenet poster
 
First recorded activity by RadioBanter: May 2009
Posts: 660
Default Computer model experiment

On 5/14/2010 6:19 AM, K1TTT wrote:

quantization of every number in a numeric simulation is but one of the
contributions to inaccuracy. the limitations of the physical model is
another, every modeling program i know of breaks the physical thing
being modeled into small pieces, some with fixed sizes, some use
adaptive methods, but then they all calculate using those small pieces
as if they were a single homogonous piece with step changes at the
edges... that also adds to inaccuracies. the robustness of the
algorithm and the residual errors created are a bit part of getting
more accurate results. There is no doubt that numerical methods have
allowed 'solutions' of many problems that would be extremely difficult
to find closed form solutions for, but they must always be examined
for the acceptibility of the unavoidable errors in the method used.


I will assume that most here are familiar with Simpson's Rule
Integration. This allows one to compute the "area under the curve" of a
function with a fairly simple algorithm. It's as little as 7 statements
using Fortran. And it is quite amazing how accurate the answer can be
with even just a few slices of the curve from start to finish. If used
properly.

Don't think that seemingly large chunks mean poor accuracy. When the
algorithm is good, and the program selects the chunk size well, the
results can be very close to the true answer.

tom
K0TAR
  #55   Report Post  
Old May 15th 10, 06:48 AM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jul 2006
Posts: 2,951
Default Computer model experiment

On Fri, 14 May 2010 21:07:32 -0500, tom wrote:

Don't think that seemingly large chunks mean poor accuracy. When the
algorithm is good, and the program selects the chunk size well, the
results can be very close to the true answer.

I recall Simpson's Rule from work about 23 years ago that lead me to
finding more accurate methods in a great compendium of
"Numerical Recipes
The Art of Scientific Computing."
Press, Flannery, Teukolsky, Vetterling,
Cambridge University Press, 1986

which has Simpon's 3/8th Rule, and a more extensive
"Bode's rule... This is exact for polynomials up to and
including degree 5.
"At this point the formulas stop being named
after famous personages, so we will not go
any further. Consult Abramowitz and Stegun
for aditional formulas in the sequence."
The book continues with FORTRAN (my first language) and Pascal (my 9th
or 11th language or dialect by that time) interpretations of a
spectrum of math systems for another 700 pages....

73's
Richard Clark, KB7QHC


  #56   Report Post  
Old May 15th 10, 07:02 AM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jul 2006
Posts: 2,951
Default Computer model experiment

On Fri, 14 May 2010 22:48:57 -0700, Richard Clark
wrote:

Cambridge University Press, 1986


Honest, no name dropping here. In fact this citation neatly
dove-tails with a film I just finished watching (god bless streaming
Netflix) prior to this post that was about some of Cambridge's (and
Oxford's, hence Oxbridge's) noted Dons: Cleese, Idle, Chapman, Palin,
and Jones (with some Yank called Gilliam)
"Before the Flying Circus"

Some of these remarkable academics acknowledged, with gratitude, the
groundbreaking work of Stanley Unwin - on par with the Goon Show.

Somehow all these loose ends tie together here - eventually. One has
only to wait....

73's
Richard Clark, KB7QHC
  #57   Report Post  
Old May 16th 10, 04:00 AM posted to rec.radio.amateur.antenna
tom tom is offline
external usenet poster
 
First recorded activity by RadioBanter: May 2009
Posts: 660
Default Computer model experiment

On 5/15/2010 1:02 AM, Richard Clark wrote:

Some of these remarkable academics acknowledged, with gratitude, the
groundbreaking work of Stanley Unwin - on par with the Goon Show.


Lost on quite a few here I'd think. Who would know who Spike was? Or
what would become of Peter?

tom
K0TAR

  #58   Report Post  
Old May 19th 10, 07:04 AM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Jul 2006
Posts: 588
Default Computer model experiment

Art wrote:
"I just completed an experiment with my antenna optimizer program where
I had a dipole in free space and where I increased the diameter until it
was close to .003 ohms resistive. What this means is the current flow is
right at the surface where there is no skin depth penetration involved
and it is close to zero material resistance. This means the total
resistance is the resistance of the surface encapsulating particles. The
radiation was 35 db in a shape close to that of a sphere."

Ask yourself if the exerimental results are reasonable.

According to Terman:
"Radio waves are produced to some extent whenever a wire in open space
carries a high-frequency current. The laws governing such radiation are
obtained by using Maxwell`s equations to express the fields associated
with the wire; when this is done there is found to be a component,
termed the radiated field, having a strength that varies inversely with
the distance."

The simple very short elemental dipole has a figure of eight pattern
cross section and produces a power gain of 1.5 over an isotropic
radiator, which produces the same radiation in all directions. 1.5 =
about 2 db power gain as 3 db represents about 2X the power.

"Radiation close to that of a sphere" is close to isotropic or uniform
in all directions, the standard for 0 db gain, not 35 db.

About the only asvantage of a fat or cylindrical dipole is broader
bandwidth than a thin wire dipole which has the same gain, is cheaper,
lighter, and has less wind loading.

One beautiful day if Art keeps trying he may have an original idea that
works.

Best regards, Richard Harrison, KB5WZI

  #59   Report Post  
Old May 19th 10, 09:55 AM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Oct 2009
Posts: 707
Default Computer model experiment


"Richard Harrison" wrote
...
Art wrote:
"I just completed an experiment with my antenna optimizer program where
I had a dipole in free space and where I increased the diameter until it
was close to .003 ohms resistive. What this means is the current flow is
right at the surface where there is no skin depth penetration involved
and it is close to zero material resistance. This means the total
resistance is the resistance of the surface encapsulating particles. The
radiation was 35 db in a shape close to that of a sphere."

Ask yourself if the exerimental results are reasonable.

According to Terman:
"Radio waves are produced to some extent whenever a wire in open space
carries a high-frequency current.


The transmissing line is in open space.
It seems that radio waves are produced from ends of the wire where the
voltage is doubled (at least)

The laws governing such radiation are
obtained by using Maxwell`s equations to express the fields associated
with the wire; when this is done there is found to be a component,
termed the radiated field, having a strength that varies inversely with
the distance."


Maxwell's equations (wrote by Heaviside) are for the incompressible
electricity. Such electricity create the oscillating magnetic whirl. Such
whirls are transwersal.
The Maxwell's hypothesis is erroneous.

The simple very short elemental dipole has a figure of eight pattern
cross section and produces a power gain of 1.5 over an isotropic
radiator, which produces the same radiation in all directions. 1.5 =
about 2 db power gain as 3 db represents about 2X the power.

"Radiation close to that of a sphere" is close to isotropic or uniform
in all directions, the standard for 0 db gain, not 35 db.

About the only asvantage of a fat or cylindrical dipole is broader
bandwidth than a thin wire dipole which has the same gain, is cheaper,
lighter, and has less wind loading.


Half waves dipoles or shorter are always the two sources of waves. The
pattern is a rsult of interference of them.

One beautiful day if Art keeps trying he may have an original idea that
works.


It will be the longitudinal oscilations of electric field.
Best regards,
S*


  #60   Report Post  
Old May 19th 10, 01:31 PM posted to rec.radio.amateur.antenna
external usenet poster
 
First recorded activity by RadioBanter: Aug 2006
Posts: 572
Default Computer model experiment

On May 19, 3:55*am, "Szczepan Bialek" wrote:
It seems that radio waves are produced from ends of the wire where the
voltage is doubled (at least)


The quantum electrodynamics process for the generation of EM waves is
well understood. The electron carriers in the wire are alternately
accelerated and decelerated by the transmit signal energy. During the
acceleration process, electrons absorb energy. During the deceleration
process, electrons emit photons, the quantum particles associated with
the radiated EM waves. Electrons at the ends of a wire dipole are not
accelerated as much as the electrons in the middle of the dipole.
--
73, Cecil, w5dxp.com
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
FA: Philbrick GAP/R Model K2-W Early Computer Tube Op-Amp [email protected] Boatanchors 3 April 19th 05 03:13 PM
FA: Philbrick GAP/R Model K2-W Early Computer Tube Op-Amp [email protected] Boatanchors 0 April 18th 05 04:26 AM
FA: Philbrick GAP/R Model K2-W Early Computer Tube Op-Amp [email protected] Boatanchors 0 April 11th 05 10:23 PM
FA: Philbrick GAP/R Model K2-W Early Computer VacuumTube Op-Amp [email protected] Boatanchors 0 March 16th 05 09:26 PM
FA: Radio Shack Model 100 laptop computer ++ [email protected] Equipment 0 January 31st 05 03:10 PM


All times are GMT +1. The time now is 03:08 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 RadioBanter.
The comments are property of their posters.
 

About Us

"It's about Radio"

 

Copyright © 2017