Post Go back to editing

Cyclo-Voltammetry example project not giving expected results

Category: Hardware
Product Number: ADUCM355

Hello!

I'm trying to match the results of output of the ADuCM355- EVAL board, using the "M355_ECSns_CycloVoltammetry" example project, to that of a conventional potentiostat done over a 3 lead ECS in Ferro/Ferri Cyanide solution. I'm using a ramp voltage of -0.3-0.6 V, steps of 10 mV and scan rate of 100 mV/s. However, when trying to apply the same parameters to the example project it seemed to "trim" out a part of the complete graph. Achieving a somewhat similar graph structure is done by applying a greater voltage range (-1-1 V) and even then the graphs aren't identical and the max current significantly exceeds the one from the potentiostat.
I would appreciate assistance in the matter.

The desired output:

the received output for original parameters:

output for extended voltage range:

  

original parameters:

Parents Reply Children
  • Hello,

    How to modify its resistance value?

    For example, I want to add a resistance value of 1,000 ohms to it.

  • Hi,

     You can choose resistor value from the list defined in ad5940.h

    /**
    * @defgroup LPTIARTIA_Const
    * @brief LPTIA RTIA Selection
    * @note The real RTIA resistor value dependents on Rload settings.
    * @{
    */
    #define LPTIARTIA_OPEN 0 /**< Disconnect LPTIA Internal RTIA */
    #define LPTIARTIA_200R 1 /**< 200Ohm Internal RTIA */
    #define LPTIARTIA_1K 2 /**< 1KOHM */
    #define LPTIARTIA_2K 3 /**< 2KOHM */
    #define LPTIARTIA_3K 4 /**< 3KOHM */
    #define LPTIARTIA_4K 5 /**< 4KOHM */
    #define LPTIARTIA_6K 6 /**< 6KOHM */
    #define LPTIARTIA_8K 7 /**< 8KOHM */
    #define LPTIARTIA_10K 8 /**< 10KOHM */
    #define LPTIARTIA_12K 9 /**< 12KOHM */
    #define LPTIARTIA_16K 10 /**< 16KOHM */
    #define LPTIARTIA_20K 11 /**< 20KOHM */
    #define LPTIARTIA_24K 12 /**< 24KOHM */
    #define LPTIARTIA_30K 13 /**< 30KOHM */
    #define LPTIARTIA_32K 14 /**< 32KOHM */
    #define LPTIARTIA_40K 15 /**< 40KOHM */
    #define LPTIARTIA_48K 16 /**< 48KOHM */
    #define LPTIARTIA_64K 17 /**< 64KOHM */
    #define LPTIARTIA_85K 18 /**< 85KOHM */
    #define LPTIARTIA_96K 19 /**< 96KOHM */
    #define LPTIARTIA_100K 20 /**< 100KOHM */
    #define LPTIARTIA_120K 21 /**< 120KOHM */
    #define LPTIARTIA_128K 22 /**< 128KOHM */
    #define LPTIARTIA_160K 23 /**< 160KOHM */
    #define LPTIARTIA_196K 24 /**< 196KOHM */
    #define LPTIARTIA_256K 25 /**< 256KOHM */
    #define LPTIARTIA_512K 26 /**< 512KOHM */
    /** @} */