Ignore:
Timestamp:
10/02/11 13:28:28 (13 years ago)
Author:
tbretz
Message:
Added PixelMap.cc to fact_SOURCES
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/feedback.cc

    r12067 r12160  
    301301                            // Kd = 0;
    302302
    303                             //                    -110 / -110 (-23 DAC / -0.51V)
    304                             // Reference voltage: -238 / -203
    305                             //                    -360 / -343 ( 23 DAC /  0.51V)
    306 
    307                             // 0.005 A/V
    308                             // 220 Amplitude / 1V
    309 
    310                             // Gain = 1V / 200 = 0.005
    311 
    312303                            // => Kp = 0.01 * gain     = 0.00005
    313304                            // => Ki = 0.8  * gain/20s = 0.00025
    314305                            // => Kd = 0.1  * gain/20s = 0.00003
    315306
    316                             //valarray<double> correction = - Kp*(PV[2] - PV[1]) + Ki * dT * (SP-PV[2]) - Kd/dT * (PV[2] - 2*PV[1] + PV[0]);
     307                            //valarray<double> correction =
     308                            // -      Kp * (PV[2] - PV[1])
     309                            // + dT * Ki * (SP    - PV[2])
     310                            // - Kd / dT * (PV[2] - 2*PV[1] + PV[0]);
     311                            //
     312                            // - (Kp+Kd/dT1) * (PV[2] - PV[1])
     313                            // + dT2 * Ki * (SP    - PV[2])
     314                            // + Kd / dT1 * (PV[1] - PV[0]);
     315                            //
     316                            // - Kp * (PV[2] - PV[1])
     317                            // + Ki * (SP    - PV[2])*dT
     318                            // - Kd * (PV[2] - PV[1])/dT
     319                            // + Kd * (PV[1] - PV[0])/dT;
     320                            //
    317321                            //valarray<double> correction =
    318322                            //    - Kp*(PV[2] - PV[1]) + Ki * T21 * (SP-PV[2]) - Kd*(PV[2]-PV[1])/T21 - Kd*(PV[0]-PV[1])/T01;
     
    324328                                );
    325329
     330                            /*
     331                             integral = 0
     332                             start:
     333                                 integral += (fSP - fPV[2])*dt
     334
     335                                 output = Kp*(fSP - fPV[2]) + Ki*integral - Kd*(fPV[2] - fPV[1])/dt
     336
     337                                 wait(dt)
     338
     339                                 goto start
     340                             */
     341
    326342                            vector<float> vec(2*BIAS::kNumChannels);
    327343                            for (int i=0; i<BIAS::kNumChannels; i++)
     
    337353                                Info("Sending correction to feedback.");
    338354
    339                                 dic_cmnd_service((char*)"BIAS_CONTROL/ADD_REFERENCE_VOLTAGES",
    340                                                  (void*)(vec.data()+416), 416*sizeof(float));
     355                                DimClient::sendCommandNB("BIAS_CONTROL/ADD_REFERENCE_VOLTAGES",
     356                                                         (void*)(vec.data()+416), 416*sizeof(float));
    341357
    342358                                /*
     
    607623            return 1;
    608624        }
     625
     626        //                    -110 / -110 (-23 DAC / -0.51V)
     627        // Reference voltage: -238 / -203
     628        //                    -360 / -343 ( 23 DAC /  0.51V)
     629
     630        // 0.005 A/V
     631        // 220 Amplitude / 1V
     632
     633        // Gain = 1V / 200 = 0.005
    609634
    610635        fGain = 5; // (BIAS)V / (DRS)V     ( 1V / 0.22V )
     
    676701void PrintHelp()
    677702{
     703    Main::PrintHelp<StateMachineFeedback>();
     704
    678705    /* Additional help text which is printed after the configuration
    679706     options goes here */
Note: See TracChangeset for help on using the changeset viewer.