volt_correct_temperature module

Tool to substract the temperature effect of given rawdata in a volt.dat file. The calculation is done after Hayley (2010):

d_obs^TC = d_obs + (d_est^TC - d_est)

Necessary Input: * d_obs: measured field data to correct * d_est: synthetic data of inversion result from d_obs * d_estTC: synthetic data of temperature corrected inversion result of d_obs

Options: * output: output file

volt_correct_temperature.calc_correction(volt1, volt2, volt3)[source]

Remove the temperature effect from field data using inversion results of that data:

print(volt[0]) d_obs^TC = d_obs + (d_est^TC - d_est)

Parameters:
  • d_obs – measured field data to correct (volt1)

  • d_est – synthetic data of inversion result from d_obs (volt2)

  • d_estTC – synthetic data of temperature corrected inversion result of d_obs (volt3)

volt_correct_temperature.handle_options()[source]

Handle options.

volt_correct_temperature.main()[source]

Function to remove temperature effect from field data

volt_correct_temperature.readin_volt(filename)[source]

Read in measurement data from a volt.dat file and return electrodes and measured resistance.

volt_correct_temperature.save_volt(elecs, volt, filename)[source]

Save the values in volt-format.