Changes for page SmartSolo Node Seismometers
Last modified by robert on 2025/10/29 10:39
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Attachments (0 modified, 1 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -4,12 +4,13 @@ 4 4 ((( 5 5 = **Node Types** = 6 6 7 -ANSIR carry two types of three-channel nodes 7 +ANSIR carry two types of three-channel nodes, and one type of one-channel node: 8 8 9 9 * **SmartSolo IGU 16HR 3C (5 Hz Short Period)** 10 10 * **SmartSolo BD3C-5 (5 Second Broadband)** 11 +* **SmartSolo IGU 16 1C (5 Hz Short Period, single channel)** 11 11 12 - Both have a battery capacity of around30 days. The programming, operation and downloading procedures forbothtypes of SmartSolo nodes are also similar.13 +The three-channel nodes have a battery capacity of ~~30 days, whereas the single-channel type has a capacity of ~~50 days. The programming, operation and downloading procedures for all types of SmartSolo nodes are also similar. 13 13 14 14 ---- 15 15 ... ... @@ -231,12 +231,27 @@ 231 231 232 232 233 233 234 -[[image:1706153354750-415.png||data-xwiki-image-style-alignment="center" height="317" width="562"]] 235 +{{{ 236 + }}} 235 235 236 236 ---- 237 237 238 238 = **Downloading and Converting Seismic Data to MiniSeed Format** = 239 239 242 +(% class="wikigeneratedid" %) 243 +SmartSolo provides the following powerpoint for SmartSolo node programming and operation. Note that ANSIR only uses a portion of their process for our own uses: [[https:~~/~~/nappe.wustl.edu/smartsolo/files/smartsolo_online_training.pdf>>url:https://nappe.wustl.edu/smartsolo/files/smartsolo_online_training.pdf]] 244 + 245 +== Connection tips: == 246 + 247 +Connecting SmartSolo nodes to their harvesters and having SoloLite recognise them can be a bit tricky, here are some tricks to help register and program them easier: 248 + 249 +* Place the node on the harvester gently, then firmly press it down onto the pins. 250 +* Place all nodes onto the harvester before trying any troubleshooting, as they may not show up while the SoloLite software is running. Once all are connected, try restarting the software for them to be recognised. 251 +* If a node is refusing to connect, try it with another slot. It is easiest if you place all 16 nodes on the harvester, and swap any nodes that refuse to connect with each other. 252 +* Nodes will likely not show up in the order that they should, though this is not an issue. E.g, a node in slot 6 on the harvester may show up in port 13 in the SoloLite software. Annoying, but it doesn't matter so long as you keep track of what's been harvested! 253 + 254 + 255 + 240 240 == Node Registration and Software Setup == 241 241 242 242 1. ((( ... ... @@ -255,6 +255,27 @@ 255 255 * Ignore the settings for seismic recordings in the subsequent window. Resetting instruments (e.g., sampling rate, gain) requires reprogramming via script. 256 256 ))) 257 257 274 +== File structure == 275 + 276 +There are essentially three main folders where relevant PROSPECT and PROJECT DATA is stored. Individual projects will be found as subfolders in these. 277 + 278 +=== SOLOLITE === 279 + 280 +This folder stores SoloLite config files and parameters. Nothing too important stored here, you can always start over and re-create this. 281 + 282 +=== DCCDATA === 283 + 284 +This folder stores the RAW data you have harvested from the nodes. The data will still be on the nodes (unless you erased it) in case of emergency, but regardless, this is the folder you want to back up and save somewhere. 285 + 286 +If you had a weird time harvesting a node, you can always manually copy it as if it were a USB stick and place it into this folder manually. The structure is: //C:/DCCDATA/prospect_name/project_name/SERIALNUMBER/label(usually a timestamp but can be anything)// 287 + 288 +Then in the SoloLite software, go to tools > Reanalyze Seismic Data 289 + 290 +=== SOLODATA === 291 + 292 +This folder stores **exported** (e.g. miniseed) data. It is structured similarly. If your DCCDATA is intact, this can always be re-created if need be. 293 + 294 + 258 258 == Data Downloading Process == 259 259 260 260 1. ((( ... ... @@ -279,6 +279,38 @@ 279 279 ))) 280 280 ))) 281 281 319 +== Smart Solo Z Polarity bug (SP nodes ONLY!) == 320 + 321 +See [[https:~~/~~/auspass.edu.au/xwiki/bin/view/Data/AusPass%20Data/#HSmartSoloNodeZPolaritybug>>https://auspass.edu.au/xwiki/bin/view/Data/AusPass%20Data/#HSmartSoloNodeZPolaritybug]] for discussion. If data is headed to AusPass, we prefer to invert the IGU-16HR 3 Z channel data manually rather than in the SoloLite software or inverting the response metadata. **The BD3C-5 data does not require a polarity inversion.** 322 + 323 +== 18 Leap Second bug == 324 + 325 +Not so much a bug as much as "a thing that can happen if your SoloLite installation is corrupted". If you notice your data has large time offsets, you should suspect that the number of leap seconds has not been accounted properly. There is a file "smartsoloconfig.xml" that needs to be present in "C:\SmartSoloApps SoloLite" (e.g. the main program directory) that dictates the leap second offset for the last two data ranges. Since 2017-01-01, this is 18 seconds. 326 + 327 +If this file is missing, just create a new one structured like so, name it "smartsoloconfig.xml" and put it in your main program directory. Then, Reanalyze your data (tools > Reanalyze seismic data) and your data should have the correct time. You can also do this manually, if you want. The offset is 18 seconds precisely. 328 + 329 +{{code language="none"}} 330 +<?xml version="1.0" encoding="UTF-8"?> 331 +<config> 332 + <leapsecond> 333 + <interval> 334 + <start_time>2017-01-01#00:00:00</start_time> 335 + <end_time>2999-12-31#23:59:59</end_time> 336 + <second>18</second> 337 + </interval> 338 + <interval> 339 + <start_time>1970-01-01#00:00:00</start_time> 340 + <end_time>2017-01-01#00:00:00</end_time> 341 + <second>17</second> 342 + </interval> 343 + </leapsecond> 344 + <GPS_distance_threshold_degree> 345 + 4e-5 346 + </GPS_distance_threshold_degree> 347 +</config> 348 +{{/code}} 349 + 350 + 282 282 == Handling Nodes During Download == 283 283 284 284 1. ((( ... ... @@ -374,7 +374,7 @@ 374 374 375 375 |(% style="width:189px" %)**Frequency Band**|(% style="width:221px" %)5 Seconds to 150Hz 376 376 |(% style="width:189px" %)**Sensitivity**|(% style="width:221px" %)200 V/m/s 377 -|(% style="width:189px" %)**Size (without spike)**|(% style="width:221px" %)158 x160mm 446 +|(% style="width:189px" %)**Size (without spike)**|(% style="width:221px" %)Φ158 x160mm(H) 378 378 |(% style="width:189px" %)**Weight**|(% style="width:221px" %)2.8 kg 379 379 |(% style="width:189px" %)**Data Storage**|(% style="width:221px" %)64 Gb 380 380 |(% style="width:189px" %)**Battery**|(% style="width:221px" %)((( ... ... @@ -393,8 +393,8 @@ 393 393 [[image:smartsolo node 2.jpg]] 394 394 395 395 |(% style="width:187px" %)**Frequency Band**|(% style="width:224px" %)5 Hz to 1652Hz 396 -|(% style="width:187px" %)**Sensitivity**|(% style="width:224px" %) 67.7 V/m/s397 -|(% style="width:187px" %)**Size (with spike)**|(% style="width:224px" %)103mm(L) × 95mm(W) × 187mm 465 +|(% style="width:187px" %)**Sensitivity**|(% style="width:224px" %)76.7 V/m/s 466 +|(% style="width:187px" %)**Size (with spike)**|(% style="width:224px" %)103mm(L) × 95mm(W) × 187mm(H) 398 398 |(% style="width:187px" %)**Weight**|(% style="width:224px" %)2.4 kg 399 399 |(% style="width:187px" %)**Data Storage**|(% style="width:224px" %)64 Gb 400 400 |(% style="width:187px" %)**Battery**|(% style="width:224px" %)((( ... ... @@ -406,6 +406,27 @@ 406 406 407 407 (% class="box" %) 408 408 ((( 478 + 479 + 480 += SmartSolo [[IGU-16>>url:https://smartsolo.com/cp-3.html]]1C = 481 + 482 + 483 +[[image:Screenshot 2025-08-01 161027.png]] 484 + 485 +|(% style="width:187px" %)**Frequency Band**|(% style="width:224px" %)5 Hz to 413Hz 486 +|(% style="width:187px" %)**Sensitivity**|(% style="width:224px" %)80 V/m/s 487 +|(% style="width:187px" %)**Size (without spike)**|(% style="width:224px" %)95mm(L) × 103mm(W) × 118mm(H) 488 +|(% style="width:187px" %)**Weight**|(% style="width:224px" %)1.1 kg 489 +|(% style="width:187px" %)**Data Storage**|(% style="width:224px" %)8 Gb 490 +|(% style="width:187px" %)**Battery**|(% style="width:224px" %)((( 491 +Lithium-ion battery contained in equipment (38.48 Wh) 492 + 493 +UN3481 PI967 S2 494 +))) 495 +))) 496 + 497 +(% class="box" %) 498 +((( 409 409 = SmartSolo BD3C-16 Portable Battery Charger = 410 410 411 411 [[image:20250729_125049.jpg]]
- Screenshot 2025-08-01 161027.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.JackD - Size
-
... ... @@ -1,0 +1,1 @@ 1 +82.8 KB - Content