element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Open Source Hardware
  • Technologies
  • More
Open Source Hardware
Forum Archaeology Resistivity Meter
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Open Source Hardware to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 332 replies
  • Subscribers 321 subscribers
  • Views 44463 views
  • Users 0 members are here
  • armp
  • archaeology resistivity meter
Related

Archaeology Resistivity Meter

kltm
kltm over 5 years ago

Hi I'm looking for ideas on an update to a resistivity meter for archaeology. The only published designs for diy were in 2 magazines. One was published in 1997 and the other in 2003. I have copies of both articles available. The reason behind this is the current high cost of available equipment, usually well beyond the reach of most archaeological groups. I've attached a basic block diagram. In the first magazine article the meter is very basic. It relied on the operators to write down the reading given as the survey was taken. Given that a normal survey grid is 20m x 20m and 1 reading is taken on every sq mtr there would be 400 readings to write down and then input into a program used to interpret the results. The later article is really an update to the first where a PIC has been added to record the readings. This again is prone to error, because eadings are taken manually by pressing a button.

I'm sure given the advances in electronics there must be better ways. 

 

 

 

image

  • Sign in to reply
  • Cancel

Top Replies

  • kltm
    kltm over 5 years ago in reply to michaelkellett +8
    Hi Michael This all sounds very interesting and encouraging. I see you have found the original article, the update is also on slideshare somewhere. I haven’t really thought much about cost, but as you…
  • michaelkellett
    michaelkellett over 5 years ago in reply to shabaz +7
    I can't live with that - I have to have symmetry The problem is that the Howland current pump doesn't constrain the voltage on the load at all when perfectly balanced - and my LTSpice model is unrealistically…
  • michaelkellett
    michaelkellett over 5 years ago in reply to michaelkellett +7
    AS promised - now for the phase sensitive detector. I couldn't easily model this in LTSpice, which is no great surprise because it needs multiplication and square roots. I used Simulink in MATLAB - which…
Parents
  • michaelkellett
    michaelkellett over 5 years ago

    Certainly possible to do much better than the design in the Everyday Practical Electronics design by using modern components.

     

    https://www.slideshare.net/jplateado/earth-resistivity-meter-part-1a-robert-beck

     

    The block diagram is just about legible in the link, but the article gives a good background.

     

    We could do it now by making a DDS oscillator which can work at any frequency between 20 and 200 Hz (more range than commercial boxes offer). Then you need an amplifier able to manage +/- 25V out (not hard), a low noise diff amp and a low noise 24 bit ADC.

     

    A micro to drive it all and either a serial interface to a laptop or maybe a Pi if you prefer. (Laptops solve all the boring battery/screen/keyboard/box issues for you).

    No point in using wireless - because you have to have wires any way to make the system work..

     

    Sounds interesting, walking the dog yesterday I'd got as far as designing a system (in my head) with an autonomous moving probe but perhaps we should walk before running .........

     

    How much should the electronic box (excluding the laptop) cost ?

     

    MK

    • Cancel
    • Vote Up +6 Vote Down
    • Sign in to reply
    • Cancel
  • phoenixcomm
    phoenixcomm over 5 years ago in reply to michaelkellett

    michaelkellett  Michael, to make life easier, why not use the above circuit as an input to a Pi 4 with an external SATA drive via the USB3 port?image  AND BTW couple it with GPS info from a small GPS unit for the PI. Then when you are done with your survey you could remove the drive and put it on an external holder (about $40usd) mine is a Thermaltake BlackX 5G.

    For S&Giggles you could put some sort of display keyboard so you can say START GRID #  or other things.

    ~~Cris

     

    PS I was unaware about your probes making contact with the ground image but that should not be an issue as you can drive the probes into the soil with a solenoid, or whatever. The  Operator could control the insertion and retraction of the probes via the display.

    START  maybe enter grid number

    get GPS (x, y) of the current grid

    store X & Y

     

    do {

    get new gps

    probe down

    take reading

    write data GRID, GPS, Reading

    walk .5m  }( X +.5m < X+20m );

    Tell the operator to do the next row.

    if (Y + .5m < Y+ 20n) back to the do{ 

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • michaelkellett
    michaelkellett over 5 years ago in reply to phoenixcomm

    Well, it's a possibility, my plan would be to have a COM port over USB interface so it can certainly work with a lap top.

    My experience of using a lap top in the field (mainly automotive) is largely bad - too big and heavy, run out of power, can't see screen in sunlight etc.

    A little screen on the device is much nicer to work with but harder work to get it doing dood stuff.

    Having the option to work via serial port expands options.

    I try to write serial control protocols that can work internally between GUI and the core as well as between the core and a PC.

    Serial over Bluetooth is an option as well.

     

    Thanks for suggestions.

     

    MK

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Cancel
  • phoenixcomm
    phoenixcomm over 5 years ago in reply to michaelkellett

    michaelkellett Michael, Did I say laptop? Nope, Nada. what I said was a display and a keyboard of some sort. The display could be a 4x20 I2C LED Thing. And the keyboard could just be a pad or a full USB/ps2 keyboard (your choice!) there are three so pick one. LOL.

    ~~Cris.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • michaelkellett
    michaelkellett over 5 years ago in reply to phoenixcomm

    You didn't say laptop - but I read your post and had my tea and then replied - by which time a Pi and a hard drive and maybe a display had morphed into a laptop in my mind image

     

    I like to design instruments so that full remote control is possible - so your suggestion could be implemented.

     

    A concern with this project is that most users will be trying to do archaeology in the mud and rain so connections and boxes have to be waterproof and tough.

     

    From Ken's latest comment I'm thinking we might do best to start with a 4 line character display which is cheap and simple (and tough and low power) but have the interfaces to enable

    the use of a nice internal graphics display or external computer.

     

    The PI would really come into its own if a full open source Linux supporting software package could be found (or written).

     

    I'll try to reduce the multi-tasking latency in future image

     

    MK

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • michaelkellett
    michaelkellett over 5 years ago in reply to phoenixcomm

    You didn't say laptop - but I read your post and had my tea and then replied - by which time a Pi and a hard drive and maybe a display had morphed into a laptop in my mind image

     

    I like to design instruments so that full remote control is possible - so your suggestion could be implemented.

     

    A concern with this project is that most users will be trying to do archaeology in the mud and rain so connections and boxes have to be waterproof and tough.

     

    From Ken's latest comment I'm thinking we might do best to start with a 4 line character display which is cheap and simple (and tough and low power) but have the interfaces to enable

    the use of a nice internal graphics display or external computer.

     

    The PI would really come into its own if a full open source Linux supporting software package could be found (or written).

     

    I'll try to reduce the multi-tasking latency in future image

     

    MK

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Cancel
Children
  • kltm
    kltm over 5 years ago in reply to michaelkellett

    Hi Michael, yes it’s sometimes muddy, but not often. We certainly never geophys in the rain. The mud and rain bit comes along later if and when they do a dig. Geophys is carried out at the initial stages and often on grassed fields.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • phoenixcomm
    phoenixcomm over 5 years ago in reply to michaelkellett

    michaelkellett

    image

    Most Likely two boxes one the PI & HDA, Power, etc. The second box on the hand bar would have your keyboard, LED display, and most likely some switches to control the probes.  Personally I would interconnect the two boxes via the CAN bus. Waterproof boxes are easy to find they are all gasketed and made from abs. You can also pick up a Pelican case as well. make sure that you waterproof cables, and connectors. To power the 'thing '  you could b powered from a motorbike or small car battery.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube