Print
Show current content as RSS feed

Calculator blog

Musings and comments about our common interest

 


631 - 640 of 649 results
Published on by

N.O.S. power supply for HP82240B

We have found some new old stock (NOS) HP F1011A power supplies, for UK plug.

It is amazing how the printer transforms itself - printing is much faster and you no longer feel sorry for your printer on long program printouts.

By the way, it seems that our old infrared printer may be used as well for other, non-HP equipment - in particular Testo analyzers




Read entire post
Published on by

Now TheCalculatorStore is visible on your smartphone

From the end of this month, you can try to access the website with your smartphone and the view will be optimised for it.

There are still some quirks to be ironed out, and verbose descriptions that do not have a place there, but you can now read this blog through your 'phone!

Read entire post
Published on by

How I have configured my HP15c for financial duties (IV)

Finally, I include date calculations. The one I use more is the HP12c's DDAYS operation. I then set to find in the web software for it. I did not find it for the 15c, but I did for the 42s, that I then adapted. Attention - it has been modified to cater for European date format: dd.mmyyyy - you will have to go to the part where it decomposes the number into the parts and then change a few lines there.

The strategy is just to convert the date format to Julian number, convert the other date, and subtract. Fortunately, the DtoJ subroutine does not consume all 4 stack registers - or we would not be able to subtract them!

Once entered, you will still have 16 registers left. (we assume that we have set 11 registers for program use: from register 0 to .1 (so that you can enter the investment + 10 years + the number of years for the IRR program seen in past article). These 16 free registers allow you to invert a 4x4 matrix, or to solve 2 equation systems with the same coefficient matrix (a typical thing when you're solving structure problems - you apply the same set of linear equations to different conditions)

Here it is (and I have finished with it. The only possible addition would be the DATE+ function. The D->J is a part of the DDAYS program; We would just need to create the J->D - at the expense of losing necessary registers!)


 

 

Read entire post
More about: HP 15c, hp15c, hp15c+
Published on by

Selling in Pounds!

We have finally found a way to distribute our products in UK. We will have local distribution and therefore a flat transport rate of GBP 7,5. The pricing will not be exactly exchange rate times the € price; as we will be sourcing locally, some prices will be better than others (it is quite difficult to match our price for HP50g in mainland Europe!), but in the comparisons we have made, our prices are very competitive.

The feedback that we received from our British customers stressed that they felt "isolated" from the rest - no pun intended! No more.

We will sell in pounds only the calculators sourced in UK - all other products (for example, calculator flashing - and the associated calculator) still need to be sourced in mainland Europe and will continue to sell en Euros - basically it is not a question of currency but of price level.
Read entire post
Published on by

How I have configured my HP15c for financial duties (III)

The NPV and IRR are other favourites. There is another program in the Advanced Functions Handbook, that allows for up to 24 groups of cashflows (assuming you do not have any other program in memory!) and using 68 steps. However, as I said before, in my company we limit Capital Expenditure Proposal analysis to 10 years, so that I set to make a shorter program for 10 cashflows.

Register 0 is for the initial investment. Register ,1 contains the number of years to calculate (good to limit the loop and increase speed). Registers 1 to ,0 contain the flows of each year.

The system takes X as discount rate (in %). It can be then used to find the IRR through the Solve feature, entering a bracket of guesses in X and Y.

screenshot.144.jpg
screenshot.145.jpg

Now we come to a weighted average calculator. In many occasions I need to get the average margin of all the brands we sell.

But the weighting in HP12c works inverse as I would do. It calculates the average of Y weighted by X, instead of the average of x weighted by Y.

The calculators is mine and I do as I want with it ;-), so I will put it here, together with a cash discount calculation/comparison. We assign the weighted average to the same key, i.e. GSB 0:




One of the typical decisions in my job is to decide on cash discounts - both when buying and selling. I want to compare the cash discount % with a yearly rate - and then decide. I put the standard payment days in Y, and the discount % in X, and get the equivalent yearly interest that I am getting (if I'm buying) or I'm paying (if I'm selling)

Here it is:

screenshot.146.jpg

 

Read entire post
Published on by

How I have configured my HP15c for financial duties (II)

Here you have a small function missing in the 15c: the %T !!

I have placed it close to its siblings: in the GSB 7 key:

screenshot.136.jpg

I loved its simplicity since I saw it in an HP41cv manual:

screenshot.143.jpg



Read entire post
Published on by

How I have configured my HP 15c for financial duties

As I have mentioned before, most of my duties involve financial calculations in an industrial environment.

The calculator I prefer among all, because of its simplicity (no menus) and its portability (fits in my jacket and occupies very limited space in a crowded desk, is the HP15.

Here is a dump of the program memory:

Let's start with an oldie, in the version that appears in the Advanced Functions handbook - no change needed. It uses the A to E keys in User mode, following the standard n -i- PV- PMT-FV. One key for entering the data and placing the program pointer in the right place; then R/S to execute:

screenshot.137.jpg
screenshot.138.jpg
screenshot.139.jpg
screenshot.140.jpg
screenshot.142.jpg



I will continue in the next few blogs with the rest of the memory. For the sake of engineer futility, I have left space enough for a 3x3 + 3 equation system if some time was needed - and it has not been the case so far !!

Time Value of Money
1 LBL A
2 STO 1
3 R/S
4 GSB .1
5 LST X
6 R/S
7 RCL*0
8 RCL 5
9 X<>Y
10 -
11 LST X
12 RCL+3
13 X=0?
14 GTO .0
15 /
16 CHS
17 TEST 4
18 GTO .0
19 LN
20 RCL 6
21 LN
22 /
23 STO 1
24 RTN
25 LBL B
26 STO 2
27 R/S
28 ,
29 2
30 ENTER
31 EEX
32 CHS
33 3
34 CF 1
35 SOLVE .3
36 GOTO .4
37 GOTO .0
38 LBL .4
39 EEX
40 2
41 *
42 STO 2
43 RTN
44 LBL C
45 STO 3
46 R/S
47 GSB .1
48 GSB 2
49 CHS
50 STO 3
51 RTN
52 LBL D
53 STO 4
54 R/S
55 1
56 STO 4
57 GSB .1
58 RCL 3
59 GSB 2
60 X<>Y
61 /
62 CHS
63 STO 4
64 RTN
65 LBL E
66 STO 5
67 R/S
68 GSB .1
69 RCL+3
70 RCL+7
71 CHS
72 STO 5
73 RTN
74 LBL .1
75 SF 1
76 1
77 RCL 2
78 /
79 LBL .3
80 STO 8
81 1
82 STO 0
83 +
84 TEST 4
85 GOTO .0
86 STO 6
87 F?0
88 STO 0
89 RCL 1
90 CHS
91 Y^X
92 STO 7
93 1
94 X<>Y
95 -
96 X=0?
97 GOTO .0
98 RCL*0
99 RCL 4
100 RCL/8
101 *
102 F?1
103 RTN
104 RCL+3
105 LBL 2
106 RCL 5
107 RCL*7
108 +
109 RTN
Read entire post
Published on by

New flashing service

Today I have received a USB to com adaptor. Since most of our computers are laptops and quite new, we did not have serial adapters. I have then proceeded to update a 12c+ with the latest available software. In this particular case, it did not increase speed (it was already 150 times faster, so I am not deceived), but it corrected a number of issues compared with the original firmware.

We have decided to offer firmware flashing as a service for our purchases of a calculator. It will have a 10 € charge. The rules:

  • Calculators elegible for firmware flashing are HP10bII+, HP20b, HP30b, HP12c (ARM version)
  • The customer supplies the firmware through email.
  • The calculator to be flashed will be a new, out-of-the-box (or plastic package!). The serial number and proof of purchase bits of the packaging will be included in the shipping to the customer. (It is the customer decision to register the calculator in HP's website). Sorry, we will not flash calculators not brand new!

One of the most exciting projects is the repurposing of the hp20b and hp30b financial calculators with ultra-slick scientific firmware. The project is called wp34s and is run by Marcus von Cube, Walter Bonin and Paul Dale (in no specific order!).

You can find it on http://wp34s.sourceforge.net/

There have been a number of releases (build number was 800 at the time of writing), and you can check whether you like the software by running the included .exe file and testing the features. The .exe file has the advantage of having the right labels on the keys!

I have not yet tested the flasher cable and software on a HP30b but I plan to do it shortly. I will then report on the results!

Read entire post
Published on by

If you always envied the young look of your colleague's Casios and Texas...

Please take a look to the Blue-white HP 50g

DSC_7756small.jpg

It sure doesn't look engineer-like but school-like; but then, most of my customers for this product are in college!

There have been discussions as well about label contrast and readability - despite its looks, methinks this one scores high. Take a look at this close up. Sorry for not taking it out of the sleeve - I do not intend to use one myself. But for collectors: I have available as many as you want!

DSC_7763small.jpg

This is the presentation - exactly like the "normal" one. I have found it just in Spanish/Portuguese, while it could be done in any language, if volume was enough:

DSC_7759small.jpg

 

 

Read entire post
More about: hp50g blue
Published on by

The new HP10bII+ has arrived!

The new HP10bII+ has arrived!

A complete review will appear in a future blog instalment - I am too excited to wait for that and will just give you my first impressions.

While I love RPN machines, I have to accept that this one clicks more than some buttons in my heart. Three pictures will suffice to see what I mean:

10bII_largesmall.jpg
Look at all buttons filled with blue and organge shifts!

You can see the typical financial keys, but there are as well mathematical functions like trigonometrics, inverse trigonometrics, Hyperbolics, date functions, and several useful additional features, like breakeven analysis (in all the companies I have worked for, the breakeven calculation (how fixed costs, variable costs and units sold relate to reach a given result) is used to predict the monthly results)

Now look at the screen:

DSC_7750small.jpg

Readability is very high, and the metallic trim looks classy - in fact, the whole calculator looks classier than the 20b and 30b. Key click is miles ahead of the 20b and similar (altough different) to the other calculators (30b, 17bII), and better than the 50g - surprising on an entry level calculator.

Finally, take a look at what I found when I opened the battery door:

DSC_7751small.jpg

You can see the same connector that appears in the HP12c+ - which means that this calculator may be re-flashed to update software - or to repurpose it. I understand it uses the same ARM processor as the 12c+

At this point in time I have not dared to disassemble it - to check if there are more connectors inside.

The machine has the lower round edges of the new HP generation (20b, 30b, 35s, 17bII+ silver), that greatly enhances use with a single hand (opposed to Pioneer series). although it is substantially thinner. I stress that it does not look cheap at all - in fact, it looks more expensive than the 20b (and has better keyboard, too) and the 30b.

I would still give the nod to the 30b - it can be keystroke-programmable while the 10bII+ cannot.

I have as well a sweet spot for non-menu calculators. In many cases, when you are in a meeting and everybody expects your answer, it is painful to navigate the menus to find the right one for your application. While the 30b keys can be assigned to specific programs, it is more cumbersome to do so. I have long favoured the 15c as my all-terrain calculator. I can understand the 10bII+ can be the same for a non-RPN calculator user.

Read entire post
More about: HP10bII+
631 - 640 of 649 results