error reading exodus file with a tet and a wedge

Issue #84 new
Rajeev Jain created an issue

Attaching the file. Error shows up on doing mbsize. Tetwedge2.exo is without mid edge nodes. Breaks around SequenceManager.cpp:408, 450

Comments (2)

  1. Iulian Grindeanu

    the file does have midedge nodes; our exodus reader reads Tetra10 (tetra with midedge nodes), but not wedge15 (prism with midedge nodes)

    netcdf tetwedge2 {
    dimensions:
            len_string = 33 ;
            len_line = 81 ;
            four = 4 ;
            len_name = 33 ;
            time_step = UNLIMITED ; // (0 currently)
            num_dim = 3 ;
            num_nodes = 25 ;
            num_elem = 2 ;
            num_el_blk = 2 ;
            num_el_in_blk1 = 1 ;
            num_nod_per_el1 = 10 ;
            num_el_in_blk2 = 1 ;
            num_nod_per_el2 = 15 ;
            num_qa_rec = 1 ;
    variables:
            double time_whole(time_step) ;
            int eb_status(num_el_blk) ;
            int eb_prop1(num_el_blk) ;
                    eb_prop1:name = "ID" ;
            double coord(num_dim, num_nodes) ;
            char eb_names(num_el_blk, len_name) ;
            char coor_names(num_dim, len_name) ;
            int connect1(num_el_in_blk1, num_nod_per_el1) ;
                    connect1:elem_type = "TETRA10" ;
            int connect2(num_el_in_blk2, num_nod_per_el2) ;
                    connect2:elem_type = "WEDGE15" ;
            char qa_records(num_qa_rec, four, len_string) ;
            int elem_map(num_elem) ;
            int elem_num_map(num_elem) ;
            int node_num_map(num_nodes) ;
    

    We can change the reader to support midedge nodes for prisms too; how urgent is this ?

  2. Log in to comment