First, verify all disks are split evenly. (24 per node)
Can check with {disk show -owner node-01 ; disk show -owner node-02} making sure each has 24
Then manually create the aggregates
aggr create -diskcount 22 -maxraidsize 22 -raidtype raid_tec -node node-01 -aggregate sata_01
aggr create -diskcount 22 -maxraidsize 22 -raidtype raid_tec -node node-02 -aggregate sata_02
By default, ONTAP allows up to 20 disks with Raid-DP. Moving to raid-tec allows up to 29 in the raid group.
You should end up with all drives ultimately being partition (root-Data), maximizing your capacity.
In my example, I left 2 spares per node. You could increase the "22" above to be "23" and get a little more capacity.
aggr create -diskcount 23 -maxraidsize 23 -raidtype raid_tec -node node-01 -aggregate sata_01
aggr create -diskcount 23 -maxraidsize 23 -raidtype raid_tec -node node-02 -aggregate sata_02