+ Reply to Thread
Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: Hana heaven

  1. #11
    Join Date: May 2012

    Location: Toulouse, France

    Posts: 6,597
    I'm Kevin.

    Default

    I am currently running at 800 Ohms, but have read that around 500 seems to be the sweet spot.
    Kevin

    Too busy enjoying the music....

    European loan coordinator for Graham Slee HiFi system components..

  2. #12
    Join Date: May 2010

    Location: Worcestershire, UK

    Posts: 1,101
    I'm Rob.

    Default

    I might have to get my slide rule out and work out how to set 500 Ohms via the switches on my Dino.
    Rob.
    Powered by crossed fingers and clenched buttocks

  3. #13
    Join Date: May 2010

    Location: Worcestershire, UK

    Posts: 1,101
    I'm Rob.

    Default

    I used a bit of ruby code instead:

    Code:
    settings = [1.1, 33.0, 100.0, 1000.0]
    
    (1..4).collect do |i|
      settings.combination(i).each do |combination|
        label = combination.inspect
        fractions = combination.collect{|c| 1/c}
        sum = fractions.inject &:+
        puts "#{label} gives #{1 / sum}"
      end
    end
    Which gave me all the resistances available by combinations of switches on a Trichord Dino:

    [1.1] gives 1.1
    [33.0] gives 33.0
    [100.0] gives 100.0
    [1000.0] gives 1000.0
    [1.1, 33.0] gives 1.0645161290322582
    [1.1, 100.0] gives 1.0880316518298714
    [1.1, 1000.0] gives 1.0987913295375087
    [33.0, 100.0] gives 24.81203007518797
    [33.0, 1000.0] gives 31.945788964181993
    [100.0, 1000.0] gives 90.90909090909092
    [1.1, 33.0, 100.0] gives 1.053303542930099
    [1.1, 33.0, 1000.0] gives 1.0633841394644412
    [1.1, 100.0, 1000.0] gives 1.0868491255804762
    [33.0, 100.0, 1000.0] gives 24.21129860601614
    [1.1, 33.0, 100.0, 1000.0] gives 1.052195261932851
    Looks like I'd have to get the soldering iron out to improve on 1000.0

    Update: the calculations are right now. Checked via an on line calculator.
    Last edited by ReggieB; 02-09-2016 at 19:36. Reason: Correct the code
    Rob.
    Powered by crossed fingers and clenched buttocks

+ Reply to Thread
Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •