Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- LTspice
- Messages
Search
Re: A question about the modeling in LT Spice -- results <> theory?
Jonathan Kirwan
On Sat, 26 Apr 2003 21:18:05 -0000, you wrote:
Hello Jon,10%!! Egads. Okay. I see it! Thanks. The effective duty cycle in SPICE is alwaysOkay. I can see the issues much more clearly, now. 1. Approach:Interesting. I used 1ns and it's much better. Thanks, again. I also tried dropping in 1ps, 10ps, and 100ps. What a disaster! The simulation made a total mess of the pulse voltage. I can't even explain it, but it is definitely wrong. 1ns works. But that's about it. Is there some threshold here? Anyway, with 1ns, it leave me within a margin of error I can tolerate: 1.751mV p-p vs a calculated 1.750mV p-p, which is fine. It's shifted off by a DC error of 140uV, but that's probably due to the remaining rise and fall times. ... Ah, yes. Using t_on of (25us-1ns) and a period of 50us puts it right on the mark. Okay. I think I've got the picture, now. I've got to keep all these details in mind. 2. Approach:Yes. That's what I did and it looks pretty good. I still wonder about why 1-100ps causes it to go crazy. But whatever the reason, that must be why LT Spice doesn't accept true square edges being applied. I need to read more about the details of the calculations used. Much thanks to you!!! Jon |
Re: A question about the modeling in LT Spice -- results <> theory?
--- In LTspice@..., Jonathan Kirwan <jkirwan@e...> wrote:
I've been just a little pensive about LT Spice accuracy. SoHello Jon, please take a look(pobe) at your pulse source in LTSPICE. If you specify tr=0 and tf=0, then LTSPICE takes a guess about the rise and fall time of 10% or something like that. The effective duty cycle in SPICE is always d = ((trise+tfall)/2 + twidth)/Tperiod You assumed only twidth/Tperiod . Now it's obvious that the average voltage is different, because of the definitions. 1. Approach: If you specify a very small tr and tf of 1ns, then the difference between both definitions will be very small. 2. Approach: The other possibility is to use a new width value of T_width_spice = T_width - (t_tise + t_fall)/2 Width specification in SPICE: ____________ / \ / \ ______/ \________ | |<-- Tw----->| | Tr Tf |<---- Tper ---->| My advice for LTSPICE: Never specify 0 for tr and tf in LTSPICE. At least use something very low compared to your width if you want to neglect it. Best Regards Helmut |
A question about the modeling in LT Spice -- results <> theory?
Jonathan Kirwan
I've been just a little pensive about LT Spice accuracy. So
today I sat down with some paper and a relatively simple problem and worked through some derivations to test LT Spice. Assume the following circuit (I'm including a short LT Spice .ASC file at the end of this post, if desired.): ,-- V | | / \ R1 / | R2 | [Vnode] PWM >---/\/\/---x | | C1 ----- ----- | | gnd The PWM input is a square wave with given period, duty time, and voltage. The voltage of this PWM swings from 0V to some other, specified voltage (not necessarily the same as V on the diagram.) Given sufficient time, the voltage at Vnode should establish itself as some stable point, where the rise and fall in voltage are equal to each other. If you were to look at Vnode with an oscilliscope (with the right component values, of course), you should see a small-swing sawtooth, roughly, resting on a stable bias voltage. I was interested in solving that and seeing if LT Spice would hit it, dead on. ---------------- MATH DEVELOPMENT ---------------- Skip this, if you want to just get to the point. But I wanted to develop the mathematics here, in case there was any question about it. First off, modeling this breaks down into two states for the circuit: ,-- V ,-- V | | | | / / \ R1 \ R1 / / | | R2 | [Vnode] | [Vnode] Vp >---/\/\/---x ,----x | | | | C1 | | C1 ----- / ----- ----- R2 \ ----- | / | | | | gnd gnd gnd CASE 1 CASE 2 In case 1, the Thevenin voltage and resistance is: Va = (V * R2 + Vp * R1) / (R1 + R2) Ra = R1 * R2 / (R1 + R2) In case 2, the Thevenin voltage and resistance is: Vb = V * R2 / (R1 + R2) Rb = R1 * R2 / (R1 + R2) Note that Ra is always equal to Rb, so let's just call them R, instead. R = Ra = Rb and for convenience, C = C1 Both cases are analyzed similarly. There is a voltage at Vnode at the start of the time period, which decays away, and the Thevenin voltage towards which the node rises, also on an exponential. Intuitively, this is the sum of two exponentials, but the derivation is worth doing, as a verification of intuition. I(C) = -I(R) = (V - Vnode) / R = C * dVnode / dt Solving this, yields: Vnode = V * (1 + k * e^(-t/RC)) where k is a constant of integration. We know that at t=0, that Vnode is equal to the initial capacitor voltage, which I'll call Vstart. Knowing this, we can solve for k, as: k = (Vstart / V) - 1 Putting k back in, gives: Vnode = V * (1 - e^(-t/RC)) + Vstart * e^(-t/RC) This is exactly as expected. The sum of two exponentials, one describing the disappearing Vstart and the other describing the rise towards the new V. Eventually, all memory of Vstart is lost and V is fully memorized, so to speak. Okay, this gives us a tiny picture of the change for some small value of t, and for either case 1 or case 2. However, I need to put all this together in order to find out when the sum of those two exponentials in case 1 balances with the sum of those two in case 2. That's when the voltage goes up exactly the same amount as it later goes down (or the reverse view, if you like.) Anyway, here's how I approached that. Let's look at the two time periods of the square wave: _____ _____ .... Vp | | | | _____| |__________| |_________.... 0 ^ ^ ^ : : : : ton : toff : We'll also set: tcyc = ton + toff During toff, the voltage at Vnode follows this: Vend = Vb*(1 - e^(-toff/(R*C)) + Vstart1*e^(-toff/(R*C)) But to get Vstart1, we need to examine what happens during ton, so: Vstart1 = Va*(1 - e^(-ton/(R*C)) + Vstart*e^(-ton/(R*C)) Now, in the static case: Vend = Vstart So solving the above pair of equations with that equality for Vstart, yields: Vb - Va*e^(-tcyc/(R*C)) + (Va-Vb)*e^(-toff/(R*C)) Vstart = ------------------------------------------------- 1 - e^(-tcyc/(R*C)) I just call Vstart here, VnodeLO. That differentiates the term from VnodeHI, which is the peak reached at the end of ton. So here are the two equations which describe these two voltages: Vb - Va*e^(-tcyc/(R*C)) + (Va-Vb)*e^(-toff/(R*C)) VnodeLO = ------------------------------------------------- 1 - e^(-tcyc/(R*C)) and Va - Vb*e^(-tcyc/(R*C)) + (Vb-Va)*e^(-ton/(R*C)) VnodeHI = ------------------------------------------------ 1 - e^(-tcyc/(R*C)) Or, if you already know VnodeLO, VnodeHI can be computed as: VnodeHI = Va*(1 - e^(-ton/(R*C))) + VnodeLO*e^(-ton/(R*C)) Okay, so much for the mathematical treatments... -------------------- END MATH DEVELOPMENT -------------------- Given these definitions: V: Arbitrary DC voltage supply Vp: Arbitrary PWM high-side voltage (low-side assumed gnd) toff: PWM time within cycle, at gnd ton: PWM time within cycle, at Vp And these useful defined quantities: tcyc = ton + toff Va = (V * R2 + Vp * R1) / (R1 + R2) Vb = V * R2 / (R1 + R2) Ra = R1 * R2 / (R1 + R2) Rb = R1 * R2 / (R1 + R2) R = Ra = Rb C = C1 I can compute these quantities: Vb - Va*e^(-tcyc/(R*C)) + (Va-Vb)*e^(-toff/(R*C)) VnodeLO = ------------------------------------------------- 1 - e^(-tcyc/(R*C)) Va - Vb*e^(-tcyc/(R*C)) + (Vb-Va)*e^(-ton/(R*C)) VnodeHI = ------------------------------------------------ 1 - e^(-tcyc/(R*C)) That should give me exact values, once the circuit settles down. ... So I decided to try this out with a very simple circuit, setting R1 and R2 to 10k and C1 to 10uF. I selected V=5V and Vp=14V. This simply means a 5V rail with a PWM which oscillates between 0 and 14V. ton=25us and toff=25us should make this very easy to estimate. The resulting two cases look like this: ,-- 5 ,-- 5 | | | | / R1 / R1 \ 10k \ 10k / / | | R2 | [Vnode] | [Vnode] 14V >---/\/\/---x ,----x 10k | | | | C1 | | C1 ----- / ----- ----- R2 \ ----- | 10uF 10k / | 10uF | | | gnd gnd gnd CASE 1 CASE 2 The Thevenin equivalents are: || Case 1: +9.5V ----/\/\/-----||-------- 0V 5k || 10uF and || Case 2: +2.5V ----/\/\/-----||-------- 0V 5k || 10uF In other words, toggling between 2.5V and 9.5V for equal times through equal Thevenin resistances, to the same capacitance. I'd guess that the resulting voltage should be (9.5+2.5)/2 or 6V exactly. I'd guess that, without much math, at all. So let's do all that hard, complex, exponential math I developed and see where it takes us: V = 5V Vp = 14V toff = 25us ton = 25us tcyc = ton + toff = 50us Va = (V * R2 + Vp * R1) / (R1 + R2) = 9.5V Vb = V * R2 / (R1 + R2) = 2.5V Ra = R1 * R2 / (R1 + R2) = 5k ohm Rb = R1 * R2 / (R1 + R2) = 5k ohm R = Ra = Rb = 5k ohm C = C1 = 10uF R*C = 50 ms 2.5 - 9.5*e^(-50us/50ms) + (9.5-2.5)*e^(-25us/50ms) VnodeLO = --------------------------------------------------- 1 - e^(-50us/50ms) = 5.999125003 9.5 - 2.5*e^(-50us/50ms) + (2.5-9.5)*e^(-25us/50ms) VnodeHI = --------------------------------------------------- 1 - e^(-50us/50ms) = 6.000874997 The average of these is exactly 6V. What a surprise!!! This also suggests, of course, that the ripple will have a peak to peak of 1.75mV. Okay. Sounds good. Theory seems to all hang together. I haven't built this, but I decided to see what LT Spice would tell me about it. (Circuit's .ASC is given at the end of this post.) I ran this circuit for 1 second and examined the simulation output for the voltage node. I get a sawtooth, as expected, but the peak and valleys are at approximately: VnodeLO = 6.3492 VnodeHI = 6.3508 With an average of 6.35V. This is 350mV above where I calculate it should be. Can anyone give me a clue about why so much a difference, here?? It's bugging me, a lot. Jon ----------EXAMPLE CIRCUIT--------- Version 4 SHEET 1 1328 680 WIRE 288 288 112 288 WIRE 112 288 112 224 WIRE 112 288 112 384 WIRE 112 448 112 544 WIRE -224 416 -224 512 WIRE 544 528 544 448 WIRE 368 288 544 288 WIRE 544 288 544 368 WIRE -224 336 -224 240 WIRE 112 144 112 32 FLAG 112 544 0 FLAG 544 528 0 FLAG -224 512 0 FLAG -224 240 Vcc FLAG 112 32 Vcc SYMBOL res 96 128 R0 SYMATTR InstName R1 SYMATTR Value 10k SYMBOL res 384 272 R90 WINDOW 0 0 56 VBottom 0 WINDOW 3 32 56 VTop 0 SYMATTR InstName R2 SYMATTR Value 10k SYMBOL cap 96 384 R0 SYMATTR InstName C1 SYMATTR Value 10? SYMATTR SpiceLine Rser=0 Lser=0 Rpar=0 Cpar=0 SYMBOL voltage 544 352 R0 WINDOW 123 0 0 Left 0 WINDOW 39 0 0 Left 0 SYMATTR InstName V1 SYMATTR Value PULSE(0 {Vp} 100u 0 0 {tcyc-toff} {tcyc}) SYMBOL voltage -224 320 R0 WINDOW 123 0 0 Left 0 WINDOW 39 0 0 Left 0 SYMATTR InstName V2 SYMATTR Value {V} TEXT -258 568 Left 0 !.tran 1 TEXT 240 -88 Left 0 !.param V=5 TEXT 240 -56 Left 0 !.param Vp = 14 TEXT 240 -24 Left 0 !.param tcyc = 50u TEXT 240 8 Left 0 !.param toff = 25u -----------END---------------- |
Re: Using the TABLE form for an Arbitrary Source
--- In LTspice@..., "Steve Kunkle" <stevekunkle@y...>
wrote: I am trying to use the TABLE form to define an Arbitrary CurrentHello Steve, I have tested two examples for you. Bv-source: V=1+Table(V(x)-2, -2, 4, -1.5, 2.25, -1, 1, -0.5, 0.25, 0,0, 0.5, 0.25, 1, 1, 1.5, 2.25, 2, 4) Bi-source: I=1+Table(-I(B0)-2, -2, 4, -1.5, 2.25, -1, 1, -0.5, 0.25, 0,0, 0.5, 0.25, 1, 1, 1.5, 2.25, 2, 4) Syntax: V = Table(x_axis, x0,y0, x1,y1, x2,y2, ...xn,yn) Have fun. Best Regards Helmut The test file: Please repair the lines crippled by the Yahoo e-mail program. Version 4 SHEET 1 1216 680 WIRE -192 208 -192 240 WIRE 144 208 144 256 WIRE -192 128 -192 96 WIRE -192 96 -48 96 WIRE 144 128 144 96 WIRE 144 96 208 96 WIRE -48 128 -48 96 WIRE -48 208 -48 240 WIRE -48 240 -192 240 WIRE -192 240 -192 256 WIRE 144 384 144 352 WIRE 144 352 16 352 WIRE 16 352 16 384 WIRE 16 464 16 512 WIRE 16 512 144 512 WIRE 144 512 144 464 WIRE 16 544 16 512 FLAG 144 256 0 FLAG -192 256 0 FLAG 208 96 y FLAG -192 96 x FLAG 16 544 0 FLAG 144 352 z SYMBOL bv 144 112 R0 SYMATTR InstName B1 SYMATTR Value V=1+Table(V(x)-2, -2, 4, -1.5, 2.25, -1, 1, -0.5, 0.25, 0,0, 0.5, 0.25, 1, 1, 1.5, 2.25, 2, 4) SYMBOL bv -192 112 R0 SYMATTR InstName B0 SYMATTR Value V=time SYMBOL res -64 112 R0 SYMATTR InstName R1 SYMATTR Value 1 SYMBOL bi 144 384 R0 SYMATTR InstName B2 SYMATTR Value I=1+Table(-I(B0)-2, -2, 4, -1.5, 2.25, -1, 1, -0.5, 0.25, 0,0, 0.5, 0.25, 1, 1, 1.5, 2.25, 2, 4) SYMBOL res 0 368 R0 SYMATTR InstName R2 SYMATTR Value 1 TEXT -192 32 Left 0 !.tran 4 TEXT -184 -32 Left 0 ;B source and table syntax. |
Re: Using the TABLE form for an Arbitrary Source
Steve,
I am trying to use the TABLE form to define an Arbitrary CurrentLook-up tables can also be used in B-sources, G-sources, and I-sources in addition to being able to follow the usual syntax of PSpice. Attached is and example circuit. --Mike --- table.asc --- Version 4 SHEET 1 1160 680 WIRE -144 304 -144 272 WIRE -144 192 -144 144 WIRE -144 144 -272 144 WIRE -272 144 -272 192 WIRE -272 272 -272 304 WIRE 384 144 384 176 WIRE 384 256 384 304 WIRE 816 240 816 208 WIRE 816 128 816 96 WIRE 816 96 992 96 WIRE 992 96 992 128 WIRE 752 192 768 192 WIRE 768 144 384 144 WIRE 992 208 992 240 WIRE 176 304 176 256 WIRE 176 176 176 144 WIRE 176 144 384 144 FLAG -272 304 0 FLAG -144 304 0 FLAG 384 304 0 FLAG 384 144 X FLAG 992 240 0 FLAG 816 240 0 FLAG 752 192 0 FLAG 176 304 0 SYMBOL bi2 -144 192 R0 SYMATTR InstName B1 SYMATTR Value I=table(V(x),0,0,1,1) SYMBOL res -288 176 R0 SYMATTR InstName R1 SYMATTR Value 1 SYMBOL voltage 384 160 R0 SYMATTR InstName V1 SYMATTR Value pulse(-2 2 0 .5m .5m 0 1m) SYMBOL g 816 112 R0 WINDOW 0 11 6 Left 0 WINDOW 3 8 102 Left 0 SYMATTR InstName G1 SYMATTR Value table(0,0,1,1) SYMBOL res 976 112 R0 SYMATTR InstName R2 SYMATTR Value 1 SYMBOL current 176 176 R0 SYMATTR InstName I1 SYMATTR Value table(0,0,1,1) TEXT 120 456 Left 0 !.tran 3m __________________________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo |
Re: Using ORCAD .lib files
Jonathan Kirwan
On Thu, 24 Apr 2003 20:43:51 -0000, you wrote:
--- In LTspice@..., Jonathan Kirwan <jkirwan@e...> wrote:Yes, I've done that before. But I enjoy having a nice list toI just happened upon a Greek site which had what appears to be aHello Jon, examine when I right-click on a PNP or NPN, for example. I don't get that with a .include. Instead, I have to keep a separated print out of the .LIB somewhere and examine it or else call up a separate editor and look at the file, when I'm curious about making a selection. Now you can edit/use any of the transistor models from this fileYes. After you have placed the generic NPN transistor, you have toRight. But when I'm not sure of which I want and would like to examine some factors such as comparing Br and Bf, for example, and make a choice based on what I see... well, it's just not there if I use .include. On the other hand, if they are in standard.bjt, then LT Spice compiles the list for me and presents it for my perusal. I like operating that way, though I'd like to sort on things like Bf, for example. The library file has to be either in the directory of theYes, I've been dumping my .LIBs in .\sub. It is very convenient to manage the usage of libraries this way.It is, though sometimes I'm not sure who's library is who's, that way. Would be nice to have an editable LIB path. If you extend the .include name.lib to let's sayYes, I've tried that and have decided to start organizing the .LIBs I have that way. Still, would be nice to have a LIB= path. Thanks, Jon |
Re: Using ORCAD .lib files
--- In LTspice@..., Jonathan Kirwan <jkirwan@e...> wrote:
I just happened upon a Greek site which had what appears to be aHello Jon, there is a very easy way to use parts from any library file. Just add a line like .include bipolar.lib to your schematic. Now you can edit/use any of the transistor models from this file within your schematic. After you have placed the generic NPN transistor, you have to change the value NPN of this transistor to the type you want, e.g. Q2N1613. The library file has to be either in the directory of the schematic or in the folder SWCADIII\lib\sub . It is very convenient to manage the usage of libraries this way. If you extend the .include name.lib to let's say .include Private\name.lib you have to store the library file in the directory SWCADIII\lib\sub\Private . Best Regards Helmut |
Re: Using ORCAD .lib files
Jonathan Kirwan
On Thu, 24 Apr 2003 19:09:46 +0200, Mathias wrote:
No idea whether LTspice can handle this.It's almost as though there may need to be a sub-folder structure to allow some user-determined organization to the "pick/select new transistor" dialog box. In other words, not a flat list, but one which allows folders as well which can be opened, as desired. I personally think about importing models once I need these.Yes, it's just a nifty resource at this point, where I can pull what I need when I need it. On the other hand, if there is some nice way to organize so many, I'd be happier to have them all at my fingertips without having to exit, edit, save, and re-enter LT Spice. There's currently no folder structure possible for models in LTspice andYes. Hehe. But LT Spice does allow re-sorting on certain criteria, though sadly not on the detailed spice parameters. Can you be so kind to forward this link to me?The one I found is: Jon |
Using the TABLE form for an Arbitrary Source
I am trying to use the TABLE form to define an Arbitrary Current
Source (B). I have done it in other Spices but just can't seem to get the syntax right in LTSpice. Does anyone have the correct syntax or an example for using TABLE with an arbitrary source in LTSpice? |
Re: Using ORCAD .lib files
¿ªÔÆÌåÓýNo
idea whether LTspice can handle this.
I
personally think about importing models once I need these.
There's currently no folder structure possible for models in LTspice and
therefore I'm concerned that I might loose the overview scrolling through
thousands of files.
?
Can
you be so kind to forward this link to me?
?
Thanks
Mathias
|
Using ORCAD .lib files
Jonathan Kirwan
I just happened upon a Greek site which had what appears to be a
complete set of PSPICE .LIB files for a 1998 version of ORCAD. These appear to be in a compatible format for LT Spice. For example: .model Q2N2222 NPN(Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=255.9 + Ne=1.307 Ise=14.34f Ikf=.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 + Ikr=0 Rc=1 Cjc=7.306p Mjc=.3416 Vjc=.75 Fc=.5 Cje=22.01p + Mje=.377 Vje=.75 Tr=46.91n Tf=411.1p Itf=.6 Vtf=1.7 Xtf=3 + Rb=10) * National pid=19 case=TO18 * 88-09-07 bam creation Are there any caveats for me to consider in simply importing the bipolar and jbipolar libs, lock-stock-and-barrel, into standard.bjt, for example? (Other than the fact that LT Spice updates may replace some on the next update, if the names match up.) There are several thousand BJT models, alone. So, for example, what will happen to LT Spice's BJT model list when I try and designate an NPN or PNP on a schematic? Will the sheer number (approx 1000 each) of these overwhelm memory in the dialog box? Jon |
Re: Need help with understanding the contents of ASCII .raw files.
--- In LTspice@..., "RAMPRASAD POTLURI" <potluri@e...>
wrote: ASCII .raw files. figure it out? Is it explained somewhere in LTSpice's help or somewhere else?Hello Ram, you can't find it in the LTSPICE help file. I simply asked panamatex (alias Mike Engelhardt) half a year ago before I have written my raw file conversion program ltsputil.exe. More about that in my last posting about binary raw files. Later I have discovered that another SPICE program (5Spice) uses nearly the same ASCII format. Maybe it is a common format for SPICE-3 simulators, but I am not shure about that. Best Regards Helmut PS: Mike Engelhardt from Linear Technology is the designer of LTSPICE. |
Re: Need help with understanding the contents of ASCII .raw files.
RAMPRASAD POTLURI
toggle quoted message
Show quoted text
----- Original Message -----
From: "Helmut Sennewald" <helmutsennewald@...> To: <LTspice@...> Sent: Wednesday, April 23, 2003 1:56 AM Subject: [LTspice] Re: Need help with understanding the contents of ASCII .raw files. --- In LTspice@..., "rpotl0" <potluri@e...> wrote:Hello Helmut,Dear Friends,what This is a beautiful explanation!!!!!!! How in the world did you figure it out? Is it explained somewhere in LTSpice's help or somewhere else? Thank you so much. - Ram. |
Re: Need help with understanding the contents of ASCII .raw files.
--- In LTspice@..., "rpotl0" <potluri@e...> wrote:
Dear Friends,what information my ASCII RAW file contains. I have plotted the frequencythe values of the frequencies and the corresponding values of theIn this file, I thought that the entries against the left most 0are not in the range 10 Hz to 100 kHz. I don't see anything in the RAWplace in the file?Files" check box in Tools --> Control Panel --> Compression.Hello Ram. this is the first line with frequency: 0 1.000000000000000e+001,0.000000000000000e+000 0 is the first point, 1.0e1 = 10Hz, 0.0 = complex value is always 0 for frequency. Next entry for frequency comes after the 92 complex values and look like 1 1.047128548050900e+001,0.000000000000000e+000 and so on. Best Regards Helmut |
Need help with understanding the contents of ASCII .raw files.
rpotl0
Dear Friends,
I am new to LTspice and I have been struggling with figuring out what information my ASCII RAW file contains. I have plotted the frequency response of a filter circuit. In my ASCII RAW file, I want to see the values of the frequencies and the corresponding values of the voltages. Below, I am including the contents of my ASCII RAW file. In this file, I thought that the entries against the left most 0 immediately after "Values:" are the frequencies. But, these values are not in the range 10 Hz to 100 kHz. I don't see anything in the RAW file that resembles frequencies. Maybe I am looking in the wrong place in the file? By the way, I got my ASCII RAW file by checking the "ASCII Date Files" check box in Tools --> Control Panel --> Compression. Thank you very much for any help you can give. - Ram. Title: * C:\EE221\PotluriSpring2003\Project\ABPF.asc Date: Tue Apr 22 22:40:17 2003 Plotname: AC Analysis Flags: complex forward log No. Variables: 93 No. Points: 201 Offset: 0.0000000000000000e+000 Command: Linear Technology Corporation LTspice Backannotation: u1 3 2 7 4 6 Backannotation: u2 3 2 7 4 6 Backannotation: u3 3 2 7 4 6 Backannotation: u6 3 2 7 4 6 Backannotation: u4 3 2 7 4 6 Backannotation: u5 3 2 7 4 6 Variables: 0 frequency frequency 1 V(nc_02) voltage 2 V(n001) voltage 3 V(nc_01) voltage 4 V(out1) voltage 5 V(n002) voltage 6 V(in) voltage 7 V(nc_04) voltage 8 V(n003) voltage 9 V(nc_03) voltage 10 V(out2) voltage 11 V(n004) voltage 12 V(nc_06) voltage 13 V(n005) voltage 14 V(nc_05) voltage 15 V(out3) voltage 16 V(n006) voltage 17 V(out4) voltage 18 V(n008) voltage 19 V(n007) voltage 20 V(out5) voltage 21 V(n010) voltage 22 V(n009) voltage 23 V(nc_08) voltage 24 V(n011) voltage 25 V(nc_07) voltage 26 V(out) voltage 27 V(nc_09) voltage 28 V(nc_10) voltage 29 V(nc_11) voltage 30 V(nc_12) voltage 31 I(C10) device_current 32 I(C9) device_current 33 I(C8) device_current 34 I(C7) device_current 35 I(C6) device_current 36 I(C5) device_current 37 I(C4) device_current 38 I(C3) device_current 39 I(C1) device_current 40 I(C2) device_current 41 I(R22) device_current 42 I(R21) device_current 43 I(R20) device_current 44 I(R19) device_current 45 I(R18) device_current 46 I(R16) device_current 47 I(R15) device_current 48 I(R14) device_current 49 I(R13) device_current 50 I(R12) device_current 51 I(R11) device_current 52 I(R10) device_current 53 I(R9) device_current 54 I(R8) device_current 55 I(R7) device_current 56 I(R6) device_current 57 I(R5) device_current 58 I(R4) device_current 59 I(R3) device_current 60 I(R1) device_current 61 I(R2) device_current 62 I(V1) device_current 63 I(U1:3) subckt_current 64 I(U1:2) subckt_current 65 I(U1:7) subckt_current 66 I(U1:4) subckt_current 67 I(U1:6) subckt_current 68 I(U2:3) subckt_current 69 I(U2:2) subckt_current 70 I(U2:7) subckt_current 71 I(U2:4) subckt_current 72 I(U2:6) subckt_current 73 I(U3:3) subckt_current 74 I(U3:2) subckt_current 75 I(U3:7) subckt_current 76 I(U3:4) subckt_current 77 I(U3:6) subckt_current 78 I(U4:3) subckt_current 79 I(U4:2) subckt_current 80 I(U4:7) subckt_current 81 I(U4:4) subckt_current 82 I(U4:6) subckt_current 83 I(U5:3) subckt_current 84 I(U5:2) subckt_current 85 I(U5:7) subckt_current 86 I(U5:4) subckt_current 87 I(U5:6) subckt_current 88 I(U6:3) subckt_current 89 I(U6:2) subckt_current 90 I(U6:7) subckt_current 91 I(U6:4) subckt_current 92 I(U6:6) subckt_current Values: 0 1.000000000000000e+001,0.000000000000000e+000 -6.994589353925713e-002,-6.224300513311931e-001 -1.039942959774823e-004,1.256131856356748e-005 -6.994595019897262e-002,-6.224305540919555e-001 -7.028059198394734e-002,-6.177420007959171e-001 5.041099463820574e-001,-5.726535027250970e-002 1.000000000000000e+000,0.000000000000000e+000 -2.864690391666699e-003,-8.919041648280660e-002 -1.489921218869175e-005,6.036529832831230e-007 -2.864692196012326e-003,-8.919047190403354e-002 -2.867276849004460e-003,-8.912817436223740e-002 5.912946460149122e-001,-1.891218990771428e-002 -1.915953483657730e-005,-2.765623930620602e-003 -4.621261803662982e-007,7.080401343141798e-009 -1.915954908693858e-005,-2.765625881848532e-003 -1.927545088878907e-005,-2.762107773904081e-003 3.382425103271862e-002,-2.300448018234994e-004 -2.625350543980314e-006,-1.322770419656549e-003 2.105267992553053e-001,-4.177222547384377e-004 -1.192357881924767e-010,1.389714031758973e-009 -3.562295709034208e-009,-3.392491662524765e-004 4.499439267432111e-003,-4.502979109945879e-008 -1.113827961755637e-010,1.146137686325173e-010 7.414585725326177e-002,7.111237605153714e-001 1.187120286346940e-004,-1.338453896764555e-005 7.414585804460520e-002,7.111237658764555e-001 7.414464846080594e-002,7.111121460853045e-001 -2.625349267344873e-006,-1.322770419978301e-003 -2.625349267808005e-006,-1.322770419978184e-003 -3.562294316074194e-009,-3.392491662248798e-004 -3.562295709034207e-009,-3.392491662524764e-004 -2.836506613685579e-015,-2.827081139551507e-010 2.131282446348664e-011,-2.827083307824038e-010 -2.624635065285266e-011,-1.322778892597661e-008 5.686585332103322e-011,-1.322795387412445e-008 -1.445458606284139e-011,-2.125269407395581e-009 1.590942086303018e-010,-2.126451483449453e-009 -1.188325866182956e-009,-3.715307446565963e-008 4.411800418538100e-009,-3.733229463824132e-008 -5.398315988024442e-007,-4.752104435615023e-006 9.508262370081933e-007,-9.744305916359484e-007 2.374311818608061e-012,6.517292545696619e-012 2.426747583573487e-012,2.618771761377806e-011 2.759749590469662e-012,5.497446469872870e-011 5.971977755278307e-011,1.782295796465395e-009 1.407986080251641e-009,1.235457232513899e-008 1.480518728643425e-009,1.422251061248544e-008 -2.875760760715537e-015,-2.827077340552043e-010 -5.624296953291344e-005,-2.544055994319706e-012 5.624299084290139e-005,-5.628723887432350e-010 -2.625231308192122e-011,-1.322771809370581e-008 -1.052630934326260e-005,-5.569630063179170e-009 1.052633996276527e-005,-2.088611273692189e-008 -1.447178823724828e-011,-2.124703734081096e-009 -6.038598431045509e-007,-1.437780011396871e-010 6.040044827271183e-007,-4.107942889705346e-009 -1.188490682006570e-009,-3.713699083967528e-008 -9.504775674071809e-007,-4.398183699468437e-008 9.537010419595358e-007,-3.050353210921658e-008 -5.398199822151527e-007,-4.751958170111389e-006 -2.479450268089713e-005,-2.863267513625485e-006 2.520549731910287e-005,-2.863267513625485e-006 -9.311811896758489e-005,-2.912965302740483e-006 2.099602862575987e-011,1.448841943015141e-010 1.161658729168301e-011,1.462655036331763e-010 2.997264587139093e-030,-2.125542953473251e-029 -5.907879031218577e-023,-1.413031281393710e-021 -4.095982687127801e-007,5.738743334072437e-006 1.181248295732112e-012,1.600212156498667e-011 -1.648158236165463e-013,1.608362598435761e-011 -1.006110316846199e-032,2.231851878990996e-030 -8.460223975020505e-024,-4.408808041422282e-022 -3.163589958978164e-009,7.625158127439224e-008 2.457999751038080e-014,5.640834039034692e-013 -1.720217440699757e-014,5.656733144861946e-013 1.012303408833506e-033,1.411018279744002e-031 -4.211412828612894e-026,-1.051343327380630e-023 -1.418626708025774e-010,4.306129682228989e-009 5.967604820283656e-015,-6.818445717453028e-014 -5.962429072473601e-015,7.083227058473893e-014 5.300593415717429e-023,2.304900953155032e-020 8.562005274202449e-023,4.542813043992867e-020 -2.818679265494650e-011,2.648185968559149e-008 1.849663780019458e-017,3.205187917110209e-016 -3.925415642174763e-017,3.798999532950707e-016 2.905988968098873e-026,1.355280332433297e-021 -5.657794005243720e-028,5.418251199269808e-023 -1.893563688411776e-011,5.719333573676622e-010 -5.458588789301632e-012,-8.292851426739136e-013 5.252061846341169e-012,-2.036983977136801e-012 -8.954165528970621e-030,6.155913000589584e-029 1.047991236513293e-022,2.143673494502942e-021 -1.480518728639587e-009,-1.422251061262524e-008 1 1.047128548050900e+001,0.000000000000000e+000 -7.691513092155676e-002,-6.522846122421433e-001 -1.141186190697075e-004,1.437168673108465e-005 -7.691519322644830e-002,-6.522851391166266e-001 -7.728122234496566e-002,-6.473617027554336e-001 5.044955150233760e-001,-6.013444314692378e-002 1.000000000000000e+000,0.000000000000000e+000 -3.142233248574663e-003,-9.340648631222537e-002 -1.633887910460271e-005,6.805271554011199e-007 -3.142235227730688e-003,-9.340654435328705e-002 -3.145069114416916e-003,-9.334128714225684e-002 5.913735753772289e-001,-1.981079562914357e-002 -2.100909097510040e-005,-2.896031984531518e-003 -5.067232494542628e-007,7.733042134878260e-009 -2.100910660111927e-005,-2.896034027769573e-003 -2.113619126500173e-005,-2.892349952890537e-003 3.382500621712690e-002,-2.408986386057562e-004 -2.878642037992736e-006,-1.385111015336710e-003 2.105268458988352e-001,-4.374092581434920e-004 -1.307534857939921e-010,1.448637986281981e-009 -3.905977603710680e-009,-3.552375007032269e-004 4.499439431168070e-003,-4.715198334600279e-008 -1.221288096611638e-010,1.199869039949231e-010 8.152128093569547e-002,7.451463924130293e-001 1.302539145529373e-004,-1.530526529986781e-005 8.152128180535093e-002,7.451463980291490e-001 8.151995189768811e-002,7.451342222858891e-001 -2.878640638189459e-006,-1.385111015673883e-003 -2.878640638697274e-006,-1.385111015673760e-003 -3.905976076366238e-009,-3.552375006748713e-004 -3.905977603710680e-009,-3.552375007032268e-004 -3.110166018708225e-015,-2.960317483677623e-010 2.336904823131952e-011,-2.960319973186285e-010 -2.877857447566334e-011,-1.385119848155847e-008 6.235216737327682e-011,-1.385138786752936e-008 -1.584995943319290e-011,-2.225482888827528e-009 1.744470081178431e-010,-2.226840163975288e-009 -1.303456987214792e-009,-3.890933264256969e-008 4.837793619211578e-009,-3.911518127566266e-008 -5.936058904628023e-007,-4.979969293540131e-006 1.043157392800398e-006,-1.033475021152248e-006 2.605156410610821e-012,6.798644708067181e-012 2.662651131818601e-012,2.739611500073685e-011 3.027802116358781e-012,5.754089375181339e-011 6.550646057939706e-011,1.866519637539139e-009 1.548229525190372e-009,1.294692794980267e-008 1.627793959662703e-009,1.490299055102378e-008 -3.153207328374597e-015,-2.960313505751090e-010 -5.624296952366282e-005,-2.663953861356090e-012 5.624299288960088e-005,-5.893997918250349e-010 -2.878511284506942e-011,-1.385112463974696e-008 -1.052630872134886e-005,-5.832123441913226e-009 1.052634229494176e-005,-2.187046290717460e-008 -1.586882155042113e-011,-2.224890527640517e-009 -6.038593711142957e-007,-1.505616491285976e-010 6.040179681629804e-007,-4.301761403674217e-009 -1.303637598046797e-009,-3.889248652892177e-008 -9.502940107506304e-007,-4.607161774219434e-008 9.538283473826273e-007,-3.195289617603801e-008 -5.935931055838150e-007,-4.979815957247420e-006 -2.477522424883120e-005,-3.006722157346189e-006 2.522477575116880e-005,-3.006722157346189e-006 -9.309865587570784e-005,-3.058779124133287e-006 2.307740217467519e-011,1.517794679854410e-010 1.278487898721037e-011,1.533362927113483e-010 -2.293614044895064e-030,-8.593210522364188e-030 2.049339967600126e-022,-8.816711354049584e-022 -4.480160576913835e-007,6.026237906349418e-006 1.295521145622222e-012,1.675638640938333e-011 -1.806108320084703e-013,1.684611364792047e-011 1.400350433411420e-031,-2.637452725278948e-030 -1.414486925401347e-023,-3.395641038015534e-022 -3.468649560585154e-009,7.987418744212733e-008 2.695218676170294e-014,5.906674813500233e-013 -1.886211722832499e-014,5.923611870105938e-013 -8.664216211605835e-034,-1.383302944138055e-031 -2.601189948875764e-026,-7.137462009145912e-024 -1.555503844510585e-010,4.509271585367770e-009 6.544044499363954e-015,-7.106921383194895e-014 -6.538369399713223e-015,7.384181141936919e-014 6.053384479420780e-023,1.824968796380008e-020 1.020460825634525e-022,5.839522347288731e-020 -3.090440339611565e-011,2.772990862242934e-008 2.028115667474701e-017,3.356305239578071e-016 -4.304132633164686e-017,3.977926840182207e-016 -8.157441875791552e-026,-2.710477116084552e-021 -7.001638291337203e-028,5.475192615532910e-021 -2.076073861337970e-011,5.988619926520562e-010 -5.989639220276122e-012,-8.116911065586085e-013 5.762364234094215e-012,-2.192689778638504e-012 2.251575733802313e-031,3.458037984887409e-029 3.629568210019090e-022,2.666063900724321e-021 -1.627793959675093e-009,-1.490299055109576e-008 2 1.096478196143185e+001,0.000000000000000e+000 -8.460221610079508e-002,-6.836201795464734e-001 -1.252375886985691e-004,1.645620899366352e-005 -8.460228463227641e-002,-6.836207317307449e-001 -8.500253717891307e-002,-6.784492349799091e-001 5.049159403221234e-001,-6.316453526688037e-002 1.000000000000000e+000,0.000000000000000e+000 -3.446788756688283e-003,-9.782312715996240e-002 -1.791789086802669e-005,7.682417708235717e-007 -3.446790927668233e-003,-9.782318794549935e-002 -3.449898067078133e-003,-9.775482806020144e-002 5.914601127187735e-001,-2.075283699052856e-002 -2.303730726962148e-005,-3.032596089623028e-003 -5.556253847239345e-007,8.463734541978376e-009 -2.303732440418251e-005,-3.032598229215156e-003 -2.317667101707636e-005,-3.028740341501243e-003 3.382583429162575e-002,-2.522658034551108e-004 -3.156371125777024e-006,-1.450389684110275e-003 2.105268970423717e-001,-4.580241347776776e-004 -1.433852362114104e-010,1.509362904197235e-009 -4.282818378425433e-009,-3.719793441643575e-004 4.499439610700993e-003,-4.937419196116892e-008 -1.339115812499600e-010,1.256267599391825e-010 8.965392435780384e-002,7.808445820778862e-001 1.429267078911494e-004,-1.751597801823875e-005 8.965392531372948e-002,7.808445879613740e-001 8.965246272791337e-002,7.808318288831004e-001 -3.156369590922834e-006,-1.450389684463632e-003 -3.156369591479641e-006,-1.450389684463504e-003 -4.282816703728645e-009,-3.719793441349431e-004 -4.282818378425433e-009,-3.719793441643575e-004 -3.410228478382659e-015,-3.099833080257613e-010 2.562365294123807e-011,-3.099835938595376e-010 -3.155510738894292e-011,-1.450398887909976e-008 6.836779092802536e-011,-1.450420632348649e-008 -1.738012204005120e-011,-2.330427084305144e-009 1.912817619089918e-010,-2.331985533124136e-009 -1.429793834014961e-009,-4.074914366226865e-008 5.304956454840269e-009,-4.098558567027071e-008 -6.529163802723142e-007,-5.219127621571374e-006 1.144510412484659e-006,-1.097325905116663e-006 2.858619814190557e-012,7.089267322922374e-012 2.921661580338530e-012,2.865747412184073e-011 3.322067578164516e-012,6.022448726966009e-011 7.185649549938566e-011,1.954746241643664e-009 1.702909277736084e-009,1.356863438003782e-008 1.790190720400444e-009,1.561698689722238e-008 -3.457422330979561e-015,-3.099828914925978e-010 -5.624296951351972e-005,-2.789502370687510e-012 5.624299513376242e-005,-6.171773995146116e-010 -3.156227740540813e-011,-1.450391193473180e-008 -1.052630803943504e-005,-6.106988463702369e-009 1.052634485211858e-005,-2.290120673888388e-008 -1.740080433257879e-011,-2.329806773258296e-009 -6.038588535677340e-007,-1.576661271594443e-010 6.040327552076028e-007,-4.504746490269836e-009 -1.429991740087545e-009,-4.073149845915511e-008 -9.500927611191313e-007,-4.826241160588038e-008 9.539679237399573e-007,-3.347231772665897e-008 -6.529023045401115e-007,-5.218966855299252e-006 -2.475420298389383e-005,-3.158226763344019e-006 2.524579701610617e-005,-3.158226763344019e-006 -9.307743215153547e-005,-3.212756619043132e-006 2.537100692650446e-011,1.590085523439482e-010 1.407573220274813e-011,1.607662721231675e-010 3.637720553082916e-030,6.868713590860413e-029 -2.663069208023259e-022,-8.726755462434442e-022 -4.899051986668141e-007,6.329861394795987e-006 1.420881267697302e-012,1.754621254385000e-011 -1.979060725825074e-013,1.764520311353840e-011 9.261278004252894e-032,1.162774185392717e-029 -9.967364822550594e-024,-4.372489642652375e-022 -3.803108219253994e-009,8.367183037106552e-008 2.955339339700628e-014,6.185043740723325e-013 -2.068229252751313e-014,6.203110468474235e-013 8.051519168598488e-034,1.197676399420044e-031 -6.902848465045942e-026,-1.131234111151621e-023 -1.705588899982431e-010,4.722016793653006e-009 7.176239076325225e-015,-7.404110590510061e-014 -7.170016452511812e-015,7.694436779775683e-014 -4.560456972693556e-023,2.647849511845275e-020 2.204095112887937e-022,5.340059066285688e-020 -3.388385194202301e-011,2.903677573261071e-008 2.223784474452187e-017,3.514524232804268e-016 -4.719385878358684e-017,4.165331876415631e-016 -2.114547147909278e-026,2.900270145832101e-021 -8.475161745876252e-028,5.475191556646858e-021 -2.276157570471651e-011,6.270557526775720e-010 -6.572792843258928e-012,-7.844907521932689e-013 6.322598192249942e-012,-2.364953173531213e-012 -8.961442873437240e-030,2.617201872840270e-030 7.134349479558272e-023,1.688788175238957e-021 -1.790190720410489e-009,-1.561698689727824e-008 3 1.148153621496883e+001,0.000000000000000e+000 -9.308584707176536e-002,-7.165166572146570e-001 -1.374505901558558e-004,1.885798556349343e-005 -9.308592247498046e-002,-7.165172359692907e-001 -9.352346591224070e-002,-7.110835564760282e-001 5.053740698690192e-001,-6.636717811026280e-002 1.000000000000000e+000,0.000000000000000e+000 -3.781010953206574e-003,-1.024500689549684e-001 -1.964978184461069e-005,8.683882325078057e-007 -3.781013334695506e-003,-1.024501326156688e-001 -3.784420057632171e-003,-1.023785197867270e-001 5.915549905811480e-001,-2.174052290323209e-002 -2.526146465185242e-005,-3.175607870064938e-003 -6.092484210959809e-007,9.283174018581284e-009 -2.526148344069371e-005,-3.175610110560944e-003 -2.541427523857742e-005,-3.171570190804531e-003 3.382674229484365e-002,-2.641707560982134e-004 -3.460895600825987e-006,-1.518744900661478e-003 2.105269531200515e-001,-4.796106218621385e-004 -1.572390816295166e-010,1.571835716679996e-009 -4.696016839707643e-009,-3.895102087309758e-004 4.499439807554948e-003,-5.170113064961648e-008 -1.468311353128717e-010,1.315409045527606e-010 9.862631637936517e-002,8.183070930587606e-001 1.568428312647383e-004,-2.006210511024613e-005 9.862631743037006e-002,8.183070992225664e-001 9.862470846544831e-002,8.182937279752589e-001 -3.460893917891329e-006,-1.518744901031827e-003 -3.460893918501856e-006,-1.518744901031692e-003 -4.696015003440362e-009,-3.895102087002855e-004 -4.696016839707641e-009,-3.895102087309757e-004 -3.739241044019349e-015,-3.245923863862211e-010 2.809577806615147e-011,-3.245927145672967e-010 -3.459952084493559e-011,-1.518754486239612e-008 7.496379077187260e-011,-1.518779452220598e-008 -1.905811173219212e-011,-2.440326101440791e-009 2.097415967890248e-010,-2.442115551445833e-009 -1.568437439813771e-009,-4.267656112485984e-008 5.817275062489327e-009,-4.294815398539409e-008 -7.183694670064619e-007,-5.470187148901255e-006 1.255776453908392e-006,-1.166530662125026e-006 3.136950545631560e-012,7.388962072414595e-012 3.206074537311286e-012,2.997365591102464e-011 3.645142130066314e-012,6.303016171388571e-011 7.882525777793819e-011,2.047169153632336e-009 1.873606174870109e-009,1.422126988741836e-008 1.969357312683671e-009,1.636627580160739e-008 -3.790988086995643e-015,-3.245919502265670e-010 -5.624296950239802e-005,-2.920967833311665e-012 5.624299759443686e-005,-6.462641331202060e-010 -3.460738361744358e-011,-1.518746472497195e-008 -1.052630729173265e-005,-6.394808291495180e-009 1.052634765600257e-005,-2.398053109310693e-008 -1.908078985960111e-011,-2.439676518445038e-009 -6.038582860657228e-007,-1.651067225613834e-010 6.040489695507795e-007,-4.717334930325241e-009 -1.568654281578150e-009,-4.265807840623314e-008 -9.498721149275628e-007,-5.055935558891184e-008 9.541209525502388e-007,-3.506535952134208e-008 -7.183539640160373e-007,-5.470018572781474e-006 -2.473129650654904e-005,-3.318358905513140e-006 2.526870349345096e-005,-3.318358905513140e-006 -9.305430370167299e-005,-3.375481097083941e-006 2.789967788251496e-011,1.665881910464795e-010 1.550299042488374e-011,1.685761197818669e-010 -2.869611543012677e-030,4.458219672465349e-029 -3.496582922141146e-022,-2.453986383503410e-021 -5.355488837174730e-007,6.650770504794014e-006 1.558411004546279e-012,1.837327742212839e-011 -2.168417643783563e-013,1.848271862670013e-011 9.294078998618239e-032,-2.671613907667516e-030 -1.587758645511332e-023,-5.416805166000573e-022 -4.169795523132747e-009,8.765340154527907e-008 3.240574351553560e-014,6.476531171711520e-013 -2.267812740889221e-014,6.495829957526953e-013 8.956502881937796e-034,-2.468199594353767e-032 -4.000313650375751e-026,-1.083594485540962e-023 -1.870156647993472e-010,4.944822231606149e-009 7.869595452260890e-015,-7.709734024593482e-014 -7.862772473092303e-015,8.013742404118894e-014 1.091640548764664e-022,5.224814480558350e-020 7.015135535197112e-023,2.600984512437544e-020 -3.715033261678960e-011,3.040523290330562e-008 2.438331199783784e-017,3.680188200237046e-016 -5.174707665984381e-017,4.361596628354057e-016 5.151557164678028e-026,1.301073308477351e-021 -1.009086667028811e-027,5.529400389490437e-021 -2.495503653243191e-011,6.565736269406256e-010 -7.213243750915275e-012,-7.458303584254657e-013 6.937712822668921e-012,-2.556019140629071e-012 -5.515576728182539e-030,-5.588054888667799e-030 1.806474812213799e-022,2.892144923325029e-021 -1.969357312685609e-009,-1.636627580173376e-008 4 1.202264434617413e+001,0.000000000000000e+000 -1.024543015466363e-001,-7.510589670804224e-001 -1.508672237516096e-004,2.162720738996782e-005 -1.024543845382148e-001,-7.510595737345455e-001 -1.029325303512666e-001,-7.453485485623608e-001 5.058729080500520e-001,-6.975509177584885e-002 1.000000000000000e+000,0.000000000000000e+000 -4.147819695178501e-003,-1.072975411871000e-001 -2.154941048184873e-005,9.827959451208146e-007 -4.147822307700396e-003,-1.072976078600100e-001 -4.151557478601574e-003,-1.072225841327763e-001 5.916590118683912e-001,-2.277619062253328e-002 -2.770052039547359e-005,-3.325372916034888e-003 -6.680484117173736e-007,1.020360237925887e-008 -2.770054099843367e-005,-3.325375262200306e-003 -2.786807542361702e-005,-3.321144699776875e-003 3.382773794576262e-002,-2.766391486891288e-004 -3.794800752283571e-006,-1.590321666961622e-003 2.105270146078931e-001,-5.022145190606411e-004 -1.724336225267805e-010,1.635971177034526e-009 -5.149080166223586e-009,-4.078672801785743e-004 4.499440023401037e-003,-5.413773527767866e-008 -1.609971462217252e-010,1.377358228190376e-010 1.085309400939113e-001,8.576280705216784e-001 1.721261558464227e-004,-2.299651063353236e-005 1.085309412497549e-001,8.576280769794002e-001 1.085291706956501e-001,8.576140631898682e-001 -3.794798906981805e-006,-1.590321667349812e-003 -3.794798907651236e-006,-1.590321667349671e-003 -5.149078152797297e-009,-4.078672801465057e-004 -5.149080166223585e-009,-4.078672801785742e-004 -4.099996350006960e-015,-3.398899716402098e-010 3.080640962851176e-011,-3.398903484425068e-010 -3.793766061896241e-011,-1.590331644618900e-008 8.219616051880929e-011,-1.590360309431827e-008 -2.089823103565050e-011,-2.555414781123779e-009 2.299834786127029e-010,-2.557469484827085e-009 -1.720599121218510e-009,-4.469584680567063e-008 6.379122983974856e-009,-4.500782968967797e-008 -7.906452602235923e-007,-5.733793524696772e-006 1.377936065228789e-006,-1.241715652888113e-006 3.442626098531778e-012,7.697415390900838e-012 3.518419131974125e-012,3.134650312656179e-011 3.999884625400794e-012,6.596296378286685e-011 8.647367268895993e-011,2.143991752442856e-009 2.062093130142260e-009,1.490651104103455e-008 2.167140890796074e-009,1.715274119401004e-008 -4.156735850001551e-015,-3.398895149286642e-010 -5.624296949020333e-005,-3.058629111733257e-012 5.624300029251296e-005,-6.767216909709833e-010 -3.794628318661044e-011,-1.590323302932799e-008 -1.052630647189476e-005,-6.696193587475215e-009 1.052635073039466e-005,-2.511072595303206e-008 -2.092309770146127e-011,-2.554734541060965e-009 -6.038576637838984e-007,-1.728994679307055e-010 6.040667490314754e-007,-4.939984798020157e-009 -1.720836695049886e-009,-4.467648622030061e-008 -9.496302049572298e-007,-5.296788516868205e-008 9.542887288199858e-007,-3.673579132666658e-008 -7.906281779039611e-007,-5.733616736690390e-006 -2.470635459749740e-005,-3.487754588792442e-006 2.529364540250260e-005,-3.487754588792442e-006 -9.302911842833662e-005,-3.547594625645642e-006 3.068894547417531e-011,1.745359831443557e-010 1.708231963108882e-011,1.767880063816679e-010 2.572320181972202e-031,-3.489553947636345e-029 -3.409535087367011e-023,-4.883984529242783e-022 -5.852457941946801e-007,6.990238900619518e-006 1.709299694661124e-012,1.923933763130135e-011 -2.375738313893520e-013,1.936058537001177e-011 5.488595653367889e-031,5.535604142655013e-030 -2.546750973350824e-023,-3.615425511710288e-022 -4.571812616237258e-009,9.182830766239289e-008 3.553350419572575e-014,6.781755266788796e-013 -2.486666581066396e-014,6.802400628142523e-013 -6.996601150811796e-034,-8.478868964345580e-032 -9.623314182791123e-026,-1.153650382634381e-023 -2.050604962858410e-010,5.178166989671034e-009 8.630048845267960e-015,-8.023350772228618e-014 -8.622567612193419e-015,8.341686080572348e-014 7.352893111040892e-023,-1.900464409402452e-020 1.268976621760272e-022,9.983554804401463e-020 -4.073145819990336e-011,3.183818262695168e-008 2.673577058871750e-017,3.853659059794075e-016 -5.673953492597418e-017,4.567115552212045e-016 3.392127218200391e-026,-7.589094757424290e-022 -3.590650625183712e-028,1.083881488251129e-022 -2.735962679412866e-011,6.874772787904741e-010 -7.916718086185013e-012,-6.935344013321589e-013 7.613158108941658e-012,-2.768481767681185e-012 7.474123349420911e-030,4.803105276329940e-030 4.976172455457593e-022,2.522087420164820e-021 -2.167140890801028e-009,-1.715274119417020e-008 5 1.258925411794168e+001,0.000000000000000e+000 -1.128067874955745e-001,-7.873373981848754e-001 -1.656083937294789e-004,2.482239894360623e-005 -1.128068788724807e-001,-7.873380341404963e-001 -1.133291941149506e-001,-7.813333513842077e-001 5.064156027411485e-001,-7.334232195024514e-002 1.000000000000000e+000,0.000000000000000e+000 -4.550428282663029e-003,-1.123763025041949e-001 -2.363309074605249e-005,1.113568439352715e-006 -4.550431148765586e-003,-1.123763723330480e-001 -4.554526408722146e-003,-1.122977716149787e-001 5.917730565672209e-001,-2.386231545548192e-002 -3.037527128995882e-005,-3.482211474888384e-003 -7.325255280447643e-007,1.123903571553099e-008 -3.037529388234498e-005,-3.482213931714832e-003 -3.055899361363678e-005,-3.477783705545811e-003 3.382882970961648e-002,-2.896978879017493e-004 -4.160920702549399e-006,-1.665271314924376e-003 2.105270820271009e-001,-5.258837858501050e-004 -1.888840355018437e-010,1.785811754569000e-009 -5.645862213647561e-009,-4.270894967212904e-004 4.499440260071591e-003,-5.668917434529447e-008 -1.765298788765278e-010,1.443057040558467e-010 1.194716199221366e-001,8.989073971632672e-001 1.889132034940566e-004,-2.638078884744466e-005 1.194716211936414e-001,8.989074039291840e-001 1.194696721460435e-001,8.988927155911738e-001 -4.160918679216132e-006,-1.665271315331307e-003 -4.160918679950148e-006,-1.665271315331159e-003 -5.645860005949130e-009,-4.270894966861612e-004 -5.645862213647558e-009,-4.270894967212902e-004 -4.495563309869166e-015,-3.559085124501099e-010 3.377855834362921e-011,-3.559089450776694e-010 -4.159787292806563e-011,-1.665282199369402e-008 9.012625598469459e-011,-1.665315111014596e-008 -2.291617054706795e-011,-2.675939228799518e-009 2.521795536375696e-010,-2.678298520813171e-009 -1.887611947648695e-009,-4.681148299590705e-008 6.995299102869586e-009,-4.716987945066466e-008 -8.705079523540228e-007,-6.010632916380092e-006 1.512068226468873e-006,-1.323599278644421e-006 3.778376987125405e-012,8.014174157476914e-012 3.861482483932120e-012,3.277781052153862e-011 4.389443942153867e-012,6.902805833396732e-011 9.486879224432406e-011,2.245427816522625e-009 2.270362146368893e-009,1.562613941190720e-008 2.385615178850990e-009,1.797838192760043e-008 -4.557776945642527e-015,-3.559080341891620e-010 -5.624296947683211e-005,-3.202778211598558e-012 5.624300325089490e-005,-7.086146793161809e-010 -4.160731818513897e-011,-1.665273100736131e-008 -1.052630557297199e-005,-7.011783811334733e-009 1.052635410135505e-005,-2.629418929250525e-008 -2.294343698891693e-011,-2.675226880447328e-009 -6.038569814314897e-007,-1.810611799385933e-010 6.040862448145801e-007,-5.173176569674095e-009 -1.887872215823372e-009,-4.679120215975751e-008 -9.493649847273933e-007,-5.549375687321376e-008 9.544726718826143e-007,-3.848760557335793e-008 -8.704891209324698e-007,-6.010447490639625e-006 -2.467921986294258e-005,-3.667116097512257e-006 2.532078013705743e-005,-3.667116097512257e-006 -9.300171687890555e-005,-3.729805902154956e-006 3.376739985271148e-011,1.828704091149376e-010 1.883142155305444e-011,1.854257404669817e-010 -1.545330076189861e-030,1.540743955509789e-030 1.117986296653702e-024,-1.172321723140779e-021 -6.393087433899918e-007,7.349672908696155e-006 1.874854515877584e-012,2.014623259493251e-011 -2.602681746856835e-013,2.028083614954379e-011 -3.037420978795952e-031,1.317516637893156e-030 -3.256417816752337e-024,-5.191398449079873e-022 -5.012558094802953e-009,9.620650942692760e-008 3.896329124521611e-014,7.101363304106353e-013 -2.726644184903561e-014,7.123483521894517e-013 2.783494215614373e-033,5.572106533632227e-032 -1.054359931482196e-025,-7.160282177412146e-024 -2.248466727065033e-010,5.422553459593583e-009 9.453460180000461e-015,-8.765290513516911e-014 -9.445257064636616e-015,9.098633242998206e-014 5.165033570820846e-023,9.344464019058273e-021 1.604328410720072e-022,7.730603549051829e-020 -4.465745531412816e-011,3.333865992851939e-008 2.931520500215489e-017,4.035170841595925e-016 -6.221368095787144e-017,4.782609764011251e-016 8.601628099906756e-026,4.391053940454530e-021 8.216472405202157e-026,5.529395950712533e-021 -2.999562357955832e-011,7.198311534138554e-010 -8.689530594879376e-012,-6.250483837141323e-013 8.354936824532722e-012,-3.005343842384097e-012 2.109887287127079e-030,-2.635714197345946e-029 2.747699720548307e-023,1.804018917821890e-021 -2.385615178874604e-009,-1.797838192773435e-008 6 1.318256738556408e+001,0.000000000000000e+000 -1.242550178095746e-001,-8.254479668165362e-001 -1.818075145807041e-004,2.851189786009841e-005 -1.242551184592300e-001,-8.254486335531616e-001 -1.248254354846776e-001,-8.191327090941880e-001 5.070054234131680e-001,-7.714442172250813e-002 1.000000000000000e+000,0.000000000000000e+000 -4.992374183560474e-003,-1.176976725934518e-001 -2.591873699163593e-005,1.263125092753723e-006 -4.992377328019245e-003,-1.176977457290176e-001 -4.996867360926067e-003,-1.176153933020488e-001 5.918980891001373e-001,-2.500152148662644e-002 -3.330853356256414e-005,-3.646459179790530e-003 -8.032283405594946e-007,1.240552630433995e-008 -3.330855833665452e-005,-3.646461752506590e-003 -3.350998338640878e-005,-3.641822411040498e-003 3.383002687019915e-002,-3.033752008292410e-004 -4.562364878105288e-006,-1.743753825252038e-003 2.105271559513670e-001,-5.506686435198499e-004 -2.071425021042079e-010,1.856863502342056e-009 -6.190562881184396e-009,-4.472176321170765e-004 4.499440519575726e-003,-5.936085995145928e-008 -1.935611721236807e-010,1.510798022235277e-010 1.315651362836753e-001,9.422510606049528e-001 2.073544763577099e-004,-3.028680281330193e-005 1.315651376828549e-001,9.422510676940576e-001 1.315629913317523e-001,9.422356710683318e-001 -4.562362659563601e-006,-1.743753825678659e-003 -4.562362660368434e-006,-1.743753825678504e-003 -6.190560460497897e-009,-4.472176320807904e-004 -6.190562881184392e-009,-4.472176321170763e-004 -4.929285517670507e-015,-3.726819867858575e-010 3.703745500041316e-011,-3.726824835085957e-010 -4.561121908952819e-011,-1.743765143975631e-008 9.882147232977425e-011,-1.743802931650085e-008 -2.512914451182150e-011,-2.802157374565890e-009 2.765186205140203e-010,-2.804866426474546e-009 -2.070943487946980e-009,-4.902818579716151e-008 7.671069351203645e-009,-4.943992208340023e-008 -9.588179085378092e-007,-6.301434676404188e-006 1.659360249854614e-006,-1.413007495846626e-006 4.147213338411823e-012,8.338616586075492e-012 4.238336824716305e-012,3.426934044877471e-011 4.817289194882374e-012,7.223071216454393e-011 1.040844367456756e-010,2.351702129984709e-009 2.500655799220705e-009,1.638204844582750e-008 2.627112737107892e-009,1.884531915742290e-008 -4.997501424217262e-015,-3.726814859973990e-010 -5.624296946217086e-005,-3.353720901212389e-012 5.624300649469658e-005,-7.420107493932410e-010 -4.562157735603184e-011,-1.743755682115540e-008 -1.052630458731511e-005,-7.342248580264665e-009 1.052635779756835e-005,-2.753343217599249e-008 -2.515904234296099e-011,-2.801411397359079e-009 -6.038562332061256e-007,-1.896095005182756e-010 6.041076226821277e-007,-5.417414300522161e-009 -2.071228593306013e-009,-4.900694017797564e-008 -9.490742113950295e-007,-5.814307322471266e-008 9.546743372582859e-007,-4.032503465584910e-008 -9.587971382315140e-007,-6.301240161477293e-006 -2.464972882934160e-005,-3.857221086125406e-006 2.535027117065840e-005,-3.857221086125406e-006 -9.297193332342874e-005,-3.922899371151803e-006 3.716711280142393e-011,1.916108488106220e-010 2.077030629510354e-011,1.945149268945171e-010 -6.017796815418814e-030,-4.776884041063661e-029 -9.849265403063043e-023,-1.116590429370018e-021 -6.980624558238380e-007,7.730629705770010e-006 2.056512486757869e-012,2.109588843639513e-011 -2.851053590363976e-013,2.124561918587958e-011 -7.669421673578391e-031,2.389199151741218e-029 -2.851894993264795e-023,-3.570770683329496e-022 -5.495756321151647e-009,1.007985643913363e-007 4.272429738117464e-014,7.436033049392383e-013 -2.989783113907553e-014,7.459772068115295e-013 3.023665343902629e-034,5.345136442002576e-031 -2.116434922617453e-025,-2.292901844937945e-023 -2.465422889761634e-010,5.678508535998616e-009 1.036726101706629e-014,-9.112808085075957e-014 -1.035826648923447e-014,9.461860064672543e-014 1.317862792554372e-022,1.549749208624148e-020 1.194040619840345e-022,8.106459190827498e-020 -4.896155814883830e-011,3.490985547838664e-008 3.214348014322570e-017,4.225415568767858e-016 -6.821592872806122e-017,5.007884702650313e-016 2.079799014303040e-026,5.692423682552213e-022 8.195173598540712e-026,5.529394793814605e-021 -3.288524416057601e-011,7.537025861329545e-010 -9.538647336867808e-012,-5.373707528669498e-013 9.169661783444007e-012,-3.270087588684846e-012 -1.045077841728500e-029,-2.206450668583851e-030 3.694419644621968e-022,4.528817488798878e-021 -2.627112737105851e-009,-1.884531915744257e-008 7 1.380384264602886e+001,0.000000000000000e+000 -1.369250519861741e-001,-8.654927795762002e-001 -1.996118452333271e-004,3.277562124621355e-005 -1.369251628980711e-001,-8.654934786557439e-001 -1.375475863387302e-001,-8.588473156744649e-001 5.076457278017067e-001,-8.117866256851111e-002 1.000000000000000e+000,0.000000000000000e+000 -5.477553215710231e-003,-1.232735665860126e-001 -2.842602370154824e-005,1.434249336379527e-006 -5.477556665754278e-003,-1.232736431864674e-001 -5.482479489756405e-003,-1.231873551806423e-001 5.920351663688184e-001,-2.619659345673055e-002 -3.652534049005617e-005,-3.818467818314093e-003 -8.807585173144581e-007,1.372146354828181e-008 -3.652536765674893e-005,-3.818470512396734e-003 -3.674622863859146e-005,-3.813612152550687e-003 3.383133960921202e-002,-3.177007049987860e-004 -5.002540887658023e-006,-1.825935204730801e-003 2.105272370075191e-001,-5.766216819798047e-004 -2.271696467029806e-010,1.929321706838774e-009 -6.787812270000766e-009,-4.682943814226948e-004 4.499440804116388e-003,-6.215845927726788e-008 -2.122356127131303e-010,1.581443508966671e-010 1.449431109387921e-001,9.877715166056093e-001 2.276159235638654e-004,-3.479851835252729e-005 1.449431124789971e-001,9.877715240336423e-001 1.449407478664251e-001,9.877553835420946e-001 -5.002538455074382e-006,-1.825935205178116e-003 -5.002538455956865e-006,-1.825935205177953e-003 -6.787809615785773e-009,-4.682943813857539e-004 -6.787812270000766e-009,-4.682943814226947e-004 -5.404849978309841e-015,-3.902459740062826e-010 4.061076459218345e-011,-3.902465443198633e-010 -5.001177746515308e-011,-1.825946966543710e-008 1.083555870058863e-010,-1.825990352661720e-008 -2.755603981917858e-011,-2.934339564007485e-009 3.032077457914331e-010,-2.937450251595078e-009 -2.272209992761876e-009,-5.135091946914902e-008 8.412212570628818e-009,-5.182396098684150e-008 -1.056545802521978e-006,-6.606974016155224e-006 1.821118582692653e-006,-1.510892240695888e-006 4.552454227522709e-012,8.669917261403350e-012 4.652369289030469e-012,3.582273372756547e-011 5.287243044049138e-012,7.557627268396319e-011 1.142019082664054e-010,2.463051133245795e-009 2.755504045245881e-009,1.717625034312225e-008 2.894262638857224e-009,1.975580364120894e-008 -5.479647214406364e-015,-3.902454496392047e-010 -5.624296944609512e-005,-3.511777360297620e-012 5.624301005145486e-005,-7.769807409658485e-010 -5.002313718011320e-011,-1.825937134052508e-008 -1.052630350656641e-005,-7.688289093064063e-009 1.052636185037595e-005,-2.883108409899024e-008 -2.758882317021308e-011,-2.933558364626334e-009 -6.038554127442425e-007,-1.985629406242413e-010 6.041310644502146e-007,-5.673226874978322e-009 -2.272522277522857e-009,-5.132866226249110e-008 -9.487554270492596e-007,-6.092231036448964e-008 9.548954296271265e-007,-4.225257009150088e-008 -1.056522880719206e-006,-6.606769933043932e-006 -2.461771360991467e-005,-4.058933128425555e-006 2.538228639008533e-005,-4.058933128425555e-006 -9.293959740236971e-005,-4.127745802601094e-006 4.092412776863574e-011,2.007775872918159e-010 2.292180277173996e-011,2.040831112936991e-010 1.419075738685556e-029,-3.144687302144645e-029 3.184257617417022e-022,-1.429988483951047e-021 -7.618401979282145e-007,8.134838424082989e-006 2.255853754470906e-012,2.209032200553174e-011 -3.122847609765603e-013,2.225720665792787e-011 -3.181861963043072e-031,5.743363835405786e-031 -2.475079489123513e-023,-4.590593905727881e-022 -6.025488384839242e-009,1.056156743826055e-007 4.684854271120689e-014,7.786474189794546e-013 -3.278335103418814e-014,7.811993811507598e-013 1.491902165233123e-033,-3.796463071799880e-031 -1.666421330625074e-025,-1.611002905400212e-023 -2.703316795771595e-010,5.946584888906135e-009 1.136957723358781e-014,-9.466989701293340e-014 -1.135971494268558e-014,9.832491160263363e-014 1.235558065324159e-022,-9.246731853028152e-021 1.328419843426742e-022,1.054798712133763e-019 -5.368008053563764e-011,3.655509760116427e-008 3.524461677557533e-017,4.424678259517280e-016 -7.479725638681428e-017,5.243671115882083e-016 -8.842450968006972e-026,4.066129735601179e-022 8.171820748728141e-026,5.475184030278008e-021 -3.605283071744636e-011,7.891619112374249e-010 -1.047175507161560e-011,-4.269715989859084e-013 1.006461878429466e-011,-3.566758832040358e-012 -1.564074415068525e-029,4.830132693833876e-029 2.897618633508854e-022,9.339204350053965e-022 -2.894262638865799e-009,-1.975580364129020e-008 8 1.445439770745928e+001,0.000000000000000e+000 -1.509594569637736e-001,-9.075803876869122e-001 -2.191839615907316e-004,3.770718010240455e-005 -1.509595792428373e-001,-9.075811207588876e-001 -1.516384889919946e-001,-9.005841492030071e-001 5.083399134213953e-001,-8.546427962320369e-002 1.000000000000000e+000,0.000000000000000e+000 -6.010257594333114e-003,-1.291165322540323e-001 -3.117656170678232e-005,1.630144380309363e-006 -6.010261379894622e-003,-1.291166124853520e-001 -6.015658666494088e-003,-1.290261953094524e-001 5.921854465498828e-001,-2.745048994993467e-002 -4.005315881917516e-005,-3.998606143735666e-003 -9.657759813106658e-007,1.520791949041793e-008 -4.005318860979864e-005,-3.998608964922240e-003 -4.029536129148779e-005,-3.993521209921644e-003 3.383277909334265e-002,-3.327054828432723e-004 -5.485185756226747e-006,-1.911989790824996e-003 2.105273258835895e-001,-6.037979716634411e-004 -2.491375329682790e-010,2.002971171514178e-009 -7.442689497535298e-009,-4.903644519139575e-004 4.499441116109064e-003,-6.508790661004970e-008 -2.327117394224468e-010,1.656000198374668e-010 1.597542153425748e-001,1.035588045519756e+000 2.498805576825522e-004,-4.001419600784750e-005 1.597542170386588e-001,1.035588053303238e+000 1.597516107803914e-001,1.035571131417147e+000 -5.485183088950557e-006,-1.911989791294066e-003 -5.485183089918179e-006,-1.911989791293895e-003 -7.442686587245008e-009,-4.903644518751952e-004 -7.442689497535296e-009,-4.903644519139573e-004 -5.926301240233052e-015,-4.086377303386112e-010 4.452882119397672e-011,-4.086383851463347e-010 -5.483690798144587e-011,-1.912002003263814e-008 1.188095353148267e-010,-1.912051817271313e-008 -3.021757977701448e-011,-3.072769181862893e-009 3.324740370920161e-010,-3.076341081401159e-009 -2.493192194018445e-009,-5.378491194257697e-008 9.225070953871864e-009,-5.432842056841854e-008 -1.164789196637767e-006,-6.928074593708168e-006 1.998780538777294e-006,-1.618353368612202e-006 4.997760007440994e-012,9.007005118122200e-012 5.107314868775579e-012,3.743951189634298e-011 5.803518379480800e-012,7.907014027827594e-011 1.253107844835328e-010,2.579723622268891e-009 3.037767390993543e-009,1.801088270013998e-008 3.190034604454176e-009,2.071222291226310e-008 -6.008314798427376e-015,-4.086371812616478e-010 -5.624296942846841e-005,-3.677282859324842e-012 5.624301395136330e-005,-8.135988326256212e-010 -5.484936618693779e-011,-1.911991793796168e-008 -1.052630232155214e-005,-8.050639622179215e-009 1.052636629417947e-005,-3.018989858317205e-008 -3.025352716167471e-011,-3.071951090647027e-009 -6.038545130666610e-007,-2.079409267770452e-010 6.041567695239759e-007,-5.941169336487006e-009 -2.493534210328044e-009,-5.376159393909697e-008 -9.484059382560865e-007,-6.383834872077829e-008 9.551378170159399e-007,-4.427498379021720e-008 -1.164763884849260e-006,-6.927860433716227e-006 -2.458300432893024e-005,-4.273213981160185e-006 2.541699567106976e-005,-4.273213981160185e-006 -9.290453653027354e-005,-4.345314587712778e-006 4.507903065591279e-011,2.103918030446562e-010 2.531178850610598e-011,2.141599919416102e-010 1.083484853288510e-029,-7.688437523440231e-029 -2.812026341768160e-022,-9.397288746485240e-022 -8.309788865370305e-007,8.564224685028681e-006 2.474616314745383e-012,2.313164507081134e-011 -3.420163095809825e-013,2.331800347999229e-011 -2.155491765961580e-031,1.909162316808915e-030 -2.533079067230258e-023,-5.243614225247283e-022 -6.606225959060131e-009,1.106697381297824e-007 5.137114959109102e-014,8.153429834907060e-013 -3.594738466030922e-014,8.180912158656533e-013 -5.937833389026162e-034,5.941900129282267e-031 -1.692958611476709e-025,-2.391775777532174e-023 -2.964169915508561e-010,6.227362312326485e-009 1.246901923899395e-014,-9.826741529441782e-014 -1.245820542601770e-014,1.020946760854450e-013 4.919252517316114e-023,2.365357259246086e-020 2.578090755576974e-022,7.986055600902324e-020 -5.885285425922322e-011,3.827787562264275e-008 3.864495721741648e-017,4.633240237490659e-016 -8.201358576381057e-017,5.490769944765632e-016 2.532656177015073e-026,4.337195002024540e-022 8.146213219301837e-026,1.083814551777404e-022 -3.952505287173857e-011,8.262825714939031e-010 -1.149733799140695e-011,-2.896953270195832e-013 1.104783572143331e-011,-3.900067438494987e-012 1.046599909429764e-029,-1.104818439467798e-028 1.887415222750840e-022,1.249467220474502e-021 -3.190034604457356e-009,-2.071222291226502e-008 9 1.513561248436209e+001,0.000000000000000e+000 -1.665198502508749e-001,-9.518261150386335e-001 -2.407033758376275e-004,4.341641766583892e-005 -1.665199851328821e-001,-9.518268838456092e-001 -1.672600336890890e-001,-9.444567765591638e-001 5.090913490557240e-001,-9.002275729320226e-002 1.000000000000000e+000,0.000000000000000e+000 -6.595218436110044e-003,-1.352397902974933e-001 -3.419409271286459e-005,1.854497697345924e-006 -6.595222590100683e-003,-1.352398743338726e-001 -6.601140013463454e-003,-1.351451240582148e-001 5.923501987096839e-001,-2.876635807141006e-002 -4.392212810529322e-005,-4.187260731972394e-003 -1.059004573155686e-006,1.688904624066160e-008 -4.392216077359411e-005,-4.187263686273246e-003 -4.418770203943813e-005,-4.181935662322855e-003 3.383435756983540e-002,-3.484221610237460e-004 -6.014397100506214e-006,-2.002100139637320e-003 2.105274233339828e-001,-6.322551807301095e-004 -2.732351751072038e-010,2.077524019315463e-009 -8.160753935709700e-009,-5.134746580815384e-004 4.499441458202282e-003,-6.815541593460446e-008 -2.551633757844487e-010,1.734563663310825e-010 1.761667654063811e-001,1.085827076313944e+000 2.743502288069958e-004,-4.604901828017446e-005 1.761667672748921e-001,1.085827084470208e+000 1.761638932397641e-001,1.085809341593155e+000 -6.014394175894503e-006,-2.002100140129270e-003 -6.014394176955482e-006,-2.002100140129091e-003 -8.160750744623154e-009,-5.134746580399052e-004 -8.160753935709697e-009,-5.134746580815381e-004 -6.498066051541240e-015,-4.278962679164489e-010 4.882488548791987e-011,-4.278970197369884e-010 -6.012757546483679e-011,-2.002112808529074e-008 1.302720610424588e-010,-2.002170002761619e-008 -3.313650417526441e-011,-3.217743310815767e-009 3.645665895261039e-010,-3.221844843819539e-009 -2.735852929571609e-009,-5.633567162324471e-008 1.011660553710384e-008,-5.696018724765013e-008 -1.284792049264060e-006,-7.265610877399270e-006 2.193926954836449e-006,-1.736664851920957e-006 5.487167791218631e-012,9.348512796027277e-012 5.607292518150041e-012,3.912102242714290e-011 6.370758616928678e-012,8.271773288085361e-011 1.375098048454090e-010,2.701981500798692e-009 3.350687678357921e-009,1.888821455081767e-008 3.517790860219142e-009,2.171710781222870e-008 -6.587992133271043e-015,-4.278956929482539e-010 -5.624296940914112e-005,-3.850588470881608e-012 5.624301822752853e-005,-8.519426991825557e-010 -6.014123865331108e-011,-2.002102217161339e-008 -1.052630102221356e-005,-8.430069076401459e-009 1.052637116669914e-005,-3.161275903650547e-008 -3.317592112790957e-011,-3.216886577976228e-009 -6.038535265188529e-007,-2.177638506398413e-010 6.041849566042036e-007,-6.221824303995465e-009 -2.736227466979412e-009,-5.631124106496339e-008 -9.480227936984096e-007,-6.689850714281409e-008 9.554035463059417e-007,-4.639735172808074e-008 -1.284764079332703e-006,-7.265386099821766e-006 -2.454543254721380e-005,-4.501137864660113e-006 2.545456745278620e-005,-4.501137864660113e-006 -9.286657929878574e-005,-4.576688055318440e-006 4.967761651456139e-011,2.204755310978903e-010 2.796993135699263e-011,2.247775775059361e-010 -5.948980931093428e-030,-8.689699612577989e-030 -9.513869514066932e-023,-1.031494223853626e-021 -9.058121878253696e-007,9.020939166293573e-006 2.714712350908431e-012,2.422206867501793e-011 -3.745374077995200e-013,2.443055828133151e-011 5.773531722425289e-031,1.678178316341262e-029 -3.139408918580163e-023,-5.132138713008691e-022 -7.242868265277403e-009,1.159734098134442e-007 5.633064473213591e-014,8.537678087710229e-013 -3.941695264515359e-014,8.567328395396611e-013 -5.251738478753472e-033,7.202526602177546e-032 -8.959566617138164e-026,-5.735940170494054e-024 -3.250199097812573e-010,6.521449154677336e-009 1.367504551030927e-014,-1.019060538667868e-013 -1.366318844039378e-014,1.059136768398936e-013 2.341333698410776e-022,3.704868083881835e-020 7.175714446364236e-023,6.181164347012715e-020 -6.452352986958160e-011,4.008184322200439e-008 4.237336741617238e-017,4.851555207583969e-016 -8.992612520173240e-017,5.749682141915475e-016 -5.290745910314745e-027,4.933161417572385e-021 -1.536725317515519e-027,1.083785843188079e-022 -4.333112970456680e-011,8.651412255309553e-010 -1.262476227965861e-011,-1.206437941171726e-013 1.212815808945501e-011,-4.275507491675546e-012 -2.947711011523117e-030,-1.121183547687743e-028 9.279351895453037e-023,2.923395225255915e-021 -3.517790860234198e-009,-2.171710781222045e-008 10 1.584893192461115e+001,0.000000000000000e+000 -1.837899024582962e-001,-9.983523343530980e-001 -2.643683092568307e-004,5.003246591813444e-005 -1.837900513277248e-001,-9.983531407363718e-001 -1.845961533352600e-001,-9.905856023695856e-001 5.099032798348262e-001,-9.487816236974343e-002 1.000000000000000e+000,0.000000000000000e+000 -7.237653155965094e-003,-1.416572780680414e-001 -3.750470412406448e-005,2.111555655788970e-006 -7.237657714582230e-003,-1.416573660923395e-001 -7.244145333856611e-003,-1.415580677782327e-001 5.925308133102417e-001,-3.014754982051237e-002 -4.816532260364678e-005,-4.384836887456977e-003 -1.161238267958320e-006,1.879253236387724e-008 -4.816535842797316e-005,-4.384839981168692e-003 -4.845652378938569e-005,-4.379260292883340e-003 3.383608847139245e-002,-3.648849950194362e-004 -6.594667927962899e-006,-2.096457413371116e-003 2.105275301858776e-001,-6.620536978382377e-004 -2.996701350365800e-010,2.152643785357752e-009 -8.948087514929234e-009,-5.376740209818000e-004 4.499441833300102e-003,-7.136749411832182e-008 -2.797810999236993e-010,1.816080111818418e-010 1.943717797436003e-001,1.138622454419072e+000 3.012475634166288e-004,-5.303824780080067e-005 1.943717818029986e-001,1.138622462966291e+000 1.943686107422896e-001,1.138603857312649e+000 -6.594664721188096e-006,-2.096457413887140e-003 -6.594664722351436e-006,-2.096457413886952e-003 -8.948084015978854e-009,-5.376740209386137e-004 -8.948087514929232e-009,-5.376740209817999e-004 -7.124986675800583e-015,-4.480624375441338e-010 5.353542712586016e-011,-4.480633007494833e-010 -6.592869753672421e-011,-2.096470542542550e-008 1.428404697852426e-010,-2.096536210432956e-008 -3.633776730768568e-011,-3.369573427919410e-009 3.997586225075628e-010,-3.374283176457671e-009 -3.002356831764029e-009,-5.900900562961694e-008 1.109445726594899e-008,-5.972665570398390e-008 -1.417967738024882e-006,-7.620510084540022e-006 2.408295721507499e-006,-1.867306152434323e-006 6.025130230082875e-012,9.692715463619987e-012 6.156844626891835e-012,4.086838331140630e-011 6.994081744120290e-012,8.652444090165080e-011 1.509078579454648e-010,2.830100590608637e-009 3.697948017973532e-009,1.981065128243570e-008 3.881347263577459e-009,2.277313791120900e-008 -7.223588679171279e-015,-4.480618354915093e-010 -5.624296938794915e-005,-4.032061814594453e-012 5.624302291625128e-005,-8.920936764790228e-010 -6.594368257827863e-011,-2.096459566014901e-008 -1.052629959752163e-005,-8.827382637843170e-009 1.052637650929388e-005,-3.310268489191189e-008 -3.638098886263644e-011,-3.368676219550542e-009 -6.038524447053798e-007,-2.280531218871477e-010 6.042158655605796e-007,-6.515803482489933e-009 -3.002766929055228e-009,-5.898340805578686e-008 -9.476027597436239e-007,-7.011058097793573e-008 9.556948601778092e-007,-4.862508035566510e-008 -1.417936807892332e-006,-7.620274114119259e-006 -2.450483600825869e-005,-4.743908118487172e-006 2.549516399174131e-005,-4.743908118487172e-006 -9.282556019817849e-005,-4.823078167286652e-006 5.477167044786623e-011,2.310515908415840e-010 3.093013254977792e-011,2.359704207629439e-010 7.947109174270880e-031,6.173433621637177e-029 -2.044170088771670e-022,4.465741332020658e-022 -9.866609655971353e-007,9.507390917836351e-006 2.978246360968524e-012,2.536390765458541e-011 -4.100972912087853e-013,2.559757383007980e-011 -2.060714947838961e-031,8.706900574393797e-030 -2.691285437316694e-023,-5.227005989510866e-022 -7.940782478949931e-009,1.215401643503456e-007 6.176929072630103e-014,8.940033688988781e-013 -4.322155495034123e-014,8.972083688682718e-013 -3.557627775291899e-033,-1.164348783585531e-031 -1.538247210744764e-025,-2.356697341887530e-023 -3.563835519007968e-010,6.829483836910919e-009 1.499804252040739e-014,-1.055687920102171e-013 -1.498504154451717e-014,1.097652762533440e-013 9.482817784400325e-023,6.036489731748600e-020 2.385505173965569e-022,4.415788361917560e-020 -7.073994257951050e-011,4.197082614821417e-008 4.646147250358458e-017,5.080289794752642e-016 -9.860205915482991e-017,6.020526450264197e-016 6.468931307458499e-026,2.547918204257005e-021 -1.844589153295486e-027,1.083770310907756e-022 -4.750307330709670e-011,9.058178517917844e-010 -1.386436896971645e-011,8.596441365377939e-014 1.331533105744115e-011,-4.699501512031619e-012 8.370360867572587e-030,9.359230500297875e-029 8.168334837798164e-022,1.140035425960285e-021 -3.881347263597534e-009,-2.277313791131307e-008 11 1.659586907437562e+001,0.000000000000000e+000 -2.029788929947764e-001,-1.047288654596989e+000 -2.903976197373202e-004,5.770743727156382e-005 -2.029790574055305e-001,-1.047289500502411e+000 -2.038563685387655e-001,-1.039098024633423e+000 5.107786975070013e-001,-1.000575330838706e-001 1.000000000000000e+000,0.000000000000000e+000 -7.943318572657827e-003,-1.483836971059259e-001 -4.113706647234429e-005,2.406210009357172e-006 -7.943323575724151e-003,-1.483837893101418e-001 -7.950436253363171e-003,-1.482797162797176e-001 5.927288136828598e-001,-3.159764040359981e-002 -5.281904018772541e-005,-4.591759601498075e-003 -1.273348002628617e-006,2.095012768497711e-008 -5.281907947342476e-005,-4.591762841217414e-003 -5.313834227875533e-005,-4.585919545735303e-003 3.383798653132691e-002,-3.821299594737891e-004 -7.230923727027725e-006,-2.195261120349846e-003 2.105276473449664e-001,-6.932567607493579e-004 -3.282966673583846e-010,2.338895288444331e-009 -9.811383822727458e-009,-5.630138717737788e-004 4.499442244586761e-003,-7.473095471854589e-008 -3.067739048890641e-010,1.901599964190801e-010 2.145865952968614e-001,1.194115614109562e+000 3.308180694699508e-004,-6.114103524289129e-005 2.145865975677718e-001,1.194115623066778e+000 2.145830966855451e-001,1.194096110537320e+000 -7.230920210867938e-006,-2.195261120891210e-003 -7.230920212143514e-006,-2.195261120891013e-003 -9.811379986205799e-009,-5.630138717286459e-004 -9.811383822727453e-009,-5.630138717737786e-004 -7.812393297755839e-015,-4.691790153632919e-010 5.870043428359199e-011,-4.691800064557376e-010 -7.228953765940529e-011,-2.195275377218034e-008 1.566213855304407e-010,-2.195350774194566e-008 -3.984875580482412e-011,-3.528586141411041e-009 4.383498258645818e-010,-3.533994359577741e-009 -3.295092355634979e-009,-6.181103962432291e-008 1.216701421235984e-008,-6.263578117004993e-008 -1.565926315350907e-006,-7.993753407130167e-006 2.643796066051040e-006,-2.011999901256892e-006 6.616557617075471e-012,1.003745673061775e-011 6.760979863939571e-012,4.268240170213908e-011 7.679128234974124e-012,9.049557020984825e-011 1.656250864566624e-010,2.964371504889494e-009 4.083743732164709e-009,2.078073767196361e-008 4.285045572321503e-009,2.388314503145126e-008 -7.920508264865329e-015,-4.691783849448128e-010 -5.624296936471261e-005,-4.222087837205982e-012 5.624302805733452e-005,-9.341369339818235e-010 -7.230595430360367e-011,-2.195263459245134e-008 -1.052629803540045e-005,-9.243423476658104e-009 1.052638236724832e-005,-3.466283803746790e-008 -3.989614944317439e-011,-3.527646535279222e-009 -6.038512584179207e-007,-2.388312246711182e-010 6.042497594879805e-007,-6.823749276317664e-009 -3.295541327871177e-009,-6.178421770405289e-008 -9.471422937607911e-007,-7.348288465953444e-008 9.560142156175159e-007,-5.096393613483840e-008 -1.565892083992525e-006,-7.993505631313038e-006 -2.446106512464993e-005,-5.002876654193529e-006 2.553893487535007e-005,-5.002876654193529e-006 -9.278132607694171e-005,-5.085846015642229e-006 6.041988469900617e-011,2.421434646948885e-010 3.423135838191762e-011,2.477758171265828e-010 -3.541568500609383e-030,-2.592561705687712e-029 -7.505371589211612e-022,-3.478294475785481e-021 -1.073820238326334e-006,1.002628627024212e-005 3.267535320893720e-012,2.655958531384706e-011 -4.489722361950773e-013,2.682192027001554e-011 1.029558513919114e-030,-1.678663409946004e-029 -3.910367098873727e-023,-5.263453635251484e-022 -8.705847798032513e-009,1.273843703790148e-007 6.773345037284605e-014,9.361349738242494e-013 -4.739363834993956e-014,9.396061318183362e-013 9.427464693594746e-036,1.198210544053058e-031 -1.588450318753029e-025,-8.509297434212494e-024 -3.907745481864333e-010,7.152136465066883e-009 1.643089967926537e-014,-1.147854136378856e-013 -1.641664415539066e-014,1.191797286897179e-013 2.359051046448915e-023,1.011754534182931e-019 3.717334745395612e-022,1.881763346246021e-020 -7.755445136280607e-011,4.394882473629647e-008 5.094399494791478e-017,5.319784826965781e-016 -1.081149985414947e-016,6.304185028596840e-016 -4.705447306281656e-026,3.306861795973648e-021 1.649083233060163e-025,1.083750845141951e-022 -5.207595615825128e-011,9.483958482034618e-010 -1.522757535723401e-011,3.369639581392206e-013 1.462008798430913e-011,-5.179574044469994e-012 7.026629765260614e-030,-3.974716915949533e-029 2.574508779795017e-022,9.176833804129921e-022 -4.285045572332137e-009,-2.388314503163577e-008 12 1.737800828749377e+001,0.000000000000000e+000 -2.243259334652381e-001,-1.098771966972815e+000 -3.190328779406859e-004,6.662089755007801e-005 -2.243261151647899e-001,-1.098772854456642e+000 -2.252799965982819e-001,-1.090128443545908e+000 5.117201648421456e-001,-1.055913340320542e-001 1.000000000000000e+000,0.000000000000000e+000 -8.718570338188961e-003,-1.554345649314207e-001 -4.512269596675160e-005,2.744098167054250e-006 -8.718575829529538e-003,-1.554346615172007e-001 -8.726373688915804e-003,-1.553255745564301e-001 5.929458685517042e-001,-3.312044876195587e-002 -5.792311938282812e-005,-4.808474567088711e-003 -1.396289173773352e-006,2.339824638662724e-008 -5.792316246488119e-005,-4.808477959727268e-003 -5.827323497608932e-005,-4.802358539423020e-003 3.384006790998433e-002,-4.001948448248157e-004 -7.928568481296330e-006,-2.298722172876143e-003 2.105277758081451e-001,-7.259305910842131e-004 -3.600766910512451e-010,2.419082278622459e-009 -1.075796912713573e-008,-5.895479610734575e-004 4.499442695553704e-003,-7.825293244068002e-008 -3.363709324123528e-010,1.991108113094350e-010 2.370591545504610e-001,1.252455605120418e+000 3.633324025101206e-004,-7.054502484797066e-005 2.370591570559631e-001,1.252455614507557e+000 2.370552895093905e-001,1.252435148564558e+000 -7.928564625901139e-006,-2.298722173444194e-003 -7.928564627299782e-006,-2.298722173443988e-003 -1.075796492047589e-008,-5.895479610263611e-004 -1.075796912713572e-008,-5.895479610734572e-004 -8.566119476519848e-015,-4.912907936057325e-010 6.436375317219269e-011,-4.912919315321850e-010 -7.926407827342562e-011,-2.298736921344982e-008 1.717319274657981e-010,-2.298823488855035e-008 -4.369952833247390e-011,-3.695123970949044e-009 4.806689360786021e-010,-3.701334321795321e-009 -3.616696464772151e-009,-6.474823942075812e-008 1.334348558438671e-008,-6.569613867396682e-008 -1.730506870288788e-006,-8.386376114341161e-006 2.902523354503343e-006,-2.172757288864259e-006 7.266863209584955e-012,1.038005872450974e-011 7.425219419828339e-012,4.456354296056346e-011 8.432112749724200e-012,9.463627029150098e-011 1.817941218285185e-010,3.105100590631643e-009 4.512866580015842e-009,2.180115797042120e-008 4.733839142137608e-009,2.505011387178812e-008 -8.684665162269479e-015,-4.912901334868907e-010 -5.624296933923425e-005,-4.421069629416950e-012 5.624303369442131e-005,-9.781616555085003e-010 -7.928208404605280e-011,-2.298724591958422e-008 -1.052629632255807e-005,-9.679074547789509e-009 1.052638879040726e-005,-3.629652955421066e-008 -4.375149677101229e-011,-3.694139952053390e-009 -6.038499575562599e-007,-2.501217780155098e-010 6.042869269640060e-007,-7.146336514728853e-009 -3.617187913728772e-009,-6.472013277274881e-008 -9.466375149960368e-007,-7.702429944640900e-008 9.563643041156519e-007,-5.342007864831592e-008 -1.730468951694933e-006,-8.386115880334295e-006 -2.441399175789272e-005,-5.279566701602709e-006 2.558600824210728e-005,-5.279566701602709e-006 -9.273374489223734e-005,-5.366524618444553e-006 6.668893841164938e-011,2.537751087807185e-010 3.791859385537293e-011,2.602340068671208e-010 1.701380957346267e-029,3.729178151317005e-029 -2.560770230705178e-022,-6.863531132658747e-022 -1.167541536228378e-006,1.058067432716885e-005 3.585131108812984e-012,2.781163824742049e-011 -4.914489566234843e-013,2.810664800930851e-011 -8.995447009780539e-032,9.804259345519187e-030 -5.475265186440478e-023,-8.932452016321652e-022 -9.544503548828363e-009,1.335213720373445e-007 7.427398675435325e-014,9.802519494750619e-013 -5.196843853858113e-014,9.840188956536906e-013 4.830635259986649e-033,4.399139965861948e-031 1.626946730927815e-026,-1.191010835105648e-023 -4.284853265578663e-010,7.490110544139817e-009 1.802140340720028e-014,-1.186924688377601e-013 -1.800577258365568e-014,1.232938655027919e-013 -1.902329213046428e-023,1.446107014997089e-019 4.142191876692702e-022,-2.276129373659372e-020 -8.502462399807524e-011,4.602004435148797e-008 5.585898298355604e-017,5.570582323242830e-016 -1.185457228511458e-016,6.601188537711279e-016 -5.112719949988572e-026,5.041587317727113e-021 1.628838238997747e-025,1.095039484598753e-020 -5.708820529744690e-011,9.929621236895864e-010 -1.672698496192071e-011,6.404486946625837e-013 1.605424491407890e-011,-5.724561241275344e-012 -1.193984745305355e-029,3.606431714650469e-030 3.717095419788110e-022,8.852678362617869e-022 -4.733839142137425e-009,-2.505011387176918e-008 13 1.819700858609985e+001,0.000000000000000e+000 -2.481049985280768e-001,-1.152946274764086e+000 -3.505405736199375e-004,7.698530299628973e-005 -2.481051994856786e-001,-1.152947205998691e+000 -2.491411629953336e-001,-1.143818047849621e+000 5.127295795522078e-001,-1.115139885819589e-001 1.000000000000000e+000,0.000000000000000e+000 -9.570429791512449e-003,-1.628262715675886e-001 -4.949624508431424e-005,3.131719609471693e-006 -9.570435819373833e-003,-1.628263727467698e-001 -9.578984745233108e-003,-1.627120192334220e-001 5.931838056934934e-001,-3.472006064418469e-002 -6.352129030279677e-005,-5.035449254460160e-003 -1.531109874683961e-006,2.617866095493848e-008 -6.352133754871244e-005,-5.035452807259777e-003 -6.390519406787091e-005,-5.029044140968133e-003 3.384235033355141e-002,-4.191193608375305e-004 -8.693524439708418e-006,-2.407059429120494e-003 2.105279166646344e-001,-7.601445354340287e-004 -3.949443236291927e-010,2.498603770159371e-009 -1.179587557585371e-008,-6.173325728481157e-004 4.499443190029238e-003,-8.194089827870846e-008 -3.688234303765422e-010,2.084535734109465e-010 2.620731037874153e-001,1.313798886955884e+000 3.990887709954243e-004,-8.147194221067665e-005 2.620731065533802e-001,1.313798896793765e+000 2.620688308698015e-001,1.313777428339370e+000 -8.693520212348475e-006,-2.407059429716662e-003 -8.693520213882059e-006,-2.407059429716446e-003 -1.179587096335635e-008,-6.173325727995368e-004 -1.179587557585371e-008,-6.173325728481156e-004 -9.392560683034659e-015,-5.144446756255545e-010 7.057346024673184e-011,-5.144459821395839e-010 -8.691154566966480e-011,-2.407074665682788e-008 1.883003058452568e-010,-2.407174058732727e-008 -4.792307944011194e-011,-3.869546174619138e-009 5.270765656136433e-010,-3.876677726574506e-009 -3.970082344322332e-009,-6.782743456924012e-008 1.463398323767609e-008,-6.891699032346022e-008 -1.913816062322960e-006,-8.799465951141677e-006 3.186774017543731e-006,-2.351932907054210e-006 7.982011337420004e-012,1.071721261274878e-011 8.155645908702655e-012,4.651174973819634e-011 9.259879301265905e-012,9.895144397514913e-011 1.995614703245707e-010,3.252610945824226e-009 4.990805035326580e-009,2.287473151814821e-008 5.233394841976121e-009,2.627717800563162e-008 -9.522543454564308e-015,-5.144439844180742e-010 -5.624296931129778e-005,-4.629429281282964e-012 5.624303987536547e-005,-1.024261228483856e-009 -8.693129495384789e-011,-2.407061927724264e-008 -1.052629444447154e-005,-1.013526047245372e-008 1.052639583323172e-005,-3.800722677170144e-008 -4.798006476398996e-011,-3.868515630483914e-009 -6.038485310415304e-007,-2.619496005234566e-0 |
Re: file format of binary .raw files
amlendushekhar
Thanks Helmut,
It was realy very helpful. With Regards Amlendu --- In LTspice@..., "Helmut Sennewald" <helmutsennewald@y...> wrote: --- In LTspice@..., "amlendushekhar"raw files to either ASCII raw files or to a more convenient formatwhich can be read easily by any math program.needs this flexibility for future improvements/enhancements of LTSPICE. |
Re: file format of binary .raw files
--- In LTspice@..., "amlendushekhar"
<amlendu.choubey@n...> wrote: Hi,files. But for the binary .raw files I don't have any clue that how thedata is stored. Could you help me in understanding the format of theHello Amlendu, there is a utility program ltsputil.exe which can convert binary raw files to either ASCII raw files or to a more convenient format which can be read easily by any math program. You can download it from this group's menu: Files -> Util -> ltsputil 2.0 By the way, I have written this utility. The binary format itself is not published, because it probably will change in the future. Mike Engelhardt, the designer of LTSPICE, needs this flexibility for future improvements/enhancements of LTSPICE. Best Regards Helmut |
Re: file format of binary .raw files
Joel Peruffo
¿ªÔÆÌåÓý?
|
file format of binary .raw files
amlendushekhar
Hi,
I am trying to import waveform data generated by switcherCAD simulation to labview. I am able to do that for the ASCII .raw files. But for the binary .raw files I don't have any clue that how the data is stored. Could you help me in understanding the format of the binary .raw files generated by SwitcherCAd. I am able to read the binary .raw files generated by Win SPICE. Thanks Amlendu Shekhar |
Re: Bad IR irlr2905 model?
--- In LTspice@..., "dave_zendzian" <dzendzian@o...>
wrote: I've downloaded several MOSFET models from IR most of which havediode. If I sim a simple test circuit with the gate grounded and a 10 OhmHello Dave, the only wrong paramter is TT=0.0001. If you correct it to TT=1e-7 then the simulation agrees with the datasheet. (TT=reverse reovery time). Best Regards Helmut From IRF: .MODEL MD D IS=2.1332e-09 RS=0.00746571 N=1.33902 BV=55 +IBV=0.00025 EG=1.2 XTI=3.0372 TT=0.0001 +CJO=1.14753e-09 VJ=1.45996 M=0.550171 FC=0.5 Corrected: .MODEL MD D IS=2.1332e-09 RS=0.00746571 N=1.33902 BV=55 +IBV=0.00025 EG=1.2 XTI=3.0372 TT=1e-7 +CJO=1.14753e-09 VJ=1.45996 M=0.550171 FC=0.5 |
to navigate to use esc to dismiss