Just got a new copy of the 33s and have this problem:I entered a program from my old 33s and see the same checksum: LN=270, however when I run the program, I get different answer from my old 33s. Any ideas?
Also, noted these improvements:
1. Spacing between numbers in display is increased (VERY GOOD)
2. Decimal larger (VERY GOOD)ECL
33s CHECKSUM issue: old/new
|
|
« Next Oldest | Next Newest »
|
▼
10-28-2005, 06:51 PM
▼
10-29-2005, 01:25 PM
Hi,
(I have one of the 1st production series). regards, Bill ▼
10-29-2005, 03:39 PM
Bill, ▼
10-29-2005, 03:51 PM
RCL wrote: "CK: 1A60(valid only on HP33s) LN = 270" Gene: Did you mean here "valid only on new 33s" or ? I'm not aware of any changes to the checksum determination with any 33s revision, but that doesn't mean it hasn't happened, of course. If this is from a 32SII to a 33S version, then all bets are off. :-) Gene
10-31-2005, 01:18 PM
does you program allow the consideration of a different width for the web versus the flanges (caps). I'm a structural engineer, I get into reinforcing steel wide flange (ibeams) from the AISC manual, and all of the shapes have webs that are thinner than the caps. ▼
10-31-2005, 03:33 PM
Brian, A nice point is that it only uses one label. My code is for any cross-sect composed of n rectangular pieces. I'll illustrate with an example of a basic I-beam, and note that I do not account for the radius at the web/flange intersection. Say you have a beam with:
Hope this helps. I've run it against some real beams and found very close to the published data. Of course, they account for radius and possible taper of web?
▼
11-01-2005, 12:33 PM
Hi ECL, No I remember! We talked about this some months back--and swapped programs. I also have written simple programs for this problem. I have written programs for this problem a number oftimes--1st on the 11c, then the 32s, then the 41cv---I run the 41cv using Hrastprogrammer's emulator on a 48gx. I "modularize" so that I run separate routine for each:
a: take rectangle width, height, above baseline b: solve for inertia and section modulus. Takes as input the maximum fiber distance from the baseline. c: a subrooutine that will add the area, self inertia about centroid, and distance to baseline, of any known shape--all you have to do is enter it's I, its A, and its distance from centroid to baseline. Routine (c) and (a) can be run in any order--and even after running (b)---in other words you can find intermediate results. I find these routines very useful for design work, especially if making some strange built-up sections. Also good for checking htat a spreadsheet soulution is working correctly before freezing the cells. Regards, Bill
10-30-2005, 02:51 PM
ECL -- Are you using preformatting ("[pre]" using Forum special formatting), or with an HTML editor? If so, please don't becuas it really impairs legibility. Preformatting is intended for code listings. Thanks, -- KS ▼
10-30-2005, 03:24 PM
I was going to ask the same question. I am curious if it is his browser rather than the "[pre]" thing ▼
10-30-2005, 05:21 PM
Sorry guys, I thought I was doing everyone a favor by that. I thought carriage returns would not be preserved unless I used the [pre]. Ok, only for code listings from now :) ECL ▼
10-30-2005, 07:40 PM
Quote: Not exactly. Two carriage returns in a row will show up as one line break without [pre], so your paragraphs will break naturally without worrying about them. You can also use [nl] to get the equivilant of an (X)HTML <br/>. But [pre] will preserve every carriage return, won't collapse consecutive white space, and will switch the font to fixed rather than proportional, just as with <pre> in HTML, so it's the right choice for listings. ▼
10-30-2005, 10:43 PM
Yes, [pre]...[/pre] is perfect for program listings, tables, and so on, but it would be better not to include the ordinary text within the preformat delimiters. That way it wraps to whatever the size of the display box turns out to be, and assuming that no preformatted lines are terribly long, we won't have to scroll right to see the whole message. Also see the advanced formatting techniques.
Regards,
Edited: 30 Oct 2005, 10:45 p.m. |